/* Suite 4 Salon and Spa: Night Garden theme
   Dark-dominant botanical one-pager. One Google font (Marcellus), one accent. */

:root {
  --night: #0d140f;
  --night-2: #080d0a;
  --canopy: #15211a;
  --stone: #f0ebda;
  --stone-70: rgba(240, 235, 218, 0.68);
  --stone-45: rgba(240, 235, 218, 0.45);
  --leaf: #9db8a4;
  --accent: #3ec178;
  --accent-ink: #14663c;
  --line: rgba(240, 235, 218, 0.14);
  --ink: #101a14;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --step--1: clamp(0.8125rem, 0.79rem + 0.11vw, 0.875rem);
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.14rem + 0.55vw, 1.5625rem);
  --step-2: clamp(1.5625rem, 1.36rem + 1vw, 2.25rem);
  --step-3: clamp(2.25rem, 1.7rem + 2.6vw, 3.75rem);
  --step-4: clamp(3rem, 1.8rem + 6vw, 6rem);
  --step-hero: clamp(3.75rem, 2rem + 11vw, 11rem);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--stone);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.font-display { font-family: "Marcellus", Georgia, "Times New Roman", serif; font-weight: 400; }

h1, h2, h3 { text-wrap: balance; line-height: 1.08; margin: 0 0 1rem; letter-spacing: -0.015em; }
p { text-wrap: pretty; margin: 0 0 1.25rem; max-width: 68ch; }
a { color: inherit; }

.wrap { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
section { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }

/* ---------- eyebrow + section header ---------- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.sec-head h2 { font-size: var(--step-3); }
.sec-head h2 em { font-family: Georgia, "Times New Roman", serif; font-style: italic; }
.lede { font-size: var(--step-1); color: var(--stone-70); max-width: 56ch; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 13, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 76px;
}
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.brand .name { font-family: "Marcellus", Georgia, serif; font-size: 1.5rem; letter-spacing: 0.01em; }
.brand .tag { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--leaf); margin-top: 4px; }
.main-nav { display: flex; gap: 2rem; }
.main-nav a {
  text-decoration: none;
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-70);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.main-nav a:hover { color: var(--stone); }
.main-nav a:hover::after { transform: scaleX(1); }
.header-call {
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: var(--step-0);
  background: var(--accent);
  color: var(--ink);
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
  white-space: nowrap;
}
.header-call:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(62, 193, 120, 0.35); }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 14vh, 10rem) 0 clamp(4rem, 8vh, 6rem);
  overflow: hidden;
  background:
    radial-gradient(1100px 600px at 82% 18%, rgba(62, 193, 120, 0.14), transparent 60%),
    radial-gradient(900px 700px at 8% 88%, rgba(62, 193, 120, 0.07), transparent 60%),
    radial-gradient(700px 500px at 55% 110%, rgba(157, 184, 164, 0.08), transparent 60%),
    var(--night);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero .eyebrow { margin-bottom: 1.5rem; }
.hero h1 {
  font-family: "Marcellus", Georgia, serif;
  font-size: var(--step-hero);
  line-height: 0.98;
  margin: 0 0 1.75rem;
  max-width: 12ch;
}
.hero .sub { font-size: var(--step-1); color: var(--stone-70); max-width: 52ch; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.75rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--step-0);
  padding: 1rem 1.9rem;
  border-radius: 6px;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
  min-height: 52px;
}
.btn-primary { background: var(--accent); color: var(--ink); font-variant-numeric: tabular-nums; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(62, 193, 120, 0.4); }
.btn-ghost { border: 1px solid var(--stone-45); color: var(--stone); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.4rem;
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  color: var(--stone-70);
}
.trust-row .stars { color: var(--accent); letter-spacing: 0.15em; font-size: 0.95rem; }
.trust-row .dot { color: var(--stone-45); }

/* hero sprig art */
.hero-sprig {
  position: absolute;
  right: -40px;
  top: 50%;
  width: min(46vw, 520px);
  transform: translateY(-50%) rotate(8deg);
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}
.hero-sprig .sway { transform-origin: 50% 100%; animation: sway 9s ease-in-out infinite alternate; }
@keyframes sway { from { transform: rotate(-2.5deg); } to { transform: rotate(2.5deg); } }

/* hero entrance choreography */
.js .mask { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.js .mask > span { display: inline-block; transform: translateY(112%); animation: rise 0.8s var(--ease) forwards; }
.js .hero .eyebrow { opacity: 0; animation: fadein 0.6s var(--ease) 0.1s forwards; }
.js .hero h1 .mask > span { animation-delay: 0.25s; }
.js .hero .sub { opacity: 0; animation: fadein 0.6s var(--ease) 0.65s forwards; }
.js .hero-ctas { opacity: 0; animation: risefade 0.6s var(--ease) 0.8s forwards; }
.js .trust-row { opacity: 0; animation: fadein 0.6s var(--ease) 0.95s forwards; }
.js .hero-sprig { opacity: 0; animation: sprigin 1.2s var(--ease) 0.5s forwards; }
@keyframes sprigin { to { opacity: 0.9; } }
@keyframes rise { to { transform: translateY(0); } }
@keyframes fadein { to { opacity: 1; } }
@keyframes risefade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- sprig divider ---------- */
.sprig-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.5rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px; padding-right: 24px;
}
.sprig-divider .line { flex: 1; height: 1px; background: var(--line); max-width: 320px; }
.sprig-divider svg { width: 74px; height: auto; flex: none; }
.sprig-divider .stem {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
}
.sprig-divider .leaf {
  fill: rgba(62, 193, 120, 0.16);
  stroke: var(--accent);
  stroke-width: 1.5;
  opacity: 1;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.js .sprig-divider .leaf { opacity: 0; transform: scale(0.4); }
.js .sprig-divider .stem { transition: stroke-dashoffset 1.4s var(--ease); }
.sprig-divider.drawn .leaf { opacity: 1; transform: scale(1); }
.sprig-divider.drawn .leaf:nth-of-type(2) { transition-delay: 0.55s; }
.sprig-divider.drawn .leaf:nth-of-type(3) { transition-delay: 0.65s; }
.sprig-divider.drawn .leaf:nth-of-type(4) { transition-delay: 0.75s; }
.sprig-divider.drawn .leaf:nth-of-type(5) { transition-delay: 0.85s; }
.sprig-divider.drawn .leaf:nth-of-type(6) { transition-delay: 0.95s; }
.sprig-divider.drawn .leaf:nth-of-type(7) { transition-delay: 1.05s; }

/* ---------- scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 0.1s; }
.js .reveal[data-delay="2"] { transition-delay: 0.2s; }
.js .reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ---------- about / the suite ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  margin-top: 2.5rem;
}
.about-copy p { color: var(--stone-70); }
.about-copy p strong { color: var(--stone); font-weight: 600; }
.chairs-panel {
  background: var(--canopy);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  transform: rotate(1.2deg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.chairs-panel:hover { transform: rotate(0deg) translateY(-5px); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); }
.chairs-panel h3 { font-family: "Marcellus", Georgia, serif; font-size: var(--step-1); margin-bottom: 0.4rem; }
.chairs-panel .note { font-size: var(--step--1); color: var(--leaf); margin-bottom: 1.5rem; }
.chair { display: flex; gap: 1rem; align-items: baseline; padding: 0.85rem 0; border-top: 1px solid var(--line); }
.chair:first-of-type { border-top: none; }
.chair .who { font-weight: 600; min-width: 74px; }
.chair .what { color: var(--stone-70); font-size: var(--step--1); }
.chairs-panel .fine { font-size: var(--step--1); color: var(--stone-45); margin: 1.25rem 0 0; }

/* ---------- services ---------- */
.service-row {
  display: grid;
  grid-template-columns: 110px 1fr 1.4fr;
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row:hover { background: rgba(62, 193, 120, 0.04); }
.service-row .num {
  font-family: "Marcellus", Georgia, serif;
  font-size: var(--step-2);
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  line-height: 1;
}
.service-row h3 { font-family: "Marcellus", Georgia, serif; font-size: var(--step-2); margin-bottom: 0.5rem; }
.service-row .detail { color: var(--stone-70); margin: 0; }
.service-row .detail strong { color: var(--stone); }
.service-row .price { color: var(--accent); font-weight: 600; font-variant-numeric: tabular-nums; }
.services-list { margin-top: 2.5rem; }
.service-row:nth-child(even) { padding-left: clamp(0rem, 6vw, 6rem); }

/* ---------- stats / garden wall ---------- */
.stats-band {
  background: var(--canopy);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "4";
  position: absolute;
  right: -4vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(20rem, 38vw, 34rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(62, 193, 120, 0.22);
  pointer-events: none;
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: translateY(-52%) translateX(0); } to { transform: translateY(-48%) translateX(-3vw); } }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
  padding: clamp(1rem, 2vw, 2rem) 0;
}
.stat .value {
  font-family: "Marcellus", Georgia, serif;
  font-size: var(--step-4);
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat .label { color: var(--stone-70); font-size: var(--step--1); letter-spacing: 0.06em; margin-top: 0.6rem; }

/* ---------- reviews ---------- */
.review-featured {
  margin: 2.5rem 0 0;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--canopy);
  border: 1px solid var(--line);
  border-radius: 20px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review-featured:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); }
.review-featured .quote-mark {
  font-family: "Marcellus", Georgia, serif;
  font-size: var(--step-4);
  color: var(--accent);
  line-height: 0.6;
  display: block;
  margin-bottom: 1rem;
}
.review-featured blockquote { margin: 0; font-family: "Marcellus", Georgia, serif; font-size: var(--step-2); line-height: 1.35; max-width: 30ch; }
.review-featured cite { display: block; font-style: normal; margin-top: 1.5rem; color: var(--stone-70); font-size: var(--step--1); }
.review-featured cite strong { color: var(--stone); }
.source { font-size: var(--step--1); color: var(--leaf); letter-spacing: 0.08em; text-transform: uppercase; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: start;
}
.review-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem;
  background: rgba(21, 33, 26, 0.5);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4); border-color: rgba(62, 193, 120, 0.4); }
.review-card:nth-child(2) { margin-top: 2.5rem; }
.review-card .who { font-weight: 600; margin-bottom: 0.35rem; }
.review-card .services { color: var(--stone-70); font-size: var(--step--1); margin: 0 0 1rem; }
.review-card .stars { color: var(--accent); letter-spacing: 0.12em; font-size: 0.9rem; display: block; margin-bottom: 0.75rem; }
.review-aggregate {
  background: var(--accent);
  color: var(--ink);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.review-aggregate:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(62, 193, 120, 0.3); }
.review-aggregate .big { font-family: "Marcellus", Georgia, serif; font-size: var(--step-3); line-height: 1; font-variant-numeric: tabular-nums; }
.review-aggregate p { margin: 0.75rem 0 0; font-size: var(--step--1); color: rgba(16, 26, 20, 0.8); max-width: none; }
.review-aggregate .stars { display: block; letter-spacing: 0.12em; font-size: 0.9rem; margin-bottom: 0.75rem; color: var(--ink); }
.reviews-grid-single { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
.reviews-grid-single .review-aggregate { padding: clamp(2.5rem, 6vw, 4rem); text-align: center; }
.reviews-grid-single .review-aggregate .fine { margin-top: 1.25rem; font-size: 0.9rem; opacity: 0.85; }

/* ---------- process ---------- */
.timeline { margin-top: 3rem; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  top: 26px; left: 2%; right: 2%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 12%, var(--accent) 88%, transparent);
  opacity: 0.5;
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.step { padding-top: 0; transition: transform 0.25s var(--ease); }
.step:hover { transform: translateY(-5px); }
.step:nth-child(even) { margin-top: 2.75rem; }
.step .pip {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: var(--night);
  display: flex; align-items: center; justify-content: center;
  font-family: "Marcellus", Georgia, serif;
  color: var(--accent);
  font-size: var(--step-1);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.step:hover .pip { background: var(--accent); color: var(--ink); }
.step h3 { font-size: var(--step-1); font-family: "Marcellus", Georgia, serif; margin-bottom: 0.5rem; }
.step p { color: var(--stone-70); font-size: var(--step--1); margin: 0; }
.step a { color: var(--accent); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 2.5rem; max-width: 860px; }
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 0;
  transition: background 0.25s var(--ease);
}
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list details[open] { background: rgba(62, 193, 120, 0.04); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0.5rem;
  font-family: "Marcellus", Georgia, serif;
  font-size: var(--step-1);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .plus {
  flex: none;
  width: 34px; height: 34px;
  border: 1px solid var(--stone-45);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s;
}
.faq-list details[open] .plus { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); color: var(--ink); }
.faq-list summary:hover .plus { border-color: var(--accent); }
.faq-answer { padding: 0 0.5rem 1.75rem; color: var(--stone-70); max-width: 62ch; }
.faq-answer p { margin: 0; }
.faq-answer a { color: var(--accent); }

/* ---------- service area ---------- */
.area-band { background: var(--night-2); }
.chips { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.25rem; }
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  color: var(--stone-70);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease);
  cursor: default;
}
.chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); background: rgba(62, 193, 120, 0.06); }
.chip.home { border-color: var(--accent); color: var(--accent); }

/* ---------- final CTA ---------- */
.final-cta {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(62, 193, 120, 0.12), transparent 65%),
    var(--stone);
  color: var(--ink);
  text-align: left;
  overflow: hidden;
}
.final-cta .eyebrow { color: var(--accent-ink); }
.final-cta .eyebrow::before { background: var(--accent-ink); }
.final-cta h2 { font-family: "Marcellus", Georgia, serif; font-size: var(--step-4); color: var(--ink); max-width: 14ch; }
.final-cta .lede { color: rgba(16, 26, 20, 0.72); }
.final-phone {
  display: block;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(2.5rem, 2rem + 6vw, 6.5rem);
  line-height: 1.05;
  color: var(--ink);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  margin: 2rem 0;
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease), transform 0.25s var(--ease);
  transform-origin: left center;
}
.final-phone:hover { color: var(--accent-ink); transform: scale(1.015); }
.final-cta .btn-primary { background: var(--ink); color: var(--stone); }
.final-cta .btn-primary:hover { box-shadow: 0 14px 34px rgba(16, 26, 20, 0.35); }
.final-cta .btn-ghost { border-color: rgba(16, 26, 20, 0.35); color: var(--ink); }
.final-cta .btn-ghost:hover { border-color: var(--accent-ink); color: var(--accent-ink); }
.final-meta { margin-top: 2.5rem; color: rgba(16, 26, 20, 0.66); font-size: var(--step--1); }
.final-meta a { color: var(--accent-ink); font-weight: 600; }

/* moonlight wipe transition into final CTA */
.wipe-band { height: clamp(3rem, 7vw, 6rem); background: var(--night); position: relative; overflow: hidden; }
.js .wipe-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 260% at 50% 120%, rgba(62, 193, 120, 0.35), transparent 60%);
  opacity: 0;
  transform: translateY(30%);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.js .wipe-band.lit::before { opacity: 1; transform: none; }

/* ---------- footer ---------- */
.site-footer { background: var(--night-2); padding: 4rem 0 7rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; }
.site-footer h4 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--leaf); margin: 0 0 1rem; }
.site-footer p, .site-footer li { color: var(--stone-70); font-size: var(--step--1); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: var(--stone-70); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.footer-brand .name { font-family: "Marcellus", Georgia, serif; font-size: 1.75rem; }
.footer-brand .tag { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--leaf); margin-top: 4px; display: block; }
.credit { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--stone-45); font-size: var(--step--1); }

/* ---------- mobile call bar ---------- */
.call-bar {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  display: none;
  background: var(--accent);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
  font-variant-numeric: tabular-nums;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .chairs-panel { transform: none; }
  .service-row { grid-template-columns: 64px 1fr; }
  .service-row .detail { grid-column: 2; }
  .service-row:nth-child(even) { padding-left: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card:nth-child(2) { margin-top: 0; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .timeline::before { display: none; }
  .step:nth-child(even) { margin-top: 0; }
  .step { display: grid; grid-template-columns: 52px 1fr; gap: 1.25rem; align-items: start; }
  .step .pip { margin-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-sprig { width: 78vw; right: -34vw; opacity: 0.45; }
  .js .hero-sprig { animation-name: sprigin-mobile; }
  @keyframes sprigin-mobile { to { opacity: 0.45; } }
  .stats-band::before { right: -34vw; top: auto; bottom: -14vw; transform: none; font-size: clamp(14rem, 60vw, 22rem); animation: none; opacity: 0.7; }
}
@media (max-width: 720px) {
  .call-bar { display: block; }
  .site-footer { padding-bottom: 8.5rem; }
  .header-call { padding: 0.6rem 1rem; font-size: 0.95rem; }
  .hero-ctas .btn { flex: 1 1 100%; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .mask > span { transform: none; }
  .js .reveal,
  .js .hero .eyebrow,
  .js .hero .sub,
  .js .hero-ctas,
  .js .trust-row { opacity: 1 !important; transform: none !important; }
  .js .hero-sprig { opacity: 0.9; }
  @media (max-width: 900px) {
    .js .hero-sprig { opacity: 0.45; }
  }
  .js .sprig-divider .stem { stroke-dashoffset: 0 !important; }
  .sprig-divider .leaf { opacity: 1 !important; transform: none !important; }
  .js .wipe-band::before { opacity: 1; transform: none; }
}
