/* ============================================================
   SWEETNESS SPA & WELLNESS — STYLE SHEET
   ============================================================ */

:root{
  --cream:      #F7F5EF;
  --beige:      #EEEBDE;
  --beige-dark: #E2DCC7;
  --charcoal:   #26312B;
  --charcoal-soft: #4B594E;
  --gold:       #6E8F72;
  --gold-light: #93B18C;
  --nude:       #D8C9AC;
  --white:      #FFFFFF;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Nunito Sans", Arial, sans-serif;

  --container-w: 1180px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

html, body{ max-width:100%; overflow-x:hidden; }

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--charcoal);
  background:var(--cream);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:600;
  line-height:1.15;
  margin:0 0 .5em;
  color:var(--charcoal);
}
p{ margin:0 0 1em; }
.container{
  max-width:var(--container-w);
  margin:0 auto;
  padding:0 24px;
}

:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:15px 30px;
  border-radius:2px;
  font-family:var(--font-body);
  font-size:.95rem;
  font-weight:500;
  letter-spacing:.03em;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space:nowrap;
}
.btn-gold{
  background:var(--gold);
  color:var(--white);
}
.btn-gold:hover{
  background:var(--charcoal);
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(110,143,114,.35);
}
.btn-outline{
  border-color:var(--charcoal);
  color:var(--charcoal);
  background:transparent;
}
.btn-outline:hover{
  background:var(--charcoal);
  color:var(--cream);
  transform:translateY(-2px);
}
.btn-outline-light{
  border-color:rgba(247,243,236,.55);
  color:var(--cream);
  background:transparent;
}
.btn-outline-light:hover{
  background:var(--cream);
  color:var(--charcoal);
  transform:translateY(-2px);
}
.icon-wa{ width:18px; height:18px; fill:currentColor; }

.text-link{
  font-size:.92rem;
  font-weight:500;
  border-bottom:1px solid currentColor;
  padding-bottom:2px;
  transition:opacity .25s var(--ease), letter-spacing .25s var(--ease);
}
.text-link:hover{ opacity:.65; letter-spacing:.02em; }

/* ============================================================
   PRELOADER — the one orchestrated entrance moment
   ============================================================ */
.preloader{
  position:fixed; inset:0; z-index:999;
  background:var(--charcoal);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .7s var(--ease), visibility .7s var(--ease);
}
.preloader-mark{
  font-family:var(--font-display);
  font-size:2.6rem;
  color:var(--gold-light);
  opacity:0;
  animation:markIn 1.1s var(--ease) forwards;
}
@keyframes markIn{
  0%{ opacity:0; letter-spacing:.5em; }
  100%{ opacity:1; letter-spacing:.05em; }
}
.preloader.done{ opacity:0; visibility:hidden; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:22px 0;
  transition:padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled{
  padding:12px 0;
  background:rgba(247,243,236,.92);
  backdrop-filter:blur(8px);
  box-shadow:0 1px 0 rgba(38,49,41,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand-logo{ height:66px; width:auto; }
.brand-name{
  font-family:var(--font-display);
  font-size:1.25rem;
  font-weight:600;
  letter-spacing:.01em;
}
.brand-name em{ font-style:normal; color:var(--gold); }

.main-nav{ display:flex; align-items:center; gap:36px; }
.main-nav ul{ display:flex; gap:30px; }
.main-nav a:not(.btn){
  position:relative;
  font-size:.95rem;
  padding:4px 0;
}
.main-nav a:not(.btn)::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0; height:1px;
  background:var(--gold);
  transition:width .3s var(--ease);
}
.main-nav a:not(.btn):hover::after,
.main-nav a.active::after{ width:100%; }
.main-nav a.active{ color:var(--gold); }
.nav-cta{ padding:11px 22px; font-size:.88rem; }

.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:30px; height:30px;
  background:none; border:none; cursor:pointer;
  padding:0;
}
.hamburger span{
  display:block; height:1.5px; width:100%;
  background:var(--charcoal);
  transition:transform .35s var(--ease), opacity .35s var(--ease);
}
.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); }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  color:var(--cream);
}
.hero-media{
  position:absolute; inset:0;
  overflow:hidden;
}
.hero-img{
  width:100%; height:100%;
  object-fit:cover;
  transform:scale(1.12);
  animation:kenburns 16s ease-out forwards;
}
@keyframes kenburns{
  0%{ transform:scale(1.12); }
  100%{ transform:scale(1); }
}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(38,49,41,.35) 0%, rgba(38,49,41,.55) 65%, rgba(38,49,41,.82) 100%);
}
.hero::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-1px; height:70px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,64 C240,120 480,0 720,32 C960,64 1200,112 1440,48 L1440,120 L0,120 Z' fill='%23F7F5EF'/%3E%3C/svg%3E");
  background-size:100% 100%;
  z-index:1;
  pointer-events:none;
}
.hero-content{
  position:relative; z-index:2;
  padding-bottom:9vh;
  max-width:720px;
}
.eyebrow{
  font-size:.85rem;
  letter-spacing:.08em;
  color:var(--nude);
  margin-bottom:18px;
}
.hero-title{ margin-bottom:22px; }
.hero-title .line{
  display:block;
  font-size:clamp(2.4rem, 6vw, 4.4rem);
  font-weight:500;
  overflow:hidden;
}
.hero-sub{
  font-size:1.08rem;
  max-width:520px;
  color:rgba(247,243,236,.88);
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:16px; margin-top:8px; }

/* reveal-on-load items (hero only — the single orchestrated moment) */
.reveal-item{
  opacity:0;
  transform:translateY(22px);
  animation:revealUp .9s var(--ease) forwards;
}
.reveal-item[data-reveal="1"]{ animation-delay:.35s; }
.reveal-item[data-reveal="2"]{ animation-delay:.5s; }
.reveal-item[data-reveal="3"]{ animation-delay:.68s; }
.reveal-item[data-reveal="4"]{ animation-delay:.9s; }
.reveal-item[data-reveal="5"]{ animation-delay:1.08s; }
.hero-title .line[data-reveal]{ opacity:0; transform:translateY(100%); animation:revealUp .9s var(--ease) forwards; }
@keyframes revealUp{
  to{ opacity:1; transform:translateY(0); }
}

.hero-scroll-cue{
  position:absolute; bottom:26px; right:32px; z-index:2;
  display:flex; align-items:center; gap:10px;
  font-size:.78rem; letter-spacing:.08em;
  color:rgba(247,243,236,.75);
}
.hero-scroll-cue span{
  width:1px; height:34px;
  background:rgba(247,243,236,.5);
  position:relative;
  overflow:hidden;
}
.hero-scroll-cue span::after{
  content:"";
  position:absolute; left:0; top:-100%;
  width:100%; height:100%;
  background:var(--gold-light);
  animation:cueMove 2s ease-in-out infinite;
}
@keyframes cueMove{
  0%{ top:-100%; } 50%{ top:0; } 100%{ top:100%; }
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro{ padding:96px 0 60px; }
.intro-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
}
.intro-lead{
  font-family:var(--font-display);
  font-size:clamp(1.5rem, 2.6vw, 2rem);
  font-weight:500;
  line-height:1.4;
  color:var(--charcoal-soft);
}
.intro-copy{ font-size:1rem; color:var(--charcoal-soft); padding-top:6px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee{
  border-top:1px solid rgba(38,49,41,.12);
  border-bottom:1px solid rgba(38,49,41,.12);
  overflow:hidden;
  padding:22px 0;
  background:var(--beige);
}
.marquee-track{
  display:flex;
  width:max-content;
  gap:22px;
  font-family:var(--font-display);
  font-size:1.3rem;
  color:var(--gold);
  white-space:nowrap;
  animation:marqueeScroll 32s linear infinite;
}
.marquee-track span:nth-child(odd){ color:var(--charcoal); font-weight:400; }
@keyframes marqueeScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ============================================================
   SECTION GENERIC
   ============================================================ */
.section{ padding:100px 0; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:20px; margin-bottom:52px;
}
.section-head h2{ margin-bottom:0; }
h2{ font-size:clamp(1.9rem, 3.4vw, 2.6rem); }
h2::before{
  content:"";
  display:block;
  width:46px;
  height:2px;
  background:var(--gold);
  margin-bottom:16px;
}
.center::before,
.final-cta h2::before{ margin-left:auto; margin-right:auto; }
.testimonials h2::before{ background:var(--gold-light); }
.center{ text-align:center; }

/* ============================================================
   SERVICES PREVIEW
   ============================================================ */
.service-list{ display:flex; flex-direction:column; }
.service-row{
  display:grid;
  grid-template-columns:200px 1fr;
  gap:36px;
  padding:34px 0;
  border-top:1px solid rgba(38,49,41,.14);
  align-items:center;
}
.service-list .service-row:last-child{ border-bottom:1px solid rgba(38,49,41,.14); }
.service-row-media{
  overflow:hidden;
  border-radius:var(--radius-sm);
  aspect-ratio:4/3.2;
}
.service-row-media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .7s var(--ease);
}
.service-row:hover .service-row-media img{ transform:scale(1.06); }
.service-row-body h3{ font-size:1.4rem; margin-bottom:8px; }
.service-row-body p{
  color:var(--charcoal-soft);
  max-width:520px;
  margin-bottom:14px;
}
.service-row-foot{ display:flex; align-items:center; gap:26px; }
.service-row-foot .duration{ font-family:var(--font-body); font-size:.92rem; font-weight:500; color:var(--gold); }
.price{ font-family:var(--font-display); font-size:1.15rem; color:var(--gold); }
.price small{ font-family:var(--font-body); font-size:.8rem; color:var(--charcoal-soft); }

/* ============================================================
   WHY US
   ============================================================ */
.why-us{ background:var(--beige); }
.why-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
}
.why-list{ margin-top:30px; display:flex; flex-direction:column; gap:26px; }
.why-list h4{ font-size:1.1rem; margin-bottom:4px; }
.why-list p{ color:var(--charcoal-soft); margin-bottom:0; max-width:440px; }

.why-stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  background:rgba(38,49,41,.14);
  border:1px solid rgba(38,49,41,.14);
  align-self:start;
}
.stat{
  background:var(--beige);
  padding:34px 26px;
}
.stat-number{
  font-family:var(--font-display);
  font-size:2.6rem;
  color:var(--charcoal);
}
.stat-suffix{
  font-family:var(--font-display);
  font-size:2.6rem;
  color:var(--gold);
}
.stat p{ margin:6px 0 0; font-size:.88rem; color:var(--charcoal-soft); }

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:200px;
  gap:14px;
}
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-sm);
}
.gallery-item.span-2{ grid-column:span 2; grid-row:span 2; }
.gallery-item img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .7s var(--ease), filter .5s var(--ease);
}
.gallery-item::after{
  content:"";
  position:absolute; inset:0;
  background:rgba(38,49,41,0);
  transition:background .4s var(--ease);
}
.gallery-item:hover::after{ background:rgba(38,49,41,.12); }
.gallery-item:hover img{ transform:scale(1.08); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials{ background:var(--charcoal); color:var(--cream); }
.testimonials h2{ color:var(--cream); margin-bottom:50px; }
.testi-slider{ max-width:720px; margin:0 auto; text-align:center; overflow:hidden; }
.testi-track{
  display:flex;
  transition:transform .6s var(--ease);
}
.testi-slide{
  min-width:100%;
  margin:0;
  padding:0 10px;
}
.testi-slide p{
  font-family:var(--font-display);
  font-size:clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight:500;
  line-height:1.5;
  color:var(--cream);
  margin-bottom:30px;
}
.testi-slide footer{
  display:flex; align-items:center; justify-content:center; gap:14px;
}
.testi-slide footer img{
  width:46px; height:46px; border-radius:50%; object-fit:cover;
}
.testi-slide footer div{ text-align:left; font-size:.85rem; }
.testi-slide footer strong{ display:block; color:var(--gold-light); }
.testi-slide footer span{ color:rgba(247,243,236,.65); }

.testi-controls{
  display:flex; align-items:center; justify-content:center;
  gap:22px; margin-top:36px;
}
.testi-controls button{
  background:none; border:1px solid rgba(247,243,236,.35);
  color:var(--cream);
  width:40px; height:40px; border-radius:50%;
  cursor:pointer;
  transition:background .3s var(--ease), border-color .3s var(--ease);
  font-size:1rem;
}
.testi-controls button:hover{ background:var(--gold); border-color:var(--gold); }
.testi-dots{ display:flex; gap:8px; }
.testi-dots button{
  width:7px; height:7px; border-radius:50%; padding:0;
  border:none; background:rgba(247,243,236,.35);
}
.testi-dots button.active{ background:var(--gold-light); }

/* ============================================================
   LOCATION PREVIEW
   ============================================================ */
.location-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.location-media{ border-radius:var(--radius-sm); overflow:hidden; }
.location-details{ margin:26px 0 32px; display:flex; flex-direction:column; gap:18px; }
.location-details li{ display:flex; gap:14px; align-items:flex-start; }
.location-details .icon{ width:20px; height:20px; fill:var(--gold); flex-shrink:0; margin-top:2px; }
.location-details span{ color:var(--charcoal-soft); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta{
  background:var(--gold);
  color:var(--white);
  padding:110px 0;
  text-align:center;
}
.final-cta h2{ color:var(--white); margin-bottom:12px; }
.final-cta p{ color:rgba(255,255,255,.85); font-size:1.05rem; margin-bottom:34px; }
.final-cta .hero-actions{ justify-content:center; }
.final-cta .btn-gold{ background:var(--charcoal); }
.final-cta .btn-gold:hover{ background:var(--white); color:var(--charcoal); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background:var(--charcoal); color:rgba(247,243,236,.75); padding:80px 0 0; }
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:60px;
  border-bottom:1px solid rgba(247,243,236,.12);
}
.footer-grid > *{ min-width:0; }
.footer-brand .brand-name{ color:var(--cream); }
.footer-brand p{ margin-top:14px; font-size:.9rem; max-width:260px; }
.footer-col h5{
  font-family:var(--font-body);
  color:var(--cream);
  font-size:.85rem;
  letter-spacing:.06em;
  margin-bottom:18px;
}
.footer-col{ display:flex; flex-direction:column; gap:11px; font-size:.92rem; min-width:0; }
.footer-col a{ overflow-wrap:anywhere; }
.footer-col a:hover{ color:var(--gold-light); }
.social-row{ display:flex; gap:12px; }
.social-row a{
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(247,243,236,.25);
  display:flex; align-items:center; justify-content:center;
  font-size:.72rem;
  transition:background .3s var(--ease), border-color .3s var(--ease);
}
.social-row a:hover{ background:var(--gold); border-color:var(--gold); }
.footer-bottom{ padding:26px 0; text-align:center; font-size:.82rem; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float{
  position:fixed; bottom:26px; right:26px; z-index:90;
  width:58px; height:58px; border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 24px rgba(37,211,102,.4);
  transition:transform .3s var(--ease);
}
.whatsapp-float svg{ width:30px; height:30px; fill:var(--white); }
.whatsapp-float::before{
  content:"";
  position:absolute; inset:0;
  border-radius:50%;
  background:#25D366;
  animation:pulse 2.4s ease-out infinite;
  z-index:-1;
}
@keyframes pulse{
  0%{ transform:scale(1); opacity:.6; }
  100%{ transform:scale(1.9); opacity:0; }
}
.whatsapp-float:hover{ transform:scale(1.08); }

/* ============================================================
   PAGE HERO (About / Services / Gallery / Booking / Contact)
   ============================================================ */
.page-hero{
  position:relative;
  margin-top:0;
  min-height:52vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  color:var(--cream);
}
.page-hero-media{ position:absolute; inset:0; }
.page-hero-media img{ width:100%; height:100%; object-fit:cover; }
.page-hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(38,49,41,.45) 0%, rgba(38,49,41,.72) 100%);
}
.page-hero::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-1px; height:60px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,64 C240,120 480,0 720,32 C960,64 1200,112 1440,48 L1440,120 L0,120 Z' fill='%23F7F5EF'/%3E%3C/svg%3E");
  background-size:100% 100%;
  z-index:1;
  pointer-events:none;
}
.page-hero-content{ position:relative; z-index:2; padding-bottom:64px; max-width:760px; }
.page-hero-content h1{ color:var(--cream); font-size:clamp(2rem, 4.4vw, 3.1rem); margin-bottom:0; }
.page-hero .eyebrow{ color:var(--nude); }

/* ============================================================
   ABOUT — STORY
   ============================================================ */
.story-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
  align-items:center;
}
.story-media{ border-radius:var(--radius-sm); overflow:hidden; }
.story-body h2{ font-size:clamp(1.6rem, 2.8vw, 2.2rem); margin:10px 0 20px; }
.story-body p{ color:var(--charcoal-soft); }

/* ============================================================
   ABOUT — MISSION
   ============================================================ */
.mission{ background:var(--beige); }
.mission-head{ max-width:560px; margin-bottom:50px; }
.mission-head h2{ margin-top:10px; }
.mission-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1px;
  background:rgba(38,49,41,.14);
  border:1px solid rgba(38,49,41,.14);
}
.mission-card{
  background:var(--beige);
  padding:40px 34px;
}
.mission-card h3{ font-size:1.2rem; margin-bottom:12px; color:var(--gold); }
.mission-card p{ color:var(--charcoal-soft); margin-bottom:0; }

/* ============================================================
   ABOUT — DIFFERENCE
   ============================================================ */
.difference-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
}
.difference-copy h2{ font-size:clamp(1.6rem, 2.8vw, 2.2rem); margin:10px 0 16px; }
.difference-copy p{ color:var(--charcoal-soft); max-width:380px; }
.difference-list{ display:flex; flex-direction:column; }
.difference-item{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:20px;
  padding:26px 0;
  border-top:1px solid rgba(38,49,41,.14);
}
.difference-list .difference-item:last-child{ border-bottom:1px solid rgba(38,49,41,.14); }
.difference-index{
  font-family:var(--font-display);
  font-size:1.3rem;
  color:var(--gold);
}
.difference-item h4{ font-size:1.05rem; margin-bottom:6px; }
.difference-item p{ color:var(--charcoal-soft); margin-bottom:0; }

/* ============================================================
   ABOUT — TEAM
   ============================================================ */
.team-sub{ color:var(--charcoal-soft); margin-bottom:0; max-width:320px; }
.team-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.team-card img{
  width:100%; aspect-ratio:5/6; object-fit:cover;
  border-radius:var(--radius-sm);
  margin-bottom:18px;
  transition:transform .6s var(--ease);
}
.team-card:hover img{ transform:translateY(-6px); }
.team-card h4{ font-size:1.05rem; margin-bottom:2px; }
.team-card span{ font-size:.85rem; color:var(--charcoal-soft); }

/* ============================================================
   SERVICES — FILTER BAR
   ============================================================ */
.filter-bar{
  position:sticky; top:0; z-index:50;
  background:rgba(247,243,236,.94);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(38,49,41,.12);
  padding:18px 0;
}
.filter-row{
  display:flex;
  gap:10px;
  overflow-x:auto;
  scrollbar-width:none;
}
.filter-row::-webkit-scrollbar{ display:none; }
.filter-btn{
  flex:0 0 auto;
  padding:9px 20px;
  border-radius:20px;
  border:1px solid rgba(38,49,41,.22);
  background:transparent;
  color:var(--charcoal-soft);
  font-family:var(--font-body);
  font-size:.88rem;
  cursor:pointer;
  transition:background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space:nowrap;
}
.filter-btn:hover{ border-color:var(--gold); color:var(--charcoal); }
.filter-btn.active{ background:var(--charcoal); border-color:var(--charcoal); color:var(--cream); }

/* ============================================================
   SERVICES — CATEGORY SECTIONS & CARDS
   ============================================================ */
.service-category{ padding:80px 0; }
.service-category.alt{ background:var(--beige); }
.category-title{ margin-bottom:36px; }

.service-cards{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:26px;
}
.service-card{
  background:var(--cream);
  border:1px solid rgba(38,49,41,.12);
  border-radius:var(--radius-sm);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:opacity .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service-category.alt .service-card{ background:var(--beige); }
.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 40px rgba(38,49,41,.12), 0 0 0 1px rgba(110,143,114,.18);
}
.service-card-media{ aspect-ratio:5/4; overflow:hidden; }
.service-card-media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s var(--ease);
}
.service-card:hover .service-card-media img{ transform:scale(1.07); }
.service-card-body{ padding:22px; display:flex; flex-direction:column; flex:1; }
.service-card-body h3{ font-size:1.08rem; margin-bottom:8px; }
.service-card-body p{
  font-size:.9rem;
  color:var(--charcoal-soft);
  flex:1;
}
.service-card-meta{
  display:flex; justify-content:space-between; align-items:baseline;
  margin-bottom:16px;
  padding-top:12px;
  border-top:1px solid rgba(38,49,41,.12);
}
.service-card-meta .duration{ font-size:.82rem; color:var(--charcoal-soft); }
.service-card-meta .price{ font-family:var(--font-display); font-size:1.15rem; color:var(--gold); }
.btn-block{ width:100%; justify-content:center; padding:12px 20px; font-size:.86rem; }

/* filter animation state */
.service-card.is-hidden{
  display:none;
}

/* ============================================================
   GALLERY — MASONRY GRID
   ============================================================ */
.gallery-full{ padding-top:70px; }
.masonry{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:190px;
  gap:16px;
}
.masonry-item{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-sm);
  border:none;
  padding:0;
  cursor:pointer;
  background:none;
  grid-row:span 1;
}
.masonry-item.tall{ grid-row:span 2; }
.masonry-item.wide{ grid-column:span 2; }
.masonry-item img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .7s var(--ease);
}
.masonry-item::after{
  content:"";
  position:absolute; inset:0;
  background:rgba(38,49,41,0);
  transition:background .4s var(--ease);
}
.masonry-item::before{
  content:"\\2295";
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%) scale(.6);
  color:var(--cream);
  font-size:1.6rem;
  opacity:0;
  transition:opacity .35s var(--ease), transform .35s var(--ease);
  z-index:1;
}
.masonry-item:hover::after{ background:rgba(38,49,41,.28); }
.masonry-item:hover::before{ opacity:1; transform:translate(-50%,-50%) scale(1); }
.masonry-item:hover img{ transform:scale(1.08); }
.masonry-item.is-hidden{ display:none; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox{
  position:fixed; inset:0; z-index:200;
  background:rgba(20,16,14,.94);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden;
  transition:opacity .35s var(--ease), visibility .35s var(--ease);
  padding:40px;
}
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox-figure{
  max-width:min(920px, 88vw);
  max-height:86vh;
  margin:0;
  text-align:center;
  transform:scale(.94);
  opacity:0;
  transition:transform .4s var(--ease), opacity .4s var(--ease);
}
.lightbox.open .lightbox-figure{ transform:scale(1); opacity:1; }
.lightbox-figure img{
  max-width:100%; max-height:76vh;
  width:auto; margin:0 auto;
  border-radius:var(--radius-sm);
}
.lightbox-figure figcaption{
  color:var(--nude);
  font-size:.92rem;
  margin-top:16px;
  letter-spacing:.02em;
}
.lightbox-close, .lightbox-nav{
  position:absolute;
  background:none; border:none;
  color:var(--cream);
  cursor:pointer;
  transition:opacity .25s var(--ease), transform .25s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover{ opacity:.65; }
.lightbox-close{ top:26px; right:32px; font-size:2rem; line-height:1; }
.lightbox-nav{ top:50%; transform:translateY(-50%); font-size:1.8rem; padding:10px; }
.lightbox-nav:hover{ transform:translateY(-50%) scale(1.15); }
.lightbox-nav.prev{ left:20px; }
.lightbox-nav.next{ right:20px; }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.page-hero.small{ min-height:38vh; }

.booking-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:50px;
  align-items:start;
}

.booking-card{
  background:var(--beige);
  border:1px solid rgba(38,49,41,.12);
  border-radius:var(--radius-md);
  padding:44px;
  position:relative;
}

.booking-form{ display:flex; flex-direction:column; gap:22px; }
.form-row{ display:flex; flex-direction:column; gap:8px; }
.form-row.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.form-row.two-col > div{ display:flex; flex-direction:column; gap:8px; }

label{
  font-size:.88rem;
  font-weight:500;
  color:var(--charcoal);
}
.req{ color:var(--gold); }
.optional{ color:var(--charcoal-soft); font-weight:400; font-size:.82rem; }

input, select, textarea{
  font-family:var(--font-body);
  font-size:.96rem;
  color:var(--charcoal);
  background:var(--cream);
  border:1px solid rgba(38,49,41,.2);
  border-radius:var(--radius-sm);
  padding:13px 15px;
  transition:border-color .3s var(--ease), box-shadow .3s var(--ease);
  width:100%;
}
input:focus, select:focus, textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(166,130,79,.15);
}
textarea{ resize:vertical; min-height:100px; font-family:var(--font-body); }

.submit-btn{ margin-top:8px; }
.form-note{
  font-size:.82rem;
  color:var(--charcoal-soft);
  text-align:center;
  margin:0;
}

/* field validity feedback */
.form-row.invalid input,
.form-row.invalid select{
  border-color:#B3554A;
  box-shadow:0 0 0 3px rgba(179,85,74,.12);
}

/* ---------- Confirmation state ---------- */
.booking-confirmation{
  text-align:center;
  padding:20px 10px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}
.booking-confirmation h3{ margin-top:10px; }
.booking-confirmation p{ color:var(--charcoal-soft); max-width:400px; margin-bottom:14px; }
.booking-confirmation .btn{ margin-bottom:10px; }
.reset-form{ background:none; border:none; cursor:pointer; font-family:var(--font-body); }

.confirm-check{ width:76px; height:76px; }
.confirm-circle{
  fill:none;
  stroke:var(--gold);
  stroke-width:2.5;
  stroke-dasharray:182;
  stroke-dashoffset:182;
  animation:circleDraw .6s var(--ease) forwards;
}
.confirm-tick{
  fill:none;
  stroke:var(--gold);
  stroke-width:3.5;
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-dasharray:40;
  stroke-dashoffset:40;
  animation:tickDraw .4s var(--ease) forwards .55s;
}
@keyframes circleDraw{ to{ stroke-dashoffset:0; } }
@keyframes tickDraw{ to{ stroke-dashoffset:0; } }

/* ---------- Aside ---------- */
.booking-aside{ display:flex; flex-direction:column; gap:28px; position:sticky; top:100px; }
.aside-block{
  background:var(--cream);
  border:1px solid rgba(38,49,41,.12);
  border-radius:var(--radius-md);
  padding:30px;
}
.aside-block h3{ font-size:1.1rem; margin-bottom:14px; }
.aside-block p{ color:var(--charcoal-soft); font-size:.92rem; }

.steps-list{ display:flex; flex-direction:column; gap:16px; padding:0; margin:0; }
.steps-list li{
  list-style:none;
  display:flex;
  gap:14px;
  align-items:flex-start;
  font-size:.92rem;
  color:var(--charcoal-soft);
}
.steps-list span{
  flex-shrink:0;
  width:26px; height:26px;
  border-radius:50%;
  background:var(--gold);
  color:var(--white);
  font-family:var(--font-display);
  font-size:.85rem;
  display:flex; align-items:center; justify-content:center;
}

.hours-list{ display:flex; flex-direction:column; gap:10px; padding:0; margin:0; }
.hours-list li{
  list-style:none;
  display:flex; justify-content:space-between;
  font-size:.9rem;
  color:var(--charcoal-soft);
  padding-bottom:10px;
  border-bottom:1px solid rgba(38,49,41,.1);
}
.hours-list li:last-child{ border-bottom:none; padding-bottom:0; }
.hours-list li span:first-child{ color:var(--charcoal); font-weight:500; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-list{
  display:flex; flex-direction:column; gap:16px;
  padding:0; margin:0 0 20px;
}
.contact-info-list li{
  list-style:none;
  display:flex; gap:12px; align-items:flex-start;
  font-size:.92rem;
  color:var(--charcoal-soft);
}
.contact-info-list .icon{ width:18px; height:18px; fill:var(--gold); flex-shrink:0; margin-top:2px; }
.contact-info-list a{ color:var(--charcoal-soft); transition:color .25s var(--ease); }
.contact-info-list a:hover{ color:var(--gold); }

.social-row-dark a{
  border-color:rgba(38,49,41,.2);
  color:var(--charcoal);
}
.social-row-dark a:hover{ background:var(--gold); border-color:var(--gold); color:var(--white); }

.map-section{ line-height:0; }
.map-section iframe{
  width:100%;
  height:420px;
  border:0;
  filter:grayscale(.15) contrast(1.02);
}

/* ============================================================
   SCROLL REVEAL (progressive enhancement — only when JS runs)
   ============================================================ */
html.js .reveal-target{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
html.js .service-card.reveal-target{
  transition:opacity .8s var(--ease), transform .5s var(--ease), box-shadow .35s var(--ease);
}
html.js .reveal-target.in-view{
  opacity:1;
  transform:translateY(0);
}

@media (prefers-reduced-motion: reduce){
  html.js .reveal-target{ opacity:1; transform:none; transition:none; }
}

/* ============================================================
   DECORATIVE FLOATING LEAVES (injected via JS into heroes)
   ============================================================ */
.decor-leaf{
  position:absolute;
  pointer-events:none;
  z-index:1;
  animation:leafDrift 8s ease-in-out infinite;
}
.decor-leaf svg{ width:100%; height:100%; display:block; }
@keyframes leafDrift{
  0%, 100%{ transform:translate(0,0) rotate(0deg); }
  50%{ transform:translate(10px,-20px) rotate(10deg); }
}
@media (prefers-reduced-motion: reduce){
  .decor-leaf{ animation:none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px){
  .intro-grid, .why-grid, .location-grid{ grid-template-columns:1fr; gap:30px; }
  .why-stats{ grid-template-columns:1fr 1fr; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:170px; }
  .gallery-item.span-2{ grid-column:span 2; grid-row:span 1; }
  .service-row{ grid-template-columns:130px 1fr; gap:22px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .story-grid, .difference-grid{ grid-template-columns:1fr; gap:34px; }
  .mission-grid{ grid-template-columns:1fr; }
  .team-grid{ grid-template-columns:repeat(3, 1fr); gap:16px; }
  .service-cards{ grid-template-columns:repeat(2, 1fr); }
  .masonry{ grid-template-columns:repeat(2, 1fr); grid-auto-rows:220px; }
  .masonry-item.wide{ grid-column:span 2; }
  .booking-grid{ grid-template-columns:1fr; }
  .booking-aside{ position:static; }
}

@media (max-width: 760px){
  .brand-logo{ height:48px; }
  .main-nav{
    position:fixed; top:0; right:0; height:100vh; width:min(78vw,320px);
    background:var(--cream);
    flex-direction:column; align-items:flex-start;
    padding:100px 32px 40px;
    transform:translateX(100%);
    transition:transform .45s var(--ease);
    box-shadow:-8px 0 30px rgba(0,0,0,.08);
  }
  .main-nav.open{ transform:translateX(0); }
  .main-nav ul{ flex-direction:column; gap:22px; margin-bottom:30px; }
  .hamburger{ display:flex; }
  .nav-cta{ width:100%; justify-content:center; }

  .service-row{ grid-template-columns:1fr; }
  .service-row-media{ aspect-ratio:16/10; }
  .why-stats{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .section{ padding:70px 0; }
  .section-head{ flex-direction:column; align-items:flex-start; gap:12px; }
  .team-grid{ grid-template-columns:1fr 1fr; }
  .page-hero{ min-height:42vh; }
  .service-cards{ grid-template-columns:1fr; }
  .filter-bar{ padding:14px 0; }
  .masonry{ grid-template-columns:1fr 1fr; grid-auto-rows:150px; gap:10px; }
  .masonry-item.tall{ grid-row:span 2; }
  .lightbox-nav{ font-size:1.4rem; }
  .lightbox-close{ top:16px; right:18px; }
  .booking-card{ padding:26px; }
  .form-row.two-col{ grid-template-columns:1fr; gap:22px; }
  .map-section iframe{ height:280px; }
}

@media (max-width: 480px){
  .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:140px; }
  .hero-actions .btn{ width:100%; justify-content:center; }
  .hero-scroll-cue{ display:none; }
}