/* ============================================================
   SIAM IVORY SPA — Stylesheet (Spa Sway direction)
   Light, warm, editorial. Full-bleed photo sections.
   Colors: Cream #F5EFE8 | Warm beige #EDE3D8 | Sand #DDD0BE
           Deep brown #2A1F16 | Gold #B8924A | Warm white #FAF7F3
   Fonts: Cormorant Garamond (display) | Lato (body)
============================================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F5EFE8;
  --warm-white: #FAF7F3;
  --beige:      #EDE3D8;
  --sand:       #DDD0BE;
  --brown:      #2A1F16;
  --brown-mid:  #5C4535;
  --gold:       #B8924A;
  --gold-light: #CCA85E;
  --gold-pale:  #E8D4A8;
  --sage:       #8A9472;
  --text:       #2A1F16;
  --text-muted: #7A6554;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 9rem;

  --max-w: 1200px;
  --max-w-narrow: 720px;

  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* UTILITIES */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container--narrow { max-width: var(--max-w-narrow); }

.container--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.container--split-reverse { direction: rtl; }
.container--split-reverse > * { direction: ltr; }

.text-center { text-align: center; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: var(--space-md);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  line-height: 1.85;
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border: 1.5px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: #857872;
  color: var(--warm-white);
  border-color: #857872;
}
.btn--gold:hover { background: #726560; border-color: #726560; }

.btn--brown {
  background: var(--brown);
  color: var(--warm-white);
  border-color: var(--brown);
}
.btn--brown:hover { background: var(--brown-mid); border-color: var(--brown-mid); }

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover { background: var(--gold); color: var(--warm-white); }

.btn--outline-brown {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn--outline-brown:hover { background: var(--brown); color: var(--warm-white); }

.btn--stone {
  background: #857872;
  color: var(--warm-white);
  border-color: #857872;
}
.btn--stone:hover { background: #726560; border-color: #726560; }

.btn--outline-light {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(250,247,243,0.6);
}
.btn--outline-light:hover {
  background: rgba(250,247,243,0.1);
  border-color: var(--warm-white);
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  animation: fadeIn 1.4s ease 0.3s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

/* ============================================================
   NAV — minimal, transparent over hero
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition),
              box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(210, 202, 190, 0.97);
  border-bottom-color: rgba(184,146,74,0.15);
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  backdrop-filter: blur(8px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1.6rem 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}

/* SS mark icon */
.nav__mark {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* White mark over hero, dark mark when scrolled (light nude bg) */
.nav__mark--light { display: block; }
.nav__mark--dark  { display: none; }
.nav.scrolled .nav__mark--light { display: none; }
.nav.scrolled .nav__mark--dark  { display: block; }

/* Wordmark text beside the mark */
.nav__wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__wordmark-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--warm-white);
  line-height: 1;
  transition: color var(--transition);
}

.nav.scrolled .nav__wordmark-name { color: var(--brown); }

.nav__wordmark-tag {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.nav__links {
  display: flex;
  gap: 2.2rem;
}

.nav__links a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,243,0.8);
  transition: color var(--transition);
}

.nav.scrolled .nav__links a { color: var(--brown); }
.nav__links a:hover,
.nav.scrolled .nav__links a:hover { color: var(--gold); }

.nav__cta { margin-left: 1rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--warm-white);
  transition: var(--transition);
}

.nav.scrolled .nav__hamburger span { background: var(--brown); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--warm-white);
  border-top: 1px solid rgba(184,146,74,0.15);
  padding: 1rem 1.5rem 1.5rem;
}

.nav__mobile a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(42,31,22,0.07);
  transition: color var(--transition);
}

.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .btn { margin-top: 1rem; text-align: center; }
.nav__mobile.is-open { display: flex; }

/* ============================================================
   HERO — real full-bleed photo with overlay
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(42, 31, 22, 0.68) 0%,
    rgba(42, 31, 22, 0.40) 55%,
    rgba(42, 31, 22, 0.15) 100%
  );
}

/* Ember particle canvas */
#ember-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: calc(var(--space-2xl) + 2rem) 1.5rem var(--space-2xl);
  width: 100%;
}

.hero__eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--warm-white);
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  max-width: 14ch;
}

.hero__sub {
  font-size: 1rem;
  color: rgba(250,247,243,0.72);
  max-width: 50ch;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,243,0.45);
}

.hero__trust .dot { color: var(--gold); opacity: 0.6; }

/* ============================================================
   INTRO — warm white, centered
============================================================ */
.intro {
  padding: var(--space-2xl) 1.5rem;
  text-align: center;
  background: var(--warm-white);
}

.intro__body {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.95;
  margin-bottom: 1.25rem;
  max-width: 58ch;
  margin-inline: auto;
}

.intro__divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: var(--space-lg) auto 0;
  opacity: 0.5;
}

/* ============================================================
   PILLARS — light cream cards with photos
============================================================ */
.pillars {
  padding: var(--space-xl) 1.5rem;
  background: var(--cream);
}

.pillars .section-label,
.pillars .section-headline { text-align: center; }

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

.pillar-card {
  background: var(--warm-white);
  border: 1px solid rgba(184,146,74,0.12);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(42,31,22,0.08);
  border-color: rgba(184,146,74,0.3);
}

.pillar-card__img-wrap {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.pillar-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.pillar-card:hover .pillar-card__img { transform: scale(1.04); }

.pillar-card__body-wrap {
  padding: var(--space-md);
}

.pillar-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.pillar-card__body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ============================================================
   SERVICES — warm beige grid with photos
============================================================ */
.services {
  padding: var(--space-2xl) 1.5rem;
  background: var(--beige);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--space-lg);
}

.service-card {
  background: var(--warm-white);
  overflow: hidden;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(42,31,22,0.08);
}

.service-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.service-card:hover .service-card__img { transform: scale(1.04); }

.service-card__content {
  padding: 1.75rem 1.75rem 1.5rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.service-card__body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.service-card__link {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition), letter-spacing var(--transition);
}

.service-card__link:hover { color: var(--brown); letter-spacing: 0.18em; }

.services__cta { text-align: center; }

/* ============================================================
   DIFFERENCE — real full-bleed photo section
============================================================ */
.difference {
  position: relative;
  padding: var(--space-2xl) 1.5rem;
  overflow: hidden;
  background: var(--brown);
}

.difference__bg {
  position: absolute;
  inset: 0;
}

.difference__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.difference__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(42, 31, 22, 0.78) 0%,
    rgba(42, 31, 22, 0.45) 60%,
    rgba(42, 31, 22, 0.25) 100%
  );
}

.difference .container--split { position: relative; z-index: 1; }

.difference .section-label { color: var(--gold-light); }
.difference .section-headline { color: var(--warm-white); }

.difference__body {
  font-size: 1rem;
  color: rgba(250,247,243,0.68);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.difference__body:last-of-type { margin-bottom: var(--space-md); }

/* Right-side visual (empty space — photo shows through overlay) */
.difference__side {
  aspect-ratio: 4/5;
  opacity: 0;  /* purely structural — shows through the bg photo */
}

/* Cursor aura — warm glow that follows mouse within this section */
.difference__cursor-aura {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,74,0.18) 0%, rgba(184,146,74,0.06) 45%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
  opacity: 0;
  z-index: 2;
  mix-blend-mode: screen;
  will-change: transform;
}
.difference:hover .difference__cursor-aura { opacity: 1; }

/* Headline shimmer on scroll-in — only activates when JS adds class */
.difference .section-headline.shimmer-active {
  background: linear-gradient(
    90deg,
    var(--warm-white) 0%,
    var(--warm-white) 30%,
    rgba(232,193,112,0.95) 48%,
    var(--warm-white) 66%,
    var(--warm-white) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: headlineShimmer 1.8s ease forwards;
}

@keyframes headlineShimmer {
  0%   { background-position: 210% center; }
  100% { background-position: -10% center; }
}

/* Photo parallax: smooth movement via JS transform */
.difference__img {
  transform: scale(1.06);
  transition: transform 0.12s linear;
  will-change: transform;
}

/* ============================================================
   RITUALS — warm white, centered
============================================================ */
.rituals {
  padding: var(--space-2xl) 1.5rem;
  background: var(--warm-white);
}

.neighborhood {
  background: var(--beige);
  padding: var(--space-xl) 1.5rem;
}
.neighborhood__body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 62ch;
  margin: 1.25rem auto 2rem;
}
.neighborhood__body strong {
  color: var(--brown);
  font-weight: 600;
}

.rituals__body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.rituals__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--sand);
  color: var(--text-muted);
  border-radius: 100px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.tag:hover {
  background: var(--gold);
  color: var(--warm-white);
  border-color: var(--gold);
}

/* ============================================================
   REVIEWS — cream with warm cards
============================================================ */
.reviews {
  padding: var(--space-2xl) 1.5rem;
  background: var(--cream);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--space-lg);
}

.review-card {
  background: var(--warm-white);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  border: 1px solid rgba(184,146,74,0.1);
}

.review-card__stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.review-card__text {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--brown);
  margin-bottom: 1.25rem;
}

.review-card__author {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reviews__cta { text-align: center; }

/* ============================================================
   FIRST VISIT — real full-bleed photo section
============================================================ */
.first-visit {
  position: relative;
  padding: var(--space-2xl) 1.5rem;
  overflow: hidden;
  background: var(--brown-mid);
}

.first-visit__bg {
  position: absolute;
  inset: 0;
}

.first-visit__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.first-visit__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(42, 31, 22, 0.72) 0%,
    rgba(42, 31, 22, 0.4) 50%,
    rgba(42, 31, 22, 0.22) 100%
  );
}

.first-visit .container--split { position: relative; z-index: 1; }

.first-visit .section-label { color: var(--gold-light); }
.first-visit .section-headline { color: var(--warm-white); }

.first-visit__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: var(--space-md);
}

.first-visit__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: rgba(250,247,243,0.72);
  line-height: 1.6;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.first-visit__text.is-visible .first-visit__list li { opacity: 1; transform: translateX(0); }
.first-visit__text.is-visible .first-visit__list li:nth-child(1) { transition-delay: 0.10s; }
.first-visit__text.is-visible .first-visit__list li:nth-child(2) { transition-delay: 0.20s; }
.first-visit__text.is-visible .first-visit__list li:nth-child(3) { transition-delay: 0.30s; }
.first-visit__text.is-visible .first-visit__list li:nth-child(4) { transition-delay: 0.40s; }
.first-visit__text.is-visible .first-visit__list li:nth-child(5) { transition-delay: 0.50s; }
.first-visit__text.is-visible .first-visit__list li:nth-child(6) { transition-delay: 0.60s; }

.list-icon {
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.38rem;
  flex-shrink: 0;
}

/* Left-side visual spacer */
.first-visit__visual {
  aspect-ratio: 4/5;
  opacity: 0;
}

/* Photo parallax */
.first-visit__img {
  transform: scale(1.06);
  transition: transform 0.12s linear;
  will-change: transform;
}

/* Cursor aura */
.first-visit__cursor-aura {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,74,0.16) 0%, rgba(184,146,74,0.05) 45%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
  opacity: 0;
  z-index: 2;
  mix-blend-mode: screen;
  will-change: transform;
}
.first-visit:hover .first-visit__cursor-aura { opacity: 1; }

/* Headline shimmer */
.first-visit .section-headline.shimmer-active {
  background: linear-gradient(
    90deg,
    var(--warm-white) 0%,
    var(--warm-white) 30%,
    rgba(232,193,112,0.95) 48%,
    var(--warm-white) 66%,
    var(--warm-white) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: headlineShimmer 1.8s ease forwards;
}

/* ============================================================
   GIFT CARDS — warm beige with real photo
============================================================ */
.gift-cards {
  padding: var(--space-2xl) 1.5rem;
  background: var(--beige);
}

.gift-cards__body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.gift-cards__img-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}

.gift-cards__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.gift-cards__img-wrap:hover .gift-cards__img { transform: scale(1.03); }

/* ============================================================
   FINAL CTA — real full-bleed photo
============================================================ */
.final-cta {
  padding: var(--space-2xl) 1.5rem;
  background: var(--brown);
  position: relative;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
}

.final-cta__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 31, 22, 0.68);
}

.final-cta .container--narrow { position: relative; z-index: 1; }

.final-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
}

.final-cta__sub {
  font-size: 1rem;
  color: rgba(250,247,243,0.58);
  line-height: 1.9;
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #1E1510;
  padding: var(--space-xl) 1.5rem var(--space-md);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(250,247,243,0.07);
}

.footer__logo {
  margin-bottom: 0.75rem;
}

.footer__logo img {
  height: 200px;
  width: auto;
}

.footer__tagline {
  font-size: 0.78rem;
  color: rgba(250,247,243,0.38);
  line-height: 1.8;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer__nav a {
  font-size: 0.83rem;
  color: rgba(250,247,243,0.45);
  transition: color var(--transition);
}

.footer__nav a:hover { color: var(--warm-white); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__contact .footer__nav-title { margin-bottom: 0.25rem; }

.footer__contact p {
  font-size: 0.83rem;
  color: rgba(250,247,243,0.45);
}

.footer__phone {
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: 0.25rem;
  transition: color var(--transition);
}

.footer__phone:hover { color: var(--gold-light); }

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.footer__social a {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,243,0.3);
  transition: color var(--transition);
}

.footer__social a:hover { color: var(--gold); }

.footer__bottom {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(250,247,243,0.22);
}

/* ============================================================
   STICKY MOBILE BAR
============================================================ */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--warm-white);
  border-top: 1px solid var(--sand);
}

.sticky-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--transition);
}

.sticky-bar__btn--call {
  color: var(--brown);
  border-right: 1px solid var(--sand);
}

.sticky-bar__btn--call:hover { background: var(--cream); }

.sticky-bar__btn--book {
  background: #857872;
  color: var(--warm-white);
}

.sticky-bar__btn--book:hover { background: #726560; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .pillars__grid { grid-template-columns: 1fr 1fr; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__headline { font-size: clamp(2.6rem, 10vw, 4rem); }
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(42,31,22,0.55) 0%,
      rgba(42,31,22,0.7) 100%
    );
  }

  .pillars__grid { grid-template-columns: 1fr; gap: 1rem; }
  .services__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }

  .container--split {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .container--split-reverse { direction: ltr; }

  /* Hide decorative spacer divs on mobile */
  .difference__side,
  .first-visit__visual { display: none; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-md); }

  .sticky-bar { display: flex; }
  body { padding-bottom: 60px; }
  .section-sub { max-width: 100%; }
}

@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }

  /* --- NAV: tighter and smaller logo --- */
  .nav__inner { padding: 1rem 1rem; }
  .nav__mark  { height: 40px; }
  .nav__wordmark-name { font-size: 1.1rem; }

  /* --- CONTAINER: tighter horizontal padding --- */
  .container { padding-inline: 1.25rem; }

  /* --- SECTION TYPOGRAPHY --- */
  .section-headline { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .section-sub      { font-size: 0.9rem; margin-bottom: 2rem; }

  /* --- PAGE HERO (inner pages): reduce height and font --- */
  .page-hero              { min-height: 38vh; padding-bottom: 2.5rem; }
  .page-hero__headline    { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .page-hero__sub         { font-size: 0.88rem; }
  /* Hide dot separators in page hero trust row */
  .page-hero__trust .dot  { display: none; }

  /* --- HOMEPAGE HERO: tighter content padding --- */
  .hero__content { padding-top: 7rem; padding-bottom: 4.5rem; }
  .hero__sub     { font-size: 0.9rem; }
  /* Hide decorative divider between hero trust items */
  .hero__trust-divider { display: none; }

  /* --- SECTION SPACING: cut all large section padding roughly in half --- */
  .intro        { padding: 3.5rem 1.25rem; }
  .pillars      { padding: 3rem   1.25rem; }
  .services     { padding: 3.5rem 1.25rem; }
  .difference   { padding: 3.5rem 1.25rem; }
  .rituals      { padding: 3.5rem 1.25rem; }
  .neighborhood { padding: 3rem   1.25rem; }
  .reviews      { padding: 3.5rem 1.25rem; }
  .first-visit  { padding: 3.5rem 1.25rem; }
  .gift-cards   { padding: 3.5rem 1.25rem; }
  .final-cta    { padding: 3.5rem 1.25rem; }
  .faq          { padding: 3rem   1.25rem; }
  .svc-intro    { padding: 3rem   1.25rem; }

  /* --- PROOF BAR: smaller numbers --- */
  .proof-bar        { padding: 2rem 1.25rem; }
  .proof-bar__number { font-size: 1.9rem; }

  /* --- FINAL CTA headline --- */
  .final-cta__headline { font-size: clamp(1.8rem, 8vw, 2.8rem); }

  /* --- CARDS: tighter padding --- */
  .service-card__content  { padding: 1.25rem; }
  .service-card__title    { font-size: 1.35rem; }
  .pillar-card__body-wrap { padding: 1.25rem; }
  .pillar-card__title     { font-size: 1.3rem; }
  .review-card            { padding: 1.5rem 1.25rem 1.75rem; }
  .review-card__text      { font-size: 0.95rem; }
}

/* ============================================================
   FOCUS / ACCESSIBILITY
============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   NAV PHONE
============================================================ */
.nav__phone {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(250,247,243,0.85);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__phone:hover { color: var(--gold-light); }
.nav.scrolled .nav__phone { color: var(--brown-mid); }
.nav.scrolled .nav__phone:hover { color: var(--gold); }
@media (max-width: 900px) { .nav__phone { display: none; } }

/* ============================================================
   HERO GOOGLE BADGE
============================================================ */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  padding: 6px 14px 6px 10px;
  text-decoration: none;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.hero__google-badge:hover { background: rgba(255,255,255,0.2); }
.hero__google-icon { width: 18px; height: 18px; flex-shrink: 0; }
.hero__google-stars { color: #FBBC05; font-size: 0.85rem; letter-spacing: 1px; }
.hero__google-text { font-size: 0.78rem; color: rgba(255,255,255,0.9); font-family: var(--font-body); }
.hero__google-text strong { color: #fff; }
.hero__trust-divider { color: rgba(255,255,255,0.3); font-size: 0.9rem; }
.hero__trust-item { font-size: 0.72rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

/* ============================================================
   PROOF BAR
============================================================ */
.proof-bar {
  background: var(--brown);
  padding: 2.5rem 0;
}
.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.proof-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.proof-bar__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: 0.02em;
}
.proof-bar__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,247,243,0.55);
}
.proof-bar__divider {
  width: 1px;
  height: 48px;
  background: rgba(250,247,243,0.1);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .proof-bar__inner { flex-wrap: wrap; gap: 1.5rem; }
  .proof-bar__divider { display: none; }
  .proof-bar__item { flex: 0 0 45%; }
}

/* ============================================================
   REVIEWS UPGRADE
============================================================ */
.reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.reviews__header .section-headline { margin-bottom: 0; }
.reviews__google-score {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 10px 18px;
  flex-shrink: 0;
}
.reviews__google-logo { width: 22px; height: 22px; }
.reviews__score-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1;
}
.reviews__score-stars { color: #FBBC05; font-size: 0.9rem; letter-spacing: 2px; line-height: 1.2; }
.reviews__score-count { font-size: 0.7rem; color: var(--text-muted); font-family: var(--font-body); }
.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.review-card__google { opacity: 0.7; }
@media (max-width: 768px) {
  .reviews__header { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   FAQ SECTION
============================================================ */
.faq {
  background: var(--cream);
  padding: var(--space-xl) 0;
}
.faq__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--sand);
}
.faq__item {
  border-bottom: 1px solid var(--sand);
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brown);
  list-style: none;
  gap: 1rem;
  transition: color var(--transition);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item[open] .faq__question::after { transform: rotate(45deg); }
.faq__item[open] .faq__question { color: var(--gold); }
.faq__answer {
  padding: 0 0 1.4rem 0;
}
.faq__answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 620px;
}
.faq__answer a { color: var(--gold); text-decoration: underline; }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(42,31,22,0.85) 0%,
    rgba(42,31,22,0.45) 55%,
    rgba(42,31,22,0.2) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
  width: 100%;
}
.page-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.page-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 1rem;
}
.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(250,247,243,0.8);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.page-hero__trust {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,243,0.6);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.page-hero__trust .dot { color: var(--gold); }

/* ============================================================
   SERVICE INTRO
============================================================ */
.svc-intro {
  background: var(--warm-white);
  padding: var(--space-xl) 0 var(--space-lg);
}
.svc-intro__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 620px;
  margin-inline: auto;
}
.svc-intro__divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 2.5rem auto 0;
}

/* ============================================================
   SERVICE ROWS
============================================================ */
.svc-list {
  background: var(--warm-white);
  padding-bottom: var(--space-xl);
}

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
  gap: 5rem;
  align-items: center;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.svc-row--flip { direction: rtl; }
.svc-row--flip > * { direction: ltr; }

.svc-row__img-wrap {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 2px;
  flex-shrink: 0;
}
.svc-row__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}
.svc-row__img-wrap:hover .svc-row__img { transform: scale(1.03); }

.svc-row__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-row__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.svc-row__desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.svc-row__pricing {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.svc-price-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 0.6rem 1.1rem;
  background: var(--cream);
  min-width: 80px;
}
.svc-price-chip__duration {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.svc-price-chip__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1;
}

.svc-row__book {
  align-self: flex-start;
  padding: 0.9rem 2.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.svc-row__divider {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
  height: 1px;
  background: var(--beige);
}

/* ============================================================
   ADD-ONS SECTION
============================================================ */
.addons {
  background: var(--beige);
  padding: var(--space-xl) 0;
}
.addons__header { margin-bottom: 3rem; }
.addons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.addon-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.addon-card:hover {
  box-shadow: 0 8px 32px rgba(42,31,22,0.08);
  transform: translateY(-2px);
}
.addon-card__icon {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.addon-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.addon-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.2;
}

.addon-card__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.addon-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.addons__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.03em;
}

/* ============================================================
   SERVICES PAGE RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .svc-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
  }
  .svc-row--flip { direction: ltr; }
  .svc-row__img-wrap { height: 320px; }
  .addons__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .page-hero { min-height: 50vh; padding-bottom: 3rem; }
  .svc-row__img-wrap { height: 260px; }
  .addons__grid { grid-template-columns: 1fr; }
  .svc-row__pricing { gap: 0.5rem; }
}

/* ============================================================
   FOOTER BADGES
============================================================ */
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0.75rem;
}
.footer__badge {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,243,0.6);
  border: 1px solid rgba(184,146,74,0.3);
  border-radius: 50px;
  padding: 4px 10px;
}

/* ============================================================
   PROOF BAR BADGE PILLS
============================================================ */
.proof-bar__badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
.proof-bar__badge-pill {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(184,146,74,0.4);
  border-radius: 50px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* ============================================================
   MOBILE — COMPREHENSIVE PASS
   Targets 768px and 480px (most phone widths)
============================================================ */

/* ── Nav mobile menu ─────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__mobile a {
    font-size: 0.85rem;
    padding: 1rem 0;
  }
  .nav__mobile .btn {
    margin-top: 1.25rem;
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }
}

/* ── Homepage hero ───────────────────────────────────────── */
@media (max-width: 768px) {
  .hero__content { padding-bottom: 2rem; }
  .hero__eyebrow { font-size: 0.6rem; }
  .hero__sub {
    font-size: 0.95rem;
    max-width: 100%;
    line-height: 1.7;
  }
  .hero__trust { gap: 0.6rem; }
  .hero__trust-divider { display: none; }
  .hero__actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  .hero__actions .btn {
    text-align: center;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
}

/* ── Proof bar ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .proof-bar { padding: 2rem 0; }
  .proof-bar__inner { gap: 1.5rem 0; }
  .proof-bar__number { font-size: 1.9rem; }
  .proof-bar__item { flex: 0 0 50%; }
}

/* ── Section spacing — tighter on phone ─────────────────── */
@media (max-width: 768px) {
  .pillars,
  .services,
  .reviews,
  .faq,
  .addons,
  .svc-intro,
  .svc-list     { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .difference,
  .first-visit  { padding: 3.5rem 0; min-height: unset; }
}

/* ── Difference section mobile ───────────────────────────── */
@media (max-width: 768px) {
  .difference .container--split,
  .first-visit .container--split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .difference__text,
  .first-visit__text {
    padding: 0 1.5rem;
  }
  .first-visit__text .btn,
  .difference__text .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .difference__text .section-label,
  .first-visit__text .section-label { text-align: left; }
  .difference__text .section-headline,
  .first-visit__text .section-headline {
    font-size: clamp(2rem, 8vw, 3rem);
    text-align: left;
  }
  .difference__list li,
  .first-visit__list li { font-size: 0.9rem; }
}

/* ── Services grid (homepage cards) ─────────────────────── */
@media (max-width: 768px) {
  .services__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .service-card { min-height: unset; }
  .service-card__body { padding: 1.5rem; }
}

/* ── Service rows (services page) ───────────────────────── */
@media (max-width: 768px) {
  .svc-row {
    gap: 1.75rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .svc-row__title { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .svc-row__desc { font-size: 0.9rem; line-height: 1.75; }
  .svc-row__book {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .svc-price-chip {
    padding: 0.5rem 0.85rem;
    min-width: 70px;
  }
  .svc-price-chip__price { font-size: 1.25rem; }
}

/* ── Add-ons section ─────────────────────────────────────── */
@media (max-width: 768px) {
  .addons__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .addon-card { padding: 1.25rem; }
  .addon-card__name { font-size: 1.05rem; }
  .addon-card__price { font-size: 0.95rem; }
  .addon-card__desc { font-size: 0.82rem; }
}

/* ── Final CTA (dark section) ────────────────────────────── */
@media (max-width: 768px) {
  .final-cta { padding: 5rem 1.5rem; }
  .final-cta__headline { font-size: clamp(2rem, 8vw, 3rem); }
  .final-cta__sub { font-size: 0.85rem; padding: 0 0.5rem; }
  .final-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ── Reviews ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .reviews__google-score { align-self: flex-start; }
  .review-card { padding: 1.5rem; }
}

/* ── FAQ ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .faq__question { font-size: 1rem; }
}

/* ── Page hero (inner pages) ─────────────────────────────── */
@media (max-width: 768px) {
  .page-hero {
    min-height: 52vh;
    padding-bottom: 3rem;
    align-items: flex-end;
  }
  .page-hero__headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .page-hero__sub { font-size: 0.9rem; max-width: 100%; }
  .page-hero__trust { font-size: 0.65rem; gap: 0.5rem; }
}

/* ── Footer ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .footer { padding: 3rem 0 2rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__badges { gap: 4px; }
  .footer__badge { font-size: 0.55rem; }
}

/* ── Very small phones (≤ 480px) ──────────────────────────── */
@media (max-width: 480px) {
  .container { padding-inline: 1.25rem; }

  /* Nav */
  .nav__inner { padding: 0 1.25rem; }

  /* Hero */
  .hero__headline { font-size: clamp(2.2rem, 11vw, 3.2rem); }

  /* Proof bar: 2-column */
  .proof-bar__item { flex: 0 0 50%; }
  .proof-bar__number { font-size: 1.75rem; }

  /* Addons: single column on tiny phones */
  .addons__grid { grid-template-columns: 1fr; }

  /* Sticky bar larger tap target */
  .sticky-bar__btn { padding: 1.1rem 1rem; font-size: 0.68rem; }

  /* Footer: single column */
  .footer__inner { grid-template-columns: 1fr; }

  /* Section labels */
  .section-label { font-size: 0.6rem; }
  .section-headline { font-size: clamp(1.8rem, 9vw, 2.8rem); }

  /* Service price chips: smaller */
  .svc-row__pricing { gap: 0.4rem; }
  .svc-price-chip { min-width: 60px; padding: 0.45rem 0.7rem; }
  .svc-price-chip__price { font-size: 1.1rem; }
}
