/* ============================================================
   1st & 4th Amendment Auditor Summit — Stylesheet
   Aesthetic: editorial civic / constitutional publication
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800;9..144,900&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  /* Brand palette — pulled from logo */
  --navy: #1a2e5c;
  --navy-deep: #0f1d3a;
  --navy-soft: #2a3f6e;
  --red: #a6232c;
  --red-deep: #7d1a21;
  --gray: #5c6470;
  --gray-light: #b0b3ba;
  --gray-faint: #e3e1dc;

  /* Surfaces */
  --paper: #f5efe4;
  --paper-light: #fbf7ee;
  --paper-deep: #ebe4d3;
  --ink: #1a1614;
  --ink-soft: #3a3530;

  /* Accents */
  --gold: #c9a449;
  --star: #a6232c;

  /* Type */
  --font-display: 'Fraunces', 'Libre Caslon Text', Georgia, serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Spacing */
  --container: 1240px;
  --container-narrow: 920px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);

  /* Radii (very subtle — civic, not bubbly) */
  --r-sm: 2px;
  --r-md: 4px;

  /* Shadows */
  --shadow-soft: 0 1px 2px rgba(15, 29, 58, 0.06), 0 4px 12px rgba(15, 29, 58, 0.04);
  --shadow-card: 0 2px 4px rgba(15, 29, 58, 0.05), 0 12px 32px rgba(15, 29, 58, 0.08);
}

/* ============================================================
   Reset + base
   ============================================================ */

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(circle at 15% 8%, rgba(166, 35, 44, 0.025) 0%, transparent 35%),
    radial-gradient(circle at 85% 92%, rgba(26, 46, 92, 0.03) 0%, transparent 40%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color 0.15s ease; }
a:hover { color: var(--red); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Selection */
::selection { background: var(--navy); color: var(--paper-light); }

/* ============================================================
   Typography
   ============================================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 30;
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1.1em; max-width: 68ch; }
strong { font-weight: 600; color: var(--ink); }

/* Eyebrow label — used everywhere */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
}

.eyebrow.navy { color: var(--navy); }
.eyebrow.navy::before { background: var(--navy); }

/* Lede */
.lede {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 400;
  font-variation-settings: "SOFT" 50;
  max-width: 38ch;
}

.lede.wide { max-width: 56ch; }

/* Star ornament */
.ornament-star {
  display: inline-block;
  color: var(--red);
  font-size: 0.9em;
  margin: 0 0.4em;
}

/* Double-rule (echoes logo) */
.rule-double {
  position: relative;
  border: none;
  border-top: 2px solid var(--navy);
  height: 6px;
  margin: 2.5rem 0;
}
.rule-double::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid var(--navy);
}

/* ============================================================
   Layout
   ============================================================ */

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

.container.narrow { max-width: var(--container-narrow); }

section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }

.grid { display: grid; gap: var(--gutter); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ============================================================
   Header / nav
   ============================================================ */

.site-header {
  background: var(--paper-light);
  border-bottom: 1px solid var(--gray-faint);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(251, 247, 238, 0.94);
}

.utility-bar {
  background: var(--navy-deep);
  color: var(--paper-light);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.utility-bar a { color: var(--paper-light); text-decoration: none; }
.utility-bar a:hover { color: var(--gold); }
.utility-bar .star { color: var(--red); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--navy-deep);
}
.brand img { height: 64px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy-deep); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}

.nav-cta {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  background: transparent;
  border: 1px solid var(--gray-faint);
  border-radius: var(--r-sm);
}
.menu-toggle span {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: var(--navy-deep);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle span:nth-child(1) { top: 13px; }
.menu-toggle span:nth-child(2) { top: 19px; }
.menu-toggle span:nth-child(3) { top: 25px; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper-light);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--gray-faint);
    padding: 0.5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.85rem var(--gutter);
    border-bottom: 1px solid var(--gray-faint);
  }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { background: var(--paper-deep); border-left: 3px solid var(--red); }
  .menu-toggle { display: block; }
  .nav-cta .btn:not(.btn-primary) { display: none; }
}

@media (max-width: 540px) {
  .brand img { height: 52px; }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--paper-light);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: var(--paper-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(166, 35, 44, 0.25);
}

.btn-secondary {
  background: var(--navy-deep);
  color: var(--paper-light);
  border-color: var(--navy-deep);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--paper-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(26, 46, 92, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--navy-deep);
  border-color: var(--navy-deep);
}
.btn-outline:hover {
  background: var(--navy-deep);
  color: var(--paper-light);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn-ghost:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }

.btn-arrow::after {
  content: "→";
  font-family: var(--font-mono);
  transition: transform 0.18s ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ============================================================
   HERO — full-bleed cinematic, text panel anchored right
   ============================================================ */

.hero {
  position: relative;
  min-height: clamp(620px, 88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--navy-deep);
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  filter: contrast(1.05) saturate(0.92);
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 119px,
      rgba(255, 255, 255, 0.03) 119px,
      rgba(255, 255, 255, 0.03) 120px
    );
  pointer-events: none;
  opacity: 0.6;
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(11, 23, 51, 0.95) 0%, rgba(11, 23, 51, 0.72) 28%, rgba(11, 23, 51, 0.25) 60%, rgba(11, 23, 51, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
}

.hero-content {
  max-width: 620px;
  color: var(--paper-light);
}

.hero h1 {
  color: var(--paper-light);
  font-size: clamp(2.6rem, 5.6vw, 4.8rem);
  font-weight: 800;
  line-height: 0.98;
  margin: 0 0 1.5rem;
  font-variation-settings: "SOFT" 20;
  letter-spacing: -0.025em;
}

.hero h1 .red { color: var(--red); }
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 90;
  color: var(--gold);
}

.hero .lede {
  color: var(--gray-light);
  max-width: 52ch;
  margin-bottom: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.hero .btn-outline {
  color: var(--paper-light);
  border-color: var(--paper-light);
}
.hero .btn-outline:hover {
  background: var(--paper-light);
  color: var(--navy-deep);
}

.hero-meta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1.25rem;
}
.hero-meta dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.3rem;
}
.hero-meta dd {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--paper-light);
}

@media (max-width: 880px) {
  .hero {
    min-height: auto;
    padding: clamp(3rem, 9vw, 4.5rem) 0;
  }
  .hero::after {
    background: linear-gradient(180deg, rgba(11, 23, 51, 0.55) 0%, rgba(11, 23, 51, 0.88) 100%);
  }
  .hero .container { justify-content: flex-start; }
  .hero .hero-bg { object-position: 50% center; }
}

/* ============================================================
   Page header (interior pages)
   ============================================================ */

.page-header {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--gray-faint);
  background: linear-gradient(180deg, var(--paper-light) 0%, var(--paper) 100%);
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--navy-deep);
}

.page-header h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
}

/* Page-header with photo — full-bleed cinematic, text panel anchored right
   (matches the home hero treatment, slightly shorter) */
.page-header.with-photo {
  position: relative;
  min-height: clamp(380px, 56vh, 540px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: none;
}
/* Override the default navy top stripe with a red one and float above gradient */
.page-header.with-photo::before {
  background: var(--red);
  border-bottom: none;
  z-index: 3;
}
.page-header.with-photo .page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
  z-index: 0;
}
.page-header.with-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(11, 23, 51, 0.94) 0%, rgba(11, 23, 51, 0.7) 30%, rgba(11, 23, 51, 0.22) 65%, rgba(11, 23, 51, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.page-header.with-photo .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}
.page-header.with-photo .page-header-content {
  max-width: 620px;
  color: var(--paper-light);
}
.page-header.with-photo h1 {
  color: var(--paper-light);
  margin: 0 0 1rem;
}
.page-header.with-photo .lede,
.page-header.with-photo .lede.wide {
  color: var(--gray-light);
  max-width: 52ch;
}
.page-header.with-photo .lede a {
  color: var(--paper-light);
  text-decoration-color: rgba(255, 255, 255, 0.45);
}
.page-header.with-photo .lede a:hover { color: var(--gold); }

@media (max-width: 880px) {
  .page-header.with-photo {
    min-height: auto;
    padding: clamp(2rem, 7vw, 3.5rem) 0;
  }
  .page-header.with-photo::after {
    background: linear-gradient(180deg, rgba(11, 23, 51, 0.45) 0%, rgba(11, 23, 51, 0.88) 100%);
  }
  .page-header.with-photo .container { justify-content: flex-start; }
  .page-header.with-photo .page-header-bg { object-position: 50% center; }
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .sep { margin: 0 0.5rem; color: var(--gray-light); }

/* ============================================================
   Section heading block
   ============================================================ */

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  max-width: 720px;
}
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 1rem; }

/* ============================================================
   Cards
   ============================================================ */

.card {
  background: var(--paper-light);
  border: 1px solid var(--gray-faint);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--navy-soft);
}

.card-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 1rem;
  display: block;
}
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0; }

/* Track card with accent edge */
.track-card {
  background: var(--paper-light);
  border-left: 3px solid var(--navy-deep);
  padding: 1.6rem 1.8rem;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.track-card:hover { border-left-color: var(--red); transform: translateX(2px); }
.track-card .track-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 0.6rem;
  display: block;
  text-transform: uppercase;
}
.track-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.track-card p { font-size: 0.92rem; margin: 0; color: var(--ink-soft); }

/* ============================================================
   Pillars (4-up icon grid)
   ============================================================ */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--navy-deep);
  border-bottom: 1px solid var(--navy-deep);
}
.pillar {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--gray-faint);
  position: relative;
}
.pillar:last-child { border-right: none; }
@media (max-width: 700px) {
  .pillar { border-right: none; border-bottom: 1px solid var(--gray-faint); }
  .pillar:last-child { border-bottom: none; }
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  font-variation-settings: "SOFT" 100;
  margin-bottom: 0.8rem;
  display: block;
}
.pillar h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.pillar p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   Two-column callout (image + text or text + text)
   ============================================================ */

.callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 760px) {
  .callout { grid-template-columns: 1fr; }
}

.callout-quote {
  background: var(--navy-deep);
  color: var(--paper-light);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  border-radius: var(--r-md);
}
.callout-quote::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  position: absolute;
  top: 2.2rem;
  left: 1.5rem;
  color: var(--red);
  opacity: 0.6;
}
.callout-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.4;
  font-weight: 500;
  font-variation-settings: "SOFT" 50;
  margin: 0 0 1.5rem;
  padding-left: 2rem;
}
.callout-quote cite {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--gold);
}

/* ============================================================
   Logo strip (partners placeholder)
   ============================================================ */

.partners {
  background: var(--paper-deep);
  padding: 3rem 0;
  border-top: 1px solid var(--gray-faint);
  border-bottom: 1px solid var(--gray-faint);
  position: relative;
}
.partners::before {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 1.25rem;
}
.partners-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
  margin-bottom: 1.75rem;
}
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.partner-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray);
  letter-spacing: 0.02em;
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.partner-logo:hover { opacity: 1; color: var(--navy-deep); }
.partners-grid .partner-logo + .partner-logo {
  position: relative;
}
.partners-grid .partner-logo + .partner-logo::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(0.75rem, 2vw, 1.75rem));
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--gray-light);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}
@media (max-width: 600px) {
  .partners-grid .partner-logo + .partner-logo::before { display: none; }
}

/* ============================================================
   Speakers
   ============================================================ */

.speaker-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-light);
  border: 1px solid var(--gray-faint);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.speaker-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.speaker-photo {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.12), transparent 55%),
    linear-gradient(135deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper-light);
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--red);
}
.speaker-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 14px,
      rgba(255, 255, 255, 0.025) 14px,
      rgba(255, 255, 255, 0.025) 15px
    );
  pointer-events: none;
}
.speaker-photo::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 22px;
  height: 22px;
  border-top: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
  pointer-events: none;
}
.speaker-photo > * { position: relative; z-index: 1; }
.speaker-photo .placeholder-tag {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  background: var(--red);
  color: var(--paper-light);
  padding: 0.35rem 0.65rem;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.speaker-info { padding: 1.25rem 1.4rem; }
.speaker-info h4 { margin-bottom: 0.2rem; font-size: 1.15rem; }
.speaker-info .role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.6rem;
}
.speaker-info p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   Tickets
   ============================================================ */

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.ticket {
  background: var(--paper-light);
  border: 1px solid var(--gray-faint);
  padding: 2rem 1.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: var(--r-md);
}
.ticket.featured {
  border: 2px solid var(--red);
  box-shadow: 0 8px 28px rgba(166, 35, 44, 0.12);
}
.ticket .badge {
  position: absolute;
  top: -12px;
  left: 1.8rem;
  background: var(--red);
  color: var(--paper-light);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-sm);
  text-transform: uppercase;
  font-weight: 500;
}
.ticket-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.4rem;
}
.ticket-tagline {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.ticket-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ticket-price .placeholder {
  font-size: 0.85rem;
  font-family: var(--font-mono);
  color: var(--gray);
  font-weight: 400;
  letter-spacing: 0.1em;
  vertical-align: top;
  margin-left: 0.4rem;
}
.ticket-features {
  list-style: none;
  margin: 1.5rem 0 1.8rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--gray-faint);
  border-bottom: 1px solid var(--gray-faint);
  flex: 1;
}
.ticket-features li {
  font-size: 0.92rem;
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--ink-soft);
}
.ticket-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ============================================================
   Schedule timeline
   ============================================================ */

.schedule {
  border-top: 2px solid var(--navy-deep);
  border-bottom: 1px solid var(--navy-deep);
  position: relative;
}
.schedule::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 4px;
  border-top: 1px solid var(--navy-deep);
}

.schedule-day {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-faint);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
}
.schedule-day:last-child { border-bottom: none; }
@media (max-width: 700px) {
  .schedule-day { grid-template-columns: 1fr; gap: 0.5rem; }
}

.schedule-time {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.05em;
  padding-top: 0.15rem;
}
.schedule-time .day {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.25rem;
}
.schedule-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.schedule-content p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
}
.schedule-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: var(--paper-deep);
  color: var(--navy-deep);
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-sm);
  margin-bottom: 0.5rem;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-item {
  border-bottom: 1px solid var(--gray-faint);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.4rem 2.5rem 1.4rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-deep);
  position: relative;
  transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red); }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--red);
  transition: transform 0.2s ease;
  font-weight: 300;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.faq-item[open] summary { color: var(--red); }
.faq-item .answer {
  padding: 0 0 1.5rem 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 70ch;
}

/* ============================================================
   Forms
   ============================================================ */

.form {
  display: grid;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy-deep);
  font-weight: 500;
}
.field label .req { color: var(--red); margin-left: 2px; }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--r-sm);
  background: var(--paper-light);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; font-family: var(--font-body); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 46, 92, 0.12);
}

.form-note {
  font-size: 0.82rem;
  color: var(--gray);
  font-style: italic;
}

/* ============================================================
   Disclaimer / advisory boxes
   ============================================================ */

.advisory {
  border-left: 3px solid var(--red);
  background: rgba(166, 35, 44, 0.04);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.advisory .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}
.advisory p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 75ch;
}

.advisory.navy {
  border-left-color: var(--navy);
  background: rgba(26, 46, 92, 0.04);
}
.advisory.navy .label { color: var(--navy); }

/* ============================================================
   CTA banner
   ============================================================ */

.cta-banner {
  background: var(--navy-deep);
  color: var(--paper-light);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.02) 60px,
      rgba(255, 255, 255, 0.02) 61px
    );
}
.cta-banner .container { position: relative; }
.cta-banner h2 {
  color: var(--paper-light);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
  max-width: 22ch;
}
.cta-banner p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 50ch;
  margin-bottom: 2rem;
}
.cta-banner .eyebrow { color: var(--gold); }
.cta-banner .eyebrow::before { background: var(--gold); }
.cta-banner-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.cta-banner .btn-outline {
  color: var(--paper-light);
  border-color: var(--paper-light);
}
.cta-banner .btn-outline:hover {
  background: var(--paper-light);
  color: var(--navy-deep);
}

/* CTA banner with photographic background */
.cta-banner.has-bg {
  background-image:
    linear-gradient(135deg, rgba(11, 23, 51, 0.9) 0%, rgba(11, 23, 51, 0.62) 100%),
    var(--cta-bg, none);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.cta-banner.has-bg::before { opacity: 0.35; }

/* ============================================================
   Feature row — image + text 2-col (used on home page sections)
   ============================================================ */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.feature-row.reverse {
  direction: rtl;
}
.feature-row.reverse > * { direction: ltr; }
@media (max-width: 880px) {
  .feature-row,
  .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; }
}

.feature-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--navy);
  padding: 6px;
  background: var(--paper-light);
  box-shadow: 12px 12px 0 -1px var(--navy-deep);
}
.feature-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.9);
}
@media (max-width: 880px) {
  .feature-photo { box-shadow: 8px 8px 0 -1px var(--navy-deep); }
}

.feature-text h2 { margin-bottom: 1rem; }
.feature-text .lede { margin-bottom: 1.5rem; }

/* Chip-style links (e.g. "Right to Record · Public Spaces · ...") */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--paper-deep);
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--gray-faint);
  text-decoration: none;
  transition: all 0.15s ease;
}
.chip:hover {
  background: var(--navy-deep);
  color: var(--paper-light);
  border-color: var(--navy-deep);
}

/* ============================================================
   Bleed feature — full-width image with floating text card
   The image stays visible at full clarity. Text sits in a
   discrete navy card with a red top accent — no heavy scrim.
   ============================================================ */

.bleed-feature {
  position: relative;
  min-height: clamp(520px, 72vh, 700px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.bleed-feature .bleed-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.95);
  z-index: 0;
}
/* Subtle full-frame scrim — keeps image clarity while ensuring panel readability */
.bleed-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 23, 51, 0.18) 0%, rgba(11, 23, 51, 0) 30%, rgba(11, 23, 51, 0) 70%, rgba(11, 23, 51, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}
.bleed-feature .container {
  position: relative;
  z-index: 2;
}

/* Discrete text card sitting on top of the image */
.bleed-feature .panel {
  max-width: 540px;
  background: rgba(11, 23, 51, 0.92);
  color: var(--paper-light);
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.75rem);
  border-top: 4px solid var(--red);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.4);
}
.bleed-feature h2 {
  color: var(--paper-light);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 1rem;
  line-height: 1.08;
}
.bleed-feature h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  font-variation-settings: "SOFT" 80;
}
.bleed-feature p {
  color: var(--gray-light);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 1.5rem;
  font-variation-settings: "SOFT" 50;
}
.bleed-feature .panel > *:last-child { margin-bottom: 0; }
.bleed-feature .btn-outline {
  color: var(--paper-light);
  border-color: var(--paper-light);
}
.bleed-feature .btn-outline:hover {
  background: var(--paper-light);
  color: var(--navy-deep);
}

/* Right-aligned variant — panel anchors to the right of the section */
.bleed-feature.right .container { display: flex; justify-content: flex-end; }

@media (max-width: 760px) {
  .bleed-feature {
    min-height: auto;
    padding: clamp(2.5rem, 8vw, 4rem) 0;
  }
  .bleed-feature::after {
    background: linear-gradient(180deg, rgba(11, 23, 51, 0.25) 0%, rgba(11, 23, 51, 0.65) 100%);
  }
  .bleed-feature.right .container { justify-content: flex-start; }
  .bleed-feature .panel {
    max-width: 100%;
    padding: 1.5rem 1.4rem;
  }
}

/* Bleed feature — chips, buttons, and inline elements inside the panel */
.bleed-feature .panel .lede,
.bleed-feature .panel .lede.wide {
  color: var(--paper-light);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  margin-bottom: 1rem;
  max-width: 50ch;
}
.bleed-feature .chip-row { margin-top: 1.25rem; margin-bottom: 0; }
.bleed-feature .chip {
  background: rgba(251, 247, 238, 0.08);
  color: var(--paper-light);
  border: 1px solid rgba(251, 247, 238, 0.28);
}
.bleed-feature .chip:hover {
  background: var(--paper-light);
  color: var(--navy-deep);
  border-color: var(--paper-light);
}
.bleed-feature .btn-ghost {
  color: var(--paper-light);
  border-bottom-color: var(--paper-light);
}
.bleed-feature .btn-ghost:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.bleed-feature .panel .advisory.compact {
  background: rgba(251, 247, 238, 0.06);
  border-left-color: var(--gold);
  margin-top: 1rem;
}
.bleed-feature .panel .advisory.compact p {
  color: var(--gray-light);
}
.bleed-feature .panel .advisory.compact strong {
  color: var(--paper-light);
}

/* ============================================================
   Routing grid (contact page "what brings you here?" panel)
   ============================================================ */

.routing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.route {
  display: block;
  background: var(--paper-light);
  border: 1px solid var(--gray-faint);
  border-left: 3px solid var(--navy-deep);
  padding: 1.4rem 1.5rem 3.6rem;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.route:hover {
  border-left-color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  color: var(--ink);
}
.route h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--navy-deep);
}
.route p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: none;
}
.route-arrow {
  position: absolute;
  bottom: 1.2rem;
  left: 1.5rem;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--red);
  transition: transform 0.2s ease;
}
.route:hover .route-arrow { transform: translateX(3px); }

/* ============================================================
   Form section — 2-col (sidebar + form), used on contact, sponsors,
   media-partners
   ============================================================ */

.form-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.form-section.reverse {
  grid-template-columns: 1.6fr 1fr;
}
@media (max-width: 880px) {
  .form-section,
  .form-section.reverse { grid-template-columns: 1fr; }
  /* On mobile, the heading + form should always appear above the
     supporting sidebar — for non-reverse layouts where the sidebar
     is first in source order, flip with grid order. */
  .form-section:not(.reverse) .form-sidebar { order: 2; }
}

.form-sidebar h3 {
  font-size: 1.15rem;
  color: var(--navy-deep);
  margin-bottom: 0.6rem;
  margin-top: 1.5rem;
}
.form-sidebar h3:first-child { margin-top: 0; }
.form-sidebar p,
.form-sidebar li {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.form-sidebar .email-link {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--navy-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.form-photo {
  margin-bottom: 1.5rem;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--navy);
  padding: 5px;
  background: var(--paper-light);
  box-shadow: 8px 8px 0 -1px var(--navy-deep);
}
.form-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.9);
}

/* Eligibility / qualifications list (scholarship, etc.) */
.eligibility-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.eligibility-list li {
  padding: 0.7rem 0 0.7rem 1.7rem;
  border-bottom: 1px solid var(--gray-faint);
  position: relative;
  font-size: 0.94rem;
  color: var(--ink-soft);
  max-width: none;
}
.eligibility-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.7rem;
  color: var(--red);
  font-weight: 700;
}
.eligibility-list li:last-child { border-bottom: none; }
.eligibility-list li strong {
  color: var(--navy-deep);
  font-weight: 600;
}

/* ============================================================
   Bridge section — quiet text break between heavy image sections
   ============================================================ */

.bridge-section {
  background: var(--paper-deep);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  border-top: 1px solid var(--gray-faint);
  border-bottom: 1px solid var(--gray-faint);
}
.bridge-section::before {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 2rem;
}
.bridge-line {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.45;
  color: var(--navy-deep);
  font-weight: 500;
  font-variation-settings: "SOFT" 40;
  letter-spacing: -0.01em;
  margin: 0 auto;
  max-width: none;
}
.bridge-line em {
  font-style: italic;
  font-variation-settings: "SOFT" 90;
  color: var(--red);
  font-weight: 600;
}

/* ============================================================
   Display quote (about page positioning statement)
   ============================================================ */

.display-quote {
  text-align: center;
  max-width: 36ch;
  margin: 0 auto;
  position: relative;
  padding-top: 2rem;
}
.display-quote::before {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 2rem;
}
.display-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.25;
  font-weight: 600;
  color: var(--navy-deep);
  font-variation-settings: "SOFT" 30;
  letter-spacing: -0.01em;
  margin: 0 auto;
  max-width: none;
}

/* ============================================================
   Icon cards (about page audiences)
   ============================================================ */

.icon-card {
  background: var(--paper-light);
  border: 1px solid var(--gray-faint);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border-radius: var(--r-md);
}
.icon-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--navy-soft);
}
.icon-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy-deep);
  color: var(--paper-light);
  margin-bottom: 1rem;
  border-radius: var(--r-sm);
}
.icon-card .icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--navy-deep);
}
.icon-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: none;
}

/* ============================================================
   Resource — coming-soon variant
   ============================================================ */

.resource.coming-soon {
  cursor: default;
  opacity: 0.78;
  pointer-events: none;
}
.resource.coming-soon:hover {
  border-color: var(--gray-faint);
  transform: none;
}
.resource .soon-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(166, 35, 44, 0.08);
  padding: 0.3rem 0.55rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(166, 35, 44, 0.18);
}

/* ============================================================
   Pricing display (sponsor packages, etc.)
   ============================================================ */

.card .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  font-variation-settings: "SOFT" 30;
  display: block;
}
.card .price .price-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-left: 0.6rem;
  vertical-align: middle;
}

/* ============================================================
   Scene strip — accent image triptych between sections
   ============================================================ */
.scene-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}
.scene-strip .scene {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-right: 1px solid var(--navy);
}
.scene-strip .scene:last-child { border-right: none; }
.scene-strip .scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.25) contrast(1.06) saturate(0.85);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.scene-strip .scene:hover img {
  filter: none;
  transform: scale(1.03);
}
.scene-strip .scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 23, 51, 0.7) 100%);
  pointer-events: none;
}
.scene-strip .label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  background: var(--navy-deep);
  color: var(--paper-light);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  pointer-events: none;
}
.scene-strip .num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--paper-light);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  pointer-events: none;
}
@media (max-width: 760px) {
  .scene-strip { grid-template-columns: 1fr; }
  .scene-strip .scene { border-right: none; border-bottom: 1px solid var(--navy); }
  .scene-strip .scene:last-child { border-bottom: none; }
}

/* ============================================================
   Newsletter
   ============================================================ */

.newsletter {
  background: var(--paper-deep);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--gray-faint);
  border-bottom: 1px solid var(--gray-faint);
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 760px) { .newsletter-grid { grid-template-columns: 1fr; } }

.newsletter h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  margin-bottom: 0.6rem;
}
.newsletter p { margin: 0; color: var(--ink-soft); }

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.95rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--r-sm);
  background: var(--paper-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 46, 92, 0.12);
}
@media (max-width: 460px) {
  .newsletter-form { flex-direction: column; }
}

/* ============================================================
   Resource tile
   ============================================================ */

.resource {
  display: block;
  background: var(--paper-light);
  border: 1px solid var(--gray-faint);
  padding: 1.5rem 1.6rem;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.18s ease, transform 0.18s ease;
  border-radius: var(--r-md);
}
.resource:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  color: var(--ink);
}
.resource .type {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
  display: block;
}
.resource h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--navy-deep);
}
.resource p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--ink);
  color: var(--gray-light);
  padding: clamp(3rem, 5vw, 4.5rem) 0 2rem;
  font-size: 0.92rem;
}
.site-footer a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-footer a:hover { color: var(--paper-light); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand img { height: 56px; margin-bottom: 1rem; filter: brightness(1.1); }
.footer-brand p { font-size: 0.92rem; color: var(--gray-light); max-width: 36ch; }

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-light);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }

.footer-bottom {
  border-top: 1px solid rgba(176, 179, 186, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--gray);
}
.footer-bottom .legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ============================================================
   Utilities
   ============================================================ */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.span-full { grid-column: 1 / -1; }

.bg-paper-deep { background: var(--paper-deep); }
.bg-paper-light { background: var(--paper-light); }
.bg-navy { background: var(--navy-deep); color: var(--paper-light); }
.bg-navy h2, .bg-navy h3 { color: var(--paper-light); }

/* Inline parenthetical note inside a heading (e.g. "(opt-in)") */
.aside {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7em;
  color: var(--gray);
  letter-spacing: 0;
  font-style: italic;
}

/* Card invert — navy bg, paper text, gold accents */
.card.invert {
  background: var(--navy-deep);
  color: var(--paper-light);
  border-color: var(--navy-deep);
}
.card.invert h3, .card.invert h4 { color: var(--paper-light); }
.card.invert p { color: var(--gray-light); }
.card.invert a { color: var(--gold); }

/* Compact advisory variant — single-line, no border-radius drama */
.advisory.compact {
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  font-size: 0.88rem;
}

/* Footer disclaimer (used inside <footer>) — tighter, no background */
.advisory.footer-disclaimer {
  background: transparent;
  border-left-color: var(--red);
  margin-bottom: 2rem;
  padding: 0.65rem 1rem;
}
.advisory.footer-disclaimer p {
  color: var(--gray-light);
  font-size: 0.85rem;
  margin: 0;
}
.advisory.footer-disclaimer a {
  color: var(--paper-light);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.advisory.footer-disclaimer a:hover { color: var(--gold); }

.divider {
  height: 1px;
  background: var(--gray-faint);
  margin: 3rem 0;
}

.list-clean {
  list-style: none;
  padding: 0;
}
.list-clean li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-faint);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.list-clean li::before {
  content: "→";
  color: var(--red);
  font-family: var(--font-mono);
  font-weight: 600;
  flex-shrink: 0;
}
.list-clean li:last-child { border-bottom: none; }

.checklist {
  list-style: none;
  padding: 0;
}
.checklist li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  position: relative;
  font-size: 0.95rem;
}
.checklist li::before {
  content: "☐";
  position: absolute;
  left: 0;
  top: 0.6rem;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1;
}

/* Two column prose */
.prose-2col {
  column-count: 2;
  column-gap: 3rem;
  max-width: 920px;
}
.prose-2col p { max-width: none; }
@media (max-width: 700px) { .prose-2col { column-count: 1; } }

/* Stats */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid var(--gray-faint);
  border-bottom: 1px solid var(--gray-faint);
}
.stat {
  padding: 1.8rem 1.2rem;
  border-right: 1px solid var(--gray-faint);
  text-align: left;
}
.stat:last-child { border-right: none; }
@media (max-width: 600px) {
  .stat { border-right: none; border-bottom: 1px solid var(--gray-faint); }
  .stat:last-child { border-bottom: none; }
}
.stat::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  margin-bottom: 1rem;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variation-settings: "SOFT" 30;
}
.stat .num .red { color: var(--red); }
.stat .label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  max-width: 30ch;
  line-height: 1.55;
}

/* ============================================================
   Animations
   ============================================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  animation: fadeInUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}
.reveal.d1 { animation-delay: 0.1s; }
.reveal.d2 { animation-delay: 0.2s; }
.reveal.d3 { animation-delay: 0.3s; }
.reveal.d4 { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-seal-text { animation: none; }
}
