/* ============================================================
   Harmony Hands — Design System
   Earthy Sanctuary aesthetic. Mobile-first. Anti-slop.
   ============================================================ */

/* --- Reset & Base ------------------------------------------ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;text-size-adjust:100%}

:root{
  /* Palette */
  --forest:#2C5F4A;
  --forest-dark:#1E3F32;
  --forest-light:#E8F0EC;
  --terracotta:#C4785B;
  --terracotta-hover:#B06A4E;
  --gold:#C9A96E;
  --cream:#FAF6F1;
  --stone:#E8E0D6;
  --linen:#F0EDE8;
  --charcoal:#2A2622;
  --grey:#7A7267;
  --border:#D6D0C8;
  --white:#FFFFFF;

  /* Type */
  --font-heading:'Cormorant Garamond',Georgia,'Times New Roman',serif;
  --font-body:'Nunito Sans','Segoe UI',Tahoma,sans-serif;

  /* Spacing */
  --space-xs:0.5rem;
  --space-sm:1rem;
  --space-md:2rem;
  --space-lg:4rem;
  --space-xl:6rem;
  --space-2xl:8rem;

  /* Layout */
  --max-w:1280px;
  --content-w:65ch;

  /* Transitions */
  --ease:cubic-bezier(.4,0,.2,1);
  --dur:0.5s;
}

body{
  font-family:var(--font-body);
  font-size:clamp(1rem,2.5vw,1.125rem);
  font-weight:400;
  line-height:1.85;
  color:var(--charcoal);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}

/* Subtle paper grain texture */
body::before{
  content:'';
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:9999;
  opacity:1;
  background-image:url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 4 4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3h1v1H1V3zm2-2h1v1H3V1z' fill='%23000000' fill-opacity='0.015'/%3E%3C/svg%3E");
}

img,video,svg{max-width:100%;display:block}
a{color:var(--forest);text-decoration:none;transition:color var(--dur) var(--ease)}
a:hover{color:var(--terracotta)}
ul,ol{list-style:none}

/* --- Typography -------------------------------------------- */
h1,h2,h3{font-family:var(--font-heading);color:var(--forest-dark);letter-spacing:-0.02em}
h1{font-size:clamp(2.25rem,4.5vw,4rem);font-weight:500;line-height:1.1;letter-spacing:-0.03em;margin-bottom:1rem}
h2{font-size:clamp(1.75rem,3.5vw,2.75rem);font-weight:500;line-height:1.18;margin-bottom:1rem}
h3{font-size:clamp(1.25rem,2.5vw,1.75rem);font-weight:500;line-height:1.25;margin-bottom:0.75rem}
h4{font-size:clamp(1.125rem,2vw,1.375rem);font-weight:600;line-height:1.3;font-family:var(--font-body);margin-bottom:0.5rem}

p{max-width:var(--content-w)}
p+p{margin-top:1.25em}

.text-sm{font-size:0.875rem;line-height:1.5;letter-spacing:0.02em}
.text-lg{font-size:clamp(1.125rem,2.5vw,1.25rem);line-height:1.6}
.text-meta{font-size:0.875rem;color:var(--grey);letter-spacing:0.02em;text-transform:uppercase;font-weight:500}
.text-price{font-family:var(--font-heading);font-size:1.5rem;font-weight:700;color:var(--forest)}

/* --- Layout ------------------------------------------------ */
.container{width:100%;max-width:var(--max-w);margin:0 auto;padding:0 clamp(1.25rem,5vw,3rem)}
.section{padding:5rem 0}
.section--lg{padding:var(--space-xl) 0}
.section--stone{background:var(--cream)}
.section--forest{background:var(--forest);color:var(--white)}
.section--forest h2,.section--forest h3{color:var(--white)}
.section--forest p{color:rgba(255,255,255,0.9)}
.section--linen{background:var(--cream)}

/* Breathing layout: subtle gold divider between sections */
.section-divider{
  width:60px;height:1px;
  background:var(--gold);
  margin:0 auto;
  opacity:0.4;
}

/* Grid utilities */
.grid{display:grid;gap:var(--space-md)}
.grid-2{grid-template-columns:1fr}
.grid-3{grid-template-columns:1fr}

@media(min-width:768px){
  .grid-2{grid-template-columns:1fr 1fr}
  .grid-3{grid-template-columns:1fr 1fr 1fr}
}

/* Asymmetric splits */
.split{display:grid;gap:var(--space-md);align-items:center}
.split--60-40{grid-template-columns:1fr}
.split--40-60{grid-template-columns:1fr}

@media(min-width:768px){
  .split--60-40{grid-template-columns:3fr 2fr}
  .split--40-60{grid-template-columns:2fr 3fr}
}

/* --- Navigation -------------------------------------------- */
.nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  padding:1rem 0;
  transition:background 0.8s var(--ease),box-shadow 0.8s var(--ease),padding 0.8s var(--ease);
}
.nav.scrolled{
  background:var(--forest);
  box-shadow:0 2px 20px rgba(0,0,0,0.15);
  padding:0.6rem 0;
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:var(--max-w);
  margin:0 auto;
  padding:0 clamp(1.25rem,5vw,3rem);
}
.nav__brand{
  font-family:var(--font-heading);
  font-size:1.5rem;
  font-weight:500;
  color:var(--white);
  letter-spacing:-0.01em;
  text-decoration:none;
  transition:opacity var(--dur) var(--ease);
}
.nav__brand:hover{color:var(--white);opacity:0.85}

/* Desktop links */
.nav__links{
  display:none;
  align-items:center;
  gap:1.75rem;
  list-style:none;
}
.nav__links a{
  font-family:var(--font-body);
  font-size:0.875rem;
  font-weight:400;
  color:rgba(255,255,255,0.7);
  letter-spacing:0.04em;
  text-decoration:none;
  transition:color 0.3s var(--ease);
}
.nav__links a:hover{color:var(--gold)}
.nav__links a[aria-current="page"],.nav__links a.active{color:var(--gold);font-weight:600}

/* Treatments dropdown */
.nav__dropdown{position:relative}
.nav__dropdown-toggle{cursor:pointer;display:flex;align-items:center;gap:0.3rem}
.nav__dropdown-toggle::after{content:'';border:4px solid transparent;border-top-color:currentColor;margin-top:3px;transition:transform var(--dur) var(--ease)}
.nav__dropdown.open .nav__dropdown-toggle::after{transform:rotate(180deg)}
.nav__dropdown-menu{
  display:none;
  position:absolute;
  top:calc(100% + 4px);
  left:50%;
  transform:translateX(-50%);
  background:var(--cream);
  border-radius:8px;
  box-shadow:0 4px 24px rgba(0,0,0,0.10),0 1px 4px rgba(0,0,0,0.06);
  padding:0.5rem 0;
  min-width:280px;
  z-index:1001;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.2s ease;
}
/* Bridge element: invisible pad between trigger and menu so mouse can cross the gap */
.nav__dropdown-menu::before{
  content:'';
  position:absolute;
  top:-12px;
  left:0;
  right:0;
  height:12px;
}
/* Mobile: click to open (JS adds .open) */
.nav__dropdown.open .nav__dropdown-menu{display:block;opacity:1;pointer-events:auto}
/* Desktop: hover to open */
@media(min-width:768px){
  .nav__dropdown-menu{display:block}/* always in DOM for transition; pointer-events:none hides it */
  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown:focus-within .nav__dropdown-menu{
    opacity:1;
    pointer-events:auto;
    transition-delay:0.15s;
  }
  .nav__dropdown:hover .nav__dropdown-toggle::after,
  .nav__dropdown:focus-within .nav__dropdown-toggle::after{
    transform:rotate(180deg);
  }
}
.nav__dropdown-menu a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0.65rem 1.25rem;
  min-height:44px;
  color:var(--charcoal);
  font-size:0.875rem;
  font-weight:400;
  white-space:nowrap;
  transition:background 0.15s ease,color 0.15s ease;
}
.nav__dropdown-menu a .price{
  color:var(--forest);
  font-weight:500;
  font-size:0.8rem;
  margin-left:1.5rem;
  opacity:0.7;
}
.nav__dropdown-menu a:hover{background:var(--forest-light);color:var(--forest)}
.nav__dropdown-menu a:hover .price{opacity:1}
.nav__dropdown-menu a::after{display:none}

/* Nav CTA */
.nav__cta{
  display:none;
  padding:0.55rem 1.25rem;
  background:var(--terracotta);
  color:var(--white);
  font-family:var(--font-body);
  font-size:0.875rem;
  font-weight:600;
  border-radius:24px;
  letter-spacing:0.01em;
  text-decoration:none;
  transition:background var(--dur) var(--ease),transform 0.15s var(--ease);
}
.nav__cta:hover{background:var(--terracotta-hover);color:var(--white);transform:translateY(-1px)}

/* Hamburger */
.nav__hamburger{
  display:flex;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  background:none;
  border:none;
  padding:4px;
  z-index:1002;
}
.nav__hamburger span{
  width:24px;height:2px;
  background:var(--white);
  border-radius:2px;
  transition:transform var(--dur) var(--ease),opacity var(--dur) var(--ease);
}
.nav__hamburger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav__hamburger.active span:nth-child(2){opacity:0}
.nav__hamburger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile menu overlay */
.nav__mobile{
  display:none;
  position:fixed;
  inset:0;
  background:var(--forest-dark);
  z-index:999;
  padding:6rem 2rem 2rem;
  overflow-y:auto;
}
.nav__mobile.open{display:flex;flex-direction:column}
.nav__mobile a{
  font-family:var(--font-heading);
  font-size:1.5rem;
  color:var(--white);
  padding:0.75rem 0;
  border-bottom:1px solid rgba(255,255,255,0.1);
  display:block;
  text-decoration:none;
}
.nav__mobile a:last-child{border-bottom:none}
.nav__mobile .nav__mobile-sub{padding-left:1.25rem}
.nav__mobile .nav__mobile-sub a{font-family:var(--font-body);font-size:1.125rem;font-weight:400;display:flex;justify-content:space-between;align-items:center}
.nav__mobile .nav__mobile-sub .price{font-size:0.875rem;color:var(--gold);opacity:0.7}
.nav__mobile-cta{
  margin-top:auto;
  padding:1rem 2rem;
  background:var(--terracotta);
  color:var(--white);
  text-align:center;
  border-radius:8px;
  font-weight:600;
  font-size:1.125rem;
  text-decoration:none;
}

@media(min-width:1024px){
  .nav__links{display:flex}
  .nav__cta{display:inline-flex}
  .nav__hamburger{display:none}
}

/* Inner page nav: start with solid background */
.nav--solid{background:var(--forest);box-shadow:0 2px 20px rgba(0,0,0,0.1)}

/* --- Hero -------------------------------------------------- */
.hero{
  position:relative;
  min-height:90vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--forest-dark);
}
.hero__bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
  opacity:0.35;
}
.hero__content{
  position:relative;
  z-index:2;
  padding:8rem 0 4rem;
  max-width:680px;
}
.hero h1{color:var(--white)}
.hero--service h1{color:var(--white)}
.hero__sub{
  font-size:clamp(1rem,2.5vw,1.25rem);
  color:rgba(255,255,255,0.85);
  line-height:1.6;
  margin-bottom:2rem;
  max-width:560px;
}

/* Service page hero (shorter) */
.hero--service{
  position:relative;
  min-height:50vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--forest-dark);
  padding:0;
}
.hero--service .hero__bg{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0.35}
.hero--service .hero__bg img{width:100%;height:100%;object-fit:cover}
.hero--service .hero__content{position:relative;z-index:2;padding:7rem clamp(1.25rem,5vw,3rem) 3rem;max-width:680px}
.hero--service .container .hero__content{padding-left:0;padding-right:0}/* container handles side padding */
.hero--service .hero__badges{display:flex;gap:0.75rem;flex-wrap:wrap;margin-bottom:1.5rem}
.hero__badge{
  display:inline-flex;
  align-items:center;
  gap:0.4rem;
  padding:0.4rem 1rem;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:100px;
  color:var(--white);
  font-size:0.875rem;
  font-weight:500;
}

/* --- Buttons ----------------------------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:0.5rem;
  padding:0.8rem 1.75rem;
  font-family:var(--font-body);
  font-size:1rem;
  font-weight:600;
  letter-spacing:0.01em;
  border:none;
  border-radius:24px;
  cursor:pointer;
  text-decoration:none;
  transition:background var(--dur) var(--ease),color var(--dur) var(--ease),transform 0.15s var(--ease),box-shadow var(--dur) var(--ease);
}
.btn:hover{transform:translateY(-1px)}

.btn--primary{
  background:var(--terracotta);
  color:var(--white);
}
.btn--primary:hover{background:var(--terracotta-hover);color:var(--white);box-shadow:0 4px 16px rgba(196,120,91,0.3)}

.btn--secondary{
  background:transparent;
  color:var(--white);
  border:2px solid rgba(255,255,255,0.4);
}
.btn--secondary:hover{border-color:var(--white);color:var(--white)}

.btn--outline{
  background:transparent;
  color:var(--forest);
  border:2px solid var(--forest);
}
.btn--outline:hover{background:var(--forest);color:var(--white)}

.btn--dark{
  background:var(--forest);
  color:var(--white);
}
.btn--dark:hover{background:var(--forest-dark);color:var(--white);box-shadow:0 4px 16px rgba(44,95,74,0.3)}

.btn-group{display:flex;gap:1rem;flex-wrap:wrap}

/* --- Trust Bar --------------------------------------------- */
.trust-bar{
  background:var(--forest);
  padding:1rem 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.trust-bar__inner{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:1rem 2.5rem;
}
.trust-bar__item{
  font-size:0.875rem;
  font-weight:500;
  color:rgba(255,255,255,0.8);
  letter-spacing:0.02em;
  display:flex;
  align-items:center;
  gap:0.5rem;
}
.trust-bar__dot{
  width:5px;height:5px;
  border-radius:50%;
  background:var(--gold);
  flex-shrink:0;
}

/* --- Cards ------------------------------------------------- */
.card{
  background:var(--white);
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 2px 20px rgba(0,0,0,0.04);
  transition:transform var(--dur) var(--ease),box-shadow var(--dur) var(--ease);
}
.card:hover{transform:translateY(-3px);box-shadow:0 8px 30px rgba(0,0,0,0.07)}
.card__img{
  aspect-ratio:4/3;
  object-fit:cover;
  width:100%;
}
.card__body{padding:1.5rem}
.card__title{margin-bottom:0.5rem}/* overrides global h3 for tighter card spacing */
.card__price{
  font-family:var(--font-heading);
  font-weight:700;
  color:var(--forest);
  font-size:1.125rem;
}
.card__meta{font-size:0.875rem;color:var(--grey);margin-top:0.25rem}

/* Feature card (large, horizontal on desktop) */
.feature-card{
  display:grid;
  grid-template-columns:1fr;
  background:var(--white);
  border-radius:10px;
  overflow:hidden;
}
.feature-card__img{aspect-ratio:16/9;object-fit:cover;width:100%}
.feature-card__body{padding:2rem;display:flex;flex-direction:column;justify-content:center}
.feature-card__body h3{margin-bottom:0.75rem}
.feature-card__body p{margin-bottom:1.25rem;color:var(--grey)}

@media(min-width:768px){
  .feature-card{grid-template-columns:1fr 1fr}
  .feature-card__img{aspect-ratio:auto;height:100%}
}

/* --- Testimonials ------------------------------------------ */
.testimonial{
  background:var(--white);
  border-radius:12px;
  padding:2rem;
  position:relative;
  box-shadow:0 2px 20px rgba(0,0,0,0.04);
}
.testimonial::before{
  content:'\201C';
  font-family:var(--font-heading);
  font-size:4rem;
  color:var(--forest-light);
  position:absolute;
  top:0.5rem;left:1.25rem;
  line-height:1;
}
.testimonial__text{
  font-size:clamp(1rem,2.5vw,1.125rem);
  line-height:1.7;
  color:var(--charcoal);
  margin-bottom:1.25rem;
  font-style:italic;
}
.testimonial__author{
  font-weight:600;
  font-size:0.9375rem;
  color:var(--forest);
}
.testimonial--featured{
  background:var(--forest);
  color:var(--white);
  padding:2.5rem;
}
.testimonial--featured::before{color:rgba(255,255,255,0.1)}
.testimonial--featured .testimonial__text{color:rgba(255,255,255,0.9)}
.testimonial--featured .testimonial__author{color:var(--gold)}

/* Stars */
.stars{color:var(--gold);font-size:1.125rem;letter-spacing:0.1em;margin-bottom:0.75rem}

/* --- FAQ Accordion ----------------------------------------- */
.faq-item{
  border-bottom:1px solid var(--border);
}
.faq-item:first-child{border-top:1px solid var(--border)}
.faq-question{
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
  padding:1.25rem 0;
  background:none;
  border:none;
  cursor:pointer;
  font-family:var(--font-body);
  font-size:clamp(1rem,2.5vw,1.125rem);
  font-weight:600;
  color:var(--charcoal);
  text-align:left;
  line-height:1.4;
}
.faq-question:hover{color:var(--forest)}
.faq-icon{
  flex-shrink:0;
  width:24px;height:24px;
  position:relative;
  margin-left:1rem;
}
.faq-icon::before,.faq-icon::after{
  content:'';
  position:absolute;
  background:var(--forest);
  border-radius:2px;
  transition:transform var(--dur) var(--ease);
}
.faq-icon::before{width:14px;height:2px;top:11px;left:5px}
.faq-icon::after{width:2px;height:14px;top:5px;left:11px}
.faq-item.open .faq-icon::after{transform:rotate(90deg)}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s var(--ease),padding 0.4s var(--ease);
}
.faq-item.open .faq-answer{max-height:500px}
.faq-answer__inner{
  padding:0 0 1.5rem;
  color:var(--grey);
  line-height:1.7;
}
.faq-answer__inner p+p{margin-top:0.75em}

/* --- Breadcrumb -------------------------------------------- */
.breadcrumb{
  padding:1rem 0;
  font-size:0.8125rem;
  color:var(--grey);
}
.breadcrumb ol{display:flex;flex-wrap:wrap;gap:0.25rem;list-style:none}
.breadcrumb li+li::before{content:'>';margin-right:0.25rem;color:var(--border)}
.breadcrumb a{color:var(--grey);text-decoration:none}
.breadcrumb a:hover{color:var(--forest)}
.breadcrumb__current{color:var(--charcoal);font-weight:500}

/* --- Footer ------------------------------------------------ */
.footer{
  background:var(--forest-dark);
  color:rgba(255,255,255,0.75);
  padding:var(--space-lg) 0 var(--space-md);
}
.footer__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:var(--space-md);
  margin-bottom:var(--space-lg);
}
.footer h4{
  font-family:var(--font-heading);
  color:var(--white);
  font-size:1.125rem;
  margin-bottom:1rem;
}
.footer__brand{
  font-family:var(--font-heading);
  font-size:1.375rem;
  font-weight:700;
  color:var(--white);
  margin-bottom:0.75rem;
}
.footer__tagline{font-size:0.9375rem;margin-bottom:1.25rem;max-width:30ch}
.footer__social{display:flex;gap:1rem}
.footer__social a{
  color:rgba(255,255,255,0.6);
  transition:color var(--dur) var(--ease);
  font-size:0.875rem;
  font-weight:500;
}
.footer__social a:hover{color:var(--white)}
.footer__links{list-style:none}
.footer__links li+li{margin-top:0.5rem}
.footer__links a{
  color:rgba(255,255,255,0.65);
  font-size:0.9375rem;
  text-decoration:none;
  transition:color var(--dur) var(--ease);
}
.footer__links a:hover{color:var(--white)}
.footer__contact p{font-size:0.9375rem;margin-bottom:0.4rem}
.footer__contact a{color:rgba(255,255,255,0.75)}
.footer__contact a:hover{color:var(--white)}
.footer__bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:1.5rem;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:0.75rem;
  font-size:0.8125rem;
  color:rgba(255,255,255,0.45);
}
.footer__bottom a{color:rgba(255,255,255,0.45);text-decoration:none}
.footer__bottom a:hover{color:rgba(255,255,255,0.75)}

@media(min-width:768px){
  .footer__grid{grid-template-columns:1.4fr 1fr 1.2fr}
}

/* --- Booking Section --------------------------------------- */
.booking-section{
  background:var(--linen);
  border-radius:10px;
  padding:var(--space-md);
  margin-top:var(--space-md);
}
.booking-section h3{margin-bottom:0.75rem}
.booking-section__iframe{
  width:100%;
  height:700px;
  border:none;
  border-radius:8px;
  overflow:hidden;
}

/* --- CTA Banner -------------------------------------------- */
.cta-banner{
  background:var(--forest);
  padding:var(--space-lg) 0;
  text-align:center;
}
.cta-banner h2{color:var(--white)}
.cta-banner p{color:rgba(255,255,255,0.8);margin:0 auto 2rem;max-width:50ch}
.cta-banner .btn{font-size:1.125rem;padding:1rem 2.5rem}

/* --- Related Treatments ------------------------------------ */
.related{
  padding:var(--space-lg) 0;
  border-top:1px solid var(--border);
  margin-top:var(--space-lg);
}
.related h3{margin-bottom:var(--space-md)}

/* --- Map --------------------------------------------------- */
.map-embed{
  border-radius:10px;
  overflow:hidden;
  aspect-ratio:16/9;
  max-height:400px;
}
.map-embed iframe{width:100%;height:100%;border:none}

/* --- Content Sections -------------------------------------- */
.content{max-width:var(--content-w)}
.content h3{margin-top:2.5rem}
.content p{margin-bottom:1.25rem}
.content ul,.content ol{margin-bottom:1.25rem;padding-left:1.5rem}
.content li{margin-bottom:0.5rem;line-height:1.7}
.content ul li{list-style:disc}
.content ol li{list-style:decimal}

/* Callout box */
.callout{
  background:var(--forest-light);
  border-left:4px solid var(--forest);
  padding:1.5rem 2rem;
  border-radius:0 8px 8px 0;
  margin:2rem 0;
}
.callout p{margin:0;color:var(--charcoal)}

/* Treatment info box */
.treatment-info{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:10px;
  padding:2rem;
  margin:2rem 0;
}
.treatment-info__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:1rem;
}
.treatment-info__price{
  font-family:var(--font-heading);
  font-size:2rem;
  font-weight:700;
  color:var(--forest);
}
.treatment-info__duration{
  font-size:1rem;
  color:var(--grey);
  font-weight:500;
}
.treatment-info__note{
  margin-top:0.75rem;
  font-size:0.875rem;
  color:var(--grey);
}

/* --- Scroll animations ------------------------------------- */
.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity 0.8s var(--ease),transform 0.8s var(--ease);
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* Stagger children */
.stagger .reveal:nth-child(2){transition-delay:0.1s}
.stagger .reveal:nth-child(3){transition-delay:0.2s}
.stagger .reveal:nth-child(4){transition-delay:0.3s}

/* --- Sticky Mobile CTA ------------------------------------- */
.mobile-cta{
  display:flex;
  position:fixed;
  bottom:0;left:0;right:0;
  background:var(--forest);
  padding:0.75rem 1.25rem;
  z-index:998;
  box-shadow:0 -4px 20px rgba(0,0,0,0.15);
  justify-content:center;
  gap:0.75rem;
  transform:translateY(100%);
  transition:transform var(--dur) var(--ease);
}
.mobile-cta.visible{transform:translateY(0)}
.mobile-cta a{
  flex:1;
  text-align:center;
  padding:0.75rem;
  border-radius:24px;
  font-weight:600;
  font-size:0.9375rem;
  text-decoration:none;
}
.mobile-cta__book{background:var(--terracotta);color:var(--white)}
.mobile-cta__call{background:transparent;color:var(--white);border:1.5px solid rgba(255,255,255,0.3)}

@media(min-width:1024px){
  .mobile-cta{display:none}
}

/* --- Service Listing (Treatments page) --------------------- */
.treatment-list__item{
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
  padding:2rem 0;
  border-bottom:1px solid var(--border);
  align-items:center;
}
.treatment-list__item:first-child{border-top:1px solid var(--border)}
.treatment-list__detail h3{margin-bottom:0.5rem}
.treatment-list__detail p{color:var(--grey);margin-bottom:0.75rem}
.treatment-list__price-row{
  display:flex;
  align-items:center;
  gap:1.5rem;
  flex-wrap:wrap;
}

@media(min-width:768px){
  .treatment-list__item{grid-template-columns:200px 1fr auto;gap:2rem}
  .treatment-list__img{border-radius:8px;aspect-ratio:4/3;object-fit:cover;width:100%}
}

/* --- Privacy / Terms pages --------------------------------- */
.legal{padding-top:8rem}
.legal .content h2{margin-top:2.5rem}
.legal .content h2:first-child{margin-top:0}

/* --- Misc -------------------------------------------------- */
.sr-only{
  position:absolute;width:1px;height:1px;
  padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* No bottom margin when followed by CTA banner */
.section + .cta-banner{margin-top:0}

/* Booking iframe responsive */
@media(max-width:640px){
  .booking-section__iframe{height:600px}
}

/* --- Mobile polish (375px) --------------------------------- */
@media(max-width:480px){
  .btn-group{flex-direction:column}
  .btn-group .btn{width:100%;justify-content:center;min-height:48px}
  .hero__content{padding:6rem 0 3rem}
  .hero--service .hero__content{padding:6rem 1.25rem 2.5rem}
  .section{padding:3.5rem 0}
  .section--lg{padding:4rem 0}
  .treatment-info__row{flex-direction:column;align-items:flex-start}
  .cta-banner .btn{width:100%;justify-content:center}
  .footer__bottom{flex-direction:column;text-align:center}
  .nav__dropdown-menu{min-width:calc(100vw - 2.5rem);left:auto;right:-1rem;transform:none}
}

/* Print */
@media print{
  .nav,.mobile-cta,.footer{display:none}
  body{background:#fff;color:#000;font-size:12pt}
  .hero{min-height:auto;padding:2rem 0}
}
