/* ============================================================
   First Coast Bookkeeping — styles
   Navy + teal brand · clean, airy, flat (glenhold / wenonah feel)
   ============================================================ */

:root {
  --navy: #111D36;
  --navy-deep: #0c1730;
  --teal: #2BA9B4;
  --teal-dark: #1f8e99;
  --teal-light: #7ad2da;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --line: #e9edf3;
  --line-strong: #dde3ec;
  --line-dark: rgba(255, 255, 255, .08);
  --text: #2b3543;
  --muted: #647284;
  --muted-light: #aebbcd;
  --white: #ffffff;
  --shadow-card: 0 1px 2px rgba(12, 23, 48, .05);
  --shadow-soft: 0 18px 50px rgba(12, 23, 48, .14);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1400px;
  --header-h: 80px;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--sans); color: var(--text); background: var(--bg);
  line-height: 1.7; font-size: 17px; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
h1, h2, h3 { color: var(--navy); line-height: 1.12; margin: 0 0 .4em; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .16em;
  font-size: .74rem; font-weight: 600; color: var(--teal-dark); margin: 0 0 1rem;
}

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--sans); font-weight: 600; font-size: .97rem;
  padding: .82em 1.6em; border-radius: 10px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}
.btn-sm { padding: .56em 1.05em; font-size: .9rem; }
.btn-lg { padding: .95em 1.85em; font-size: 1.0rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); }

.btn-outline { background: #fff; color: var(--navy); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dark); }

.btn-hero-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-hero-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center; background: transparent;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 40px; width: auto; }
.brand-logo--dark { display: none; }

.nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { color: #fff; font-weight: 500; font-size: .95rem; transition: opacity .2s ease, color .2s ease; }
.nav-menu a:hover { opacity: .75; }
.nav-phone a { font-weight: 600; color: var(--teal-light); }
.nav-cta a { color: #fff; }

body.scrolled .site-header { background: rgba(255,255,255,.97); backdrop-filter: saturate(180%) blur(10px); box-shadow: 0 1px 0 var(--line); border-bottom-color: var(--line); }
body.scrolled .brand-logo--light { display: none; }
body.scrolled .brand-logo--dark { display: block; }
body.scrolled .nav-menu a { color: var(--navy); }
body.scrolled .nav-phone a { color: var(--teal-dark); }
body.scrolled .nav-cta a { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }
body.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, #16243f 0%, var(--navy) 58%, var(--navy-deep) 100%);
  color: #e8eef6;
  padding: calc(var(--header-h) + 72px) 0 96px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 72px; align-items: center; }

.pill {
  display: inline-block; color: var(--teal-light);
  font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-copy h1 {
  font-family: var(--serif); font-weight: 600; color: #fff;
  font-size: clamp(2.7rem, 5.4vw, 4.2rem); line-height: 1.05; letter-spacing: -.005em;
  margin-bottom: .4em;
}
.hero-accent { color: var(--teal-light); font-style: italic; font-weight: 500; }
.hero-sub { font-size: 1.16rem; color: #b6c4d8; max-width: 44ch; margin-bottom: 2rem; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2rem; }
.hero-trust { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 28px; }
.hero-trust li { position: relative; padding-left: 25px; font-size: .9rem; color: #aebbcd; font-weight: 500; }
.hero-trust li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
  background: var(--teal-light);
}

.hero-photo { position: relative; width: 100%; max-width: 360px; margin-left: auto; }
.hero-photo-frame { position: relative; z-index: 1; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft); }
.hero-photo-frame img { width: 100%; aspect-ratio: 4/4.8; object-fit: cover; object-position: center top; }
.hero-photo::before { content: ""; position: absolute; z-index: 0; top: 0; left: 0; width: 100%; aspect-ratio: 4/4.8; transform: translate(-18px, -18px); background: rgba(43,169,180,.28); border-radius: 16px; }
.hero-signature { height: 54px; width: auto; margin: 22px auto 0; opacity: .92; }

/* ---------- section ---------- */
.section { padding: 108px 0; }
.section-alt { background: var(--navy); border-top: 1px solid var(--line-dark); }
/* dark-section text overrides */
.section-alt .section-head h2,
.section-alt .contact-copy h2 { color: #fff; }
.section-alt .section-lead { color: var(--muted-light); }
.section-alt .eyebrow { color: var(--teal-light); }
.section-alt .pricing-foot { color: var(--muted-light); }
.section-alt .contact-copy p { color: var(--muted-light); }
.section-alt .contact-list li { color: #e8eef6; }
.section-alt .contact-list a { color: #fff; }
.section-alt .contact-list a:hover { color: var(--teal-light); }
.section-alt .contact-ico { background: rgba(122,210,218,.16); color: var(--teal-light); }
.section-head { max-width: 660px; margin: 0 auto 64px; text-align: center; }
.section-head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.3rem, 4vw, 3.1rem); }
.section-lead { color: var(--muted); font-size: 1.1rem; margin: 0; }

/* ---------- services: flat columns ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.card { background: transparent; border: 0; box-shadow: none; padding: 0; }
.card-icon { width: 34px; height: 34px; color: var(--teal); margin-bottom: 20px; }
.card-icon svg { width: 34px; height: 34px; }
.card h3 { font-size: 1.3rem; margin-bottom: .5em; }
.card > p { color: var(--muted); margin: 0 0 20px; font-size: 1rem; }
.card-list { list-style: none; margin: 0; padding: 22px 0 0; border-top: 1px solid var(--line); display: grid; gap: 13px; }
.card-list li { position: relative; padding-left: 28px; color: var(--text); font-size: .96rem; }
.card-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px;
  background: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") 0 center/16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") 0 center/16px no-repeat;
}

/* ---------- pricing: flat light cards ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line-strong);
  border-radius: var(--radius); padding: 38px 32px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
}
.section-alt .plan { background: #fff; }
.plan-featured { border-color: var(--teal); }
.plan-tag { position: absolute; top: -12px; left: 32px; background: var(--teal); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 5px 13px; border-radius: 999px; }
.plan-name { font-size: 1.3rem; margin-bottom: .3em; }
.plan-price { font-family: var(--serif); font-weight: 700; font-size: 2.7rem; color: var(--navy); margin: 0; line-height: 1.1; }
.plan-price span { font-size: 1.4rem; color: var(--muted); }
.plan-price small { font-size: 1rem; color: var(--muted); font-family: var(--sans); font-weight: 500; }
.plan-tagline { color: var(--muted); font-size: .94rem; margin: .4rem 0 1.1rem; min-height: 2.6em; }
.plan-features { list-style: none; margin: 0 0 1.3rem; padding: 1.4rem 0 0; border-top: 1px solid var(--line); display: grid; gap: 13px; flex: 1; }
.plan-bestfor { color: var(--muted); font-size: .85rem; line-height: 1.45; margin: 0 0 1.3rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.plan-features li { position: relative; padding-left: 27px; color: var(--text); font-size: .96rem; }
.plan-features li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 17px; height: 17px; background: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") 0 center/15px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") 0 center/15px no-repeat;
}
.pricing-note {
  display: flex; flex-direction: column; gap: 6px; align-items: center;
  max-width: 780px; margin: 40px auto 0; text-align: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 22px 30px;
}
.pricing-note strong { color: #fff; font-weight: 600; font-size: 1.05rem; }
.pricing-note span { color: var(--muted-light); font-size: .95rem; }
.pricing-foot { text-align: center; color: var(--muted); font-size: .92rem; margin: 20px 0 0; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 64px; align-items: center; }
.about-photo img { border-radius: 18px; box-shadow: var(--shadow-soft); width: 100%; object-fit: cover; }
.about-copy h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.2rem, 3.8vw, 3rem); }
.about-copy p { color: #45525f; }
.signature { height: 60px; width: auto; margin: 12px 0 4px; }
.about-role { font-weight: 600; color: var(--navy); margin: 0; }

/* ---------- cta banner ---------- */
.cta-banner { background: var(--navy); color: #fff; text-align: center; padding: 96px 0; }
.cta-banner h2 { font-family: var(--serif); font-weight: 600; color: #fff; font-size: clamp(2rem, 3.8vw, 2.9rem); max-width: 22ch; margin: 0 auto .35em; }
.cta-banner p { color: #aebbcd; font-size: 1.12rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start; }
.contact-copy h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.2rem, 3.8vw, 3rem); }
.contact-list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 20px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-size: 1.05rem; }
.contact-ico { width: 42px; height: 42px; border-radius: 10px; flex: 0 0 auto; display: grid; place-items: center; background: rgba(43,169,180,.10); color: var(--teal-dark); }
.contact-ico svg { width: 21px; height: 21px; }

.contact-form { background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-card); }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: .87rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--text);
  padding: 12px 14px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(43,169,180,.16); }
.field textarea { resize: vertical; }
.form-fineprint { font-size: .85rem; color: var(--muted); text-align: center; margin: 14px 0 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-deep); color: #aebbcd; border-top: 1px solid var(--line-dark); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; padding: 60px 0 44px; }
.footer-logo { height: 34px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: #8597ad; margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a, .footer-contact span { color: #aebbcd; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.footer-bottom p { margin: 0; font-size: .85rem; color: #74849b; text-align: center; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo { max-width: 400px; margin: 0 auto; }
  .cards { grid-template-columns: 1fr; gap: 44px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-menu.open { max-height: 420px; }
  .nav-menu li { padding: 0 28px; }
  .nav-menu a { color: var(--navy) !important; display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-phone a { color: var(--teal-dark) !important; }
  .nav-cta { padding: 16px 28px !important; }
  .nav-cta a { color: #fff !important; display: block; text-align: center; border-bottom: 0; }
  .nav-phone a, .nav-cta a { border-bottom: 0 !important; }
  .field-row { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .hero { padding: calc(var(--header-h) + 40px) 0 64px; }
  .hero-copy h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1.05rem; }
}

/* DM Serif Display ships a single (400) weight — normalize serif headings */
.hero-copy h1,
.hero-accent,
.section-head h2,
.plan-price,
.about-copy h2,
.cta-banner h2,
.contact-copy h2 { font-weight: 400; }
.hero-copy h1, .section-head h2, .about-copy h2,
.cta-banner h2, .contact-copy h2 { letter-spacing: 0; line-height: 1.14; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ============================================================
   Articles / Resources  (appended — self-contained)
   ============================================================ */
/* Solid white header on light article/resource pages */
.article-page .site-header { background: rgba(255,255,255,.97); backdrop-filter: saturate(180%) blur(10px); box-shadow: 0 1px 0 var(--line); border-bottom: 1px solid var(--line); }
.article-page .brand-logo--light { display: none; }
.article-page .brand-logo--dark { display: block; }
.article-page .nav-menu a { color: var(--navy); }
.article-page .nav-phone a { color: var(--teal-dark); }
.article-page .nav-cta a { color: #fff; }
.article-page .nav-toggle span { background: var(--navy); }

/* Hero band */
.article-hero { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding: calc(var(--header-h) + 54px) 0 54px; }
.article-hero .container { max-width: 820px; }
.article-breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 16px; }
.article-breadcrumb a { color: var(--teal-dark); }
.article-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.15; letter-spacing: 0; max-width: 22ch; }
.article-hero.resource-hero { text-align: center; }
.article-hero.resource-hero h1 { max-width: 24ch; margin-left: auto; margin-right: auto; }
.article-hero.resource-hero .section-lead { max-width: 60ch; margin: 0 auto; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-top: 20px; color: var(--muted); font-size: .9rem; }
.article-meta .dot { color: var(--line-strong); }

/* Prose */
.article-wrap { padding: 60px 0 84px; }
.article-wrap .container { max-width: 760px; }
.article-body { font-size: 1.08rem; line-height: 1.8; color: #384250; }
.article-body > p.lede { font-size: 1.22rem; color: var(--text); line-height: 1.65; }
.article-body h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 1.85rem); letter-spacing: 0; line-height: 1.22; margin: 1.9em 0 .5em; }
.article-body h3 { font-size: 1.18rem; margin: 1.6em 0 .35em; }
.article-body p { margin: 0 0 1.15rem; }
.article-body strong { color: var(--navy); font-weight: 600; }
.article-body .cost-callout { font-size: 1rem; color: var(--muted); background: rgba(43,169,180,.07); border-left: 3px solid var(--teal); border-radius: 0 8px 8px 0; padding: 14px 20px; margin: 0 0 1.4rem; }
.article-body a:not(.btn) { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 2px; }
.article-body ul, .article-body ol { margin: 0 0 1.3rem; padding: 0; list-style: none; display: grid; gap: 13px; }
.article-body ul li { position: relative; padding-left: 30px; }
.article-body ul li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 18px; height: 18px; background: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") 0 center/16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") 0 center/16px no-repeat;
}
.article-body ol { counter-reset: item; }
.article-body ol li { position: relative; padding-left: 44px; counter-increment: item; min-height: 30px; }
.article-body ol li::before {
  content: counter(item); position: absolute; left: 0; top: -1px; width: 29px; height: 29px;
  background: var(--navy); color: #fff; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--sans); font-size: .84rem; font-weight: 700;
}

/* Callout */
.callout { background: var(--bg-alt); border-left: 4px solid var(--teal); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 20px 26px; margin: 1.9rem 0; }
.callout p { margin: 0; }
.callout strong { color: var(--navy); }

/* Inline CTA box */
.article-cta-box { background: linear-gradient(160deg, #16243f 0%, var(--navy) 100%); color: #fff; border-radius: var(--radius); padding: 42px 38px; margin: 2.6rem 0; text-align: center; }
.article-cta-box h3 { color: #fff; font-family: var(--serif); font-weight: 400; font-size: 1.65rem; line-height: 1.2; margin-bottom: .35em; }
.article-cta-box p { color: #b6c4d8; margin: 0 auto 1.5rem; max-width: 46ch; }
.article-cta-box .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer of article: author + related */
.article-foot { max-width: 760px; margin: 0 auto; padding: 0 28px; }
.author-card { display: flex; gap: 18px; align-items: center; border-top: 1px solid var(--line); padding-top: 2.2rem; }
.author-card img { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; object-position: center top; flex: 0 0 auto; }
.author-card h4 { margin: 0 0 4px; color: var(--navy); font-size: 1.05rem; }
.author-card p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.related { margin-top: 2.6rem; }
.related h4 { text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 600; color: var(--teal-dark); margin-bottom: 1rem; }
.related-list { display: grid; gap: 12px; }
.related-list a { display: block; padding: 16px 20px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); color: var(--navy); font-weight: 600; transition: border-color .15s ease, background .15s ease; }
.related-list a:hover { border-color: var(--teal); background: var(--bg-alt); }

/* Resources index grid */
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.resource-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-card); transition: border-color .15s ease, transform .15s ease; }
.resource-card:hover { border-color: var(--teal); transform: translateY(-3px); }
.resource-card .eyebrow { margin-bottom: .7rem; }
.resource-card h2 { font-family: var(--sans); font-weight: 700; font-size: 1.26rem; color: var(--navy); line-height: 1.3; margin-bottom: .5em; min-height: 2.6em; }
@media (max-width: 940px) { .resource-card h2 { min-height: 0; } }
.resource-card p:not(.eyebrow) { color: var(--muted); font-size: .97rem; margin: 0; flex: 1; }
.resource-card .read-more { color: var(--teal-dark); font-weight: 600; font-size: .92rem; margin-top: 1.1rem; }
@media (max-width: 940px) { .resource-grid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq-list { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--navy);
  line-height: 1.4;
  transition: color .15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal-dark); }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  margin-top: 6px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-answer { padding: 0 4px 26px; max-width: 720px; }
.faq-answer p { color: var(--muted); font-size: 1rem; line-height: 1.7; margin: 0; }
.faq-answer a { color: var(--teal-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 620px) { .faq-item summary { font-size: 1rem; padding: 20px 2px; } }
