/* ==========================================================================
   CHARLIE CASTLEN FOR COUNTY JUDGE EXECUTIVE
   Campaign website stylesheet  ·  V2
   Built to Castlen Brand Kit V1 (August 2026) · Centurion Strategies
   --------------------------------------------------------------------------
   V2 DIRECTION
     - White is the ground. Navy and yellow are contrast, used in blocks.
     - The yellow-and-black logo lockup sets the accent language: solid yellow
       fields carrying navy type, and solid navy fields carrying yellow type.
     - No decorative eyebrow rules. Headlines carry the sections.
     - Less on every page. Fewer cards, shorter copy.
   --------------------------------------------------------------------------
   Brand rules enforced here:
     - Anton for display type only, ALL CAPS, never body copy
     - Montserrat 400/500/600/700 for text; buttons and taglines 700 caps .115em
     - Lead yellow-on-navy or navy-on-yellow
     - Never recolor, rotate, or redraw the county mark
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  --yellow:        #FFC300;
  --yellow-dark:   #E8B100;   /* hover state only, never in artwork */
  --navy:          #0A0F1D;
  --ob-blue:       #1E4E8C;
  --gray:          #F2F4F7;
  --gray-line:     #E2E6ED;
  --white:         #FFFFFF;
  --ink:           #1B2233;
  --ink-muted:     #5A6478;
  --fb-blue:       #1877F2;   /* Facebook brand blue — the Facebook button only */

  --display: "Anton", "Arial Narrow", Impact, sans-serif;
  --text: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --wrap-narrow: 760px;
  --gut: 24px;
  --sec: 96px;

  --radius: 3px;
  --shadow: 0 1px 2px rgba(10,15,29,.05), 0 10px 26px rgba(10,15,29,.07);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--ob-blue); text-underline-offset: 3px; }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  line-height: .95; letter-spacing: .005em; margin: 0 0 .55em; color: var(--navy);
}
h1 { font-size: clamp(44px, 6.6vw, 80px); }
h2 { font-size: clamp(32px, 4.4vw, 52px); }
h3 { font-size: clamp(21px, 2.2vw, 27px); }
h4 { font-size: 18px; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

/* Body-copy lists */
.wrap ol, .wrap ul.prose { margin: 0 0 1.3em; padding-left: 1.3em; }
.wrap ol li, .wrap ul.prose li { margin-bottom: .8em; padding-left: .3em; }
.wrap ol li::marker { font-weight: 700; color: var(--navy); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.wrap--prose { max-width: var(--wrap); }
.wrap--prose > * { max-width: var(--wrap-narrow); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--yellow); color: var(--navy); padding: 12px 20px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .115em; font-size: 13px;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--ob-blue); outline-offset: 3px; }
.band--navy :focus-visible, .site-footer :focus-visible { outline-color: var(--yellow); }
.site-header :focus-visible { outline-color: var(--navy); }

/* --------------------------------------------------------------------------
   3. BUTTONS
   Doubled class names so context link colors can never override them.
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--text); font-weight: 700; font-size: 14px;
  letter-spacing: .115em; text-transform: uppercase; text-decoration: none;
  padding: 17px 32px; border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; line-height: 1;
  transition: transform .16s var(--ease), background-color .16s var(--ease),
              color .16s var(--ease), border-color .16s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn.btn--yellow { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.btn.btn--yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); color: var(--navy); }
.btn.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn.btn--navy:hover { background: var(--ob-blue); border-color: var(--ob-blue); color: var(--white); }
.btn.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn.btn--outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--sm { padding: 12px 22px; font-size: 12.5px; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------------------------
   4. SECTIONS AND BANDS
   White is the default. The bands are the contrast.
   -------------------------------------------------------------------------- */
.section { padding: var(--sec) 0; }
.section--tight { padding: 62px 0; }
.section--gray { background: var(--gray); }

/* Solid color islands, the logo's two colorways */
.band--navy { background: var(--navy); color: rgba(255,255,255,.84); }
.band--navy h1, .band--navy h2, .band--navy h3 { color: var(--white); }
.band--navy a { color: var(--yellow); }

.band--yellow { background: var(--yellow); color: var(--navy); }
.band--yellow h1, .band--yellow h2, .band--yellow h3 { color: var(--navy); }
.band--yellow a { color: var(--navy); }
.band--yellow p { font-weight: 500; }

.section-head { max-width: 660px; margin-bottom: 44px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 18px; color: var(--ink-muted); margin-bottom: 0; }
.band--navy .section-head p { color: rgba(255,255,255,.76); }
.band--yellow .section-head p { color: var(--navy); }

.lede { font-size: 20px; line-height: 1.6; font-weight: 500; color: var(--ink); }

/* A short row of governing principles. Not cards — plain columns with a navy
   rule, so they read as a statement rather than a feature grid. */
.tenets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; text-align: left; }
@media (max-width: 780px) { .tenets { grid-template-columns: 1fr; gap: 26px; } }
.tenet { border-top: 3px solid var(--navy); padding-top: 18px; }
.tenet h3 { font-size: 19px; margin-bottom: 8px; }
.tenet p { font-size: 15px; color: var(--ink-muted); margin: 0; }

/* Endorsements — name and office carry it. Built as a grid so more can be
   added without a layout change. */
.endorsements { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 780px) { .endorsements { grid-template-columns: 1fr; } }
.endorse {
  background: var(--white); border: 1px solid var(--gray-line);
  border-left: 5px solid var(--yellow); padding: 28px 30px;
}
.endorse blockquote {
  margin: 0 0 18px; font-size: 17px; line-height: 1.6; color: var(--ink);
}
.endorse__name {
  font-family: var(--display); text-transform: uppercase; font-size: 24px;
  line-height: 1; color: var(--navy); margin: 0 0 8px;
}
.endorse__title {
  font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-muted); margin: 0;
}

/* Kicker — replaces the old rule-and-label eyebrow. Plain, quiet, optional. */
.kicker {
  font-weight: 700; font-size: 12.5px; letter-spacing: .115em; text-transform: uppercase;
  color: var(--ob-blue); margin: 0 0 14px;
}
.band--navy .kicker { color: var(--yellow); }
.band--yellow .kicker { color: var(--navy); opacity: .7; }

/* --------------------------------------------------------------------------
   5. HEADER / NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--yellow);
  border-bottom: 5px solid var(--navy);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 96px; padding-top: 12px; padding-bottom: 12px;
}
.site-header__logo { flex: none; display: block; }
.site-header__logo img {
  width: 288px; height: 82px; max-width: 58vw;
  object-fit: cover; object-position: center;
}
@media (max-width: 620px) { .site-header__logo img { width: 232px; height: 66px; } }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  font-weight: 700; font-size: 13px; letter-spacing: .045em; text-transform: uppercase;
  white-space: nowrap; color: var(--navy); text-decoration: none; padding: 10px 12px;
  border-bottom: 3px solid transparent;
  transition: opacity .15s var(--ease), border-color .15s var(--ease);
}
.nav a:hover { opacity: .68; border-bottom-color: var(--navy); }
.nav a[aria-current="page"] { opacity: 1; border-bottom-color: var(--navy); }
.nav .btn { margin-left: 12px; }

.nav-toggle {
  display: none; background: transparent; border: 2px solid var(--navy);
  border-radius: var(--radius); padding: 9px 11px; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0;
  transition: transform .2s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 101px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--yellow); border-bottom: 5px solid var(--navy);
    padding: 8px 16px 22px; transform: translateY(-150%);
    transition: transform .28s var(--ease);
    max-height: calc(100vh - 101px); overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: 15px 8px; border-bottom: 1px solid rgba(10,15,29,.16); font-size: 15px; }
  .nav .btn { margin: 18px 8px 0; }
}

/* --------------------------------------------------------------------------
   6. HERO — white ground, headshot on a yellow block
   -------------------------------------------------------------------------- */
.hero { background: var(--white); padding: 76px 0 84px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(36px, 4.4vw, 56px); line-height: 1.02; margin-bottom: 24px; }
.hero__sub { font-size: 19px; line-height: 1.6; color: var(--ink-muted); max-width: 44ch; margin-bottom: 32px; }

/* The photo sits on a solid yellow field, offset — the logo's colorway,
   applied to the portrait. No shadow, no gradient. */
.portrait { position: relative; margin: 0; }
.portrait::before {
  content: ""; position: absolute; z-index: 0;
  left: 26px; top: 26px; right: -26px; bottom: -26px;
  background: var(--yellow);
}
.portrait img { position: relative; z-index: 1; width: 100%; }
.portrait--navy::before { background: var(--navy); }
.portrait--flip::before { left: -26px; right: 26px; }

@media (max-width: 940px) {
  .hero { padding: 52px 0 64px; }
  .hero__grid { grid-template-columns: 1fr; gap: 52px; }
  .portrait { max-width: 460px; }
  .portrait::before { left: 18px; top: 18px; right: -18px; bottom: -18px; }
}

/* --------------------------------------------------------------------------
   7. PAGE BANNER — white, quiet, no rules
   -------------------------------------------------------------------------- */
.banner { background: var(--white); padding: 70px 0 30px; border-bottom: 1px solid var(--gray-line); }
.banner h1 { margin-bottom: 18px; }
.banner h1.h1--long { font-size: clamp(30px, 3.5vw, 44px); line-height: 1.04; max-width: 20ch; }
.banner p { font-size: 19px; color: var(--ink-muted); max-width: 54ch; }
.banner .wrap > * { max-width: 780px; }

/* --------------------------------------------------------------------------
   8. STATS
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 46px 24px; text-align: center; }
.band--navy .stat + .stat { border-left: 1px solid rgba(255,255,255,.14); }
.band--yellow .stat + .stat { border-left: 1px solid rgba(10,15,29,.16); }
.stat__num { font-family: var(--display); font-size: clamp(38px, 4.4vw, 58px); line-height: 1; }
.band--navy .stat__num { color: var(--yellow); }
.band--yellow .stat__num { color: var(--navy); }
.stat__label {
  font-weight: 600; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-top: 12px;
}
.band--navy .stat__label { color: rgba(255,255,255,.72); }
.band--yellow .stat__label { color: rgba(10,15,29,.72); }
@media (max-width: 780px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .band--navy .stat:nth-child(odd) { border-left: 0; }
  .band--yellow .stat:nth-child(odd) { border-left: 0; }
  .band--navy .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.14); }
  .band--yellow .stat:nth-child(n+3) { border-top: 1px solid rgba(10,15,29,.16); }
}

/* --------------------------------------------------------------------------
   9. CARDS AND LISTS
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--gray-line);
  border-top: 4px solid var(--navy); padding: 30px 28px;
  transition: border-top-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover { border-top-color: var(--yellow); transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--ink-muted); font-size: 15.5px; margin-bottom: 0; }

/* Numbered record rows */
.rows { border-top: 1px solid var(--gray-line); }
.rows__item {
  display: grid; grid-template-columns: 170px 1fr; gap: 32px;
  padding: 32px 0; border-bottom: 1px solid var(--gray-line); align-items: start;
}
.rows__stat { font-family: var(--display); font-size: clamp(28px, 3.2vw, 40px); line-height: 1; color: var(--navy); }
.rows__stat--word { font-size: clamp(22px, 2.2vw, 27px); }
.rows__stat small {
  display: block; font-family: var(--text); font-weight: 700; font-size: 11px;
  letter-spacing: .115em; text-transform: uppercase; color: var(--ink-muted); margin-top: 9px;
}
.rows__body h3 { font-size: 21px; margin-bottom: 8px; }
.rows__body p { color: var(--ink-muted); margin-bottom: 0; }
@media (max-width: 720px) { .rows__item { grid-template-columns: 1fr; gap: 12px; } }

/* Pull quote */
.quote blockquote {
  margin: 0; font-family: var(--display); text-transform: uppercase; line-height: 1.05;
  font-size: clamp(26px, 3.2vw, 40px); color: var(--white);
}
.quote cite {
  display: block; font-family: var(--text); font-style: normal; font-weight: 700;
  font-size: 12.5px; letter-spacing: .115em; text-transform: uppercase;
  color: var(--yellow); margin-top: 24px;
}

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--flip .split__media { order: 2; }
.split--top { align-items: start; }
@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split--flip .split__media { order: 0; }
}

/* --------------------------------------------------------------------------
   10. FORMS
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }

.field { display: grid; gap: 7px; }
.field label { font-weight: 700; font-size: 12px; letter-spacing: .115em; text-transform: uppercase; color: var(--navy); }
.field .req { color: var(--ob-blue); }
.field input, .field select, .field textarea {
  font-family: var(--text); font-size: 16px; color: var(--ink);
  padding: 14px 15px; border: 2px solid var(--gray-line); border-radius: var(--radius);
  background: var(--white); width: 100%; transition: border-color .15s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ob-blue); outline: none; }
.field textarea { min-height: 140px; resize: vertical; }
.field__hint { font-size: 13px; color: var(--ink-muted); line-height: 1.5; }

.checks { display: grid; gap: 10px; }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; }
.check input { width: 18px; height: 18px; margin: 3px 0 0; flex: none; accent-color: var(--ob-blue); }

/* Amount picker — navy tiles that flip to the yellow colorway on hover */
.amounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 560px) { .amounts { grid-template-columns: repeat(2, 1fr); } }
.amount, a.amount {
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  font-family: var(--display); font-size: 28px; color: var(--navy);
  background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius);
  padding: 20px 8px; transition: background-color .15s var(--ease), color .15s var(--ease), transform .15s var(--ease);
}
.amount:hover, a.amount:hover { background: var(--yellow); border-color: var(--navy); color: var(--navy); transform: translateY(-3px); }
.amount--other { font-family: var(--text); font-weight: 700; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; }

/* --------------------------------------------------------------------------
   11. COMPLIANCE (KREF)
   -------------------------------------------------------------------------- */
.compliance {
  background: var(--gray); border: 1px solid var(--gray-line);
  padding: 26px 28px; font-size: 14px; line-height: 1.6; color: var(--ink-muted);
}
.compliance h4 {
  font-family: var(--text); font-weight: 700; font-size: 12px; letter-spacing: .115em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 12px;
}
.compliance ul { margin: 0; padding-left: 20px; }
.compliance li { margin-bottom: 7px; }
.compliance li:last-child { margin-bottom: 0; }

/* The required attribution, boxed. Yellow field, navy type, navy rule — the
   logo's colorway. Same treatment everywhere it appears. */
.disclaimer {
  display: inline-block;
  background: var(--white); color: var(--navy); border: 2px solid var(--navy);
  border-radius: var(--radius); padding: 13px 22px;
  font-weight: 700; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  text-align: center; margin: 0;
}
.site-footer .disclaimer {
  background: var(--yellow); color: var(--navy); border-color: var(--yellow);
}

/* --------------------------------------------------------------------------
   12. CTA STRIP
   -------------------------------------------------------------------------- */
.cta { padding: 68px 0; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta h2 { margin-bottom: 8px; }
.cta p { margin-bottom: 0; max-width: 50ch; }

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.66); padding: 62px 0 0; }
.site-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 940px) { .site-footer__top { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .site-footer__top { grid-template-columns: 1fr; } }
.site-footer img.footer-logo { width: 262px; height: auto; max-width: 100%; margin-bottom: 14px; }
.site-footer h4 {
  font-family: var(--text); font-weight: 700; font-size: 12px; letter-spacing: .115em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 15px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(255,255,255,.72); text-decoration: none; font-size: 15px; }
.site-footer a:hover { color: var(--yellow); }
.site-footer p { font-size: 15px; }
.site-footer .field__hint { color: rgba(255,255,255,.5); }

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 11px; margin-bottom: 11px;
}
.contact-list svg {
  width: 17px; height: 17px; flex: none; margin-top: 4px;
  color: var(--yellow); transition: color .15s var(--ease);
}
.contact-list li:hover svg { color: var(--white); }
.contact-list a { word-break: break-word; }

.fb-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 4px;
  border: 1.5px solid rgba(255,255,255,.3); border-radius: var(--radius);
  padding: 10px 16px; color: var(--white);
  font-weight: 700; font-size: 12px; letter-spacing: .115em; text-transform: uppercase;
  transition: background-color .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
}
.site-footer .fb-link:hover,
.site-footer .fb-link:focus-visible {
  background: var(--fb-blue); border-color: var(--fb-blue); color: var(--white);
}
.fb-link svg { width: 18px; height: 18px; flex: none; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.14); padding: 30px 0 36px;
  display: grid; gap: 18px; justify-items: center; text-align: center;
}
.site-footer__bottom .fine { font-size: 12.5px; color: rgba(255,255,255,.5); margin: 0; }
.site-footer__bottom .fine a { font-size: inherit; text-decoration: underline; }

/* --------------------------------------------------------------------------
   14. PLACEHOLDER MARKERS
   Anything wearing .is-placeholder is unconfirmed content awaiting the
   campaign. Append ?placeholders to any URL to outline them.
   -------------------------------------------------------------------------- */
.ph-photo {
  display: grid; place-items: center; text-align: center;
  background: var(--gray) repeating-linear-gradient(-45deg, transparent 0 14px, rgba(30,78,140,.05) 14px 28px);
  border: 2px dashed var(--gray-line);
  color: var(--ink-muted); font-weight: 700; font-size: 12px; letter-spacing: .115em;
  text-transform: uppercase; padding: 30px; min-height: 300px;
}
body.show-placeholders .is-placeholder { position: relative; outline: 2px dashed #D93025; outline-offset: 3px; }
body.show-placeholders .is-placeholder::after {
  content: "PLACEHOLDER"; position: absolute; top: 0; right: 0; z-index: 9;
  background: #D93025; color: #fff; font-family: var(--text); font-weight: 700;
  font-size: 9px; letter-spacing: .1em; padding: 2px 6px;
}

/* --------------------------------------------------------------------------
   15. UTILITIES
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

@media print {
  .site-header, .site-footer__top, .cta, .nav-toggle { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .band--navy, .band--yellow { background: #fff !important; color: #000 !important; }
  .band--navy h2, .quote blockquote { color: #000 !important; }
  .disclaimer { border: 2px solid #000; background: #fff; color: #000; }
}
