/* ====================================================================
   THE CUPPING CLINIC BLACKBURN — "Tidal Teal" Design System — aligned to the clinic logo
   Deep-teal editorial wellness. Fraunces display + Outfit UI.
   ==================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  /* New palette */
  --ink:          #0d1f20;   /* deep teal-ink near-black */
  --ink-2:        #12292a;
  --ink-3:        #1a3637;
  --bone:         #f4f8f7;   /* cool porcelain */
  --bone-2:       #e6efed;
  --bone-3:       #d5e4e1;
  --copper:       #3a8a8d;   /* brand teal — primary accent (from logo) */
  --copper-2:     #6cb5b8;
  --copper-deep:  #256b6e;
  --copper-glow:  rgba(108, 181, 184, 0.35);
  --sage:         #c9a86a;
  --sage-deep:    #a8854a;
  --cream:        #e9f2f1;   /* text on dark */
  --cream-dim:    rgba(233, 242, 241, 0.62);
  --muted:        #5c6b6a;
  --line:         rgba(13, 31, 32, 0.12);
  --line-light:   rgba(233, 242, 241, 0.14);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Outfit', 'Segoe UI', system-ui, sans-serif;

  --radius:       14px;
  --radius-lg:    24px;
  --shadow:       0 10px 40px rgba(13, 31, 32, 0.10);
  --shadow-deep:  0 24px 70px rgba(13, 31, 32, 0.22);
  --transition:   0.3s cubic-bezier(0.25, 0.6, 0.3, 1);
  --max-width:    1200px;

  /* --- Legacy aliases (booking widget, intake & inline page styles) --- */
  --brand-dark:   var(--ink);
  --brand-mid:    var(--copper-deep);
  --brand-accent: var(--copper-2);
  --brand-light:  var(--bone-2);
  --brand-warm:   var(--bone);
  --text-dark:    var(--ink);
  --text-mid:     #3b4a49;
  --text-light:   var(--muted);
  --white:        #ffffff;
}

/* --- Skip Navigation (accessibility) --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.1s;
  text-decoration: none;
}
.skip-nav:focus { top: 0; }

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film-grain overlay for editorial texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2147483646;
  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.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--copper); color: var(--bone); }

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

/* --- Layout --- */
.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); line-height: 1.25; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }

p { color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

em, .accent-italic { font-style: italic; color: var(--copper); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.1rem;
}
.section-label::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--copper);
  display: inline-block;
}

.section-intro {
  max-width: 660px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-intro .section-label { justify-content: center; }
.section-intro .section-label::after {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--copper);
  display: inline-block;
}
.section-intro h2 { margin-bottom: 1.1rem; }

/* Legacy divider → ember line */
.divider {
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--copper-2));
  margin: 1.2rem auto;
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition), border-color var(--transition);
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 8px 26px rgba(58, 138, 141, 0.35);
}
.btn-primary:hover {
  background: var(--copper-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(58, 138, 141, 0.45);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(233, 242, 241, 0.35);
}
.btn-outline:hover { border-color: var(--cream); background: rgba(233, 242, 241, 0.08); color: var(--cream); }

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: var(--ink-3); transform: translateY(-2px); box-shadow: var(--shadow-deep); color: var(--cream); }

/* Outline variant for light backgrounds */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(13, 31, 32, 0.25);
}
.btn-ghost:hover { border-color: var(--ink); }

/* ====================================================================
   HEADER — floating glass pill
   ==================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: padding 0.35s ease;
}

.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 31, 32, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(233, 242, 241, 0.12);
  border-radius: 999px;
  padding: 0.55rem 0.65rem 0.55rem 1.5rem;
  box-shadow: 0 12px 40px rgba(13, 31, 32, 0.30);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled .nav { background: rgba(13, 31, 32, 0.88); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 1.05;
}
.nav-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px rgba(233, 242, 241, 0.18), 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition);
}
.nav-logo:hover .nav-logo-mark { transform: scale(1.06) rotate(6deg); }
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo .clinic-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.nav-logo .clinic-tagline {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--copper-2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream-dim);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--cream); background: rgba(233, 242, 241, 0.07); }
.nav-links a.active { color: var(--cream); background: rgba(233, 242, 241, 0.10); }

.nav-links .nav-cta {
  background: var(--copper);
  color: #fff;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  margin-left: 0.4rem;
  box-shadow: 0 6px 18px rgba(58, 138, 141, 0.4);
}
.nav-links .nav-cta:hover { background: var(--copper-deep); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.7rem;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ====================================================================
   HERO — full-bleed warm ink with breathing cup rings
   ==================================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1100px 700px at 82% 18%, rgba(58, 138, 141, 0.22), transparent 60%),
    radial-gradient(800px 600px at 12% 88%, rgba(201, 168, 106, 0.25), transparent 60%),
    var(--ink);
  color: var(--cream);
  padding: 150px 0 110px;
  overflow: hidden;
  position: relative;
}

.hero h1 { color: var(--cream); }
.hero h1 em { color: var(--copper-2); font-style: italic; font-weight: 500; }

.hero-photo-layer {
  position: absolute;
  inset: 0;
  /* Subtle brand texture only — no off-brand stock photo */
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(108,181,184,0.10), transparent 60%),
    radial-gradient(90% 80% at 10% 90%, rgba(201,168,106,0.06), transparent 60%);
  opacity: 1;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(108, 181, 184, 0.12);
  border: 1px solid rgba(108, 181, 184, 0.35);
  color: var(--copper-2);
  padding: 0.4rem 1.05rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.hero-badge .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper-2);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108, 181, 184, 0.6); }
  50%      { box-shadow: 0 0 0 7px rgba(108, 181, 184, 0); }
}

.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 540px;
  margin: 1.6rem 0 2.6rem;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.6rem;
}
.hero-proof-stars { color: var(--copper-2); letter-spacing: 3px; font-size: 1rem; }
.hero-proof-text { font-size: 0.88rem; color: var(--cream-dim); }
.hero-proof-text strong { color: var(--cream); font-weight: 600; }

/* --- The breathing cup — signature animation --- */
.cup-visual {
  position: relative;
  width: min(420px, 80vw);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.cup-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(108, 181, 184, 0.45);
  animation: breath 5.2s cubic-bezier(0.45, 0, 0.35, 1) infinite;
}
.cup-ring:nth-child(1) { width: 46%; height: 46%; animation-delay: 0s; }
.cup-ring:nth-child(2) { width: 64%; height: 64%; animation-delay: 0.65s; border-color: rgba(108, 181, 184, 0.28); }
.cup-ring:nth-child(3) { width: 82%; height: 82%; animation-delay: 1.3s; border-color: rgba(108, 181, 184, 0.16); }
.cup-ring:nth-child(4) { width: 100%; height: 100%; animation-delay: 1.95s; border-color: rgba(108, 181, 184, 0.08); }

@keyframes breath {
  0%, 100% { transform: scale(0.94); opacity: 0.55; }
  50%      { transform: scale(1.04); opacity: 1; }
}

.cup-core {
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(214, 240, 239, 0.95), rgba(108, 181, 184, 0.85) 45%, rgba(37, 107, 110, 0.9) 100%);
  box-shadow:
    0 0 60px 18px rgba(108, 181, 184, 0.35),
    0 0 140px 50px rgba(58, 138, 141, 0.18),
    inset 0 -8px 24px rgba(9, 40, 41, 0.55);
  animation: coreGlow 5.2s cubic-bezier(0.45, 0, 0.35, 1) infinite;
}
@keyframes coreGlow {
  0%, 100% { transform: scale(0.97); filter: brightness(0.92); }
  50%      { transform: scale(1.05); filter: brightness(1.08); }
}

.cup-stat {
  position: absolute;
  background: rgba(13, 31, 32, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 0.8rem 1.15rem;
  text-align: left;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
.cup-stat .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--copper-2);
  line-height: 1.1;
}
.cup-stat .lbl {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.cup-stat--tl { top: 6%; left: -4%; }
.cup-stat--br { bottom: 8%; right: -6%; }
.cup-stat--bl { bottom: -2%; left: 10%; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream-dim);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-hint::after {
  content: '';
  width: 1.5px;
  height: 42px;
  background: linear-gradient(var(--copper-2), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ====================================================================
   MARQUEE — treatment ticker
   ==================================================================== */
.marquee {
  background: var(--copper);
  color: var(--bone);
  padding: 0.95rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  gap: 3rem;
  padding-right: 3rem;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee span::after { content: '◦'; font-style: normal; opacity: 0.6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* legacy trust-bar hidden (replaced by marquee + stats band) */
.trust-bar { display: none; }

/* ====================================================================
   STATS BAND — live counters
   ==================================================================== */
.stats-band {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 6vw, 84px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.stat-num sup { font-size: 0.45em; color: var(--copper); top: -0.8em; position: relative; }
.stat-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.6rem;
}

/* ====================================================================
   WHY US — editorial cards
   ==================================================================== */
.why-us { background: var(--bone); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
}

.why-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon img { filter: brightness(0) invert(1); width: 24px; height: 24px; }

.why-item h3 { margin-bottom: 0.3rem; font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }
.why-item p  { font-size: 0.9rem; margin: 0; color: var(--muted); }

/* ====================================================================
   CARDS (services preview)
   ==================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.6rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }

.card .card-photo { position: relative; overflow: hidden; }
.card .card-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0 !important;
  transition: transform 0.8s cubic-bezier(0.25, 0.6, 0.3, 1);
}
.card:hover .card-photo img { transform: scale(1.06); }

.card .card-icon { display: none; }

.card h3 {
  font-size: 1.25rem;
  padding: 1.4rem 1.5rem 0;
}
.card p {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 0.55rem 1.5rem 0;
  flex: 1;
}

.service-price {
  display: inline-block;
  margin: 1.1rem 1.5rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--copper);
}
.service-price span { font-family: var(--font-body); font-size: 0.78rem; font-weight: 400; color: var(--muted); }

/* ====================================================================
   THE RITUAL — scroll narrative
   ==================================================================== */
.ritual {
  background: var(--ink);
  color: var(--cream);
  overflow: clip;
}
.ritual .section-intro h2 { color: var(--cream); }
.ritual .section-intro p { color: var(--cream-dim); }

.ritual-progress {
  height: 2px;
  background: var(--line-light);
  border-radius: 2px;
  margin-bottom: 2.6rem;
  overflow: hidden;
}
.ritual-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--copper), var(--copper-2));
  border-radius: 2px;
}

.ritual-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.ritual-step {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.7rem 1.9rem;
  transition: border-color 0.5s ease, background 0.5s ease;
}
.ritual-step.is-active {
  border-color: rgba(108, 181, 184, 0.55);
  background: linear-gradient(160deg, rgba(58, 138, 141, 0.14), var(--ink-2) 55%);
}

.ritual-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  color: rgba(108, 181, 184, 0.35);
  line-height: 1;
  margin-bottom: 1.1rem;
  transition: color 0.5s ease;
}
.ritual-step.is-active .ritual-num { color: var(--copper-2); }

.ritual-step h3 { color: var(--cream); font-size: 1.2rem; margin-bottom: 0.5rem; }
.ritual-step p { color: var(--cream-dim); font-size: 0.9rem; margin: 0; }

/* legacy process classes */
.how-it-works { background: var(--bone-2); }
.process-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
}
.process-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--copper);
  margin-bottom: 0.9rem;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.process-step p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ====================================================================
   TESTIMONIALS — bone cards on ink
   ==================================================================== */
.testimonials {
  background: var(--ink);
  color: var(--cream);
}
.testimonials .section-intro h2 { color: var(--cream); }
.testimonials .section-intro p { color: var(--cream-dim); }

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(233, 242, 241, 0.06);
  border: 1px solid var(--line-light);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  margin-top: 0.6rem;
}
.reviews-badge-stars { color: var(--copper-2); letter-spacing: 3px; }
.reviews-badge-text { font-weight: 600; color: var(--cream); font-size: 0.92rem; }
.reviews-badge-count { color: var(--cream-dim); font-size: 0.85rem; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

.testimonial {
  background: var(--bone);
  border: none;
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: 0.6rem;
  right: 1.4rem;
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 1;
  color: rgba(58, 138, 141, 0.22);
}

.stars { color: var(--copper); font-size: 0.95rem; margin-bottom: 0.85rem; letter-spacing: 2.5px; }

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--ink-3);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--copper-2);
  flex-shrink: 0;
}
.author-name { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.author-location { font-size: 0.8rem; color: var(--muted); }

/* ====================================================================
   VIDEO SCROLL SECTION
   ==================================================================== */
.video-scroll-section {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
  padding: 0;
}
.video-bg { position: absolute; inset: 0; }
.video-bg video, .scroll-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,19,16,0.78), rgba(23,19,16,0.55) 50%, rgba(23,19,16,0.85));
}
.video-overlay-content {
  position: relative;
  text-align: center;
  color: var(--cream);
  max-width: 620px;
  padding: 120px 24px;
}
.video-overlay-content h2 { color: var(--cream); margin-bottom: 1.1rem; }
.video-overlay-content p { color: var(--cream-dim); margin-bottom: 2rem; }
.video-overlay-content .section-label { justify-content: center; }
.video-overlay-content .section-label::after {
  content: '';
  width: 26px; height: 1.5px;
  background: var(--copper);
  display: inline-block;
}

/* ====================================================================
   CTA BANNER
   ==================================================================== */
.cta-banner {
  background:
    radial-gradient(900px 420px at 80% 0%, rgba(108, 181, 184, 0.35), transparent 65%),
    linear-gradient(135deg, var(--copper-deep), var(--copper));
  text-align: center;
  padding: clamp(72px, 9vw, 120px) 0;
  color: var(--bone);
  overflow: hidden;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.9rem; }
.cta-banner p  { color: rgba(255, 245, 235, 0.8); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-dark { background: var(--ink); }

/* ====================================================================
   PAGE HERO (inner pages)
   ==================================================================== */
.page-hero {
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(58, 138, 141, 0.2), transparent 60%),
    var(--ink);
  color: var(--cream);
  padding: 190px 0 90px;
}
.page-hero h1 { color: var(--cream); margin-bottom: 1rem; }
.page-hero p { color: var(--cream-dim); max-width: 560px; font-size: 1.05rem; font-weight: 300; }

/* ====================================================================
   SERVICE DETAIL ROWS
   ==================================================================== */
.service-detail { padding: clamp(56px, 7vw, 96px) 0; }
.service-detail:nth-of-type(even) { background: var(--bone-2); }

.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

.service-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  box-shadow: var(--shadow-deep);
}
.service-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 0 !important; }

.service-content h2 { margin-bottom: 1.1rem; }

.service-features {
  margin: 1.4rem 0 2rem;
  display: grid;
  gap: 0.65rem;
}
.service-features li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 3px rgba(58, 138, 141, 0.18);
}

/* Live price chip */
.live-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--copper);
  margin-bottom: 1.4rem;
}
.live-price .from { font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }

/* ====================================================================
   PRICING GRID (live, DB-driven)
   ==================================================================== */
.pricing-section { background: var(--ink); color: var(--cream); }
.pricing-section .section-intro h2 { color: var(--cream); }
.pricing-section .section-intro p { color: var(--cream-dim); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: var(--ink-2);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition);
}
.pricing-card:hover { transform: translateY(-5px); border-color: rgba(108, 181, 184, 0.5); }

.pricing-card.featured {
  background: linear-gradient(165deg, rgba(58, 138, 141, 0.2), var(--ink-2) 60%);
  border-color: rgba(108, 181, 184, 0.55);
}

.pricing-name {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-2);
  margin-bottom: 0.9rem;
}
.pricing-card h3 { color: var(--cream); font-size: 1.25rem; margin-bottom: 0.9rem; }
.pricing-header .price, .price {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
}
.price-note { font-size: 0.8rem; color: var(--cream-dim); margin-top: 0.3rem; }
.pricing-meta { font-size: 0.85rem; color: var(--cream-dim); margin-top: 0.8rem; }
.pricing-card .btn { margin-top: 1.6rem; }

/* ====================================================================
   ABOUT — story / team / values / accreditations
   ==================================================================== */
.story-section { background: var(--bone); }
.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.story-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  background: var(--ink);
  box-shadow: var(--shadow-deep);
}
.story-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem;
  background: linear-gradient(transparent, rgba(13, 31, 32, 0.92));
}
.story-visual-caption .established {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--copper-2);
  font-size: 1.1rem;
}

.values-list { margin-top: 1.6rem; display: grid; gap: 0.8rem; }
.values-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.value-dot {
  width: 9px;
  height: 9px;
  min-width: 9px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 3px rgba(58, 138, 141, 0.18);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.8rem;
  max-width: 880px;
  margin: 0 auto;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-deep); }
.team-photo { height: 260px; overflow: hidden; background: var(--bone-2); }
.team-photo img, .team-headshot { width: 100%; height: 100%; object-fit: cover; }
.team-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(120% 120% at 30% 25%, var(--copper-2), var(--copper-deep));
  position: relative;
}
.team-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 70% 80%, rgba(255,255,255,0.12), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 8px, transparent 8px 16px);
  pointer-events: none;
}
.team-monogram {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
.team-info { padding: 1.7rem 1.6rem 1.9rem; }
.team-info h3 { font-size: 1.2rem; }
.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0.3rem 0 0.9rem;
}
.team-bio { font-size: 0.9rem; color: var(--muted); }
.credentials { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1rem; }
.credential-tag {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--bone-2);
  color: var(--ink-3);
  border: 1px solid var(--line);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.values-section { background: var(--bone-2); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.6rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon img { filter: brightness(0) invert(1); width: 26px; height: 26px; }
.value-card h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.86rem; color: var(--muted); margin: 0; }

.accreditations { background: var(--bone); }
.accred-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 3.5rem;
}
.accred-item { text-align: center; max-width: 130px; }
.accred-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 14px;
}
.accred-name { font-size: 0.78rem; font-weight: 600; color: var(--ink-3); }

/* ====================================================================
   CONTACT
   ==================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.info-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}
.info-block-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; }
.info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.info-icon img { width: 20px; height: 20px; filter: brightness(0) invert(1); opacity: 0.95; }
.info-block h3 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; margin: 0; }
.info-block p, .info-block a { font-size: 0.92rem; color: var(--text-mid); margin: 0; }
.info-block a:hover { color: var(--copper); }

.hours-table { width: 100%; font-size: 0.88rem; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--line); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.45rem 0; color: var(--text-mid); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.hours-today { background: rgba(108, 181, 184, 0.13); border-radius: 6px; }
.hours-today td { color: var(--copper-deep) !important; }

.booking-form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
}
.form-heading { margin-bottom: 1.8rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 0.45rem;
  display: flex;
}
.form-required { color: var(--copper); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bone);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(58, 138, 141, 0.13);
}

.form-submit { width: 100%; margin-top: 0.4rem; }
.form-note { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 0.9rem; }

.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; margin-top: 1.2rem; }

/* legacy contact steps */
.how-section { background: var(--bone-2); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.5rem;
  text-align: center;
}
.step-number {
  width: 46px;
  height: 46px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--copper-2);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-size: 1.02rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 0.4rem; }
.step p { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* ====================================================================
   FOOTER — ink editorial with giant wordmark
   ==================================================================== */
.site-footer {
  background: var(--ink);
  color: var(--cream-dim);
  padding: clamp(64px, 8vw, 100px) 0 36px;
  position: relative;
  overflow: hidden;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 9vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: rgba(233, 242, 241, 0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .clinic-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  display: block;
}
.footer-brand .clinic-tagline {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--copper-2);
  display: block;
  margin-bottom: 1.1rem;
}
.footer-brand p { color: var(--cream-dim); font-size: 0.92rem; max-width: 320px; }

.footer-col h4 {
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a {
  font-size: 0.92rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--copper-2); }

.footer-contact-item { display: inline-flex; align-items: center; gap: 0.6rem; }
.footer-icon { width: 15px; height: 15px; filter: brightness(0) invert(0.8); }

.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: rgba(233, 242, 241, 0.45);
}

/* ====================================================================
   REVEAL / ANIMATION PRIMITIVES
   ==================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.6, 0.3, 1), transform 0.9s cubic-bezier(0.25, 0.6, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Split-line headline reveal (GSAP-managed) */
.split-lines .line { display: block; overflow: hidden; }
.split-lines .line > span { display: block; }

/* Number counters */
[data-counter] { font-variant-numeric: tabular-nums; }

/* ====================================================================
   REDUCED MOTION
   ==================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 3.5rem; text-align: center; }
  .hero-inner { margin: 0 auto; }
  .hero-cta, .hero-proof, .hero .section-label { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .ritual-track { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(13, 31, 32, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line-light);
    border-radius: var(--radius-lg);
    padding: 0.9rem;
    gap: 0.2rem;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: var(--shadow-deep);
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 0.85rem 1.1rem; }
  .nav-links .nav-cta { margin: 0.4rem 0 0; text-align: center; justify-content: center; display: flex; }
  .nav-toggle { display: flex; }

  .site-header .nav { position: relative; }

  .hero { padding: 130px 0 90px; min-height: auto; }
  .cup-visual { width: min(320px, 78vw); }
  .cup-stat--tl { left: -2%; }
  .cup-stat--br { right: -2%; }
  .scroll-hint { display: none; }

  .ritual-track { grid-template-columns: 1fr; }
  .service-row, .story-grid, .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-wordmark { font-size: 13vw; }
}

/* ── Book-online callout (contact page) ── */
.book-online-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--copper-deep), var(--copper));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.6rem;
  margin-bottom: 2rem;
}
.book-online-callout strong { display: block; font-size: 1.05rem; }
.book-online-callout span { font-size: 0.88rem; opacity: 0.85; }
.book-online-callout .btn { white-space: nowrap; background: #fff; color: var(--copper-deep); box-shadow: none; }
.book-online-callout .btn:hover { background: var(--bone); color: var(--copper-deep); }

/* ── Card book link (homepage service cards) ── */
.card-book-link {
  display: inline-block;
  margin: 0 1.5rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--copper-deep);
  transition: color var(--transition);
}
.card-book-link:hover { color: var(--copper); }

/* ── Amenities strip (About) ── */
.amenities-strip { background: var(--bone-2); padding: clamp(40px, 6vw, 72px) 0; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.amenity {
  display: flex; align-items: center; gap: 0.9rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.1rem 1.3rem;
}
.amenity-icon { font-size: 1.6rem; line-height: 1; }
.amenity strong { display: block; font-size: 0.95rem; color: var(--ink); }
.amenity span { font-size: 0.82rem; color: var(--muted); }
