/* =========================================================
   Strawberry Thai Spa — Design tokens
   Palette pulled from the logo: burgundy strawberry script,
   deep forest leaves, warm gold lotus & filigree, cream ground.
   ========================================================= */
:root{
  --cream:        #FBF6EC;
  --cream-deep:   #F1E7D3;
  --burgundy:     #7C1B2E;
  --burgundy-deep:#4E0F1C;
  --green:        #1E3B2A;
  --green-soft:   #3A5C43;
  --gold:         #B98A3E;
  --gold-light:   #E4CD97;
  --ink:          #2A211B;
  --ink-soft:     #6B5F53;

  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --script: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Segoe UI", sans-serif;

  --radius: 2px;
  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--sans);
  font-weight:300;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{
  font-family:var(--serif);
  font-weight:600;
  color:var(--burgundy-deep);
  margin:0 0 .5em;
  letter-spacing:.01em;
}
p{ margin:0 0 1em; }
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}
.eyebrow{
  display:inline-block;
  font-family:var(--script);
  font-style:italic;
  font-size:1.15rem;
  color:var(--gold);
  letter-spacing:.04em;
  margin-bottom:.4em;
}
.section{ padding:100px 0; position:relative; }
.section-alt{ background:var(--cream-deep); }
.section-dark{ background:var(--green); color:#EFE9DA; }
.section-dark h2, .section-dark .eyebrow{ color:var(--gold-light); }
.center{ text-align:center; }
.lede{
  max-width:620px;
  color:var(--ink-soft);
  font-size:1.05rem;
}
.center .lede{ margin-left:auto; margin-right:auto; }

/* ---- Ornamental divider (signature motif echoing the logo's line-work) ---- */
.divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin:26px 0 46px;
  color:var(--gold);
}
.divider::before,.divider::after{
  content:"";
  height:1px;
  width:64px;
  background:linear-gradient(90deg, transparent, currentColor);
}
.divider::after{ background:linear-gradient(90deg, currentColor, transparent); }
.divider svg{ width:20px; height:20px; flex-shrink:0; }

/* ---- Buttons ---- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 34px;
  font-family:var(--sans);
  font-size:.82rem;
  font-weight:500;
  letter-spacing:.14em;
  text-transform:uppercase;
  border:1px solid var(--burgundy);
  border-radius:var(--radius);
  cursor:pointer;
  transition:background .35s ease, color .35s ease, transform .2s ease;
  background:transparent;
}
.btn-primary{ background:var(--burgundy); color:var(--cream); }
.btn-primary:hover{ background:var(--burgundy-deep); transform:translateY(-1px); }
.btn-ghost{ color:var(--burgundy); }
.btn-ghost:hover{ background:var(--burgundy); color:var(--cream); }
.btn-gold{ border-color:var(--gold-light); color:var(--gold-light); }
.btn-gold:hover{ background:var(--gold-light); color:var(--green); }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(251,246,236,.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(185,138,62,.25);
  transition:box-shadow .3s ease;
}
.site-header.scrolled{ box-shadow:0 6px 24px rgba(78,15,28,.08); }
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 28px;
  max-width:var(--container);
  margin:0 auto;
}
.nav-brand{ display:flex; align-items:center; gap:12px; }
.nav-brand img{ height:80px; width:auto; }
.nav-brand-text{ font-family:var(--serif); line-height:1.15; }
.nav-brand-text .name{ font-size:1.18rem; color:var(--burgundy); display:block; font-weight:700; letter-spacing:.02em; }
.nav-brand-text .sub{ font-size:.72rem; letter-spacing:.26em; color:var(--green); text-transform:uppercase; font-weight:600; }
.nav-links{ display:flex; gap:34px; list-style:none; margin:0; padding:0; }
.nav-links a{
  font-size:.8rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--ink);
  position:relative;
  padding-bottom:4px;
}
.nav-links a::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:1.5px;
  background:var(--gold); transform:scaleX(0); transform-origin:right;
  transition:transform .3s ease;
}
.nav-links a:hover::after{ transform:scaleX(1); transform-origin:left; }
.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-cta .btn{ font-weight:700; letter-spacing:.16em; }
.nav-toggle{ display:none; background:none; border:0; cursor:pointer; padding:6px; }
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--burgundy); margin:5px 0; border-radius:1px; }

/* =========================================================
   Hero
   ========================================================= */
.hero{
  position:relative;
  padding:200px 0 140px;
  overflow:hidden;
  text-align:center;
  /* Full-bleed background photo */
  background:var(--cream);
}
/* Photo fills entire hero behind everything */
.hero-bg-photo{
  position:absolute; inset:0; z-index:0;
}
.hero-bg-photo img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 30%;
  display:block;
  filter:saturate(.85) brightness(.72);
}
/* Layered gradient overlay: dark at top/bottom for text readability */
.hero-bg-photo::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom,
      rgba(30,12,18,.55) 0%,
      rgba(78,15,28,.38) 40%,
      rgba(20,8,12,.62) 100%);
}
/* Ambient warm glow — keep for subtle atmosphere */
.hero-glow{
  position:absolute; top:-80px; left:50%; transform:translateX(-50%);
  width:700px; height:700px; border-radius:50%;
  background:radial-gradient(circle, rgba(185,138,62,.22), transparent 65%);
  filter:blur(14px);
  animation:breathe 8s ease-in-out infinite;
  pointer-events:none;
  z-index:1;
}
@keyframes breathe{
  0%,100%{ transform:translateX(-50%) scale(1); opacity:.7; }
  50%{ transform:translateX(-50%) scale(1.1); opacity:1; }
}
/* All hero content sits above the overlay */
.hero .container{ position:relative; z-index:2; }
/* Hero logo — small, kept as brand mark in center */
.hero-logo{
  position:relative;
  width:150px; margin:0 auto 24px;
}
.hero-logo img{
  width:100%;
  filter:drop-shadow(0 6px 20px rgba(0,0,0,.4)) brightness(1.08);
  animation:rise 1.1s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes rise{
  from{ opacity:0; transform:translateY(18px) scale(.97); }
  to{ opacity:1; transform:translateY(0) scale(1); }
}
/* Text colours — white over photo */
.hero .eyebrow{ color:var(--gold-light); }
.hero h1{
  font-size:clamp(2.4rem, 5.5vw, 4rem);
  font-weight:700;
  color:#fff;
  text-shadow:0 2px 20px rgba(0,0,0,.35);
  animation:rise 1.1s .15s cubic-bezier(.2,.7,.2,1) both;
  line-height:1.2;
}
.hero .lede{
  margin:0 auto 34px;
  color:rgba(255,255,255,.85);
  text-shadow:0 1px 8px rgba(0,0,0,.3);
  animation:rise 1.1s .3s cubic-bezier(.2,.7,.2,1) both;
}
.hero-actions{
  display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
  animation:rise 1.1s .45s cubic-bezier(.2,.7,.2,1) both;
}
/* Adjust button colours for dark background */
.hero .btn-primary{ background:var(--burgundy); border-color:var(--burgundy); color:#fff; }
.hero .btn-primary:hover{ background:var(--burgundy-deep); }
.hero .btn-ghost{ border-color:rgba(255,255,255,.7); color:#fff; }
.hero .btn-ghost:hover{ background:rgba(255,255,255,.15); color:#fff; border-color:#fff; }
.hero-meta{
  margin-top:60px;
  display:flex; gap:40px; justify-content:center; flex-wrap:wrap;
  animation:rise 1.1s .6s cubic-bezier(.2,.7,.2,1) both;
  border-top:1px solid rgba(228,205,151,.3);
  padding-top:36px;
}
.hero-meta div{ text-align:center; }
.hero-meta .num{ font-family:var(--serif); font-size:1.6rem; color:var(--gold-light); display:block; font-weight:700; }
.hero-meta .lbl{ font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.7); }

/* =========================================================
   About
   ========================================================= */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

/* Photo stack */
.about-art{
  position:relative;
  /* no background/border needed — photos fill it */
}
.about-photo-stack{
  position:relative;
  width:100%;
}
.about-photo-main{
  width:88%;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 24px 60px rgba(78,15,28,.18);
  border:3px solid var(--gold-light);
}
.about-photo-main img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  aspect-ratio:3/4;
  filter:saturate(.9) brightness(.96);
  transition:transform .55s ease, filter .55s ease;
}
.about-photo-main:hover img{
  transform:scale(1.04);
  filter:saturate(1.05) brightness(1);
}

/* Accent photo — bottom-right overlap */
.about-photo-accent{
  position:absolute;
  bottom:-36px;
  right:0;
  width:52%;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 14px 36px rgba(78,15,28,.22);
  border:3px solid #fff;
}
.about-photo-accent img{
  width:100%; display:block;
  aspect-ratio:4/3;
  object-fit:cover;
  filter:saturate(.9) brightness(.94);
  transition:transform .55s ease, filter .55s ease;
}
.about-photo-accent:hover img{
  transform:scale(1.05);
  filter:saturate(1.05) brightness(1);
}

/* Floating badge */
.about-photo-badge{
  position:absolute;
  top:26px; right:-18px;
  background:var(--burgundy);
  color:var(--cream);
  border-radius:50%;
  width:86px; height:86px;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  box-shadow:0 8px 24px rgba(78,15,28,.3);
  border:2px solid var(--gold-light);
  z-index:2;
}
.about-photo-badge .badge-num{
  font-family:var(--serif);
  font-size:1.5rem;
  font-weight:700;
  line-height:1;
  color:var(--gold-light);
}
.about-photo-badge .badge-lbl{
  font-size:.58rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(251,246,236,.75);
  margin-top:2px;
}

.about-list{ list-style:none; margin:26px 0 0; padding:0; }
.about-list li{
  display:flex; gap:14px; padding:14px 0;
  border-top:1px solid rgba(185,138,62,.25);
}
.about-list li:first-child{ border-top:none; }
.about-list svg{ flex-shrink:0; width:22px; height:22px; color:var(--gold); margin-top:2px; }
.about-list b{ font-family:var(--serif); color:var(--burgundy); display:block; font-weight:600; margin-bottom:4px; }
.about-list li > div{ padding-top:1px; }

/* =========================================================
   Services
   ========================================================= */
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(290px,1fr));
  gap:26px;
}
.service-card{
  background:var(--cream);
  border:1px solid rgba(185,138,62,.25);
  border-radius:6px;
  overflow:hidden;
  transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  cursor:default;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 48px rgba(78,15,28,.14);
}

/* ---- Image header ---- */
.service-card-img{
  position:relative;
  width:100%;
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--cream-deep);
}
.service-card-img img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transition:transform .55s cubic-bezier(.2,.8,.2,1), filter .55s ease;
  filter:saturate(.88) brightness(.96);
}
.service-card:hover .service-card-img img{
  transform:scale(1.07);
  filter:saturate(1) brightness(1);
}

/* Overlay that fades in on hover */
.service-card-overlay{
  position:absolute; inset:0;
  background:linear-gradient(to top,
    rgba(78,15,28,.72) 0%,
    rgba(124,27,46,.35) 50%,
    transparent 100%);
  display:flex; align-items:flex-end; justify-content:center;
  padding-bottom:22px;
  opacity:0;
  transition:opacity .35s ease;
}
.service-card:hover .service-card-overlay{ opacity:1; }
.service-book-btn{
  font-size:.72rem;
  padding:10px 26px;
  transform:translateY(10px);
  transition:transform .35s ease, opacity .35s ease, background .3s ease, color .3s ease !important;
  opacity:0;
}
.service-card:hover .service-book-btn{
  transform:translateY(0);
  opacity:1;
}

/* ---- Text body ---- */
.service-card-body{
  padding:24px 26px 26px;
}
.service-card-top{
  display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px;
}
.service-card .duration{
  display:inline-block;
  font-size:.7rem; letter-spacing:.12em; text-transform:uppercase;
  color:var(--gold);
}
.service-card .price{
  font-family:var(--serif); font-size:.95rem; color:var(--burgundy); font-weight:600; white-space:nowrap;
}
.service-card h3{ font-size:1.15rem; margin-bottom:.3em; }
.service-card p{ color:var(--ink-soft); font-size:.91rem; margin:0; line-height:1.6; }


/* ---- Gallery (real photography) ---- */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
.gallery-tile{
  position:relative;
  aspect-ratio:4/3;
  border-radius:6px;
  overflow:hidden;
  cursor:default;
  transition:transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.gallery-tile:hover{
  transform:translateY(-5px) scale(1.01);
  box-shadow:0 22px 50px rgba(78,15,28,.18);
}
.gallery-tile img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s cubic-bezier(.2,.8,.2,1), filter .5s ease;
  filter:saturate(.85) brightness(.92);
}
.gallery-tile:hover img{
  transform:scale(1.08);
  filter:saturate(1.05) brightness(1);
}
/* Permanent gradient so label is always readable */
.gallery-tile-overlay{
  position:absolute; inset:0;
  background:linear-gradient(
    to top,
    rgba(30,10,20,.75) 0%,
    rgba(78,15,28,.25) 45%,
    transparent 75%
  );
  transition:opacity .4s ease;
}
.gallery-tile:hover .gallery-tile-overlay{
  background:linear-gradient(
    to top,
    rgba(30,10,20,.85) 0%,
    rgba(78,15,28,.35) 50%,
    transparent 80%
  );
}
.gallery-label{
  position:absolute;
  bottom:16px; left:0; right:0;
  text-align:center;
  font-family:var(--serif);
  font-size:1rem;
  color:#fff;
  letter-spacing:.03em;
  text-shadow:0 1px 8px rgba(0,0,0,.5);
  transition:transform .35s ease;
}
.gallery-tile:hover .gallery-label{ transform:translateY(-3px); }


/* =========================================================
   Ritual / process strip
   ========================================================= */
.ritual{
  display:grid; grid-template-columns:repeat(4,1fr); gap:40px;
}
.ritual-step{ text-align:center; }
.ritual-step .mark{
  font-family:var(--script); font-style:italic; font-size:1.4rem;
  color:var(--gold-light); display:block; margin-bottom:10px;
}
.ritual-step h4{ color:#EFE9DA; font-size:1.05rem; margin-bottom:.4em; }
.ritual-step p{ color:rgba(239,233,218,.72); font-size:.92rem; }

/* =========================================================
   Reviews
   ========================================================= */
.review-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:30px;
}
.review-card{
  background:var(--cream);
  border:1px solid rgba(185,138,62,.3);
  border-radius:var(--radius);
  padding:32px;
  position:relative;
}
.review-card .stars{ color:var(--gold); letter-spacing:2px; margin-bottom:14px; font-size:.95rem; }
.review-card p{ font-style:italic; color:var(--ink); }
.review-card .author{ font-family:var(--serif); color:var(--burgundy); font-style:normal; font-size:.92rem; }
.rating-banner{
  display:flex; align-items:center; justify-content:center; gap:14px;
  margin-bottom:40px; flex-wrap:wrap;
}
.rating-banner .score{ font-family:var(--serif); font-size:2.2rem; color:var(--burgundy); }
.rating-banner .stars{ color:var(--gold); font-size:1.1rem; letter-spacing:2px; }
.rating-banner .count{ color:var(--ink-soft); font-size:.88rem; }

/* =========================================================
   Hours + Location
   ========================================================= */
.visit-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:start;
}
.hours-table{ width:100%; border-collapse:collapse; margin-top:20px; }
.hours-table tr{ border-top:1px solid rgba(185,138,62,.25); }
.hours-table tr:first-child{ border-top:none; }
.hours-table td{ padding:11px 0; font-size:.94rem; }
.hours-table td:last-child{ text-align:right; color:var(--green-soft); font-weight:500; }
.open-badge{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.75rem; letter-spacing:.12em; text-transform:uppercase;
  color:var(--green-soft); margin-top:18px;
}
.open-badge .dot{
  width:8px; height:8px; border-radius:50%; background:#3E7A4F;
  box-shadow:0 0 0 0 rgba(62,122,79,.5);
  animation:pulse 2s infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(62,122,79,.5); }
  70%{ box-shadow:0 0 0 8px rgba(62,122,79,0); }
  100%{ box-shadow:0 0 0 0 rgba(62,122,79,0); }
}
.address-block{ margin-top:22px; color:var(--ink-soft); }
.map-frame{
  width:100%; height:420px; border:1px solid rgba(185,138,62,.35);
  border-radius:var(--radius); overflow:hidden;
}
.map-frame iframe{ width:100%; height:100%; border:0; }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:70px;
}
.form-field{ margin-bottom:22px; }
.form-field label{
  display:block; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase;
  color:var(--ink-soft); margin-bottom:8px;
}
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding:13px 14px; font-family:var(--sans); font-size:.95rem;
  border:1px solid rgba(185,138,62,.4); background:var(--cream);
  border-radius:var(--radius); color:var(--ink);
}
.form-field textarea{ resize:vertical; min-height:110px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline:2px solid var(--gold); outline-offset:1px;
}
.form-note{ font-size:.85rem; color:var(--ink-soft); margin-top:10px; }
.contact-info-card{
  background:var(--green); color:#EFE9DA; padding:44px;
  border-radius:var(--radius);
}
.contact-info-card h3{ color:var(--gold-light); }
.contact-info-card .row{ display:flex; gap:14px; padding:14px 0; border-top:1px solid rgba(228,205,151,.2); }
.contact-info-card .row:first-of-type{ border-top:none; }
.contact-info-card svg{ width:20px; height:20px; color:var(--gold-light); flex-shrink:0; margin-top:2px; }
.contact-info-card a:hover{ color:var(--gold-light); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{
  background:var(--burgundy-deep); color:rgba(251,246,236,.75);
  padding:60px 0 26px; font-size:.88rem;
}
.footer-grid{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:40px;
  padding-bottom:34px; border-bottom:1px solid rgba(228,205,151,.15);
}
.footer-brand{ display:flex; align-items:center; gap:12px; }
.footer-brand img{ height:44px; }
.footer-brand .name{ font-family:var(--serif); color:var(--cream); font-size:1.1rem; }
.footer-links{ display:flex; gap:50px; flex-wrap:wrap; }
.footer-links h5{
  color:var(--gold-light); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase;
  margin-bottom:14px; font-family:var(--sans); font-weight:500;
}
.footer-links ul{ list-style:none; margin:0; padding:0; }
.footer-links li{ margin-bottom:9px; }
.footer-links a:hover{ color:var(--gold-light); }
.footer-bottom{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  padding-top:22px; font-size:.78rem; color:rgba(251,246,236,.5);
}

/* =========================================================
   Utilities / reveal-on-scroll
   ========================================================= */
/* Content is visible by default (no-JS / reduced-motion safe).
   JS adds .js-reveal to <html> only when it can guarantee the
   reveal will actually fire, then arms the animation. */
.reveal{ opacity:1; transform:none; }
.js-reveal .reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.js-reveal .reveal.in{ opacity:1; transform:translateY(0); }

/* =========================================================
   Nav active state (JS-driven)
   ========================================================= */
.nav-links a.nav-active::after{ transform:scaleX(1); transform-origin:left; }

/* =========================================================
   Page-progress bar
   ========================================================= */
#pageBar{
  position:fixed; top:0; left:0; height:2.5px; z-index:200;
  background:linear-gradient(90deg, var(--gold), var(--burgundy));
  width:0%; transition:width .12s linear;
  pointer-events:none;
}

/* =========================================================
   Scroll-to-top button
   ========================================================= */
#scrollTopBtn{
  position:fixed; bottom:28px; right:28px; z-index:150;
  width:46px; height:46px; border-radius:50%;
  background:var(--burgundy); color:var(--cream);
  border:none; cursor:pointer; padding:0;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 22px rgba(78,15,28,.28);
  opacity:0; transform:translateY(18px) scale(.9);
  transition:opacity .35s ease, transform .35s ease, background .25s ease;
  pointer-events:none;
}
#scrollTopBtn.visible{
  opacity:1; transform:translateY(0) scale(1);
  pointer-events:auto;
}
#scrollTopBtn:hover{ background:var(--burgundy-deep); transform:translateY(-2px) scale(1.04); }
#scrollTopBtn svg{ width:20px; height:20px; stroke:var(--cream); display:block; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px){
  .about-grid, .visit-grid, .contact-grid{ grid-template-columns:1fr; }
  .about-photo-stack{ padding-bottom:50px; } /* room for accent photo overlap */
  .about-photo-badge{ right:4px; top:16px; width:72px; height:72px; }
  .ritual{ grid-template-columns:repeat(2,1fr); row-gap:36px; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .service-grid{ grid-template-columns:repeat(2, 1fr); gap:18px; }
  .nav-links{
    position:fixed; top:78px; left:0; right:0; bottom:0;
    background:var(--cream); flex-direction:column; padding:30px 28px;
    gap:22px; transform:translateX(100%); transition:transform .35s ease;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-toggle{ display:block; }
  .nav-cta .btn-ghost{ display:none; }
}
@media (max-width: 560px){
  .hero{ padding:150px 0 90px; }
  .section{ padding:70px 0; }
  .ritual{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:1fr 1fr; gap:14px; }
  .hero-meta{ gap:26px; }
  .service-grid{ grid-template-columns:1fr; gap:14px; }
  .about-photo-accent{ width:46%; bottom:-28px; }
  .about-photo-badge{ right:0; top:10px; width:62px; height:62px; }
  .about-photo-badge .badge-num{ font-size:1.2rem; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}

