
:root {
  --gold:       #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dim:   #8B6914;
  --dark:       #0A0A0A;
  --dark-2:     #111111;
  --dark-3:     #1A1A1A;
  --off-white:  #F5F0E8;
  --muted:      #B0AA9F;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Montserrat', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--off-white); font-family: var(--sans); font-weight: 300; overflow-x: hidden; }

/* LANGUAGE BAR */
.lang-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: flex-end; align-items: center;
  padding: 0.45rem 4rem; gap: 0.5rem;
  background: rgba(10,10,10,0.98);
  border-bottom: 0.5px solid rgba(201,168,76,0.25);
}
.lang-btn {
  font-family: var(--sans); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  background: transparent; color: var(--muted);
  border: 0.5px solid rgba(136,136,128,0.35);
  padding: 0.3rem 0.85rem; cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.lang-btn.active { color: var(--gold); border-color: var(--gold); }
.lang-btn:hover  { color: var(--gold); border-color: rgba(201,168,76,0.55); }
.lang-sep { color: rgba(136,136,128,0.35); font-size: 0.7rem; }

/* NAV */
nav {
  position: fixed; top: 30px; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: linear-gradient(to bottom, rgba(10,10,10,0.92), transparent);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(10,10,10,0.97); border-bottom: 0.5px solid rgba(201,168,76,0.2); }
.nav-logo { font-family: var(--serif); font-size: 1.1rem; font-weight: 300; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; text-decoration: none; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--off-white); text-decoration: none; opacity: 0.75; transition: opacity 0.2s, color 0.2s; }
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta { font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); border: 0.5px solid rgba(201,168,76,0.5); padding: 0.6rem 1.4rem; text-decoration: none; transition: background 0.3s, color 0.3s; }
.nav-cta:hover { background: var(--gold); color: var(--dark); }

/* BUTTONS */
.btn-primary { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; background: var(--gold); color: var(--dark); border: none; padding: 1rem 2.5rem; cursor: pointer; text-decoration: none; font-family: var(--sans); font-weight: 500; transition: opacity 0.2s, transform 0.2s; display: inline-block; }
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-outline { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; background: transparent; color: var(--off-white); border: 0.5px solid rgba(245,240,232,0.3); padding: 1rem 2.5rem; cursor: pointer; text-decoration: none; font-family: var(--sans); font-weight: 300; transition: border-color 0.2s, color 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: var(--dark); padding-top: 100px; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%); }
.hero-lines { position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(201,168,76,0.04) 0.5px, transparent 0.5px), linear-gradient(to bottom, rgba(201,168,76,0.04) 0.5px, transparent 0.5px); background-size: 80px 80px; }
.hero-content { position: relative; text-align: center; max-width: 900px; padding: 0 2rem; }
.hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; animation: fadeUp 1s ease 0.3s both; }
.hero-title { font-family: var(--serif); font-size: clamp(3.5rem, 9vw, 7rem); font-weight: 300; line-height: 1; letter-spacing: 0.05em; color: var(--off-white); margin-bottom: 0.3rem; animation: fadeUp 1s ease 0.5s both; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle { font-family: var(--serif); font-size: clamp(1rem, 2.5vw, 1.4rem); font-weight: 300; font-style: italic; color: var(--gold-light); margin: 1rem 0 2.5rem; letter-spacing: 0.08em; animation: fadeUp 1s ease 0.7s both; }
.hero-tagline-wrap { margin: 1.2rem 0 2.8rem; animation: fadeUp 1s ease 0.7s both; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.hero-tagline-italic { font-family: var(--serif); font-size: clamp(1.1rem, 2.8vw, 1.55rem); font-weight: 300; font-style: italic; color: var(--gold-light); letter-spacing: 0.05em; margin: 0; line-height: 1.2; }
.hero-tagline-caps { font-family: var(--sans); font-size: clamp(0.48rem, 1.1vw, 0.6rem); font-weight: 400; font-style: normal; text-transform: uppercase; letter-spacing: 0.35em; color: var(--muted); margin: 0; line-height: 1.4; }
.hero-desc { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase; margin-bottom: 3rem; animation: fadeUp 1s ease 0.9s both; }
.hero-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; animation: fadeUp 1s ease 1.1s both; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0.4; }
.hero-scroll span { font-size: 0.5rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.scroll-line { width: 0.5px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }

/* DIVIDER */
.gold-divider { display: flex; align-items: center; gap: 1rem; justify-content: center; padding: 1rem 0; }
.gold-divider::before, .gold-divider::after { content: ''; flex: 1; max-width: 120px; height: 0.5px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.gold-divider-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

/* SECTIONS */
section { padding: 6rem 4rem; }
.section-eyebrow { font-size: 0.55rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; text-align: center; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; text-align: center; color: var(--off-white); margin-bottom: 1rem; line-height: 1.1; }
.section-title em { font-style: italic; color: var(--gold); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-quote { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.2rem); font-style: italic; font-weight: 300; color: var(--off-white); line-height: 1.4; margin-bottom: 2rem; }
.about-body { font-size: 0.8rem; line-height: 2; color: var(--muted); margin-bottom: 1.2rem; letter-spacing: 0.03em; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 0.5px solid rgba(201,168,76,0.2); }
.stat-number { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* PHOTO FRAME
   To add a photo: put the image file in the same folder as this HTML,
   then set photoSrc in the CONTENT object to the filename.
   Example:  photoSrc: "portrait.webp"  */
.about-photo-frame { position: relative; border: 0.5px solid rgba(201,168,76,0.2); aspect-ratio: 3/4; overflow: hidden; background: var(--dark-3); display: flex; align-items: center; justify-content: center; }
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-placeholder { font-family: var(--serif); font-style: italic; font-size: 0.9rem; color: rgba(201,168,76,0.3); letter-spacing: 0.1em; text-align: center; padding: 2rem; line-height: 1.8; }
.frame-corner { position: absolute; width: 30px; height: 30px; border-color: var(--gold); border-style: solid; opacity: 0.5; }
.frame-corner.tl { top: 12px; left: 12px; border-width: 1px 0 0 1px; }
.frame-corner.tr { top: 12px; right: 12px; border-width: 1px 1px 0 0; }
.frame-corner.bl { bottom: 12px; left: 12px; border-width: 0 0 1px 1px; }
.frame-corner.br { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }

/* PORTFOLIO - horizontal scroll strip
   To add photos: fill in src values in the portfolio.photos array.
   Example:  { src: "result1.webp", alt: "Ombre Brows" }
   Place image files in the same folder as this HTML file. */
.gallery-scroll {
  display: flex; gap: 10px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1.5rem; margin-top: 3rem; cursor: grab;
  scrollbar-width: thin; scrollbar-color: var(--gold) var(--dark-3);
}
.gallery-scroll:active { cursor: grabbing; }
.gallery-scroll::-webkit-scrollbar { height: 3px; }
.gallery-scroll::-webkit-scrollbar-track { background: var(--dark-3); }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.gallery-item { flex: 0 0 260px; scroll-snap-align: start; aspect-ratio: 3/4; background: var(--dark-3); border: 0.5px solid rgba(201,168,76,0.1); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-placeholder { font-family: var(--serif); font-style: italic; font-size: 0.75rem; color: rgba(201,168,76,0.25); text-align: center; padding: 1rem; letter-spacing: 0.05em; line-height: 1.8; }
.scroll-hint { margin-top: 1rem; text-align: center; font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(201,168,76,0.4); }

/* LIGHTBOX */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(5,5,5,0.96);
  align-items: center; justify-content: center;
}
.lightbox-overlay.open { display: flex; }
/* inner wraps arrows + image — fills screen, click here = close */
.lightbox-inner {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
/* clicking the image/caption does NOT close */
.lightbox-img-wrap {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  max-width: 90vw; max-height: 88vh;
}
.lightbox-img-wrap img {
  max-width: 90vw; max-height: 78vh;
  object-fit: contain; display: block;
  border: 0.5px solid rgba(201,168,76,0.2);
}
.lightbox-caption {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 300;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  color: var(--gold-light); letter-spacing: 0.12em;
  text-align: center; margin-top: 1.2rem;
  padding: 0 2rem; opacity: 0.9;
}
/* navigation arrows */
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0.5px solid rgba(201,168,76,0.4);
  color: var(--gold); cursor: pointer;
  width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s; z-index: 10; flex-shrink: 0;
}
.lightbox-arrow:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); }
.lightbox-arrow svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
/* close button */
.lightbox-close {
  position: fixed; top: 1.5rem; right: 2rem;
  background: transparent; border: 0.5px solid rgba(201,168,76,0.4);
  cursor: pointer;
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s; z-index: 1001;
}
.lightbox-close:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); }
.lightbox-close svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; }
/* counter */
.lightbox-counter {
  position: fixed; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  font-size: 0.5rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(201,168,76,0.4); pointer-events: none;
}
.gallery-item { cursor: pointer; }
@media (max-width: 768px) {
  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }
  .lightbox-arrow { width: 38px; height: 38px; }
}

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5px; margin-top: 4rem; background: rgba(201,168,76,0.1); border: 0.5px solid rgba(201,168,76,0.15); }
.service-card { background: var(--dark-2); padding: 0; text-align: left; position: relative; transition: background 0.3s; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.service-card:hover { background: var(--dark-3); }
/* Service image — top of each card */
.service-card-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; flex-shrink: 0; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img-placeholder { width: 100%; aspect-ratio: 4/3; background: var(--dark-3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-card-img-placeholder span { font-family: var(--serif); font-style: italic; font-size: 0.75rem; color: rgba(201,168,76,0.25); letter-spacing: 0.1em; }
/* Service card content area */
.service-card-body { padding: 2rem; position: relative; flex: 1; }
.service-number { font-family: var(--serif); font-size: 3.5rem; font-weight: 300; color: rgba(201,168,76,0.1); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
.service-icon { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--gold-dim); transition: color 0.3s; }
.service-card:hover .service-icon { color: var(--gold); }
.service-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--off-white); margin-bottom: 0.75rem; line-height: 1.2; }
.service-desc { font-size: 0.72rem; line-height: 1.8; color: var(--muted); letter-spacing: 0.03em; margin-bottom: 1rem; }
.service-price { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); margin-bottom: 1rem; font-style: italic; }
.service-tag { display: inline-block; font-size: 0.5rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border: 0.5px solid rgba(201,168,76,0.3); padding: 0.35rem 0.75rem; }

/* REVIEWS */
.reviews-marquee { overflow: hidden; margin-top: 3rem; position: relative; }
.reviews-marquee::before, .reviews-marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; }
.reviews-marquee::before { left: 0; background: linear-gradient(to right, var(--dark-2), transparent); }
.reviews-marquee::after  { right: 0; background: linear-gradient(to left, var(--dark-2), transparent); }
.reviews-track { display: flex; gap: 1.5rem; animation: marquee 205s linear infinite; width: max-content; }
.review-card { background: var(--dark-3); border: 0.5px solid rgba(201,168,76,0.15); padding: 2rem; width: 320px; flex-shrink: 0; text-align: left; }
.review-stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.review-text { font-family: var(--serif); font-size: 1rem; font-style: italic; font-weight: 300; color: var(--off-white); line-height: 1.6; margin-bottom: 1.2rem; }
.review-author { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.reviews-note { margin-top: 2rem; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; text-align: center; }

/* BOOKING */
.booking-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 60%); }
.booking-content { position: relative; max-width: 700px; margin: 0 auto; text-align: center; }
.booking-body { font-size: 0.8rem; line-height: 2; color: var(--muted); margin: 1.5rem 0 3rem; letter-spacing: 0.03em; }
.booking-options { display: flex; gap: 2rem; justify-content: center; flex-wrap: nowrap; margin-bottom: 2rem; }
.booking-option { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.7rem; padding: 1.6rem 2rem; min-width: 110px; border: 0.5px solid rgba(201,168,76,0.3); border-radius: 16px; background: var(--dark-3); text-decoration: none; animation: bookingPulse 3s ease-in-out infinite; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.booking-option:nth-child(2) { animation-delay: 1s; }
.booking-option:nth-child(3) { animation-delay: 2s; }
.booking-option:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); transform: translateY(-4px) scale(1.06); box-shadow: 0 8px 32px rgba(201,168,76,0.28), 0 0 0 1px rgba(201,168,76,0.4); animation: none; }
.booking-option-icon { display: flex; align-items: center; justify-content: center; }
.booking-option-label { display: block; font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 400; text-align: center; }
/* MAP EMBED */
.map-container { margin-top: 3rem; width: 100%; max-width: 700px; margin-left: auto; margin-right: auto; border: 0.5px solid rgba(201,168,76,0.3); overflow: hidden; filter: grayscale(30%) contrast(1.1); }
.map-container:hover { filter: grayscale(0%) contrast(1); transition: filter 0.4s; }
/* REVIEW CTA */
.review-cta-btn { display: inline-block; margin-top: 2rem; font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); border: 0.5px solid rgba(201,168,76,0.5); padding: 0.85rem 2.2rem; text-decoration: none; transition: background 0.3s, border-color 0.3s; }
.review-cta-btn:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

/* FOOTER */
footer { background: var(--dark-2); border-top: 0.5px solid rgba(201,168,76,0.15); padding: 4rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin: 1rem 0 1.5rem; }
.footer-social { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-link { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-decoration: none; border: 0.5px solid rgba(201,168,76,0.2); padding: 0.5rem 1rem; transition: color 0.2s, border-color 0.2s; }
.social-link:hover { color: var(--gold); border-color: var(--gold); }
.footer-col-title { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-list li { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.03em; line-height: 1.5; }
.footer-list a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-list a:hover { color: var(--gold); }
.footer-bottom { background: var(--dark); padding: 1.5rem 4rem; display: flex; justify-content: space-between; align-items: center; border-top: 0.5px solid rgba(201,168,76,0.08); }
.footer-copy { font-size: 0.6rem; letter-spacing: 0.15em; color: rgba(136,136,128,0.5); text-transform: uppercase; }

/* BOOKING BUTTON PULSE */
@keyframes bookingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); border-color: rgba(201,168,76,0.3); }
  50%       { box-shadow: 0 0 18px 4px rgba(201,168,76,0.18), 0 0 0 2px rgba(201,168,76,0.25); border-color: rgba(201,168,76,0.7); }
}

/* FLOATING WA CONTINUOUS PULSE */
@keyframes waPulse {
  /* resting */
  0%   { transform: scale(1);    box-shadow: 0 4px 20px rgba(0,0,0,0.4),  0 0 0   0px rgba(201,168,76,0),    inset 0 1px 0 rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.5); }
  /* step 1 — begin swell */
  18%  { transform: scale(1.06); box-shadow: 0 6px 28px rgba(0,0,0,0.45), 0 0 10px 3px rgba(201,168,76,0.18), inset 0 1px 0 rgba(201,168,76,0.2);  border-color: rgba(201,168,76,0.7); }
  /* step 2 — peak size + full glow */
  35%  { transform: scale(1.14); box-shadow: 0 8px 38px rgba(0,0,0,0.5),  0 0 22px 8px rgba(201,168,76,0.3),  inset 0 1px 0 rgba(201,168,76,0.28); border-color: var(--gold); }
  /* step 3 — begin retreat */
  50%  { transform: scale(1.08); box-shadow: 0 6px 30px rgba(0,0,0,0.45), 0 0 14px 5px rgba(201,168,76,0.2),  inset 0 1px 0 rgba(201,168,76,0.2);  border-color: rgba(201,168,76,0.75); }
  /* step 4 — halfway back */
  65%  { transform: scale(1.04); box-shadow: 0 5px 24px rgba(0,0,0,0.42), 0 0 8px  2px rgba(201,168,76,0.12), inset 0 1px 0 rgba(201,168,76,0.17); border-color: rgba(201,168,76,0.6); }
  /* step 5 — almost resting, glow nearly gone */
  80%  { transform: scale(1.01); box-shadow: 0 4px 20px rgba(0,0,0,0.4),  0 0 3px  1px rgba(201,168,76,0.06), inset 0 1px 0 rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.52); }
  /* back to rest — pause before next beat */
  100% { transform: scale(1);    box-shadow: 0 4px 20px rgba(0,0,0,0.4),  0 0 0   0px rgba(201,168,76,0),    inset 0 1px 0 rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.5); }
}

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* MOBILE */
@media (max-width: 768px) {
  .lang-bar { padding: 0.45rem 1.5rem; }
  nav { padding: 1.2rem 1.5rem; top: 30px; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .about-grid { display: flex; flex-direction: column; gap: 2rem; }
  .about-photo-frame { display: block; order: -1; max-width: 320px; margin: 0 auto; aspect-ratio: 3/4; }
  footer { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .footer-bottom { padding: 1.2rem 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}
/* FLOATING WHATSAPP BUTTON */
.wa-float {
  position: fixed; right: 1.8rem; bottom: 2.2rem; z-index: 500;
  width: 78px; height: 78px; border-radius: 50%;
  background: rgba(10,10,10,0.35);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(201,168,76,0.55);
  box-shadow: 0 4px 28px rgba(0,0,0,0.45), inset 0 1px 0 rgba(201,168,76,0.18);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  animation: waPulse 3.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  transition: border-color 0.28s, transform 0.28s, background 0.28s;
}
.wa-float:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.14);
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 44px rgba(201,168,76,0.32), inset 0 1px 0 rgba(201,168,76,0.35);
  animation: none;
}
.wa-float svg { display: block; filter: drop-shadow(0 0 5px rgba(201,168,76,0.4)); }

/* WA TOOLTIP */
.wa-tooltip {
  position: fixed; right: 1.8rem; bottom: 7rem; z-index: 499;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 0.5px solid rgba(201,168,76,0.45);
  color: var(--gold-light);
  font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.06em;
  padding: 0.55rem 1rem;
  white-space: nowrap;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.wa-tooltip.wa-tooltip-visible {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.wa-tooltip::after {
  content: '';
  position: absolute; bottom: -5px; right: 2rem; transform: none;
  border: 5px solid transparent;
  border-top-color: rgba(201,168,76,0.45);
  border-bottom: none;
}
@media (max-width: 768px) {
  .wa-tooltip { right: 1rem; bottom: 6rem; font-size: 0.6rem; }
}

/* STORY PHOTO GRID — constrain portrait images uniformly */
.photo-grid-2 img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: center top;
  display: block; border: 0.5px solid rgba(201,168,76,0.2);
}

/* FAQ SECTION */
.faq-wrap { max-width: 780px; margin: 3rem auto 0; }
.faq-item { border-bottom: 0.5px solid rgba(201,168,76,0.15); }
.faq-question { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; gap: 1rem; text-align: left; }
.faq-question-text { font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 400; color: var(--off-white); line-height: 1.3; }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border: 0.5px solid rgba(201,168,76,0.4); display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, background 0.2s; }
.faq-question:hover .faq-icon { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.faq-icon svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; transition: transform 0.3s; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer { font-size: 0.8rem; line-height: 2; color: var(--muted); letter-spacing: 0.03em; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }

/* LIGHTBOX */
.lightbox-overlay { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(5,5,5,0.96); align-items: center; justify-content: center; }
.lightbox-overlay.open { display: flex; }
.lightbox-inner { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.lightbox-img-wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; max-width: 90vw; max-height: 88vh; }
.lightbox-img-wrap img { max-width: 90vw; max-height: 78vh; object-fit: contain; display: block; border: 0.5px solid rgba(201,168,76,0.2); }
.lightbox-caption { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(0.85rem, 2vw, 1.1rem); color: var(--gold-light); letter-spacing: 0.12em; text-align: center; margin-top: 1.2rem; padding: 0 2rem; opacity: 0.9; }
.lightbox-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: 0.5px solid rgba(201,168,76,0.4); color: var(--gold); cursor: pointer; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; z-index: 10; }
.lightbox-arrow:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); }
.lightbox-arrow svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-close { position: fixed; top: 1.5rem; right: 2rem; background: transparent; border: 0.5px solid rgba(201,168,76,0.4); cursor: pointer; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 1001; }
.lightbox-close:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); }
.lightbox-close svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.lightbox-counter { position: fixed; bottom: 1.8rem; left: 50%; transform: translateX(-50%); font-size: 0.5rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(201,168,76,0.4); pointer-events: none; }
.gallery-item { cursor: pointer; }
@media (max-width: 768px) {
  .wa-float { right: 1rem; bottom: 1.4rem; width: 66px; height: 66px; }
  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }
  .lightbox-arrow { width: 38px; height: 38px; }
  .booking-options { gap: 0.8rem; }
  .booking-option { padding: 1.2rem 1rem; min-width: 88px; }
}

/* ── HAMBURGER MENU ──────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-cta   { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 105;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.25em;
    opacity: 1;
  }
}

/* ── SERVICE PAGES ───────────────────────────────────────────────── */
.svc-hero { min-height: 65vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: var(--dark); padding-top: 100px; }
.svc-hero-img { position: absolute; inset: 0; }
.svc-hero-img img { width:100%; height:100%; object-fit:cover; opacity:0.18; }
.svc-content-wrap { max-width: 1100px; margin: 0 auto; }
.svc-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.svc-proc-steps { list-style: none; padding: 0; margin-top: 1.5rem; counter-reset: step; }
.svc-proc-steps li { counter-increment: step; padding-left: 2rem; position: relative; }
.svc-proc-steps li::before { content: counter(step); position: absolute; left: 0; color: var(--gold); font-family: var(--serif); font-size: 1rem; font-weight: 300; }
.svc-portrait { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 0.5px solid rgba(201,168,76,0.2); }
.price-badge { display: inline-block; margin-top: 1.5rem; font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--gold); border: 0.5px solid rgba(201,168,76,0.3); padding: 0.6rem 1.4rem; letter-spacing: 0.05em; }
.blog-hero { min-height: 55vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: var(--dark); padding-top: 100px; }
.blog-coming { text-align: center; max-width: 600px; padding: 0 2rem; }
.blog-coming p { font-size: 0.8rem; line-height: 2; color: var(--muted); margin-top: 1.5rem; letter-spacing: 0.04em; }
@media(max-width:768px) { .svc-intro-grid { grid-template-columns: 1fr; } }

/* =============================================================
   COOKIE CONSENT BANNER
   Dark glassmorphism — matches site aesthetic.
   Injected via script.js, styled here.
   ============================================================= */
#cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 3rem);
  max-width: 580px;
  background: rgba(14, 12, 10, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.55), inset 0 1px 0 rgba(201,168,76,0.1);
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}
#cookie-banner.cookie-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-text {
  font-size: 0.72rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.02em;
  flex: 1;
}
.cookie-policy-link {
  color: var(--gold);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.cookie-policy-link:hover { opacity: 1; }
.cookie-btns {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn-accept {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.6rem 1.3rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.cookie-btn-accept:hover { opacity: 0.88; transform: translateY(-1px); }
.cookie-btn-decline {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: var(--muted);
  border: 0.5px solid rgba(136,136,128,0.35);
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-decline:hover { border-color: var(--muted); color: var(--off-white); }
@media (max-width: 520px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-btns { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}
