@charset "UTF-8";
/* ==========================================================================
   Faith Votes USA — site stylesheet
   Two colours. One typeface. Red means clickable and nothing else.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts (self-hosted, latin subset)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lato-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/lato-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------------------
   2. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Ground */
  --bg:            #FBFAF8;
  --bg-alt:        #F5F2ED;
  --bg-warm:       #F2EFEA;
  --bg-card:       #FFFFFF;
  --navy:          #16324F;

  /* Ink */
  --ink:           #16324F;
  --text:          #2F3A44;
  --text-strong:   #3D4854;
  --text-body:     #4A545F;
  --text-muted:    #5F6873;
  --on-navy:       #FFFFFF;
  --on-navy-soft:  #D6DEE9;
  --on-navy-muted: #A9BAD0;

  /* Action — the only red on the site */
  --red:           #B21E28;
  --red-hover:     #8E1820;
  --red-on-navy:   #E03C48;
  --red-underline: rgba(178, 30, 40, .3);
  --red-underline-navy: rgba(224, 60, 72, .35);

  /* Rules */
  --rule:          #E7E2DA;
  --rule-card:     #E2DCD3;
  --rule-faq:      #DED7CC;
  --rule-input:    #D9D2C7;
  --rule-hover:    #CFC7BB;
  --rule-navy:     rgba(255, 255, 255, .16);

  /* Measure */
  --container:     1180px;
  --container-narrow: 880px;
  --container-slim:   720px;
  --gutter:        clamp(1.25rem, .85rem + 1.2vw, 1.75rem);

  /* Vertical rhythm */
  --pad-hero-top:  clamp(3.5rem, 1.55rem + 8.3vw, 8.25rem);
  --pad-hero-bot:  clamp(3.75rem, 1.6rem + 9.2vw, 9.25rem);
  --pad-section:   clamp(3.25rem, 1.9rem + 5.8vw, 6rem);
  --pad-section-lg: clamp(3.5rem, 2rem + 6.4vw, 6.5rem);

  /* Type scale — one display moment per page */
  --fs-display:    clamp(2.25rem, 1.19rem + 4.53vw, 4.125rem);   /* 36 → 66 */
  --fs-title:      clamp(2rem, 1.36rem + 2.73vw, 3.5rem);        /* 32 → 56 */
  --fs-page:       clamp(1.875rem, 1.51rem + 1.55vw, 2.625rem);  /* 30 → 42 */
  --fs-h2:         clamp(1.625rem, 1.42rem + .88vw, 2.125rem);   /* 26 → 34 */
  --fs-h2-sm:      clamp(1.5625rem, 1.41rem + .66vw, 2rem);      /* 25 → 32 */
  --fs-lead:       clamp(1.125rem, 1.07rem + .24vw, 1.3125rem);  /* 18 → 21 */
  --fs-lead-sm:    clamp(1.0625rem, .99rem + .33vw, 1.25rem);    /* 17 → 20 */

  --ease:          cubic-bezier(.32, .72, .34, 1);
}

/* --------------------------------------------------------------------------
   3. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1 0 auto; }

h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; }

img, svg { max-width: 100%; }
img { height: auto; border: 0; }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-hover); }

strong, b { font-weight: 700; }

button, input, textarea, select { font: inherit; color: inherit; }

/* Visible, consistent focus for keyboard users everywhere. */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 1px;
}
.on-navy :focus-visible { outline-color: var(--red-on-navy); }

::selection { background: rgba(178, 30, 40, .15); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 14px 22px;
  font-weight: 700;
  font-size: .9375rem;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }
.container--slim   { max-width: var(--container-slim); }

.section { padding-block: var(--pad-section); }
.section--lg   { padding-block: var(--pad-section-lg); }
.section--alt  { background: var(--bg-alt); border-top: 1px solid var(--rule); }
.section--plain{ background: var(--bg); }
.section--edge { border-top: 1px solid var(--rule); }

.section--navy {
  background: var(--navy);
  color: var(--on-navy);
}
.section--navy a { color: var(--red-on-navy); }
.section--navy a:hover { color: #fff; }

.hero {
  background: var(--bg);
  padding-top: var(--pad-hero-top);
  padding-bottom: var(--pad-hero-bot);
}

/* Two-column "heading beside body" split used on several sections. */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem 4rem;
}
.split__body { max-width: 62ch; }

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid--cards  { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 2.5rem 3rem; }
.grid--wide   { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2.25rem 3.5rem; }

/* --------------------------------------------------------------------------
   5. Type
   -------------------------------------------------------------------------- */
.display {
  font-size: var(--fs-display);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -.018em;
  color: var(--ink);
  max-width: 25ch;
  text-wrap: balance;
}
.page-title {
  font-size: var(--fs-title);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.018em;
  color: var(--ink);
  max-width: 24ch;
  text-wrap: balance;
}
.page-title--utility {
  font-size: var(--fs-page);
  line-height: 1.12;
  letter-spacing: -.015em;
  max-width: none;
}

.h2 {
  font-size: var(--fs-h2);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
  text-wrap: balance;
}
.h2--sm { font-size: var(--fs-h2-sm); }
.h2--tight { max-width: 20ch; }
.section--navy .h2 { color: var(--on-navy); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.62;
  color: var(--text-body);
  max-width: 54ch;
  text-wrap: pretty;
}
.lead--sm { font-size: var(--fs-lead-sm); max-width: 56ch; }

.prose p {
  font-size: 1.125rem;
  line-height: 1.68;
  color: var(--text-strong);
  text-wrap: pretty;
}
.prose p + p:not([class]) { margin-top: 1.25rem; }
.section--navy .prose p { color: var(--on-navy); font-size: 1.1875rem; line-height: 1.7; }
.section--navy .prose p + p:not([class]) { color: var(--on-navy-soft); margin-top: 1.5rem; }

.eyebrow {
  display: block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}
.eyebrow--ink  { color: var(--ink); }
.eyebrow--navy { color: var(--on-navy-muted); }

/* The red rule — the identity's only ornament. */
.rule-mark {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--red);
  margin-top: 1.125rem;
}
.section--navy .rule-mark { background: var(--red-on-navy); }

.inline-link {
  color: var(--red);
  border-bottom: 1px solid var(--red-underline);
}
.inline-link:hover { color: var(--red-hover); border-bottom-color: var(--red-hover); }
.section--navy .inline-link {
  color: var(--red-on-navy);
  border-bottom-color: var(--red-underline-navy);
}
.section--navy .inline-link:hover { color: #fff; border-bottom-color: rgba(255, 255, 255, .5); }

.link-strong { font-weight: 700; }

/* A small, closed set of rhythm utilities — the only places the vertical
   spacing needs a one-off nudge away from the component defaults. */
.hero .lead { margin-top: clamp(1.75rem, 1.42rem + 1.4vw, 2.375rem); }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.625rem; }
.mt-lg { margin-top: clamp(1.875rem, 1.6rem + 1.2vw, 2.375rem); }
.mt-xl { margin-top: clamp(2.5rem, 2rem + 2.1vw, 3.25rem); }
.measure-short { max-width: 16ch; }
.measure-22    { max-width: 22ch; }
.measure-mid   { max-width: 24ch; }

/* Single-column reading pages: contact, thank-you, 404.
   These are a heading, a paragraph and at most one action. They sit inside a
   plain section rather than a hero or a closing band, so they inherit no
   vertical rhythm and it has to be stated here. */
.contact-col { max-width: 52ch; }
.contact-col > .lead       { margin-top: 1.375rem; }
.contact-col > .form-alert { margin-top: 2rem; }
.contact-col > .form       { margin-top: 2.125rem; }
.contact-col > .actions    { margin-top: 2.25rem; }

/* Outbound "check it yourself" link that closes a block. Proof has a location. */
.note-link {
  margin-top: 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.6;
}

/* CONTRAST CONSTRAINT — read before changing anything red on a navy ground.
   The brand record fixes on-navy red at #E03C48, which measures 3.06:1 against
   #16324F. That clears the 3:1 required of a non-text element such as the rule
   mark, but not the 4.5:1 required of body-sized text. It does clear WCAG's
   large-text threshold (18.66px bold), so red text on navy is set at 19px/700
   and must stay at or above it. Do not solve this by lightening the red. */
.section--navy .note-link {
  font-size: 1.1875rem;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  background: var(--red);
  border: 0;
  padding: 15px 26px;
  cursor: pointer;
  text-align: center;
  transition: background 140ms var(--ease);
}
.btn:hover { background: var(--red-hover); color: #fff; }
.btn--sm { font-size: .9375rem; padding: 13px 22px; letter-spacing: .01em; }

/* --------------------------------------------------------------------------
   7. Announcement bar
   -------------------------------------------------------------------------- */
.announce {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--rule-card);
}
.announce__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.125rem;
  padding-block: 11px 12px;
}
.announce__text {
  font-size: .875rem;
  line-height: 1.5;
  color: var(--text-body);
  letter-spacing: .01em;
}
.announce__dismiss {
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1;
  padding: 5px 4px;
  cursor: pointer;
}
.announce__dismiss:hover { color: var(--ink); }
.announce[hidden] { display: none; }

/* --------------------------------------------------------------------------
   8. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.125rem 2rem;
  flex-wrap: wrap;
  padding-block: 16px;
  min-height: 84px;
}
.brand { display: block; flex-shrink: 0; line-height: 0; }
.brand img { width: 186px; height: 39px; display: block; }

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 30px;
}
.site-nav a {
  font-size: .9375rem;
  color: var(--text-strong);
  white-space: nowrap;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}
.site-nav .btn { color: #fff; white-space: nowrap; }
.site-nav .btn[aria-current="page"] { color: #fff; }

.nav-toggle { display: none; }

@media (max-width: 1080px) {
  .brand img { width: 158px; height: 33px; }
  .site-nav { gap: 12px 22px; }
  .site-nav a { font-size: .875rem; }
}

/* Collapse to a disclosure menu only when JS can drive it. Without JS the nav
   simply wraps, which is the behaviour the approved mockups shipped with. */
@media (max-width: 900px) {
  .js .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    border: 1px solid var(--rule-card);
    color: var(--ink);
    font-size: .9375rem;
    font-weight: 700;
    padding: 11px 16px;
    cursor: pointer;
  }
  .js .nav-toggle:hover { border-color: var(--rule-hover); }
  .js .nav-toggle__bars {
    position: relative;
    width: 17px; height: 2px;
    background: currentColor;
    transition: background 120ms var(--ease);
  }
  .js .nav-toggle__bars::before,
  .js .nav-toggle__bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 17px; height: 2px;
    background: currentColor;
    transition: transform 160ms var(--ease);
  }
  .js .nav-toggle__bars::before { top: -6px; }
  .js .nav-toggle__bars::after  { top: 6px; }
  .js .nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
  .js .nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
  .js .nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-6px) rotate(-45deg); }

  .js .site-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 12px;
  }
  .js .site-nav[data-open] { display: flex; }
  .js .site-nav a {
    font-size: 1.0625rem;
    padding: 15px 2px;
    border-top: 1px solid var(--rule);
    white-space: normal;
  }
  .js .site-nav .btn {
    margin-top: 16px;
    border-top: 0;
    padding: 15px 26px;
    text-align: center;
  }
  .js .site-header__inner { min-height: 72px; }
}

/* --------------------------------------------------------------------------
   9. Cards — doors, promo, icon cards, resource cards
   -------------------------------------------------------------------------- */
.card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--rule-card);
  padding: 40px 40px 36px;
  transition: transform 140ms var(--ease), box-shadow 140ms var(--ease),
              border-color 140ms var(--ease);
}
a.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(22, 50, 79, .09);
  border-color: var(--rule-hover);
}
.card__divider {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--rule-card);
  margin: 20px 0 22px;
}
.card__title {
  display: block;
  font-size: 1.5625rem;
  line-height: 1.28;
  font-weight: 700;
  color: var(--ink);
}
.card__text {
  display: block;
  margin-top: 1rem;
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--text-body);
  flex: 1;
  text-wrap: pretty;
}
.card__cta {
  display: block;
  margin-top: 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
}
a.card:hover .card__cta { color: var(--red-hover); }

/* The two doors: equal weight, neither recommended. */
.doors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.door__eyebrow { color: var(--ink); }

/* Full-width promo row beneath the doors. */
.promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2.5rem;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--rule-card);
  padding: 32px 40px;
  margin-top: 1.5rem;
  transition: transform 140ms var(--ease), box-shadow 140ms var(--ease),
              border-color 140ms var(--ease);
}
a.promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(22, 50, 79, .09);
  border-color: var(--rule-hover);
}
.promo__body {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  max-width: 74ch;
}
.promo__title {
  font-size: 1.375rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ink);
}
.promo__text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-body);
  text-wrap: pretty;
}
.promo__cta {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}
a.promo:hover .promo__cta { color: var(--red-hover); }

/* Quiet icon claim cards — the icon is optional and never oversells. */
.claim__icon {
  display: block;
  width: 22px;
  height: 22px;
  color: var(--ink);
  margin-bottom: 18px;
}
.claim__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .005em;
}
.claim__text {
  margin-top: .625rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  text-wrap: pretty;
}

/* The same claim paragraphs standing alone on a navy ground. */
.section--navy .claim__text {
  margin-top: 0;
  font-size: 1.125rem;
  line-height: 1.68;
  color: var(--on-navy);
}
.section--navy .claim__text--soft { color: var(--on-navy-soft); }

/* Resources, set A — "Forms and Downloads". The errand the reader came to run,
   so it reads as a toolbar: tight, horizontal, sitting right under the hero. */
.section--toolbar { background: var(--bg-alt); padding-block: clamp(2.5rem, 1.6rem + 3.9vw, 3.5rem) clamp(2.75rem, 1.7rem + 4.5vw, 4rem); }

.toolbar-heading {
  margin-bottom: 1.75rem;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.tool-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 1rem;
}
.tool-card {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--rule-input);
  padding: 26px 28px;
  transition: border-color 140ms var(--ease), box-shadow 140ms var(--ease);
}
.tool-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 20px rgba(22, 50, 79, .08);
}
.tool-card__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--ink);
  margin-top: 3px;
}
.tool-card__title {
  display: block;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.tool-card__text {
  display: block;
  margin-top: .5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  text-wrap: pretty;
}
.tool-card__cta {
  display: block;
  margin-top: .875rem;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--red);
}
.tool-card:hover .tool-card__cta { color: var(--red-hover); }

/* Resources, set B — "General Resources". The wider index, so it reads as a
   directory: hairline-ruled tiles, no borders of their own, quiet hover. */
.dir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1px;
  margin-top: 2.25rem;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.dir-card {
  display: block;
  background: var(--bg);
  padding: 28px 26px 30px;
  transition: background 140ms var(--ease);
}
.dir-card:hover { background: var(--bg-alt); }
.dir-card__icon { display: block; width: 20px; height: 20px; color: var(--ink); }
.dir-card__title {
  display: block;
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.32;
}
.dir-card__text {
  display: block;
  margin-top: .5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  text-wrap: pretty;
}
.dir-card__cta {
  display: block;
  margin-top: .875rem;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--red);
}
.dir-card:hover .dir-card__cta { color: var(--red-hover); }

/* Resources hero is navy and the shortest on the site. */
.hero--navy {
  background: var(--navy);
  padding-block: clamp(3rem, 2rem + 4.2vw, 4rem) clamp(3.25rem, 2.1rem + 4.7vw, 4.25rem);
}
.hero--navy .page-title { color: var(--on-navy); max-width: 26ch; font-size: var(--fs-page); line-height: 1.12; letter-spacing: -.015em; }

/* --------------------------------------------------------------------------
   10. Numbered steps
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 2.875rem;
  background: var(--rule-card);
  border: 1px solid var(--rule-card);
  list-style: none;
  counter-reset: none;
}
.step {
  background: var(--bg);
  padding: 30px 32px 32px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 28px;
  align-items: baseline;
}
.step__num {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.step__title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--ink);
}
.step__text {
  grid-column: 2;
  margin-top: .5rem;
  max-width: 76ch;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--text-body);
  text-wrap: pretty;
}
@media (max-width: 520px) {
  .step { padding: 24px 22px 26px; gap: 6px 18px; }
  .step__text { grid-column: 1 / -1; }
}

/* --------------------------------------------------------------------------
   11. FAQ — native <details>, no JavaScript
   -------------------------------------------------------------------------- */
.faq { margin-top: 2.5rem; }

.faq__item { border-top: 1px solid var(--rule); }
.faq__item:last-child { border-bottom: 1px solid var(--rule); }
.faq--tight .faq__item { border-top-color: var(--rule-faq); }
.faq--tight .faq__item:last-child { border-bottom-color: var(--rule-faq); }

.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq--tight .faq__q { padding: 22px 0; font-size: 1.125rem; }

.faq__sign {
  flex-shrink: 0;
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
  transition: transform 160ms var(--ease);
}
.faq__item[open] .faq__sign { transform: rotate(45deg); }

.faq__a {
  margin: 0 0 28px;
  max-width: 64ch;
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--text-body);
  text-wrap: pretty;
}
.faq--tight .faq__a { margin-bottom: 24px; font-size: 1rem; line-height: 1.64; }

/* --------------------------------------------------------------------------
   12. Closing band
   -------------------------------------------------------------------------- */
.closing { text-align: center; }
.closing .h2 { margin-inline: auto; }
.closing .lead { margin-top: 1.375rem; margin-inline: auto; max-width: 58ch; }
.closing .btn { margin-top: 2rem; }

/* --------------------------------------------------------------------------
   13. Contact form
   -------------------------------------------------------------------------- */
.form {
  margin-top: 2.125rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.375rem 1.5rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-strong);
}
.field--full { grid-column: 1 / -1; }
.field__label { display: flex; align-items: baseline; gap: 5px; }
.field__req { color: var(--red); }
.field__opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
}
.field input,
.field textarea {
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--rule-input);
  padding: 13px 14px;
  width: 100%;
  transition: border-color 120ms var(--ease);
}
.field textarea { resize: vertical; min-height: 9rem; }
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(22, 50, 79, .1); }
.field input:focus-visible,
.field textarea:focus-visible { outline: none; }
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--red); }

.field__error {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--red);
}

/* Honeypot — off-screen, never displayed, ignored by assistive tech. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.125rem 1.5rem;
}
.form__note { font-size: .9375rem; color: var(--text-muted); }

.form-alert {
  margin-top: 2rem;
  border: 1px solid var(--rule-input);
  border-left: 3px solid var(--red);
  background: var(--bg-card);
  padding: 18px 22px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-strong);
}
.form-alert ul { margin: .5rem 0 0; padding-left: 1.25rem; }

/* --------------------------------------------------------------------------
   14. Long-form utility pages
   -------------------------------------------------------------------------- */
.longform { max-width: 68ch; }
.longform h2 {
  font-size: var(--fs-h2-sm);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
}
.longform h3 {
  margin-top: 2.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  scroll-margin-top: 7rem;
}
.longform p {
  margin-top: 1rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-body);
  text-wrap: pretty;
}
.longform > h2 + p { margin-top: 1.25rem; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  flex-shrink: 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  padding-block: 72px 40px;
}
.site-footer__brand img { width: 163px; height: 34px; display: block; }

/* The independence statement is load-bearing. It is not fine print. */
.independence {
  margin-top: 1.625rem;
  max-width: 42ch;
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--text-strong);
  text-wrap: pretty;
}
.site-footer__heading {
  display: block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.375rem;
  list-style: none;
}
.footer-nav a { font-size: 1rem; color: var(--text-strong); }
.footer-nav a:hover { color: var(--ink); }
.site-footer__text {
  margin-top: 1.375rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-strong);
}
.site-footer__cta { margin-top: .75rem; font-size: 1.0625rem; }
.site-footer__legal {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  margin-bottom: 44px;
  font-size: .875rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   16. 404
   -------------------------------------------------------------------------- */
/* Spacing comes from .contact-col above; this only sets the page's height. */
.notfound { padding-block: clamp(4rem, 2rem + 8vw, 8rem); }

/* --------------------------------------------------------------------------
   17. Motion floor — mostly what does not move
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  a.card:hover, a.promo:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   18. Print
   -------------------------------------------------------------------------- */
@media print {
  .announce, .site-header, .nav-toggle, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  .section--navy { background: #fff !important; color: #000 !important; }
  .section--navy .h2, .section--navy .prose p { color: #000 !important; }
  .faq__item[open] .faq__a, .faq__a { display: block !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .85em; }
}
