/* ==========================================================================
   Indiana-Johnstown Area USBC
   assets/css/site.css

   ┌────────────────────────────────────────────────────────────────────┐
   │  ALL BRANDING IS CONTROLLED FROM THE :root BLOCK DIRECTLY BELOW.   │
   │  Change a value there and it updates everywhere on every page.     │
   │  You do not need to touch anything after the "COMPONENTS" banner.  │
   └────────────────────────────────────────────────────────────────────┘
   ========================================================================== */

:root {

  /* ---------------------------------------------------------------- */
  /*  1. BRAND COLORS                                                  */
  /*     Swap these hex codes to re-brand the whole site.              */
  /* ---------------------------------------------------------------- */

  --brand-navy:        #003882;  /* Primary. Nav, headings, links.        */
  --brand-navy-deep:   #002A63;  /* Hover/pressed state of the primary.   */
  --brand-midnight:    #0A1A33;  /* Hero + footer background.             */
  --brand-red:         #E03A3E;  /* Accent. Buttons, rules, highlights.   */
  --brand-red-deep:    #B8272B;  /* Hover/pressed state of the accent.    */

  /* ---------------------------------------------------------------- */
  /*  2. NEUTRALS                                                      */
  /* ---------------------------------------------------------------- */

  --bone:              #F7F5F0;  /* Page background (warm off-white).     */
  --surface:           #FFFFFF;  /* Cards, panels, table rows.            */
  --surface-alt:       #EFEDE6;  /* Alternating / tinted sections.        */
  --ink:               #12141A;  /* Body text.                            */
  --ink-soft:          #55606F;  /* Secondary text, captions, meta.       */
  --rule:              #DDD9CF;  /* Hairline borders on light surfaces.   */
  --rule-dark:         rgba(255,255,255,.14); /* Borders on dark ground.  */

  /* ---------------------------------------------------------------- */
  /*  3. SEMANTIC ROLES                                                */
  /*     These point at the brand colors above. Repoint them if you    */
  /*     want, e.g. make buttons navy instead of red:                  */
  /*        --color-button: var(--brand-navy);                         */
  /* ---------------------------------------------------------------- */

  --color-page-bg:     var(--bone);
  --color-text:        var(--ink);
  --color-heading:     var(--brand-navy);
  --color-link:        var(--brand-navy);
  --color-link-hover:  var(--brand-red);
  --color-button:      var(--brand-red);
  --color-button-hover:var(--brand-red-deep);
  --color-button-text: #FFFFFF;
  --color-header-bg:   var(--surface);
  --color-nav-text:    var(--brand-navy);
  --color-hero-bg:     var(--brand-midnight);
  --color-hero-text:   #FFFFFF;
  --color-footer-bg:   var(--brand-midnight);
  --color-accent-rule: var(--brand-red);

  /* ---------------------------------------------------------------- */
  /*  4. TYPEFACES                                                     */
  /*     Fonts load from Google Fonts in each page's <head>. If you    */
  /*     change a family here, update that <link> too (see README).    */
  /* ---------------------------------------------------------------- */

  --font-display: "Archivo", "Helvetica Neue", Impact, sans-serif; /* Headlines */
  --font-body:    "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

  --display-weight: 800;   /* Headline weight: 700 / 800 / 900          */
  --display-width:  92;    /* Headline width 75=narrow 100=normal 125=wide */
  --display-tracking: -0.02em;
  --display-case: none;    /* Set to `uppercase` for an all-caps site.  */

  /* ---------------------------------------------------------------- */
  /*  5. SHAPE + MOTION                                                */
  /* ---------------------------------------------------------------- */

  --radius:      6px;   /* Corner rounding on cards/buttons. 0 = square */
  --radius-lg:   10px;
  --slant:      -9deg;  /* Italic-echo angle on accent bars. 0 = flat.  */
  --shadow:      0 1px 2px rgba(10,26,51,.06), 0 8px 24px rgba(10,26,51,.07);
  --shadow-lift: 0 2px 4px rgba(10,26,51,.08), 0 16px 40px rgba(10,26,51,.12);
  --speed:       .18s;

  /* ---------------------------------------------------------------- */
  /*  6. LAYOUT                                                        */
  /* ---------------------------------------------------------------- */

  --wrap:      1180px;             /* Max content width.               */
  --wrap-text: 760px;              /* Max width for long prose.        */
  --pad:       clamp(18px, 4vw, 40px);   /* Left/right page gutter.    */
  --section-y: clamp(56px, 8vw, 104px);  /* Vertical section rhythm.   */
}


/* ==========================================================================
   COMPONENTS — you should not need to edit below this line.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

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

/* Keep the sticky header from covering whatever an in-page link jumps to. */
:target, section[id], h2[id], h3[id] { scroll-margin-top: 130px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--color-page-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-link); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--color-link-hover); }

:focus-visible {
  outline: 3px solid var(--brand-red);
  outline-offset: 2px;
  border-radius: 2px;
}

/* --- Typography ---------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-variation-settings: "wdth" var(--display-width);
  letter-spacing: var(--display-tracking);
  text-transform: var(--display-case);
  color: var(--color-heading);
  line-height: 1.1;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.02rem; letter-spacing: .01em; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Small slanted label above a heading — echoes the italic logo. */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin: 0 0 .7rem;
  padding-left: 1.6rem;
  position: relative;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: .52em;
  width: 1.05rem; height: 4px;
  background: var(--color-accent-rule);
  transform: skewX(var(--slant));
}
.on-dark .eyebrow, .hero .eyebrow { color: #FF8B8E; }

/* --- Layout helpers ------------------------------------------------ */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.wrap-text { max-width: var(--wrap-text); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--surface-alt); }
.section--white { background: var(--surface); }
.section-head { max-width: 700px; margin-bottom: clamp(28px, 4vw, 44px); }
.center { text-align: center; margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brand-red); color: #fff;
  padding: .7rem 1.1rem; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* --- Buttons ------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .78rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--color-button);
  color: var(--color-button-text);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--speed), transform var(--speed), border-color var(--speed), color var(--speed);
}
.btn:hover { background: var(--color-button-hover); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: var(--brand-navy); color: var(--brand-navy); }
.btn--ghost:hover { background: var(--brand-navy); color: #fff; }
.btn--on-dark { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn--on-dark:hover { background: #fff; color: var(--brand-midnight); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }

/* --- Header / navigation ------------------------------------------- */

.topbar {
  background: var(--brand-midnight);
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  letter-spacing: .01em;
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; justify-content: space-between; padding-block: .55rem; }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: #FF8B8E; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-header-bg);
  border-bottom: 1px solid var(--rule);
}
.site-header::after {
  content: ""; display: block; height: 3px;
  background: linear-gradient(90deg, var(--brand-navy) 0 55%, var(--brand-red) 55% 100%);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: .9rem;
}
.logo img { height: clamp(42px, 6vw, 58px); width: auto; }
.logo { flex-shrink: 0; }

.nav-toggle {
  display: none;
  align-items: center; gap: .5rem;
  background: none; border: 2px solid var(--rule); border-radius: var(--radius);
  padding: .5rem .8rem;
  font-family: var(--font-display); font-weight: 700; font-size: .85rem;
  color: var(--brand-navy); cursor: pointer;
}
.nav-toggle svg { width: 18px; height: 18px; }

.nav ul { list-style: none; margin: 0; padding: 0; }
.nav > ul { display: flex; align-items: center; gap: clamp(2px, .8vw, 10px); }
.nav > ul > li { position: relative; }
.nav a {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .87rem;
  letter-spacing: .005em;
  color: var(--color-nav-text);
  text-decoration: none;
  padding: .55rem .6rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color var(--speed), background var(--speed);
}
.nav a:hover { color: var(--brand-red); background: var(--surface-alt); }
.nav a[aria-current="page"] { color: var(--brand-red); }
.nav a[aria-current="page"]::after {
  content: ""; display: block; height: 3px; margin-top: 3px;
  background: var(--color-accent-rule);
  transform: skewX(var(--slant));
}

.has-sub > a::after { content: " ▾"; font-size: .7em; opacity: .55; }
.subnav {
  position: absolute; left: 0; top: 100%;
  min-width: 230px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--brand-red);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lift);
  padding: .4rem;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--speed), transform var(--speed), visibility var(--speed);
}
.has-sub:hover .subnav,
.has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav a { font-size: .86rem; padding: .55rem .7rem; white-space: normal; }

@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--surface);
    border-bottom: 3px solid var(--brand-red);
    box-shadow: var(--shadow-lift);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
    display: none;
  }
  .nav.is-open { display: block; }
  .nav > ul { display: block; padding: .5rem var(--pad) 1.4rem; }
  .nav > ul > li { border-bottom: 1px solid var(--rule); }
  .nav a { padding: .85rem .2rem; font-size: 1rem; }
  .nav a[aria-current="page"]::after { display: none; }
  .has-sub > a::after { content: ""; }
  .subnav {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: 0; box-shadow: none; padding: 0 0 .6rem .9rem;
    border-left: 3px solid var(--brand-red); margin-bottom: .6rem;
    min-width: 0;
  }
  .subnav a { padding: .5rem .2rem; color: var(--ink-soft); }
}

/* --- Hero (home) ---------------------------------------------------- */

.hero {
  position: relative;
  background: var(--color-hero-bg);
  color: var(--color-hero-text);
  overflow: hidden;
  padding-block: clamp(56px, 9vw, 108px);
}
/* Lane-arrow motif: repeating chevrons, very low contrast. */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(115deg, transparent 0 46%, rgba(224,58,62,.16) 46% 47.2%, transparent 47.2%),
    linear-gradient(115deg, transparent 0 58%, rgba(255,255,255,.05) 58% 59.4%, transparent 59.4%),
    linear-gradient(115deg, transparent 0 70%, rgba(255,255,255,.04) 70% 71%, transparent 71%),
    radial-gradient(120% 90% at 82% 8%, rgba(0,56,130,.72) 0%, transparent 62%);
  pointer-events: none;
}
.hero > .wrap { position: relative; }
.hero h1 { color: #fff; max-width: 17ch; }
.hero .lede { color: rgba(255,255,255,.82); max-width: 56ch; }
.hero-grid { display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.35fr .65fr; } }
.hero-mark { justify-self: center; max-width: 300px; }
.hero-mark img { filter: drop-shadow(0 12px 30px rgba(0,0,0,.35)); }

/* --- Interior page header ------------------------------------------- */

.page-hero {
  position: relative;
  background: var(--brand-navy);
  color: #fff;
  padding-block: clamp(38px, 6vw, 68px);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, transparent 0 62%, rgba(224,58,62,.28) 62% 63.4%, transparent 63.4%),
    linear-gradient(105deg, transparent 0 74%, rgba(255,255,255,.07) 74% 75.2%, transparent 75.2%),
    linear-gradient(180deg, rgba(10,26,51,.35), transparent 70%);
}
.page-hero > .wrap { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: .25em; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 62ch; margin: 0; }
.crumbs {
  font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
  color: rgba(255,255,255,.62); margin-bottom: .9rem;
  font-family: var(--font-display); font-weight: 600;
}
.crumbs a { color: rgba(255,255,255,.85); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs span { padding: 0 .45rem; opacity: .5; }

/* --- Stat strip ------------------------------------------------------ */

.stat-strip {
  background: var(--surface);
  border-block: 1px solid var(--rule);
}
.stat-strip .wrap {
  display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  padding-block: 0;
}
.stat {
  padding: clamp(22px, 3vw, 34px) 1rem;
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px; background: var(--rule);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-variation-settings: "wdth" var(--display-width);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1;
  color: var(--brand-navy);
}
.stat span {
  display: block; margin-top: .45rem;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}

/* --- Cards ----------------------------------------------------------- */

.grid { display: grid; gap: clamp(16px, 2.2vw, 26px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.6vw, 30px);
  box-shadow: var(--shadow);
  transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed);
}
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--ink-soft); font-size: .96rem; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--brand-red); }
.card--link a { text-decoration: none; }
.card--link a::after { content: ""; position: absolute; inset: 0; }
.card--link { position: relative; }

/* Numbered accent bar at the top of a card. */
.card--accent { border-top: 4px solid var(--brand-red); }

.card-icon {
  width: 46px; height: 46px; margin-bottom: 1rem;
  display: grid; place-items: center;
  background: var(--brand-navy); color: #fff;
  border-radius: var(--radius);
  transform: skewX(var(--slant));
}
.card-icon svg { width: 24px; height: 24px; transform: skewX(calc(var(--slant) * -1)); }

/* --- Board / officers ------------------------------------------------ */

.board-grid { display: grid; gap: clamp(14px, 2vw, 20px); grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }
.officer {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--brand-red);
  border-radius: var(--radius);
  padding: 1.15rem 1.3rem;
}
.officer .role {
  font-family: var(--font-display); font-weight: 700;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-red); margin: 0 0 .3rem;
  /* Two lines' worth of space so names line up across the row even when a
     title like "Assistant Manager of Finance" wraps. */
  min-height: 2.4em;
}
.officer .name {
  font-family: var(--font-display); font-weight: 800;
  font-variation-settings: "wdth" var(--display-width);
  font-size: 1.3rem; color: var(--brand-navy); margin: 0; line-height: 1.15;
}
.officer .detail { font-size: .88rem; color: var(--ink-soft); margin: .35rem 0 0; }
.officer .detail a { color: var(--ink-soft); }

.name-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: .5rem 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.name-list li {
  padding: .62rem .2rem .62rem .95rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
  font-weight: 600;
}
.name-list li::before {
  content: ""; position: absolute; left: 0; top: 1.05em;
  width: 6px; height: 3px; background: var(--brand-red);
  transform: skewX(var(--slant));
}
/* Name on top, contact line beneath it in a quieter weight — when every
   entry shares one address, the name stays the thing you read. */
.name-list .who { display: block; }
.name-list a {
  display: block;
  font-size: .82rem;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: none;
}
.name-list a:hover { color: var(--brand-red); text-decoration: underline; }

/* --- Tables ----------------------------------------------------------- */

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.data {
  width: 100%; border-collapse: collapse; min-width: 520px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: .94rem;
}
table.data th {
  background: var(--brand-navy); color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: .78rem; letter-spacing: .09em; text-transform: uppercase;
  text-align: left; padding: .8rem 1rem;
}
table.data td { padding: .78rem 1rem; border-top: 1px solid var(--rule); }
table.data tbody tr:nth-child(even) { background: var(--bone); }
table.data caption { caption-side: bottom; padding-top: .8rem; font-size: .85rem; color: var(--ink-soft); text-align: left; }

/* --- Document / link lists -------------------------------------------- */

.doc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.doc-list a {
  display: flex; align-items: center; gap: .9rem;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: .95rem 1.15rem;
  text-decoration: none; color: var(--ink); font-weight: 600;
  transition: border-color var(--speed), transform var(--speed), box-shadow var(--speed);
}
.doc-list a:hover { border-color: var(--brand-red); transform: translateX(3px); box-shadow: var(--shadow); }
.doc-tag {
  flex-shrink: 0;
  font-family: var(--font-display); font-weight: 800; font-size: .68rem;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--brand-navy); color: #fff;
  padding: .3rem .5rem; border-radius: 3px;
}
.doc-tag--form { background: var(--brand-red); }
.doc-meta { margin-left: auto; font-size: .82rem; color: var(--ink-soft); font-weight: 500; }

/* --- Center list ------------------------------------------------------- */

.center-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.15rem 1.3rem;
  display: flex; flex-direction: column; gap: .3rem;
}
.center-card h3 { font-size: 1.15rem; margin: 0 0 .2rem; }
.center-card address { font-style: normal; font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }
.center-card .lanes {
  margin-top: .5rem; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-red); font-weight: 700; font-family: var(--font-display);
}

/* --- Callout / notice --------------------------------------------------- */

.callout {
  background: var(--surface);
  border-left: 5px solid var(--brand-red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow);
}
.callout h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.callout p { font-size: .95rem; color: var(--ink-soft); }

.band {
  background: var(--brand-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  position: relative; overflow: hidden;
}
.band::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, transparent 0 70%, rgba(224,58,62,.5) 70% 70.5%, transparent 70.5%),
    linear-gradient(100deg, transparent 0 76%, rgba(255,255,255,.09) 76% 76.6%, transparent 76.6%),
    linear-gradient(100deg, transparent 0 84%, rgba(255,255,255,.05) 84% 84.5%, transparent 84.5%);
}
.band > * { position: relative; }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.82); }

/* Featured event: copy beside a portrait flyer. The flyer drops below the
   text on narrow screens rather than shrinking to an unreadable stamp. */
.featured-event { display: grid; gap: clamp(24px, 4vw, 44px); align-items: center; }
@media (min-width: 860px) {
  .featured-event { grid-template-columns: 1.25fr .75fr; }
}
.featured-event .flyer { display: block; justify-self: center; max-width: 340px; }
.featured-event .flyer img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
  transition: transform var(--speed);
}
.featured-event .flyer:hover img { transform: translateY(-2px) scale(1.01); }

/* --- Prose blocks -------------------------------------------------------- */

.prose h2 { margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.7em; color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.25rem; margin: 0 0 1.15em; }
.prose li { margin-bottom: .45rem; }
.prose li::marker { color: var(--brand-red); }

/* --- Sponsors ------------------------------------------------------------ */

.sponsor-row {
  display: grid; gap: clamp(14px, 2vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: center;
}
.sponsor {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  display: grid; place-items: center;
  padding: 1rem;
  color: var(--ink-soft);
  font-size: .82rem; text-align: center;
  font-weight: 600;
  overflow: hidden;
}
/* Logos come in every shape. Fit each inside the tile without cropping or
   stretching, so a wide wordmark and a square mark still read as one row. */
.sponsor img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

/* --- Placeholder marker -------------------------------------------------- */
/* Anything wrapped in .ph is content you still need to supply.
   Delete the class (or the whole rule) once real content is in. */
.ph {
  background: rgba(224,58,62,.08);
  border-bottom: 1px dashed rgba(224,58,62,.5);
  padding: 0 .18em;
  border-radius: 2px;
}

/* --- Footer ---------------------------------------------------------------- */

.site-footer {
  background: var(--color-footer-bg);
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  margin-top: auto;
}
.site-footer::before {
  content: ""; display: block; height: 4px;
  background: linear-gradient(90deg, var(--brand-red) 0 40%, var(--brand-navy) 40% 100%);
}
.footer-grid {
  display: grid; gap: clamp(28px, 4vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding-block: clamp(40px, 6vw, 64px);
}
.footer-brand img { max-width: 210px; margin-bottom: 1.1rem; }
.site-footer h4 {
  color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer address { font-style: normal; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid var(--rule-dark);
  padding-block: 1.2rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .84rem; color: rgba(255,255,255,.55);
}
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--rule-dark); border-radius: var(--radius);
  transition: background var(--speed), border-color var(--speed);
}
.social a:hover { background: var(--brand-red); border-color: var(--brand-red); }
.social svg { width: 18px; height: 18px; fill: currentColor; }

body { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* --- Print ------------------------------------------------------------------ */

@media print {
  .site-header, .topbar, .site-footer, .btn-row, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .page-hero { background: #fff !important; color: #000; padding-block: 0; }
  .page-hero h1, .page-hero p { color: #000; }
  .card, .officer { box-shadow: none; break-inside: avoid; }
}
