/* ============================================================
   Goodwill Financial — Design System
   Built: 2026-05-30
   Voice: warm, trustworthy, mission-driven, not-corporate
   Stack: vanilla CSS, no build step. Easy to port to GoHighLevel.
   ============================================================ */

:root {
  /* Palette — APPROVED 2026 Goodwill brand system (Trust Navy + Cerulean P&C + Gold LB).
     Var names kept for stability; values mapped to the 2026 tokens. */
  --ink:       #0E3A5C;   /* Trust Navy — master anchor, headlines, hero bg */
  --ink-soft:  #21527A;   /* lighter navy */
  --rust:      #0099CC;   /* Cerulean — P&C signature (CTAs, links, accents) */
  --rust-dark: #0079A3;   /* Cerulean dark */
  --cream:     #F4F6F8;   /* Mist — page background */
  --paper:     #FFFFFF;   /* card/section background */
  --white:     #FFFFFF;
  --char:      #1A2027;   /* near-black body text */
  --muted:     #5A6470;   /* Slate */
  --line:      #E5EAEF;   /* hairline borders */
  --gold:      #F5B315;   /* Goodwill Gold — Living Benefits accent, sparingly */
  --success:   #2F7D5B;

  /* Type — 2026: Oswald (headings) + Inter (body) */
  --serif: "Oswald", "Arial Narrow", "Segoe UI", sans-serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(14,31,63,.06), 0 2px 8px rgba(14,31,63,.04);
  --shadow-md: 0 4px 16px rgba(14,31,63,.08), 0 8px 32px rgba(14,31,63,.06);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--char);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--rust); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--rust-dark); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0;
  margin: 0 0 .6em;
  line-height: 1.15;
}
h1, h2 { text-transform: uppercase; letter-spacing: .5px; line-height: 1.05; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.lead { font-size: 1.18rem; color: var(--ink-soft); }
small, .small { font-size: .85rem; color: var(--muted); }
hr { border: 0; height: 1px; background: var(--line); margin: 48px 0; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 80px 0; }
.section-tight { padding: 48px 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--paper); }
.section-paper { background: var(--paper); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--rust);
  margin-bottom: 12px;
}
.section-dark .eyebrow { color: #F4B89A; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,240,232,.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 28px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 1.35rem; color: var(--ink);
  font-weight: 600; letter-spacing: -.01em; flex-shrink: 0;
}
.brand-mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 1rem;
}
.nav-links { display: flex; align-items: center; gap: 14px; list-style: none; margin: 0; padding: 0; white-space: nowrap; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .88rem; }
.nav-links a:hover { color: var(--rust); }
.lang-toggle {
  display: flex; gap: 4px; align-items: center;
  font-size: .8rem; color: var(--muted);
  padding-left: 16px; border-left: 1px solid var(--line);
}
.lang-toggle a { color: var(--muted); padding: 2px 6px; border-radius: 4px; font-weight: 600; }
.lang-toggle a.active { color: var(--ink); background: var(--line); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-phone { color: var(--ink); font-weight: 600; font-size: .95rem; }
.nav-toggle { display: none; }
.brand-logo { height: 34px; width: auto; display: block; }
.nav-login { color: var(--rust); border: 1.5px solid var(--rust); padding: 8px 15px; border-radius: var(--radius); font-weight: 600; font-size: .9rem; white-space: nowrap; }
.nav-login:hover { background: var(--rust); color: #fff; }
/* Top utility bar — client service links */
.utility-bar { background: var(--ink); color: rgba(255,255,255,.82); font-size: .82rem; }
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; padding: 7px var(--gutter); }
.utility-bar a { color: rgba(255,255,255,.82); font-weight: 500; }
.utility-bar a:hover { color: #fff; }
.utility-bar .ub-links a { margin-left: 20px; }
@media (max-width: 540px) { .utility-bar .ub-phone { display: none; } .utility-bar .container { justify-content: center; } .utility-bar .ub-links a { margin: 0 10px; } }
/* Floating chat / contact widget */
.gw-chat { position: fixed; right: 20px; bottom: 20px; z-index: 200; }
.gw-chat-fab { display: inline-flex; align-items: center; gap: 7px; background: var(--rust); color: #fff; border: none; border-radius: 999px; padding: 13px 22px; font-weight: 700; font-size: .95rem; box-shadow: var(--shadow-md); cursor: pointer; }
.gw-chat-fab:hover { background: var(--rust-dark); }
.gw-chat-panel { position: absolute; right: 0; bottom: 60px; width: 290px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md); overflow: hidden; }
.gw-chat-head { background: var(--ink); color: #fff; padding: 13px 16px; font-family: var(--serif); font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.gw-chat-x { background: none; border: none; color: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer; }
.gw-chat-opt { display: flex; align-items: center; gap: 11px; padding: 13px 16px; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; }
.gw-chat-opt:last-child { border-bottom: 0; }
.gw-chat-opt:hover { background: var(--cream); }
.gw-chat-opt .ico { font-size: 1.25rem; }
.gw-chat-opt b { display: block; font-size: .95rem; }
.gw-chat-opt small { color: var(--muted); font-size: .78rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 600; font-size: .98rem;
  border: 1px solid transparent;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--rust); color: var(--white); }
.btn-primary:hover { background: var(--rust-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--ink); color: var(--paper); }
.btn-secondary:hover { background: var(--ink-soft); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.section-dark .btn-ghost { color: var(--paper); border-color: var(--paper); }
.section-dark .btn-ghost:hover { background: var(--paper); color: var(--ink); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(14,31,63,.78) 0%, rgba(14,31,63,.86) 100%),
    url("../img/photos/u-1511895426328-dc8714191300-1800.jpg") center/cover no-repeat;
  color: var(--paper);
  padding: 96px 0 80px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center;
}
.hero h1 {
  color: var(--paper);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic; color: #F4B89A; font-weight: 400;
}
.hero-sub {
  font-size: 1.2rem; color: rgba(245,240,232,.86);
  max-width: 540px; margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap;
  font-size: .92rem; color: rgba(245,240,232,.78);
}
.hero-trust strong { color: var(--paper); display: block; font-size: 1.1rem; font-family: var(--serif); }

/* Hero form card */
.hero-form {
  background: var(--paper); color: var(--char);
  padding: 32px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.hero-form h3 { margin-bottom: 6px; font-size: 1.35rem; }
.hero-form .form-sub { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--ink); margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font: inherit; color: var(--char);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(199,91,60,.15);
}
.form-fineprint {
  font-size: .78rem; color: var(--muted);
  margin-top: 10px; line-height: 1.45;
}
.form-success {
  background: #EAF4EE; color: var(--success);
  padding: 14px; border-radius: var(--radius); margin-top: 12px;
  font-weight: 600; display: none;
}
.form-success.show { display: block; }

/* ---------- Multilingual band ---------- */
.lang-band {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 18px 0;
  font-size: .98rem;
}
.lang-band strong { color: #F4B89A; font-weight: 600; }
.lang-flags { display: inline-flex; gap: 10px; margin-left: 14px; font-size: 1.1rem; vertical-align: middle; }

/* ---------- 5 Risks grid ---------- */
.risks-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  margin-top: 40px;
}
.risk-card {
  background: var(--paper); padding: 28px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: left;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.risk-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.risk-num {
  font-family: var(--serif); font-size: 2rem; color: var(--rust);
  font-weight: 600; line-height: 1; margin-bottom: 12px;
  display: block;
}
.risk-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.risk-card p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- Products grid ---------- */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.product-card {
  background: var(--paper); border-radius: var(--radius-lg);
  border: 1px solid var(--line); overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card-img {
  aspect-ratio: 16/10; background: var(--line); background-size: cover; background-position: center;
}
/* content photos as real <img alt> (audit #6) — fill the same boxes the backgrounds did */
img.product-card-img { width: 100%; height: auto; object-fit: cover; display: block; }
img.two-col-img { width: 100%; height: auto; object-fit: cover; display: block; }
img.team-photo { object-fit: cover; display: block; }
/* Independent-vs-captive-vs-direct comparison table (SEO/local pages) */
.cmp-wrap { overflow-x: auto; margin: 10px 0 6px; -webkit-overflow-scrolling: touch; }
.cmp { width: 100%; border-collapse: collapse; min-width: 560px; }
.cmp th, .cmp td { padding: 13px 14px; text-align: center; border-bottom: 1px solid var(--line); vertical-align: middle; font-size: .95rem; }
.cmp thead th { font-family: var(--serif); font-weight: 600; color: var(--ink); background: var(--cream); }
.cmp thead th.cmp-us { background: var(--ink); color: var(--white); border-radius: 10px 10px 0 0; }
.cmp thead th.cmp-us span { font-weight: 400; font-size: .8rem; opacity: .85; }
.cmp tbody th { text-align: left; font-weight: 600; color: var(--ink); font-family: var(--sans); max-width: 240px; }
.cmp td.cmp-us { background: rgba(0,153,204,.07); font-weight: 600; color: var(--ink); }
.cmp .yes { color: var(--rust); font-weight: 700; font-size: 1.2rem; }
.cmp .no { color: #C0392B; font-weight: 700; font-size: 1.05rem; }
.cmp td.note { color: var(--muted); font-size: .86rem; }
/* responsive lazy video embed (Alliance explainer videos) */
.video-wrap { position: relative; max-width: 720px; margin: 18px auto 6px; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); background: var(--ink); }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-cap { max-width: 720px; margin: 0 auto 6px; text-align: center; color: var(--muted); font-size: .85rem; }
.product-card-body { padding: 24px; }
.product-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.product-card p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.product-card a { font-weight: 600; font-size: .92rem; }

/* ---------- Team ---------- */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 40px;
}
.team-card { text-align: center; }
.team-photo {
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--line);
  margin: 0 auto 16px;
  background-size: cover; background-position: center;
  display: grid; place-items: center;
  color: var(--ink); font-family: var(--serif); font-size: 2.4rem; font-weight: 500;
  border: 4px solid var(--paper);
  box-shadow: var(--shadow-sm);
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 2px; }
.team-card .role { color: var(--rust); font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.team-card p { color: var(--muted); font-size: .9rem; }

/* ---------- Testimonials ---------- */
.testimonial-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.testimonial {
  background: var(--white); padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial blockquote {
  margin: 0 0 16px; font-family: var(--serif);
  font-style: italic; color: var(--ink); font-size: 1.05rem; line-height: 1.5;
}
.testimonial cite {
  font-style: normal; font-weight: 600; color: var(--char); font-size: .92rem;
  display: block;
}
.testimonial .cite-sub { color: var(--muted); font-size: .82rem; }

/* ---------- Stats strip ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  background: var(--paper); padding: 36px; border-radius: var(--radius-lg);
  margin-top: 40px; border: 1px solid var(--line);
}
.stat { text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2.4rem; color: var(--rust); font-weight: 600; display: block; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: .9rem; color: var(--muted); }

/* ---------- Two-col content ---------- */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.two-col.two-col-top { align-items: start; }
.two-col-img {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: var(--line); background-size: cover; background-position: center;
  box-shadow: var(--shadow-md);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { color: var(--paper); margin-bottom: 12px; }
.cta-band p { color: rgba(245,240,232,.8); max-width: 560px; margin: 0 auto 24px; }
/* ghost button must be light on the navy CTA band (else navy-on-navy = invisible) */
.cta-band .btn-ghost { color: var(--paper); border-color: var(--paper); }
.cta-band .btn-ghost:hover { background: var(--paper); color: var(--ink); }
.cta-band .cta-lead input { color: var(--char); }

/* ---------- Footer ---------- */
.site-footer {
  background: #0A1730;
  color: rgba(245,240,232,.7);
  padding: 64px 0 32px;
  font-size: .92rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--paper); font-family: var(--sans);
  font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: rgba(245,240,232,.7); }
.footer-grid a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: .82rem;
}

/* ---------- Page-specific: 5 risks deep section ---------- */
.risk-deep {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid var(--line);
}
.risk-deep:last-child { border-bottom: 0; }
.risk-deep .risk-num { font-size: 3rem; margin: 0; }
.risk-deep h3 { font-size: 1.5rem; margin-bottom: 8px; }
.risk-deep .pull { font-family: var(--serif); font-style: italic; color: var(--ink); font-size: 1.1rem; margin-top: 12px; }

/* ---------- Page-specific: Careers ---------- */
.career-perks {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 36px;
}
.perk {
  padding: 24px; background: var(--paper);
  border-radius: var(--radius-lg); border: 1px solid var(--line);
}
.perk-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--rust); color: var(--white);
  display: grid; place-items: center;
  margin-bottom: 14px; font-family: var(--serif); font-weight: 600;
}
.perk h3 { font-size: 1.1rem; margin-bottom: 6px; }
.perk p { font-size: .92rem; color: var(--muted); margin: 0; }

.fit-list {
  list-style: none; padding: 0; margin: 24px 0;
}
.fit-list li {
  padding: 12px 0 12px 32px; border-bottom: 1px solid var(--line);
  position: relative;
}
.fit-list li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 18px; height: 9px;
  border-left: 2px solid var(--rust);
  border-bottom: 2px solid var(--rust);
  transform: rotate(-45deg);
}

/* ---------- Qualifying events grid ---------- */
.qualify-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-top: 32px;
}
.qualify-grid div {
  background: var(--paper); padding: 14px 18px;
  border-radius: var(--radius); border: 1px solid var(--line);
  font-weight: 600; color: var(--ink); font-size: .95rem;
  text-align: center;
}

/* ---------- Inline form (Living Benefits + Careers) ---------- */
.inline-form {
  background: var(--paper);
  padding: 36px; border-radius: var(--radius-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.inline-form h3 { font-size: 1.5rem; margin-bottom: 6px; }

/* ---------- Page title block ---------- */
.page-title {
  background: var(--ink); color: var(--paper);
  padding: 80px 0 60px;
  text-align: center;
}
.page-title h1 { color: var(--paper); margin-bottom: 14px; }
.page-title p { color: rgba(245,240,232,.8); max-width: 640px; margin: 0 auto; font-size: 1.15rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-links, .lang-toggle, .nav-phone, .nav-login { display: none; }
  .nav-toggle {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    background: transparent; border: 1px solid var(--ink); border-radius: var(--radius);
    color: var(--ink);
  }
  .nav-toggle.open + .nav-links { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); padding: 16px 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav-mobile-open .nav-links li { padding: 12px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .hero { padding: 56px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .risks-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 24px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .career-perks { grid-template-columns: 1fr; }
  .qualify-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
}
@media (max-width: 540px) {
  .risks-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* a11y: skip link + visible focus ring */
.skip-link{position:absolute;left:-9999px;top:0;background:var(--ink);color:#fff;padding:10px 16px;z-index:2000;font-weight:600;border-radius:0 0 8px 0;}
.skip-link:focus{left:0;}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,[tabindex]:focus-visible{outline:3px solid var(--gold);outline-offset:2px;}

/* AA contrast (Vytas Option A, 2026-06-22): deeper on-brand cerulean for TEXT links + eyebrows so they pass
   WCAG AA on light backgrounds; navy + gold + button fills unchanged; links on dark backgrounds stay light. */
:root { --link: #0A6E92; }
a { color: var(--link); }
.eyebrow { color: var(--link); }
.site-footer a, .cta-band a, .section-dark a, .hero a { color: rgba(245,245,247,.92); }
.site-footer a:hover, .cta-band a:hover, .section-dark a:hover, .hero a:hover { color: #fff; }
