/* ============================================
   TRIPLE CROWN HEALTH — Navy / Black / Gold
   Type: Lora (display) + Inter (body)
   ============================================ */

:root {
  --navy:        #0d1b2e;
  --navy-mid:    #152338;
  --navy-card:   #1a2b42;
  --black:       #080c12;
  --gold:        #c9a84c;
  --gold-light:  #dfc068;
  --gold-pale:   #f5eed8;
  --gold-dim:    rgba(201,168,76,0.15);
  --white:       #ffffff;
  --off-white:   #f5f6f8;
  --text:        #0d1b2e;
  --text-mid:    #445566;
  --text-light:  #7a8fa6;
  --border:      #e2e8f0;
  --border-dark: rgba(255,255,255,0.09);
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(13,27,46,0.10);
  --shadow-lg:   0 8px 40px rgba(13,27,46,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Lora', serif; line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
em { font-style: italic; color: var(--gold); }
p  { color: var(--text-mid); line-height: 1.75; }
a  { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}

.section       { padding: 80px 0; }
.section-light { background: var(--off-white); }
.section-dark  { background: var(--navy); }

.section-header { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-header p { margin-top: 12px; }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.7); }
.section-header.light .eyebrow { color: var(--gold-light); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px; border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s ease;
  border: 2px solid transparent; text-decoration: none;
}
.btn-primary  { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); text-decoration: none; }
.btn-ghost    { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: var(--white); color: var(--navy); text-decoration: none; }
.btn-outline  { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); text-decoration: none; }
.btn-large    { padding: 16px 32px; font-size: 1rem; }
.btn-full     { width: 100%; justify-content: center; }

/* ---- NAV ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 42px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 500;
  padding: 6px 12px; border-radius: var(--radius); transition: all 0.15s; text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta { background: var(--gold) !important; color: var(--black) !important; padding: 8px 16px !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ---- HERO ---- */
.hero-wrap { background: var(--navy); }
.hero {
  min-height: calc(100vh - 68px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  max-width: 1100px; margin: 0 auto; padding: 80px 24px;
}
.hero-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.hero-headline { margin-bottom: 20px; color: var(--white); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 480px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-trust span { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 500; }

/* Hero visual */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-visual-inner { display: flex; gap: 20px; align-items: stretch; width: 100%; }

.hero-card {
  background: var(--navy-card); border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: 0 8px 40px rgba(201,168,76,0.08);
  flex: 1; min-width: 0;
}
.card-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 20px; }
.plan-row { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: grid; grid-template-columns: 1fr auto; gap: 4px; align-items: start; }
.plan-row:last-of-type { border-bottom: none; }
.plan-name   { font-weight: 600; font-size: 0.95rem; color: var(--white); grid-column: 1; }
.plan-detail { font-size: 0.82rem; color: rgba(255,255,255,0.4); grid-column: 1; }
.plan-badge  { font-size: 0.72rem; font-weight: 600; padding: 3px 8px; border-radius: 20px; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.45); grid-column: 2; grid-row: 1/3; align-self: center; white-space: nowrap; }
.plan-badge.best { background: var(--gold-dim); color: var(--gold); }
.card-footer { margin-top: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.3); font-style: italic; text-align: center; }

/* Headshot in hero */
.hero-headshot-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; align-self: stretch; flex-shrink: 0; }
.hero-headshot {
  width: 200px; height: 100%; min-height: 320px;
  border-radius: 12px; object-fit: cover; object-position: center top;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
  flex: 1;
}
.hero-headshot-label { text-align: center; font-size: 0.82rem; font-weight: 600; color: var(--white); display: flex; flex-direction: column; gap: 2px; }
.hero-headshot-label span { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.45); }

/* ---- STEPS ---- */
.steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; text-align: center; padding: 0 16px; }
.step-icon {
  width: 52px; height: 52px; background: var(--gold); color: var(--black);
  font-family: 'Lora', serif; font-weight: 600; font-size: 1rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { margin-bottom: 8px; font-size: 1rem; color: var(--text); }
.step p  { font-size: 0.88rem; }
.step-connector { width: 40px; height: 2px; background: var(--border); margin-top: 26px; flex-shrink: 0; }

/* ---- AUDIENCE ---- */
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.audience-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 28px 24px; }
.audience-icon { font-size: 2rem; margin-bottom: 12px; }
.audience-card h3 { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.audience-card p  { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* ---- STATES ---- */
.states-list { text-align: center; font-size: 0.95rem; font-weight: 500; color: var(--text); letter-spacing: 0.03em; line-height: 2.2; max-width: 680px; margin: 0 auto 12px; }
.states-note { text-align: center; font-size: 0.88rem; color: var(--text-light); }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 32px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px; }
.testimonial-card.featured { border-color: var(--gold); box-shadow: 0 4px 24px rgba(201,168,76,0.12); }
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { font-family: 'Lora', serif; font-style: italic; font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; flex: 1; }
.testimonial-author { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border); }
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.testimonial-source { font-size: 0.75rem; color: var(--text-light); font-weight: 500; }
.testimonials-cta { text-align: center; margin-top: 8px; }

/* ---- CTA BAND ---- */
.cta-band { background: var(--navy); padding: 80px 24px; text-align: center; }
.cta-band::before { content:''; display:block; width:60px; height:3px; background:var(--gold); margin:0 auto 32px; border-radius:2px; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,0.65); margin-bottom: 28px; }

/* ---- FOOTER ---- */
.footer { background: var(--black); padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo-img { height: 44px; width: auto; object-fit: contain; margin-bottom: 8px; display: block; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.88rem; margin-top: 10px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; opacity: 0.85; }
.footer-col a, .footer-col span { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-social { display: flex; gap: 20px; align-items: center; max-width: 1100px; margin: 0 auto; padding: 20px 24px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-social a { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.15s; }
.footer-social a:hover { color: var(--gold); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 24px; display: flex; justify-content: space-between; max-width: 1100px; margin: 0 auto; }
.footer-bottom span { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ---- PAGE HERO ---- */
.page-hero { background: var(--navy); padding: 80px 0 72px; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { color: var(--white); max-width: 640px; }
.page-hero p  { color: rgba(255,255,255,0.7); max-width: 540px; margin-top: 14px; font-size: 1.05rem; }

/* ---- ABOUT PAGE ---- */
.bio-layout { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.bio-text h2 { margin-bottom: 20px; }
.bio-text p  { margin-bottom: 16px; }
.bio-highlight { font-family:'Lora',serif; font-style:italic; font-size:1.05rem; color:var(--text) !important; border-left:3px solid var(--gold); padding-left:16px; margin-top:24px !important; }
.bio-sidebar { display: flex; flex-direction: column; gap: 16px; }
.bio-photo { width:100%; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); border:3px solid var(--gold); aspect-ratio:3/4; object-fit:cover; object-position:center top; display:block; }
.bio-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bio-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:20px; text-align:center; box-shadow:var(--shadow); }
.bio-stat { font-family:'Lora',serif; font-size:2rem; font-weight:600; color:var(--gold); line-height:1; }
.bio-stat-label { font-size:0.8rem; color:var(--text-light); margin-top:4px; }
.bio-values { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:20px 24px; }
.bio-value-item { font-size:0.88rem; color:var(--text-mid); padding:8px 0; border-bottom:1px solid var(--border); }
.bio-value-item:last-child { border-bottom:none; }

/* ---- QUOTE PAGE ---- */
.quote-layout { display:grid; grid-template-columns:1fr 300px; gap:56px; align-items:start; }
.form-intro h2 { margin-bottom:6px; }
.form-intro p  { margin-bottom:28px; }
.quote-form { display:flex; flex-direction:column; gap:20px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-group label { font-size:0.85rem; font-weight:600; color:var(--text); }
.optional { font-weight:400; color:var(--text-light); }
.form-group input, .form-group select, .form-group textarea {
  padding:11px 14px; border:1px solid var(--border); border-radius:var(--radius);
  font-family:'Inter',sans-serif; font-size:0.95rem; color:var(--text);
  background:var(--white); transition:border-color 0.15s; outline:none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,168,76,0.15); }
.form-group textarea { resize:vertical; }
.form-note { font-size:0.8rem; color:var(--text-light); text-align:center; margin-top:-8px; }
.form-success { text-align:center; padding:48px 24px; background:var(--gold-pale); border-radius:var(--radius-lg); }
.success-icon { width:56px; height:56px; background:var(--gold); color:var(--black); border-radius:50%; font-size:1.4rem; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.form-success h3 { color:var(--text); margin-bottom:8px; }
.quote-sidebar { display:flex; flex-direction:column; gap:20px; }
.sidebar-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:24px; box-shadow:var(--shadow); }
.sidebar-card h3 { font-size:1rem; color:var(--text); margin-bottom:10px; }
.phone-link { display:block; font-family:'Lora',serif; font-size:1.4rem; font-weight:600; color:var(--gold); text-decoration:none; margin-bottom:6px; }
.phone-link:hover { color:var(--gold-light); text-decoration:none; }
.sidebar-card > p { font-size:0.85rem; }
.expect-list { list-style:none; padding:0; display:flex; flex-direction:column; gap:10px; }
.expect-list li { font-size:0.86rem; color:var(--text-mid); padding-left:20px; position:relative; }
.expect-list li::before { content:'✓'; position:absolute; left:0; color:var(--gold); font-weight:700; }
.states-mini { font-size:0.8rem; color:var(--text-light); line-height:1.9; letter-spacing:0.02em; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero { grid-template-columns:1fr; min-height:auto; padding:48px 24px; }
  .hero-visual { display:none; }
  .steps { flex-direction:column; align-items:center; }
  .step-connector { width:2px; height:24px; }
  .audience-grid { grid-template-columns:1fr 1fr; }
  .bio-layout { grid-template-columns:1fr; }
  .bio-stats-row { grid-template-columns:1fr 1fr; }
  .quote-layout { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .nav-links { display:none; position:absolute; top:68px; left:0; right:0; background:var(--navy-mid); flex-direction:column; padding:16px 24px; border-bottom:1px solid rgba(255,255,255,0.08); box-shadow:0 8px 24px rgba(0,0,0,0.4); gap:4px; }
  .nav-links.open { display:flex; }
  .nav-toggle { display:flex; }
  .nav { position:relative; }
  .audience-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .hero-actions { flex-direction:column; }
  .hero-actions .btn { justify-content:center; }
  .footer-links { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:4px; text-align:center; }
  .section { padding:56px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition:none !important; animation:none !important; }
}
