/* ============================================================
   INVICTA HEALTH — SHARED STYLESHEET
   All three pages use this file. Edit once, applies everywhere.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1e3a5f;
  --steel:     #4a7fb5;
  --sky:       #6bb8d4;
  --sage:      #7ab89a;
  --teal:      #3aa8b8;
  --teal-dark: #2a8fa0;
  --cream:     #f4f7fb;
  --white:     #ffffff;
  --ink:       #1e3a5f;
  --ink-soft:  #3d5a7a;
  --ink-muted: rgba(30,58,95,0.55);
  --border:    rgba(74,127,181,0.18);
  --shadow:    0 2px 28px rgba(30,58,95,0.09);
  --card-bg:   rgba(255,255,255,0.88);
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 20px;        /* FLOOR: nothing smaller than 20px */
  line-height: 1.85;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── BACKGROUND ── */
.bg-layer {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(107,184,212,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 5%, rgba(122,184,154,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(58,168,184,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #e8f3f8 0%, var(--cream) 45%, #edf2f7 100%);
}
.aurora-shimmer { position: absolute; inset: 0; overflow: hidden; }
.shimmer-band {
  position: absolute; width: 200%; left: -50%;
  border-radius: 50%; filter: blur(70px); opacity: 0;
  animation: shimmer 20s ease-in-out infinite;
}
.shimmer-band:nth-child(1) { height: 340px; top: -110px; background: linear-gradient(180deg, transparent, rgba(107,184,212,0.22), transparent); animation-delay: 0s; animation-duration: 20s; }
.shimmer-band:nth-child(2) { height: 270px; top: -70px;  background: linear-gradient(180deg, transparent, rgba(74,127,181,0.14), transparent); animation-delay: -8s; animation-duration: 26s; }
.shimmer-band:nth-child(3) { height: 230px; top: -30px;  background: linear-gradient(180deg, transparent, rgba(122,184,154,0.14), transparent); animation-delay: -15s; animation-duration: 23s; }
@keyframes shimmer {
  0%   { opacity: 0; transform: translateX(-5%) rotate(-.4deg); }
  25%  { opacity: 1; }
  75%  { opacity: .85; }
  100% { opacity: 0; transform: translateX(5%) rotate(.4deg); }
}

/* Mountains */
.mountains { position: fixed; bottom: 0; left: 0; right: 0; height: 30%; pointer-events: none; z-index: 1; }
.mountain-layer { position: absolute; bottom: 0; left: 0; right: 0; }
.mountain-layer:nth-child(1) svg { fill: #b8cfe0; }
.mountain-layer:nth-child(2) svg { fill: #ccdded; }
.mountain-layer:nth-child(3) svg { fill: #ddeef5; }
.mountain-layer svg { width: 100%; display: block; }

/* ── NAVIGATION ── */
.site-nav {
  position: relative; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 52px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(74,127,181,0.15);
  box-shadow: 0 1px 24px rgba(30,58,95,0.08);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 128px; width: auto; } /* 2x size */
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 20px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 400;
  transition: color .3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

/* ── PAGE WRAPPER ── */
.page {
  position: relative; z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px 280px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SHARED PAGE HEADER ── */
/* Used on About and Insurance pages */
.page-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeUp 1s ease forwards .2s;
}
.page-header .eyebrow {
  font-size: 22px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  font-weight: 400;
}
/* THE ONE TRUE H1 — identical on every page */
h1,
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(72px, 14vw, 160px);
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--navy);
}
h1 em,
.page-header h1 em { font-style: italic; color: var(--teal); }

.page-header .subtitle {
  margin-top: 28px;
  font-size: 22px;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.header-rule {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--steel), transparent);
  margin: 32px auto 0;
}

/* ── HOME HERO ── */
.hero {
  position: relative; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 110px 40px 300px;
  min-height: 90vh;
}
.wordmark {
  font-size: 20px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--teal); font-weight: 400;
  opacity: 0; animation: fadeUp 1s ease forwards .2s;
  margin-bottom: 24px;
}
.divider {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--steel), transparent);
  margin: 0 auto 48px;
  opacity: 0; animation: fadeUp 1s ease forwards .4s;
}
.tagline {
  font-size: 22px; line-height: 2.0; color: var(--ink-soft);
  max-width: 560px; margin: 36px auto 64px;
  opacity: 0; animation: fadeUp 1.2s ease forwards .75s;
}
.cta-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  opacity: 0; animation: fadeUp 1.2s ease forwards 1s;
}
.cta-label {
  font-size: 20px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-muted);
}

/* ── BUTTONS ── */
.cta-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 22px 56px;
  background: linear-gradient(135deg, var(--steel), var(--teal));
  border-radius: 4px; color: white; text-decoration: none;
  font-family: 'Jost', sans-serif; font-weight: 500;
  font-size: 20px; letter-spacing: .16em; text-transform: uppercase;
  box-shadow: 0 6px 32px rgba(74,127,181,0.38);
  transition: opacity .3s, box-shadow .3s, transform .2s;
}
.cta-btn:hover { opacity: .9; box-shadow: 0 8px 40px rgba(74,127,181,0.52); transform: translateY(-2px); }
.cta-btn svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; transition: transform .3s; }
.cta-btn:hover svg { transform: translateX(5px); }

.outline-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px;
  border: 2px solid var(--steel); border-radius: 4px;
  color: var(--steel); text-decoration: none;
  font-family: 'Jost', sans-serif; font-size: 20px;
  letter-spacing: .14em; text-transform: uppercase;
  white-space: nowrap; font-weight: 400;
  transition: background .3s, color .3s;
}
.outline-btn:hover { background: var(--steel); color: white; }
.outline-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .3s; }
.outline-btn:hover svg { transform: translateX(4px); }

/* ── CRISIS RESOURCES (Home) ── */
.resources-section {
  position: relative; z-index: 10;
  max-width: 1100px; margin: 0 auto; padding: 0 40px 100px;
  opacity: 0; animation: fadeUp 1.2s ease forwards 1.3s;
}
.resources-header { text-align: center; margin-bottom: 48px; }
.divider-line {
  width: 64px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,127,181,0.4), transparent);
  margin: 0 auto 36px;
}
.resources-label {
  font-size: 20px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 14px;
}
.resources-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(38px, 5vw, 56px); color: var(--navy);
}

/* ── CARDS ── */
.hotline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.hotline-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: box-shadow .3s, transform .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.hotline-card:hover { box-shadow: 0 10px 40px rgba(30,58,95,0.14); transform: translateY(-4px); border-color: rgba(74,127,181,0.35); }
.hotline-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.hotline-card.national::before { background: linear-gradient(90deg, var(--steel), var(--sky)); }
.hotline-card.missouri::before { background: linear-gradient(90deg, var(--teal), var(--steel)); }
.hotline-card.va::before       { background: linear-gradient(90deg, var(--navy), var(--steel)); }

.hotline-icon { font-size: 28px; margin-bottom: 16px; }
.hotline-org {
  font-size: 20px; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 8px;
}
.hotline-card.national .hotline-org { color: var(--steel); }
.hotline-card.missouri .hotline-org { color: var(--teal); }
.hotline-card.va       .hotline-org { color: var(--navy); }

.hotline-name {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 28px; color: var(--navy); margin-bottom: 18px; line-height: 1.25;
}
.hotline-numbers { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.hotline-number  { display: flex; align-items: center; gap: 12px; }
.number-badge    { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 24px; color: var(--navy); }
.number-label    { font-size: 20px; letter-spacing: .08em; color: var(--ink-muted); text-transform: uppercase; }
.hotline-desc    { font-size: 20px; line-height: 1.8; color: var(--ink-soft); }

.emergency-note {
  text-align: center; margin-top: 32px; padding: 22px 28px;
  border: 1px solid rgba(74,127,181,0.18); border-radius: 10px;
  background: rgba(255,255,255,0.65);
}
.emergency-note p { font-size: 20px; color: var(--ink-muted); }
.emergency-note strong { color: var(--navy); font-weight: 500; }

/* ── ABOUT PAGE ── */
.provider-hero {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 60px; align-items: start; margin-bottom: 72px;
  opacity: 0; animation: fadeUp 1s ease forwards .4s;
}
.avatar-wrap { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.avatar {
  width: 220px; height: 220px; border-radius: 50%;
  border: 3px solid rgba(74,127,181,0.35);
  box-shadow: 0 8px 40px rgba(74,127,181,0.22);
  overflow: hidden;
  flex-shrink: 0;
}
.avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.provider-badge {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px 24px;
  text-align: center; width: 100%; max-width: 240px;
  box-shadow: var(--shadow);
}
.badge-title {
  font-size: 20px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 8px;
}
.badge-value {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 22px; color: var(--navy); line-height: 1.4;
}
.coming-soon-note {
  font-size: 20px; letter-spacing: .1em;
  color: #b07d00; margin-top: 8px; text-transform: uppercase;
}

.provider-bio h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(44px, 6.5vw, 72px); color: var(--navy);
  margin-bottom: 10px; line-height: 1.1;
}
.provider-bio .credentials {
  font-size: 20px; letter-spacing: .1em; color: var(--teal);
  margin-bottom: 28px; text-transform: uppercase;
}
.provider-bio p { font-size: 20px; line-height: 1.95; color: var(--ink-soft); margin-bottom: 22px; }

.philosophy {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 56px 52px; margin-bottom: 60px;
  text-align: center; box-shadow: var(--shadow);
  opacity: 0; animation: fadeUp 1s ease forwards .6s;
  position: relative; overflow: hidden;
}
.philosophy::before {
  content: '"'; position: absolute; top: -24px; left: 20px;
  font-family: 'Cormorant Garamond', serif; font-size: 200px;
  color: rgba(74,127,181,0.07); line-height: 1; pointer-events: none;
}
.philosophy p {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-weight: 300; font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.85; color: var(--ink-soft);
  max-width: 720px; margin: 0 auto;
}
.philosophy cite {
  display: block; margin-top: 28px; font-size: 20px; font-style: normal;
  letter-spacing: .22em; text-transform: uppercase; color: var(--teal);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px; margin-bottom: 36px;
}
.info-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 32px; box-shadow: var(--shadow);
  opacity: 0; animation: fadeUp 1s ease forwards;
  transition: box-shadow .3s, transform .3s; position: relative; overflow: hidden;
}
.info-card:hover { box-shadow: 0 10px 40px rgba(30,58,95,0.13); transform: translateY(-4px); }
.info-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.info-card.navy-card::before  { background: linear-gradient(90deg, var(--navy), var(--steel)); }
.info-card.steel-card::before { background: linear-gradient(90deg, var(--steel), var(--sky)); }
.info-card.teal-card::before  { background: linear-gradient(90deg, var(--teal), var(--sky)); }
.info-card.sage-card::before  { background: linear-gradient(90deg, var(--sage), var(--teal)); }
.info-card:nth-child(1) { animation-delay: .5s; }
.info-card:nth-child(2) { animation-delay: .65s; }
.info-card:nth-child(3) { animation-delay: .8s; }
.info-card:nth-child(4) { animation-delay: .95s; }

.card-eyebrow {
  font-size: 20px; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 18px;
}
.info-card.navy-card  .card-eyebrow { color: var(--navy); }
.info-card.steel-card .card-eyebrow { color: var(--steel); }
.info-card.teal-card  .card-eyebrow { color: var(--teal); }
.info-card.sage-card  .card-eyebrow { color: var(--sage); }
.card-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 28px; color: var(--navy); margin-bottom: 20px;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 20px; padding: 8px 16px; border-radius: 24px;
  letter-spacing: .04em; border: 1px solid;
}
.info-card.navy-card  .tag { border-color: rgba(30,58,95,.25);  color: #1e3a5f; background: rgba(30,58,95,.06); }
.info-card.steel-card .tag { border-color: rgba(74,127,181,.25); color: #2a5a9a; background: rgba(74,127,181,.07); }
.info-card.teal-card  .tag { border-color: rgba(58,168,184,.25); color: #1a8fa0; background: rgba(58,168,184,.07); }
.info-card.sage-card  .tag { border-color: rgba(122,184,154,.3); color: #3a8060; background: rgba(122,184,154,.10); }

.edu-item {
  display: flex; flex-direction: column; gap: 6px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(30,58,95,.07);
}
.edu-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.edu-degree { font-size: 20px; color: var(--navy); font-weight: 400; }
.edu-school  { font-size: 20px; color: var(--ink-muted); }

.cta-section {
  text-align: center; margin-bottom: 64px;
  opacity: 0; animation: fadeUp 1s ease forwards 1.15s;
}
.cta-section h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(38px, 5vw, 56px); color: var(--navy); margin-bottom: 16px;
}
.cta-section p { font-size: 20px; color: var(--ink-soft); margin-bottom: 38px; }

/* ── INSURANCE PAGE ── */
.highlight-banner {
  display: flex; align-items: flex-start; gap: 22px;
  background: rgba(74,127,181,0.08); border: 1px solid rgba(74,127,181,0.22);
  border-radius: 12px; padding: 30px 36px; margin-bottom: 56px;
  opacity: 0; animation: fadeUp 1s ease forwards .35s;
}
.banner-icon { font-size: 32px; flex-shrink: 0; margin-top: 4px; }
.banner-text p { font-size: 20px; line-height: 1.85; color: var(--ink-soft); }
.banner-text strong { color: var(--navy); font-weight: 500; }

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px; margin-bottom: 56px;
}
.ins-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 34px 30px; box-shadow: var(--shadow);
  opacity: 0; animation: fadeUp 1s ease forwards;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.ins-card:hover { box-shadow: 0 10px 40px rgba(30,58,95,0.13); transform: translateY(-4px); border-color: rgba(74,127,181,0.35); }
.ins-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.ins-card:nth-child(1)::before  { background: linear-gradient(90deg, var(--navy), var(--steel)); }
.ins-card:nth-child(2)::before  { background: linear-gradient(90deg, var(--steel), var(--sky)); }
.ins-card:nth-child(3)::before  { background: linear-gradient(90deg, var(--sky), var(--teal)); }
.ins-card:nth-child(4)::before  { background: linear-gradient(90deg, var(--teal), var(--sage)); }
.ins-card:nth-child(5)::before  { background: linear-gradient(90deg, var(--sage), var(--teal)); }
.ins-card:nth-child(6)::before  { background: linear-gradient(90deg, var(--teal), var(--sky)); }
.ins-card:nth-child(7)::before  { background: linear-gradient(90deg, var(--sky), var(--steel)); }
.ins-card:nth-child(8)::before  { background: linear-gradient(90deg, var(--steel), var(--navy)); }
.ins-card:nth-child(9)::before  { background: linear-gradient(90deg, #e8a020, #f0c060); }
.ins-card:nth-child(10)::before { background: linear-gradient(90deg, var(--sage), var(--teal)); }
.ins-card:nth-child(1)  { animation-delay: .4s; } .ins-card:nth-child(2)  { animation-delay: .5s; }
.ins-card:nth-child(3)  { animation-delay: .6s; } .ins-card:nth-child(4)  { animation-delay: .7s; }
.ins-card:nth-child(5)  { animation-delay: .8s; } .ins-card:nth-child(6)  { animation-delay: .9s; }
.ins-card:nth-child(7)  { animation-delay: 1.0s; }.ins-card:nth-child(8)  { animation-delay: 1.1s; }
.ins-card:nth-child(9)  { animation-delay: 1.2s; }.ins-card:nth-child(10) { animation-delay: 1.3s; }

.ins-logo-area {
  width: 60px; height: 60px; border-radius: 12px;
  background: rgba(74,127,181,0.08); border: 1px solid rgba(74,127,181,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
}
.ins-name {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 26px; color: var(--navy); margin-bottom: 12px; line-height: 1.25;
}
.ins-note { font-size: 20px; line-height: 1.8; color: var(--ink-soft); }
.ins-badge {
  display: inline-block; margin-top: 16px;
  font-size: 20px; letter-spacing: .16em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 24px;
  background: rgba(74,127,181,0.1); border: 1px solid rgba(74,127,181,0.25);
  color: var(--steel);
}

.info-section { margin-bottom: 56px; opacity: 0; animation: fadeUp 1s ease forwards 1.2s; }
.section-label {
  font-size: 20px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 32px;
  display: flex; align-items: center; gap: 18px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(74,127,181,0.3), transparent); }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 30px 36px; box-shadow: var(--shadow);
  transition: box-shadow .3s, border-color .3s;
}
.faq-item:hover { box-shadow: 0 8px 32px rgba(30,58,95,0.11); border-color: rgba(74,127,181,0.3); }
.faq-q {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 26px; color: var(--navy); margin-bottom: 12px;
}
.faq-a { font-size: 20px; line-height: 1.85; color: var(--ink-soft); }
.faq-a a { color: var(--teal); text-decoration: none; border-bottom: 1px solid rgba(58,168,184,0.3); transition: border-color .3s; }
.faq-a a:hover { border-color: var(--teal); }

/* ── FOOTER ── */
.site-footer {
  position: relative; z-index: 10;
  text-align: center; padding: 32px 28px 48px;
  font-size: 20px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-muted);
  border-top: 1px solid rgba(74,127,181,0.12);
  background: rgba(255,255,255,0.5);
}
.site-footer a { color: inherit; text-decoration: none; transition: color .3s; }
.site-footer a:hover { color: var(--teal); }

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 36px;
  height: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background: var(--navy);
  border-radius: 3px;
  transition: transform .35s ease, opacity .25s ease, background .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(13px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(4) { transform: translateY(-13px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  z-index: 150;
  padding: 140px 36px 48px;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 40px rgba(30,58,95,0.12);
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open {
  transform: translateY(0);
}
.mobile-nav a {
  display: block;
  font-size: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--navy);
  text-decoration: none;
  padding: 20px 0;
  border-bottom: 1px solid rgba(74,127,181,0.15);
  transition: color .3s, padding-left .3s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--teal); padding-left: 12px; }
.mobile-nav a.book-link {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--steel), var(--teal));
  color: white;
  padding: 20px 28px;
  border-radius: 6px;
  border-bottom: none;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mobile-nav a.book-link:hover { opacity: .9; padding-left: 28px; }

/* ============================================================
   RESPONSIVE — Tablet, Phone, Small Phone
   ============================================================ */

/* Tablet 768px */
@media (max-width: 768px) {
  .nav-links { display: none; }      /* hide desktop nav */
  .hamburger { display: flex; }      /* show hamburger */
  .mobile-nav { display: flex; }     /* enable mobile drawer */

  .site-nav { padding: 16px 28px; }
  .nav-logo img { height: 96px; }

  .hero { padding: 72px 24px 240px; }
  h1, .page-header h1 { font-size: clamp(60px, 12vw, 110px); }
  .tagline { font-size: 20px; }

  .page { padding: 60px 28px 220px; }
  .page-header { margin-bottom: 56px; }
  .page-header .subtitle { font-size: 20px; }

  .provider-hero { grid-template-columns: 1fr; gap: 40px; }
  .section-grid { grid-template-columns: 1fr; }
  .hotline-grid { grid-template-columns: 1fr; }
  .insurance-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .philosophy { padding: 40px 32px; }
  .philosophy p { font-size: clamp(20px, 3.5vw, 26px); }

  .provider-bio h2 { font-size: clamp(38px, 7vw, 58px); }
  .cta-section h3 { font-size: clamp(32px, 5.5vw, 46px); }
  .resources-title { font-size: clamp(30px, 5vw, 44px); }
}

/* Phone 480px */
@media (max-width: 480px) {
  .site-nav { padding: 14px 18px; }
  .nav-logo img { height: 72px; }
  .hamburger { width: 32px; height: 26px; }
  .hamburger span { height: 3px; }
  .hamburger.open span:nth-child(1) { transform: translateY(11.5px) rotate(45deg); }
  .hamburger.open span:nth-child(4) { transform: translateY(-11.5px) rotate(-45deg); }
  .mobile-nav { padding: 120px 28px 40px; }
  .mobile-nav a { font-size: 26px; padding: 18px 0; }

  .hero { padding: 48px 20px 200px; min-height: 70vh; }
  h1, .page-header h1 { font-size: clamp(48px, 13vw, 80px); line-height: 1.05; }
  .wordmark { font-size: 20px; letter-spacing: .28em; }
  .tagline { font-size: 20px; margin: 20px auto 40px; }
  .cta-btn { padding: 18px 36px; font-size: 20px; width: 100%; justify-content: center; }
  .cta-label { font-size: 20px; }
  .cta-wrap { width: 100%; }

  .page { padding: 40px 18px 180px; }
  .page-header { margin-bottom: 40px; }
  .page-header .eyebrow { font-size: 20px; letter-spacing: .22em; }
  .page-header .subtitle { font-size: 20px; }

  .provider-hero { gap: 28px; }
  .avatar { width: 180px; height: 180px; }
  .provider-badge { max-width: 100%; }
  .badge-title { font-size: 20px; }
  .badge-value { font-size: 20px; }
  .provider-bio h2 { font-size: clamp(34px, 9vw, 52px); }
  .provider-bio .credentials { font-size: 20px; }
  .provider-bio p { font-size: 20px; }

  .philosophy { padding: 30px 24px; }
  .philosophy p { font-size: 20px; }
  .philosophy cite { font-size: 20px; }

  .section-grid { gap: 14px; }
  .info-card { padding: 28px 24px; }
  .card-title { font-size: 24px; }
  .card-eyebrow { font-size: 20px; }
  .tag { font-size: 20px; padding: 7px 14px; }
  .edu-degree, .edu-school { font-size: 20px; }

  .resources-section { padding: 0 18px 72px; }
  .resources-title { font-size: clamp(28px, 7.5vw, 40px); }
  .resources-label { font-size: 20px; }
  .hotline-card { padding: 28px 22px; }
  .hotline-name { font-size: 24px; }
  .number-badge { font-size: 22px; }
  .number-label, .hotline-desc, .hotline-org { font-size: 20px; }
  .emergency-note p { font-size: 20px; }

  .insurance-grid { grid-template-columns: 1fr; gap: 14px; }
  .ins-card { padding: 26px 22px; }
  .ins-name { font-size: 22px; }
  .ins-note, .ins-badge { font-size: 20px; }
  .ins-logo-area { width: 48px; height: 48px; font-size: 24px; }

  .highlight-banner { flex-direction: column; padding: 22px 22px; }
  .banner-text p { font-size: 20px; }
  .faq-item { padding: 24px 22px; }
  .faq-q { font-size: 22px; }
  .faq-a { font-size: 20px; }
  .section-label { font-size: 20px; letter-spacing: .18em; }

  .cta-section h3 { font-size: clamp(28px, 7.5vw, 40px); }
  .cta-section p { font-size: 20px; }
  .cta-section .cta-btn { width: 100%; justify-content: center; }

  .site-footer { font-size: 20px; letter-spacing: .12em; padding: 24px 20px 36px; line-height: 2.2; }
  .mountains { height: 18%; }
}

/* Very small 360px */
@media (max-width: 360px) {
  .nav-logo img { height: 60px; }
  .nav-links a { font-size: 20px; letter-spacing: .04em; }
  h1, .page-header h1 { font-size: 42px; }
  .provider-bio h2 { font-size: 30px; }
  .cta-btn { font-size: 20px; padding: 16px 24px; }
}
