/* Rural Medical Partners — ruralinterventions.com
   Branded, photographic, premium healthcare site.
   Brand kit: coral #FF6D4D · teal #028090 · charcoal #2D2D2D · warm neutrals
   Type: DM Serif Display (display) · DM Sans (body) · DM Mono (labels)
   ──────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; scroll-padding-top: 120px; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

:root {
  /* Brand palette (from RMP Brand Kit) */
  --coral:        #FF6D4D;
  --coral-dark:   #E8522E;
  --coral-light:  #FFCFC4;
  --coral-pale:   #FFF3F0;

  --teal:         #028090;
  --teal-dark:    #015F6B;
  --teal-light:   #A8D8DE;
  --teal-pale:    #EDF7F9;

  --gold:         #E9A800;

  /* Warm neutral scale */
  --charcoal:     #2D2D2D;
  --charcoal-mid: #505050;
  --charcoal-soft:#6B6B6B;
  --gray:         #8A847A;
  --line:         #E8E4E0;
  --line-soft:    #F0ECE6;
  --cream:        #FAF7F2;
  --off-white:    #F9F7F5;
  --white:        #FFFFFF;

  --serif:        'DM Serif Display', Georgia, serif;
  --sans:         'DM Sans', -apple-system, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;
  --mono:         'DM Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --max:          1280px;
  --gutter:       clamp(24px, 5vw, 64px);
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-sm:    0 4px 16px -8px rgba(45,45,45,0.12);
  --shadow-md:    0 18px 40px -18px rgba(45,45,45,0.18);
  --shadow-lg:    0 32px 64px -24px rgba(45,45,45,0.22);
}

body {
  background: var(--off-white);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ═══════════ Typography ═══════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--teal);
}
.eyebrow-light { color: var(--coral-light); }
.eyebrow-light::before { background: var(--coral); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.06; letter-spacing: -0.02em; color: var(--charcoal); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--coral); font-weight: 400; }

.display {
  font-size: clamp(52px, 7.5vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--white);
  text-wrap: balance;
}

.h-section {
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.h-section.on-dark { color: var(--white); }

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--charcoal-mid);
  max-width: 62ch;
}
.lead.on-dark { color: rgba(255,255,255,0.82); }

.lede {
  font-family: var(--sans);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  max-width: 58ch;
  font-weight: 400;
}

/* ═══════════ Buttons ═══════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.btn svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--coral); color: #fff; border-color: var(--coral); box-shadow: 0 12px 28px -12px rgba(255,109,77,0.6); }
.btn-primary:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 16px 32px -10px rgba(232,82,46,0.55); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 15px; }

/* ═══════════ Nav ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  padding: 14px 0;
  background: rgba(249,247,245,0.88);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(232,228,224,0.6);
  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(249,247,245,0.95);
  border-bottom-color: var(--line);
  padding: 10px 0;
  box-shadow: 0 2px 20px -14px rgba(45,45,45,0.2);
}
.nav-inner { display: flex; align-items: center; gap: 32px; }

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: 72px;
  width: auto;
  display: block;
  transition: height 0.3s var(--ease);
}
.nav.scrolled .brand-logo { height: 56px; }

/* Logo in mobile menu + footer (horizontal white variant on dark backgrounds) */
.brand-logo-menu { height: 68px; }
.brand-logo-footer { height: 80px; }

.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--charcoal-mid);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--coral);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--charcoal);
  place-items: center;
}

/* Nav is always light-backgrounded, so links use dark text everywhere */

/* Mobile menu */
.menu {
  display: none;
  position: fixed; inset: 0; z-index: 120;
  background: var(--charcoal);
  padding: 28px var(--gutter);
  flex-direction: column;
  overflow-y: auto;
}
.menu.open { display: flex; }
.menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 56px; }
.menu-head button { color: #fff; }
.menu-list { display: flex; flex-direction: column; }
.menu-list a {
  font-family: var(--serif);
  font-size: clamp(36px, 7vw, 56px);
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  letter-spacing: -0.02em;
  transition: color 0.2s, padding-left 0.3s var(--ease);
}
.menu-list a:hover { color: var(--coral); padding-left: 10px; }
.menu-cta { margin-top: auto; padding-top: 40px; }
.menu-cta .btn { width: 100%; justify-content: center; }

/* ═══════════ Hero ═══════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 180px 0 0;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(26,24,21,0.88) 0%, rgba(26,24,21,0.72) 40%, rgba(26,24,21,0.35) 75%, rgba(26,24,21,0.55) 100%),
    linear-gradient(180deg, rgba(26,24,21,0.6) 0%, rgba(26,24,21,0) 30%, rgba(26,24,21,0) 70%, rgba(26,24,21,0.85) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: 80px; }
.hero-copy { max-width: 860px; }
.hero-copy .eyebrow { margin-bottom: 28px; }
.hero-copy .display { margin-bottom: 28px; }
.hero-copy .lede { margin-bottom: 44px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  margin-top: 48px;
}
.hstat { padding: 0 28px; border-right: 1px solid rgba(255,255,255,0.1); min-width: 0; }
.hstat:first-child { padding-left: 0; }
.hstat:last-child { border-right: 0; padding-right: 0; }
.hstat-n {
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.hstat-n span { color: var(--coral); }
.hstat-l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ═══════════ Sections baseline ═══════════ */
.section {
  padding: clamp(96px, 12vw, 168px) 0;
  position: relative;
}
.section-soft { background: var(--cream); }
.section-dark { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }
.section-dark::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,109,77,0.18), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}
.section-dark::after {
  content: '';
  position: absolute; bottom: -15%; left: -10%;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2,128,144,0.22), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}

.section-head { max-width: 900px; margin-bottom: clamp(64px, 8vw, 112px); }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head h2 { margin-bottom: 24px; }
.section-head .lead { margin-top: 24px; }

/* ═══════════ Problem ═══════════ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}
.pstat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  min-height: 200px;
  transition: transform 0.35s var(--ease), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.pstat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.pstat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pstat:hover::before { transform: scaleX(1); }
.pstat-coral::before { background: var(--coral); transform: scaleX(1); }
.pstat-teal::before { background: var(--teal); transform: scaleX(1); }
.pstat-num {
  font-family: var(--serif);
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1;
  color: var(--charcoal);
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
}
.pstat-num sup {
  font-size: 0.45em;
  color: var(--coral);
  line-height: 1;
  margin-left: 2px;
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
  font-feature-settings: normal;
}
.pstat-teal .pstat-num sup { color: var(--teal); }
.pstat-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  line-height: 1.5;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.35s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.pain:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--coral-light); }
.pain-tag {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pain h3 { font-family: var(--serif); font-size: 26px; line-height: 1.15; color: var(--charcoal); }
.pain p { font-size: 15.5px; line-height: 1.65; color: var(--charcoal-mid); }

/* ═══════════ Mission ═══════════ */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) { .mission-grid { grid-template-columns: 1.2fr 1fr; gap: 96px; } }
.mission-copy .eyebrow { margin-bottom: 22px; }
.mission-copy .h-section { margin-bottom: 28px; }
.mission-copy .lead { margin-bottom: 20px; }

.mission-quote {
  position: relative;
  padding: 40px 0 40px 32px;
  border-left: 3px solid var(--coral);
}
.mission-quote-rule {
  position: absolute;
  top: 0; left: -3px;
  width: 3px; height: 64px;
  background: var(--gold);
}
.mission-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.28;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.mission-quote figcaption {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-light);
}

/* ═══════════ Capabilities ═══════════ */
.cap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 760px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .cap-grid { grid-template-columns: repeat(3, 1fr); } }

.cap-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.35s, border-color 0.3s;
}
.cap-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--coral-light); }
.cap-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: var(--charcoal);
}
.cap-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,45,45,0) 40%, rgba(45,45,45,0.3) 100%);
}
.cap-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.cap-card:hover .cap-media img { transform: scale(1.06); }
.cap-body { padding: 32px 32px 36px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.cap-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--coral);
}
.cap-card h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.cap-card p { font-size: 15.5px; line-height: 1.65; color: var(--charcoal-mid); }
.cap-meta {
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  border-top: 1px solid var(--line);
}

.spec-band {
  margin-top: clamp(64px, 8vw, 96px);
  padding: 40px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.spec-band .eyebrow { margin-bottom: 4px; }
.spec-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.spec {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--line);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.25s var(--ease);
}
.spec:hover { background: var(--coral); color: #fff; border-color: var(--coral); transform: translateY(-2px); }

/* ═══════════ Banner ═══════════ */
.banner {
  padding: clamp(96px, 12vw, 140px) 0;
  background:
    linear-gradient(135deg, rgba(2,128,144,0.97), rgba(1,95,107,0.97));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,109,77,0.38), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) { .banner-grid { grid-template-columns: 1.3fr 1fr; gap: 96px; } }
.banner .eyebrow { margin-bottom: 22px; }
.banner .h-section { margin-bottom: 24px; }
.banner-media {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow-lg);
}
.banner-media img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════ Team ═══════════ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--coral-light); }

.team-photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  /* Uniform editorial black & white treatment across every headshot */
  filter: grayscale(100%) contrast(1.08) brightness(0.92);
  transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
  image-rendering: auto;
}
.team-card:hover .team-photo img {
  transform: scale(1.03);
  filter: grayscale(100%) contrast(1.12) brightness(0.95);
}
/* Per-photo overrides where source tone requires it */
.team-photo.photo-lighten img {
  filter: grayscale(100%) contrast(1.0) brightness(1.12);
}
.team-card:hover .team-photo.photo-lighten img {
  filter: grayscale(100%) contrast(1.04) brightness(1.15);
}
/* Low-resolution source: subtle contrast bump to hide softness */
.team-photo.photo-sharpen img {
  filter: grayscale(100%) contrast(1.14) brightness(0.94) saturate(0);
  image-rendering: -webkit-optimize-contrast;
}
.team-card:hover .team-photo.photo-sharpen img {
  filter: grayscale(100%) contrast(1.18) brightness(0.97) saturate(0);
}

/* Monogram fallback (for any physician without a headshot yet) */
.team-photo:has(.team-mono)::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,109,77,0.25), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(2,128,144,0.18), transparent 55%);
}
.team-photo-teal { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); }
.team-photo-teal::before { background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), transparent 55%); }
.team-photo-coral { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%); }
.team-photo-coral::before { background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.22), transparent 55%); }

.team-mono {
  position: relative;
  font-family: var(--serif);
  font-size: 68px;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
}

.team-info { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.team-info h3 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.team-role {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.team-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal-mid);
}
.team-full {
  max-height: 0; overflow: hidden;
  transition: max-height 0.6s var(--ease);
}
.team-full p { font-size: 15px; line-height: 1.7; color: var(--charcoal-mid); margin-top: 14px; }
.team-card.open .team-full { max-height: 2400px; }
.team-toggle {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  transition: color 0.2s;
}
.team-toggle svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.team-toggle:hover { color: var(--coral-dark); }
.team-card.open .team-toggle svg { transform: rotate(180deg); }

/* Advisors */
.advisors {
  margin-top: clamp(72px, 9vw, 112px);
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.advisors .eyebrow { margin-bottom: 32px; }
.advisor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 720px) { .advisor-grid { grid-template-columns: repeat(4, 1fr); } }
.advisor {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform 0.3s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.advisor:hover { transform: translateY(-3px); border-color: var(--teal-light); box-shadow: var(--shadow-sm); }
.ad-mono {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--charcoal);
  color: var(--coral);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 6px;
}
.ad-mono.ad-teal  { background: var(--teal); color: #fff; }
.ad-mono.ad-coral { background: var(--coral); color: #fff; }
.ad-name {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.2;
}
.ad-role {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

/* ═══════════ FAQ ═══════════ */
.faq-list {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--charcoal);
  line-height: 1.25;
  transition: color 0.2s, background 0.2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--coral); background: var(--coral-pale); }
.faq-plus {
  width: 16px; height: 16px;
  position: relative; flex-shrink: 0;
  color: var(--coral);
  transition: transform 0.35s var(--ease);
}
.faq-plus::before, .faq-plus::after {
  content: ''; position: absolute; background: currentColor;
}
.faq-plus::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq-plus::after  { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); transition: transform 0.35s var(--ease); }
.faq-list details[open] .faq-plus::after { transform: translateX(-50%) scaleY(0); }
.faq-body { padding: 0 32px 28px; }
.faq-body p {
  font-size: 15.5px; line-height: 1.7; color: var(--charcoal-mid);
  max-width: 72ch;
}

/* ═══════════ Contact (email-first, no form) ═══════════ */
.contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 80px);
}
.contact-lead { max-width: 780px; }
.contact-lead .eyebrow { margin-bottom: 22px; }
.contact-lead .h-section { margin-bottom: 28px; }
.contact-lead .lead { margin-bottom: 0; max-width: 64ch; }

.contact-cta {
  padding: clamp(32px, 4vw, 56px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,109,77,0.12), transparent 60%);
  pointer-events: none;
}
.contact-cta-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-light);
  display: block;
  margin-bottom: 20px;
  position: relative;
}
.contact-cta-email {
  font-family: var(--serif);
  font-size: clamp(28px, 4.2vw, 52px);
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.1;
  word-break: break-word;
  margin-bottom: 32px;
  user-select: all;
  cursor: text;
  position: relative;
}
.contact-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.25s var(--ease);
}
.contact-btn svg { width: 16px; height: 16px; }
.contact-btn-primary {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  box-shadow: 0 12px 28px -12px rgba(255,109,77,0.6);
}
.contact-btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-1px);
}
.contact-btn-primary.is-copied {
  background: #fff;
  color: var(--coral);
  border-color: #fff;
}
.contact-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.contact-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.contact-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 720px) { .contact-meta { grid-template-columns: auto 1fr; gap: 64px; align-items: start; } }

.contact-meta-item { display: flex; flex-direction: column; gap: 10px; }
.contact-meta-value {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  color: #fff;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.contact-meta-value:hover { color: var(--coral); }
.contact-meta-note {
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 52ch;
}

/* Legacy form block (kept for backward-compat; currently unused) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 88px; } }

.contact-copy .eyebrow { margin-bottom: 22px; }
.contact-copy .h-section { margin-bottom: 28px; }
.contact-copy .lead { margin-bottom: 20px; }

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.contact-info > div { display: flex; flex-direction: column; gap: 10px; }
.contact-value {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  color: #fff;
  letter-spacing: -0.005em;
  transition: color 0.2s;
}
.contact-value:hover { color: var(--coral); }

.form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ff { display: flex; flex-direction: column; gap: 8px; }
.ff label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.ff input, .ff select, .ff textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 13px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
}
.ff input::placeholder,
.ff textarea::placeholder { color: rgba(255,255,255,0.4); }
.ff input:focus, .ff select:focus, .ff textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: rgba(255,255,255,0.09);
}
.ff textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.ff select option { color: var(--charcoal); background: var(--white); }
.form-submit { align-self: stretch; margin-top: 8px; justify-content: center; }
.form-note { font-size: 13px; color: rgba(255,255,255,0.6); text-align: center; margin-top: 4px; }
.form-note.err { color: var(--coral-light); }

/* ═══════════ Footer ═══════════ */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.75);
  padding: 80px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-lead p { max-width: 38ch; line-height: 1.65; margin-top: 16px; color: rgba(255,255,255,0.65); }
.footer-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 20px;
}
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer ul a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer ul a:hover { color: var(--coral); }

.footer-bar {
  padding-top: 32px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ═══════════ Responsive ═══════════ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav .btn-primary { display: none; }
  .nav-toggle { display: grid; margin-left: auto; }
  .hero { min-height: 88vh; padding-top: 130px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0; padding: 24px 0; }
  .hstat { padding: 20px 16px; border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hstat:first-child { padding-left: 0; }
  .hstat:nth-child(2) { border-right: 0; padding-right: 0; }
  .hstat:last-child { border-right: 0; padding-right: 0; border-bottom: 0; }
  .hstat:nth-last-child(2) { border-bottom: 0; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .ff-row { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 560px) {
  .problem-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .hstat { border-right: 0; padding: 20px 0; }
}

/* ═══════════ Reveal ═══════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
