/* =========================================================
   Whalen Chiropractic Clinic — Spec Preview
   Built by Woodcrest Marketing
   ========================================================= */

:root {
  /* Brand palette (from logo: teal script + blush brush) */
  --teal:        #15897e;
  --teal-deep:   #0c5f57;
  --teal-deeper: #083f3a;
  --teal-bright: #1ba99c;
  --blush:       #f7d9c9;
  --blush-soft:  #fdeee6;
  --blush-deep:  #eab79e;
  --cream:       #faf6f1;
  --cream-2:     #f3ece2;
  --ink:         #233330;
  --muted:       #5d6e6a;
  --line:        #e4ddd2;
  --white:       #ffffff;

  /* Type */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", "Georgia", serif;
  --sans:  "Avenir Next", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: 0.78rem;
  --fs-body:   clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --fs-lede:   clamp(1.12rem, 1.02rem + 0.5vw, 1.4rem);
  --fs-h3:     clamp(1.3rem, 1.15rem + 0.7vw, 1.7rem);
  --fs-h2:     clamp(2rem, 1.5rem + 2.3vw, 3.4rem);
  --fs-h1:     clamp(2.6rem, 1.7rem + 4.4vw, 5.2rem);

  /* Space + rhythm */
  --shell: 1200px;
  --gutter: clamp(1.25rem, 0.6rem + 3vw, 3rem);
  --section-y: clamp(4.5rem, 3rem + 7vw, 8.5rem);
  --radius: 22px;
  --radius-sm: 13px;

  --shadow-sm: 0 2px 10px rgba(12, 95, 87, 0.06);
  --shadow-md: 0 18px 50px -20px rgba(12, 63, 58, 0.35);
  --shadow-lg: 0 40px 90px -35px rgba(8, 63, 58, 0.45);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--teal-deeper);
}

::selection { background: var(--teal); color: #fff; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--teal-deep); color: #fff; padding: 0.7rem 1.1rem;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Shared bits ---------- */
.section-kicker {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.section-kicker::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--blush-deep);
}
.section-kicker--light { color: var(--blush); }
.section-kicker--light::before { background: var(--blush); opacity: 0.7; }

.section-head { font-size: var(--fs-h2); max-width: 18ch; }
.section-head--light { color: #fff; }

.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 0 rgba(27, 169, 156, 0.6);
  animation: pulse 2.4s infinite var(--ease);
  flex: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(27, 169, 156, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(27, 169, 156, 0); }
  100% { box-shadow: 0 0 0 0 rgba(27, 169, 156, 0); }
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.35s var(--ease), color 0.35s var(--ease);
  will-change: transform;
}
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }

.btn--solid {
  background: var(--teal-deep);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--solid:hover {
  background: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: transparent;
  color: var(--teal-deep);
  border-color: rgba(12, 95, 87, 0.3);
}
.btn--ghost:hover {
  border-color: var(--teal-deep);
  background: rgba(12, 95, 87, 0.05);
  transform: translateY(-3px);
}

.btn--header {
  background: rgba(255,255,255,0.0);
  border-color: rgba(12, 95, 87, 0.22);
  color: var(--teal-deep);
  padding: 0.6rem 1.2rem;
  font-size: 0.92rem;
}
.btn--header:hover { background: var(--teal-deep); color: #fff; transform: translateY(-2px); }
.btn-phone-label { display: none; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 84px;
}
.brand { margin-right: auto; display: flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  color: var(--teal);
  background: rgba(27,169,156,0.1);
  border: 1px solid rgba(27,169,156,0.24);
  border-radius: 12px;
  flex: none;
  transition: width 0.4s var(--ease), height 0.4s var(--ease), background 0.4s var(--ease);
}
.brand-mark svg { width: 60%; height: 60%; }
.brand-mark .sprig-stem { stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; fill: none; }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--teal-deeper);
}
.brand-sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.32rem;
}
.site-header.scrolled .brand-mark { width: 32px; height: 32px; }
.site-header.scrolled {
  background: rgba(250, 246, 241, 0.88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(12,63,58,0.07), 0 12px 30px -22px rgba(8,63,58,0.5);
}

.nav { display: flex; gap: 1.9rem; }
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a:hover { color: var(--teal-deep); }
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block; height: 2px; width: 24px;
  background: var(--teal-deep);
  margin-inline: auto;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.5rem var(--gutter) 1.6rem;
  background: rgba(250, 246, 241, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-nav a {
  padding: 0.85rem 0.3rem;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 0.8rem; border-bottom: none; }
.mobile-nav.open { display: flex; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-top: clamp(8rem, 6rem + 8vw, 12rem);
  padding-bottom: var(--section-y);
  background:
    radial-gradient(120% 90% at 85% 0%, var(--blush-soft) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream) 60%, var(--cream-2) 100%);
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  z-index: 0;
  opacity: 0.55;
}
.hero-orb--1 {
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  top: -12vw; right: -8vw;
  background: radial-gradient(circle at 40% 40%, var(--blush) 0%, var(--blush-soft) 60%, transparent 72%);
  animation: float1 16s ease-in-out infinite;
}
.hero-orb--2 {
  width: 30vw; height: 30vw; max-width: 380px; max-height: 380px;
  bottom: -6vw; left: -6vw;
  background: radial-gradient(circle at 50% 50%, rgba(27,169,156,0.22) 0%, transparent 70%);
  animation: float2 20s ease-in-out infinite;
}
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-22px,26px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(24px,-20px)} }

.hero-grain {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  background-image: radial-gradient(rgba(12,63,58,0.05) 1px, transparent 1px);
  background-size: 4px 4px;
  mask-image: radial-gradient(80% 80% at 50% 30%, #000 0%, transparent 80%);
}

/* ---------- Botanical sprig motif (shared) ---------- */
.sprig-stem {
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  fill: none;
  vector-effect: non-scaling-stroke;
}
.sprig-leaf path {
  fill: currentColor;
  fill-opacity: 0.16;
  stroke: currentColor;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}
.sprig-bud { fill: currentColor; fill-opacity: 0.45; }

.hero-sprig {
  position: absolute;
  z-index: 1;
  left: clamp(-2.5rem, -3rem + 3vw, 1.5rem);
  bottom: -1rem;
  height: min(74%, 540px);
  width: auto;
  color: var(--teal);
  opacity: 0.13;
  pointer-events: none;
  transform-origin: bottom center;
  animation: sprigSway 12s ease-in-out infinite;
}
@keyframes sprigSway {
  0%, 100% { transform: rotate(-1.3deg); }
  50%      { transform: rotate(1.3deg); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  background: rgba(27,169,156,0.1);
  border: 1px solid rgba(27,169,156,0.22);
  padding: 0.45rem 1rem 0.45rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.6rem;
}

.hero-title {
  font-size: var(--fs-h1);
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  max-width: 16ch;
  color: var(--teal-deeper);
}
.hero-lede {
  font-size: var(--fs-lede);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 2.2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 1rem + 2vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero-stats dt {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1;
}
.hero-stats dd {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* Hero art card */
.hero-art {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 420px;
}
.hero-art-frame {
  position: absolute;
  inset: auto -1.7rem -1.7rem auto;
  width: 72%; height: 74%;
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(27,169,156,0.16), rgba(247,217,201,0.4));
  border: 1px solid rgba(27,169,156,0.16);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.hero-art-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: radial-gradient(rgba(12,63,58,0.06) 1px, transparent 1px);
  background-size: 7px 7px;
  opacity: 0.8;
}
.hero-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 1.4rem + 1vw, 2.6rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.7);
  z-index: 2;
}
.hero-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(150deg, var(--blush) 0%, transparent 45%, rgba(27,169,156,0.4) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.hero-card-mark { padding-bottom: 1.4rem; margin-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.hero-card-mark img { width: 100%; height: auto; }
.hero-card-quote {
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.4;
  color: var(--teal-deeper);
  font-style: italic;
}
.hero-card-foot {
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero-card-name { display: block; font-weight: 700; font-size: 0.95rem; color: var(--ink); letter-spacing: 0.02em; }
.hero-card-loc { display: block; font-size: 0.84rem; color: var(--muted); margin-top: 0.15rem; }
.hero-card-signet {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  color: var(--teal);
  background: rgba(27,169,156,0.08);
  border: 1px solid rgba(27,169,156,0.2);
  border-radius: 11px;
}
.hero-card-signet svg { width: 60%; height: 60%; }
.hero-card-signet .sprig-stem { stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; fill: none; }

.hero-badge {
  position: absolute;
  bottom: -26px;
  left: -22px;
  z-index: 3;
  background: var(--white);
  border-radius: 18px;
  padding: 0.7rem 1rem 0.7rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  animation: floatBadge 7s ease-in-out infinite;
}
.hero-badge img { width: 56px; height: 56px; }
.hero-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--teal-deep);
}
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.hero-scroll {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px; height: 42px;
  border: 1.5px solid rgba(12,95,87,0.3);
  border-radius: 20px;
  display: grid;
  place-items: start center;
  padding-top: 7px;
}
.hero-scroll span {
  width: 4px; height: 8px; border-radius: 4px;
  background: var(--teal);
  animation: scrollDot 1.8s infinite var(--ease);
}
@keyframes scrollDot { 0%{transform:translateY(0);opacity:1} 70%{transform:translateY(12px);opacity:0} 100%{opacity:0} }

/* =========================================================
   APPROACH
   ========================================================= */
.approach { padding-top: var(--section-y); }
.approach-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 0.5rem + 4vw, 5rem);
  align-items: start;
}
.approach-head {
  font-size: clamp(1.7rem, 1.2rem + 2vw, 3rem);
  color: var(--teal-deeper);
  max-width: 16ch;
  margin-top: 0.2rem;
}
.approach-detail {
  position: relative;
  padding-left: clamp(1.4rem, 0.8rem + 1.5vw, 2.4rem);
}
.approach-detail::before {
  content: "";
  position: absolute;
  left: 0; top: 0.4rem; bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(180deg, var(--teal-bright), var(--blush-deep));
  border-radius: 2px;
}
.approach-body {
  font-size: var(--fs-lede);
  color: var(--muted);
  max-width: 46ch;
}
.approach-accent {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.7rem);
  line-height: 1.32;
  color: var(--teal-deep);
  margin-top: 1.5rem;
  max-width: 26ch;
}

.value-band {
  margin-top: clamp(3rem, 2rem + 4vw, 5.5rem);
  padding: 1.15rem 0;
  background: var(--cream-2);
  border-block: 1px solid var(--line);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.value-marquee {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.value-marquee:hover { animation-play-state: paused; }
.value-track {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding: 0 1.1rem;
  margin: 0;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 0.92rem + 0.7vw, 1.45rem);
  color: var(--teal-deep);
}
.value-sep {
  color: var(--blush-deep);
  font-style: normal;
  font-size: 0.5em;
  transform: translateY(-0.15em);
  opacity: 0.9;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding-top: var(--section-y); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
}
.about-visual { position: relative; }
.about-portrait {
  position: relative;
  background:
    radial-gradient(120% 80% at 80% 8%, rgba(27,169,156,0.45) 0%, transparent 60%),
    linear-gradient(158deg, var(--teal-deep) 0%, var(--teal-deeper) 70%, #062e2a 100%);
  border-radius: var(--radius);
  padding: clamp(1.9rem, 1.4rem + 1.8vw, 3.1rem);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about-portrait::after {
  content: "";
  position: absolute; right: -50px; top: -50px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,217,201,0.32), transparent 70%);
}
.about-portrait-texture {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(247,217,201,0.16) 1px, transparent 1px);
  background-size: 9px 9px;
  -webkit-mask-image: linear-gradient(200deg, #000 0%, transparent 62%);
  mask-image: linear-gradient(200deg, #000 0%, transparent 62%);
  opacity: 0.7;
}
.about-portrait-sprig {
  position: absolute;
  top: clamp(1.4rem, 1rem + 1vw, 2.4rem);
  right: clamp(1.2rem, 0.6rem + 2vw, 2.6rem);
  height: clamp(190px, 18vw, 280px);
  width: auto;
  color: var(--blush);
  opacity: 0.42;
  z-index: 1;
}
.about-portrait-quote {
  position: relative;
  z-index: 2;
  color: var(--blush-soft);
  font-family: var(--serif);
  max-width: 24ch;
}
.about-portrait-eyebrow {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  display: block;
  margin-bottom: 0.9rem;
}
.about-portrait-quote p {
  font-size: clamp(1.3rem, 1.1rem + 0.7vw, 1.7rem);
  font-style: italic;
  line-height: 1.32;
  color: #fff;
}
.about-portrait-sign {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(247,217,201,0.82);
  display: block;
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(247,217,201,0.22);
}
.about-years {
  position: absolute;
  right: clamp(-0.5rem, -2vw, -1.5rem);
  bottom: -2rem;
  background: var(--blush);
  color: var(--teal-deeper);
  border-radius: 18px;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-md);
}
.about-years strong { font-family: var(--serif); font-size: 2.5rem; line-height: 1; }
.about-years span { font-size: 0.82rem; font-weight: 600; line-height: 1.25; }

.about-copy p { color: var(--muted); margin-top: 1.2rem; max-width: 52ch; }
.about-copy .section-head { margin-bottom: 0.4rem; }
.about-creds {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 1.5rem;
}
.about-creds li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}
.about-creds li::before {
  content: "";
  position: absolute; left: 0; top: 0.5em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(27,169,156,0.15);
}

/* =========================================================
   HOW WE HELP
   ========================================================= */
.help { padding-top: var(--section-y); }
.help-intro { max-width: 640px; margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.help-lede { font-size: var(--fs-lede); color: var(--muted); margin-top: 1.2rem; }

.help-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 0.5rem + 1.5vw, 2rem);
  counter-reset: help;
}
.help-item {
  position: relative;
  display: flex;
  gap: 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1.2rem + 1vw, 2.2rem);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.help-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.help-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.help-item:hover::before { transform: scaleX(1); }
.help-num {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--blush-deep);
  flex: none;
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center;
  border: 1.5px solid var(--blush);
  border-radius: 50%;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.help-item:hover .help-num { background: var(--teal-deep); color: #fff; border-color: var(--teal-deep); }
.help-text h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; color: var(--teal-deeper); }
.help-text p { color: var(--muted); font-size: 0.98rem; }

/* =========================================================
   PATIENT VOICES
   ========================================================= */
.voices {
  position: relative;
  margin-top: var(--section-y);
  padding-block: clamp(4.5rem, 3.5rem + 5vw, 7.5rem);
  background: linear-gradient(155deg, var(--teal-deep) 0%, var(--teal-deeper) 100%);
  overflow: hidden;
}
.voices-orb {
  position: absolute;
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  top: -20%; right: -10%;
  background: radial-gradient(circle, rgba(247,217,201,0.16), transparent 65%);
  border-radius: 50%;
}
.voices .shell { position: relative; z-index: 2; }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  margin-top: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}
.voice {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(247,217,201,0.18);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 1.5rem + 1vw, 2.6rem);
  backdrop-filter: blur(4px);
}
.voice blockquote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  line-height: 1.5;
  color: var(--blush-soft);
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--blush-deep);
}
.voice figcaption {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blush);
}
.voice figcaption::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--blush-deep);
  flex: none;
}

/* =========================================================
   VISIT
   ========================================================= */
.visit { padding-block: var(--section-y); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
}
.visit-lede { font-size: var(--fs-lede); color: var(--muted); margin-top: 1.2rem; max-width: 42ch; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

.visit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 1.4rem + 1.5vw, 2.8rem);
  box-shadow: var(--shadow-md);
}
.visit-details { list-style: none; padding: 0; display: grid; gap: 1.4rem; }
.visit-details li { display: flex; flex-direction: column; gap: 0.3rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.visit-details li:last-child { padding-bottom: 0; border-bottom: none; }
.visit-label {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal);
}
.visit-value { font-size: 1.05rem; color: var(--ink); font-weight: 500; line-height: 1.45; }
a.visit-value { transition: color 0.3s var(--ease); }
a.visit-value:hover { color: var(--teal-deep); }
.visit-open { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--teal-deep); font-weight: 700; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--teal-deeper);
  color: var(--blush-soft);
  padding-top: clamp(3.5rem, 2.5rem + 4vw, 5.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247,217,201,0.16);
}
.footer-wordmark { display: flex; flex-direction: column; line-height: 1; margin-bottom: 1.3rem; }
.footer-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
}
.footer-sub {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blush);
  margin-top: 0.5rem;
}
.footer-brand p { color: rgba(253,238,230,0.72); max-width: 38ch; font-size: 0.95rem; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1.1rem;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 0.95rem;
  color: rgba(253,238,230,0.78);
  margin-bottom: 0.7rem;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: #fff; }
.footer-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-block: 1.6rem;
  font-size: 0.84rem;
  color: rgba(253,238,230,0.6);
}

/* ---------- Spec footer (mandatory) ---------- */
.spec-footer {
  background: #06302c;
  color: rgba(253,238,230,0.62);
  text-align: center;
  font-size: 0.82rem;
  padding: 1rem var(--gutter);
  line-height: 1.6;
}
.spec-footer a { color: var(--blush); text-decoration: underline; }

/* =========================================================
   REVEAL ANIMATIONS (progressive enhancement)
   ========================================================= */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-orb, .hero-badge, .pulse-dot, .hero-scroll span,
  .hero-sprig, .value-marquee { animation: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav { display: none; }
  .btn--header { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-art { order: 2; max-width: 380px; margin-top: 0.5rem; justify-self: start; }
  .hero-art-frame { display: none; }
  .hero-title { max-width: 18ch; }
  .hero-scroll { display: none; }

  .approach-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .approach-head { max-width: 22ch; }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 460px; }
  .help-list { grid-template-columns: 1fr; }
  .voices-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .hero-badge { left: 50%; right: auto; transform: translateX(-50%); bottom: -30px; }
  @keyframes floatBadge { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-7px)} }
}

@media (max-width: 560px) {
  .header-inner { height: 70px; }
  .hero-sprig { display: none; }
  .about-creds { grid-template-columns: 1fr; }
  .about-years { right: 1rem; padding: 0.8rem 1.1rem; }
  .about-years strong { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.4rem; }
  .btn--lg { width: 100%; }
  .hero-actions, .visit-actions { width: 100%; }
}

@media (min-width: 561px) {
  .btn-phone-label { display: inline; }
}
