/* =============================================================
   CoverFinalExpense.com — Global Stylesheet
   Brand: Personal responsibility, financial practicality
   Audience: FL seniors 50–85, mobile-first
   Min font size: 18px body, 20px CTAs — NO EXCEPTIONS
   ============================================================= */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1B3A5C;
  --gold:    #C8975A;
  --bg:      #FAF8F5;
  --text:    #2C2C2C;
  --orange:  #E8642A;
  --white:   #FFFFFF;
  --light:   #F0EDE8;
  --mid:     #6B7280;
  --border:  #D1C9BF;
  --success: #2D7A3A;

  --ff-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-sans:  'Source Sans 3', 'Source Sans Pro', system-ui, -apple-system, sans-serif;

  --radius: 8px;
  --shadow: 0 4px 16px rgba(27,58,92,0.12);
  --shadow-lg: 0 8px 32px rgba(27,58,92,0.18);
}

html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); }
a:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
p  { font-size: 1rem; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead-text { font-size: 1.15rem; line-height: 1.8; }

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 4rem 0; }
.section--light { background: var(--light); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy p { color: var(--white); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Sticky Phone Bar (mobile) ────────────────────────────── */
/* COMPLIANCE: Click-to-call must be visible above fold on every page */
.sticky-phone {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--orange);
  text-align: center;
  padding: 0;
}
.sticky-phone a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1rem;
  min-height: 60px; /* 48px tap target minimum */
}
.sticky-phone a:hover { background: #d05520; }

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
}
.nav-logo span { color: var(--gold); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--orange);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
  min-height: 48px; /* tap target */
  transition: background 0.2s;
}
.nav-phone:hover { background: #d05520; color: var(--white); }
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 48px;
  min-height: 48px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
/* Animate hamburger → X when menu is open */
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--ff-sans);
  font-size: 1.15rem; /* 20px+ minimum for CTAs */
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  min-height: 56px; /* generous tap target */
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  line-height: 1.2;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(232,100,42,0.35);
}
.btn-primary:hover { background: #d05520; box-shadow: 0 6px 18px rgba(232,100,42,0.45); color: var(--white); }
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-call {
  background: var(--navy);
  color: var(--white);
}
.btn-call:hover { background: #142d4a; color: var(--white); }
.btn-lg { font-size: 1.25rem; padding: 1.1rem 2.5rem; }
.btn-full { width: 100%; }
.btn-icon { font-size: 1.3em; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #23497a 60%, #1a3660 100%);
  color: var(--white);
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero-subhead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
  padding: 0.35rem 0.8rem;
  border-radius: 99px;
}
.trust-pill .icon { color: var(--gold); }

/* ── Phone CTA block ──────────────────────────────────────── */
.phone-cta-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.phone-cta-block .phone-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.phone-cta-block .phone-number {
  font-family: var(--ff-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  line-height: 1;
}
.phone-cta-block .phone-number:hover { color: var(--white); }

/* ── Lead Form Card ───────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.form-card-headline {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
  text-align: center;
}
.form-card-sub {
  font-size: 0.9rem;
  color: var(--mid);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Form fields */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select {
  width: 100%;
  font-family: var(--ff-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  min-height: 52px; /* 44px minimum, using 52px for comfort */
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,92,0.12);
}
.form-group input::placeholder { color: #aaa; }

/* Language toggle */
.lang-toggle {
  display: flex;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.lang-toggle input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.lang-toggle label {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mid);
  background: var(--bg);
  transition: background 0.2s, color 0.2s;
  margin: 0;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-toggle input[type="radio"]:checked + label {
  background: var(--navy);
  color: var(--white);
}

/* TCPA consent */
/* COMPLIANCE: TCPA — written consent, un-pre-checked, must be checked to submit */
.consent-block {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #f5f3ef;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.consent-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.consent-check input[type="checkbox"] {
  /* COMPLIANCE: checkbox must be visible, unchecked by default */
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  min-height: 22px;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
}
.consent-text {
  font-size: 0.72rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
.consent-text a { color: var(--navy); }

/* Form submit button */
.form-submit-btn {
  width: 100%;
  margin-top: 1rem;
  font-size: 1.2rem;
  padding: 1rem;
  min-height: 60px;
}

/* Inline form (used in page body sections) */
.inline-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

/* ── How It Works Steps ───────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 2rem; counter-reset: step; }
.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(200,151,90,0.4);
}
.step-content h3 { color: var(--navy); margin-bottom: 0.4rem; }
.step-content p { margin: 0; font-size: 0.97rem; }

/* ── Trust Badges Row ─────────────────────────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 1.5rem 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.6rem 1rem;
  border-radius: 99px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.trust-badge .badge-icon { font-size: 1.2rem; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.card h3 { color: var(--navy); margin-bottom: 0.75rem; }
.card-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 56px; /* tap target */
  line-height: 1.4;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--light); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--navy); color: var(--white); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-answer p { margin-bottom: 0.75rem; }
.faq-item.open .faq-answer { display: block; }

/* ── Section headings ─────────────────────────────────────── */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 600px;
}

/* ── Callout Box ──────────────────────────────────────────── */
.callout {
  background: #EBF3FF;
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.callout p { margin: 0; font-size: 0.97rem; }

/* ── City grid ────────────────────────────────────────────── */
.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.city-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── Testimonial ──────────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-family: var(--ff-serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}
.testimonial-text { font-size: 0.95rem; font-style: italic; color: #444; margin-bottom: 1rem; padding-top: 1rem; }
.testimonial-author { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.testimonial-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 0.5rem; }

/* ── Thank You page ───────────────────────────────────────── */
.thankyou-hero {
  text-align: center;
  padding: 5rem 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}
.thankyou-check {
  width: 80px;
  height: 80px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  color: var(--white);
}
.thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  margin: 2rem 0;
}
.thankyou-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
}
.thankyou-step-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #0F2238;
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand-name {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-brand-name span { color: var(--gold); }
.footer-disclaimer {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
}
.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
/* COMPLIANCE: Safe harbor + government program disclaimer */
.footer-legal {
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--mid);
  padding: 0.75rem 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--navy); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0 2.5rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; }
.page-hero .breadcrumb { margin-bottom: 1rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero .breadcrumb { color: rgba(255,255,255,0.55); }

/* ── Highlight Stat ───────────────────────────────────────── */
.stat-row { display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 1.5rem 0; }
.stat-box {
  flex: 1;
  min-width: 140px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
}
.stat-box .stat-num {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-box .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  html { font-size: 17px; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; align-items: center; }
  .nav-toggle.open { position: fixed; top: 0.75rem; right: 1rem; z-index: 10000; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 9999;
  }
  .nav-links.open a { font-size: 1.4rem; }
  .sticky-phone { display: block; }
  body { padding-bottom: 60px; }
  .stat-row { flex-direction: column; }
  .stat-box { min-width: unset; }
  .hero { padding: 2rem 0 3rem; }
  .section { padding: 2.5rem 0; }
  .phone-cta-block .phone-number { font-size: 1.4rem; }
}

/* ── Utility: Skip link (accessibility) ──────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── About page ───────────────────────────────────────────── */
.about-mission {
  font-size: 1.25rem;
  font-family: var(--ff-serif);
  color: var(--navy);
  line-height: 1.7;
  border-left: 4px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}
.value-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin: 1rem 0; }
.value-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.97rem;
}
.value-list .check { color: var(--success); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
