/* ================================================================
   MERIDIAN SPINE & WELLNESS — Stylesheet v3
   Apple meets spa. Pure white, considered green, generous space.
   ================================================================ */

:root {
  --bg: #FFFFFF;
  --bg-soft: #F5F8F3;
  --bg-section: #EEF4EA;
  --bg-card: #FFFFFF;
  --bg-elevated: #FAFBF9;

  --ink: #1D1D1F;
  --ink-soft: #515154;
  --ink-muted: #86868B;

  --rule: #E5E7E1;
  --rule-soft: #F0F2EE;

  --green: #2C5F3F;
  --green-deep: #18402A;
  --green-mid: #4F8867;
  --green-bright: #6BAA88;
  --green-glow: #B8D1B9;
  --green-tint: #E8F0E4;

  --shadow-xs: 0 1px 2px rgba(29, 29, 31, 0.04);
  --shadow-sm: 0 1px 3px rgba(29, 29, 31, 0.04), 0 2px 8px rgba(29, 29, 31, 0.04);
  --shadow: 0 1px 3px rgba(29, 29, 31, 0.04), 0 8px 32px rgba(29, 29, 31, 0.06);
  --shadow-lg: 0 2px 4px rgba(29, 29, 31, 0.04), 0 24px 64px rgba(29, 29, 31, 0.08);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

.serif { font-family: 'Fraunces', Georgia, serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
img { max-width: 100%; display: block; }

/* ---------- Reveal animations (gentle) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.04s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.20s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.28s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.36s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.44s; opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex; align-items: baseline; gap: 7px;
}
.logo-mark {
  width: 9px; height: 9px;
  background: var(--green);
  border-radius: 2px;
  display: inline-block;
  transform: translateY(-1px);
}
.logo em { font-style: italic; font-weight: 400; color: var(--green); }
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 450;
  transition: color 0.2s;
  letter-spacing: -0.005em;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 500; }
.nav-cta { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--green);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: var(--green-deep);
}
.btn-ghost {
  color: var(--ink);
  background: var(--bg-soft);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--green-tint); color: var(--green-deep); }
.btn-outline {
  color: var(--ink);
  border-color: var(--rule);
  background: transparent;
}
.btn-outline:hover { border-color: var(--ink); }
.btn-call { color: var(--ink-soft); background: transparent; }
.btn-call:hover { color: var(--green); }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-arrow svg { transition: transform 0.25s ease; }
.btn-arrow:hover svg { transform: translateX(3px); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  padding: 96px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(184, 209, 185, 0.4) 0%, rgba(184, 209, 185, 0.15) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 36px;
  box-shadow: var(--shadow-xs);
}
.hero-pill::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(107, 170, 136, 0.2);
  animation: gentle-pulse 2.5s ease-in-out infinite;
}
.hero-pill strong {
  color: var(--ink);
  font-weight: 600;
}
@keyframes gentle-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

h1.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 380;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto;
}
h1.hero-title em {
  font-style: italic;
  font-weight: 350;
  color: var(--green);
}

.hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 28px auto 0;
  letter-spacing: -0.005em;
}
.hero-actions {
  display: inline-flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 44px;
}

/* Hero visual: floating product-style card */
.hero-visual {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 720px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}
.hero-card-info {
  padding: 36px 36px 36px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-card-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 14px;
}
.hero-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 4px;
}
.hero-card-meta {
  font-size: 14px;
  color: var(--ink-muted);
  margin-top: 12px;
}
.hero-card-list {
  list-style: none;
  background: var(--bg-section);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.hero-card-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13.5px;
}
.hero-card-list .day { color: var(--ink-soft); font-weight: 500; }
.hero-card-list .hours { color: var(--ink); font-variant-numeric: tabular-nums; font-weight: 500; }
.hero-card-list .closed { color: var(--ink-muted); }

@media (max-width: 720px) {
  .hero { padding: 64px 0 80px; }
  .hero-card { grid-template-columns: 1fr; }
  .hero-card-list { padding: 24px 28px; }
}

/* ---------- INNER PAGE HERO ---------- */
.page-hero {
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-block;
}
.page-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 380;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 920px;
  margin: 0 auto;
}
.page-hero h1 em {
  font-style: italic; font-weight: 350; color: var(--green);
}
.page-hero-sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 24px auto 0;
}
@media (max-width: 880px) { .page-hero { padding: 64px 0 56px; } }

/* ---------- STATS ROW ---------- */
.stats-section {
  padding: 80px 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  background: var(--bg-soft);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 320;
  letter-spacing: -0.045em;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
}
.stat-num em {
  font-style: italic;
  color: var(--green);
  font-weight: 320;
}
.stat-num .currency {
  font-size: 0.55em;
  vertical-align: top;
  color: var(--green);
  margin-right: 0.04em;
  font-weight: 360;
}
.stat-label {
  font-size: 13px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr; gap: 48px; }
  .stat { border-right: none; border-bottom: 1px solid var(--rule); padding-bottom: 48px; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ---------- SECTION ---------- */
section { padding: 120px 0; position: relative; }
.section-tinted { background: var(--bg-soft); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.section-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 380;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.section-title em {
  font-style: italic; color: var(--green); font-weight: 350;
}
.section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  margin-top: 20px;
  line-height: 1.5;
}

@media (max-width: 880px) {
  section { padding: 80px 0; }
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}
.service:hover {
  border-color: var(--green-glow);
  background: var(--bg-elevated);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service:hover .service-arrow { transform: translate(3px, -3px); opacity: 1; }
.service-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  color: var(--green);
}
.service-num {
  font-size: 12px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.service-arrow {
  width: 14px; height: 14px;
  opacity: 0;
  transform: translate(0, 0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: var(--green);
}
.service-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 420;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.15;
}
.service-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.service-price {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--rule-soft);
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px;
}
.service-price-label { color: var(--ink-muted); }
.service-price-value {
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 880px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- PHILOSOPHY (light-tinted section) ---------- */
.philosophy {
  background: var(--bg-section);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 0;
}
.pillar {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
}
.pillar-icon {
  width: 48px; height: 48px;
  background: var(--green-tint);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--green);
}
.pillar-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 420;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.pillar-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.team-grid.large {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--green-glow);
}
.team-photo {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: var(--green-tint);
  display: flex; align-items: flex-end; justify-content: center;
}
.team-photo svg.silhouette {
  width: 65%;
  height: auto;
  display: block;
  color: var(--green);
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.4s;
}
.team-card:hover .team-photo svg.silhouette {
  opacity: 0.7;
  transform: scale(1.04);
}
.team-info { padding: 18px 20px; }
.team-info.large { padding: 24px 26px; }
.team-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.team-info.large .team-name { font-size: 22px; margin-bottom: 4px; }
.team-role {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
}
.team-info.large .team-role { font-size: 13.5px; margin-bottom: 14px; }
.team-bio {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 0;
}
@media (max-width: 1080px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid.large { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid.large { grid-template-columns: 1fr; }
}

/* ---------- TESTIMONIAL ---------- */
.testimonial {
  background: var(--bg);
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.testimonial-content { max-width: 880px; text-align: center; margin: 0 auto; position: relative; z-index: 2; }
.stars {
  color: var(--green);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 32px;
}
.quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.25;
  font-weight: 360;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 36px;
}
.quote em { color: var(--green); font-style: italic; }
.quote-attr {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- LOCATION ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: stretch;
}
.location-info { padding-right: 16px; }
.location-block { margin-bottom: 32px; }
.location-block-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.location-block-content {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
  font-weight: 420;
  letter-spacing: -0.012em;
}
.location-block-content a { color: inherit; text-decoration: none; transition: color 0.2s; }
.location-block-content a:hover { color: var(--green); }

.stylized-map {
  background: var(--bg-section);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.stylized-map svg {
  width: 100%; height: 100%;
  display: block;
}
.map-pin {
  position: absolute;
  top: 50%; left: 52%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}
.pin-dot {
  width: 14px; height: 14px;
  background: var(--green);
  border: 3px solid var(--bg);
  border-radius: 50%;
  margin: 0 auto 10px;
  box-shadow: 0 0 0 6px rgba(44, 95, 63, 0.18), 0 0 0 16px rgba(44, 95, 63, 0.07);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(44, 95, 63, 0.18), 0 0 0 16px rgba(44, 95, 63, 0.07); }
  50% { box-shadow: 0 0 0 9px rgba(44, 95, 63, 0.25), 0 0 0 22px rgba(44, 95, 63, 0.04); }
}
.pin-label {
  background: var(--bg-card);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: 'Fraunces', Georgia, serif;
  box-shadow: var(--shadow-sm);
  letter-spacing: -0.005em;
  white-space: nowrap;
  border: 1px solid var(--rule);
}
@media (max-width: 880px) {
  .location-grid { grid-template-columns: 1fr; gap: 32px; }
  .location-info { padding-right: 0; }
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--green-deep);
  color: #FFFFFF;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(107, 170, 136, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 380;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.cta-band h2 em { font-style: italic; color: var(--green-glow); font-weight: 350; }
.cta-band p {
  font-size: 17px;
  opacity: 0.78;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.cta-band .btn-primary { background: #FFFFFF; color: var(--green-deep); }
.cta-band .btn-primary:hover { background: var(--bg-soft); }
.cta-band .btn-outline { color: #FFFFFF; border-color: rgba(255,255,255,0.3); background: transparent; }
.cta-band .btn-outline:hover { border-color: #FFFFFF; background: rgba(255,255,255,0.06); }

/* ---------- SERVICES PAGE ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.service-detail:last-child { border-bottom: none; }
.service-meta-num {
  font-size: 13px;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.service-detail h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.service-detail-meta {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.service-detail-meta dt {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11.5px;
  color: var(--ink-muted);
  margin-top: 16px;
  font-weight: 600;
}
.service-detail-meta dt:first-child { margin-top: 0; }
.service-detail-meta dd {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.service-body {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.service-body p { margin-bottom: 16px; }
.service-body strong { color: var(--ink); font-weight: 600; }
.service-body ul {
  list-style: none;
  margin-top: 24px;
  border-top: 1px solid var(--rule-soft);
}
.service-body ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-soft);
}
.service-body ul li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 9px;
}
@media (max-width: 880px) {
  .service-detail { grid-template-columns: 1fr; gap: 24px; padding: 56px 0; }
  .service-detail h2 { font-size: 30px; }
}

/* ---------- ABOUT PAGE ---------- */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.story-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-block;
}
.story-block h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.story-block h2 em { font-style: italic; color: var(--green); font-weight: 380; }
.story-body { font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); }
.story-body p { margin-bottom: 18px; }
.story-body strong { color: var(--ink); font-weight: 600; }
.story-pull {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 380;
  color: var(--ink);
  letter-spacing: -0.018em;
  border-left: 2px solid var(--green);
  padding: 6px 0 6px 24px;
  margin: 28px 0;
}
@media (max-width: 880px) {
  .story-block { grid-template-columns: 1fr; gap: 24px; padding: 56px 0; }
  .story-block h2 { font-size: 28px; }
}

/* ---------- NEW PATIENTS PAGE ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.step:hover {
  border-color: var(--green-glow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  font-weight: 380;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
}
.step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.step-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 880px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
}
.faq-question {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--ink);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-family: 'Geist', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--green);
  transition: transform 0.3s ease;
  line-height: 1;
}
details[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 760px;
}
.faq-answer p { margin-bottom: 10px; }

/* Insurance list */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.insurance-item {
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  transition: all 0.2s;
}
.insurance-item:hover {
  border-color: var(--green);
  background: var(--bg-soft);
}
@media (max-width: 720px) { .insurance-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CONTACT PAGE / FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-block-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-block-content {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
  font-weight: 420;
  letter-spacing: -0.012em;
}
.contact-block-content a { color: inherit; text-decoration: none; }
.contact-block-content a:hover { color: var(--green); }

/* Form */
.form {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 22px; }
.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-row.split .form-row { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--rule);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--green);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(44, 95, 63, 0.1);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.form-hidden { display: none; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--green);
  color: #FFFFFF;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--green-deep); transform: translateY(-1px); }
.form-note {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form { padding: 28px; }
  .form-row.split { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  padding: 64px 0 28px;
  font-size: 13.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { font-size: 22px; }
.footer-tagline { margin-top: 14px; max-width: 320px; line-height: 1.55; color: var(--ink-muted); }
.footer-col h4 {
  color: var(--ink);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-base {
  border-top: 1px solid var(--rule-soft);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-muted);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-base { flex-direction: column; gap: 8px; }
}

/* ---------- MOBILE STICKY CALL ---------- */
.mobile-cta {
  display: none;
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  background: var(--green);
  color: #FFFFFF;
  padding: 15px 22px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0 8px 28px rgba(44, 95, 63, 0.32);
  z-index: 99;
}
@media (max-width: 720px) {
  .mobile-cta { display: block; }
  .nav-cta .btn-call,
  .nav-cta .btn-ghost { display: none; }
  body { padding-bottom: 76px; }
}
