/* =====================================================================
   POWER COALITION — Static Site Styles
   Design DNA: C&G typography rhythm + POWER rust accent
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy:        #1C2333;
  --navy-2:      #2A3245;
  --navy-3:      #3B4660;
  /* "papaya" accent: warm orange that pops on navy */
  --rust:        #E8743C;   /* var name kept for backwards compat; renders papaya */
  --rust-hover:  #D0612C;
  --rust-soft:   #FFB47F;
  --bg-light:    #F4F5F7;
  --bg-card:    #FFFFFF;
  --text-dark:   #1C2333;
  --text-body:   #2A3140;
  --text-muted:  #5E6878;
  --text-on-dark: #E8EBF1;
  --text-on-dark-muted: rgba(232,235,241,0.72);
  --border:      rgba(28, 35, 51, 0.10);
  --border-dark: rgba(255,255,255,0.14);

  --font-serif:  'Playfair Display', 'Hoefler Text', Garamond, Georgia, serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --shadow-sm: 0 1px 2px rgba(28,35,51,0.04), 0 1px 3px rgba(28,35,51,0.06);
  --shadow-md: 0 4px 12px rgba(28,35,51,0.08);
  --shadow-lg: 0 12px 32px rgba(28,35,51,0.14);

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;

  --container-max: 1180px;
  --container-narrow: 880px;
  --section-pad-y: 64px;
  --section-pad-y-mobile: 44px;
}

/* ---------- Reset / Base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg-light);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.1rem); }
h3 { font-size: 1.18rem; line-height: 1.25; }
h4 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.02em; }

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

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--rust);
  display: inline-block;
}

.lede { font-size: 1.15rem; color: var(--text-muted); line-height: 1.55; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }

section { padding: var(--section-pad-y) 0; }
section.dark { background: var(--navy); color: var(--text-on-dark); }
section.dark h1, section.dark h2, section.dark h3, section.dark h4 { color: var(--text-on-dark); }
section.dark .eyebrow { color: var(--rust-soft); }
section.dark .eyebrow::before { background: var(--rust-soft); }
section.dark .lede { color: var(--text-on-dark-muted); }

@media (max-width: 768px) {
  section { padding: var(--section-pad-y-mobile) 0; }
}

/* ---------- Unified section head ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  margin-bottom: 42px;
  align-items: end;
}
.section-head > div:first-child h2 { margin-bottom: 0; }
.section-head .lede { margin: 0; }
.section-head-narrow { max-width: 780px; }
.section-head-dark h2 { color: #fff; }
.section-head-dark .eyebrow { color: var(--rust-soft); }
.section-head-dark .eyebrow::before { background: var(--rust-soft); }
.section-head-dark .lede { color: rgba(232,235,241,0.78); }
@media (max-width: 980px) {
  .section-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 32px; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(28, 35, 51, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 0.5rem;
  text-decoration: none; color: var(--text-on-dark);
  font-family: var(--font-serif);
  line-height: 1;
  white-space: nowrap;
}
.brand .brand-power {
  font-size: 1.25rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--rust-soft);
}
.brand .brand-coalition {
  font-size: 1rem; font-weight: 500; color: var(--text-on-dark);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex; align-items: center; gap: 40px;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--text-on-dark); }
.nav-cta {
  background: var(--rust);
  color: #fff !important;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  transition: background 0.18s ease;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--rust-hover); color: #fff !important; }

.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; padding: 14px 0;
    background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 28px; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-cta { margin: 12px 28px; text-align: center; }
  .nav-toggle {
    display: inline-flex; background: none; border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-on-dark); padding: 8px 12px; border-radius: 4px; cursor: pointer;
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  color: var(--text-on-dark);
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 48px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(28,35,51,0.55) 0%, rgba(28,35,51,0.78) 100%),
    url('../img/hero-pennybacker.jpg?v=licensed');
  background-size: cover;
  background-position: center 38%;
  z-index: 0;
}
.hero::after {
  /* fallback gradient if image is missing */
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 30% 30%, #3a4865 0%, transparent 65%),
    linear-gradient(135deg, #1C2333 0%, #2a3a55 55%, #1C2333 100%);
}
.hero .container { position: relative; z-index: 1; max-width: var(--container-max); }
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rust-soft);
  margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.hero-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--rust-soft);
}

/* Acronym treatment in hero: visually surfaces POWER inside the full name */
.hero-acronym {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  color: rgba(232,235,241,0.62);
  margin: 0 0 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}
.hero-acronym .ac-letter {
  color: var(--rust-soft);
  font-weight: 700;
  font-size: 1.05em;
}
@media (max-width: 560px) {
  .hero-acronym { font-size: 0.78rem; letter-spacing: 0.14em; }
}
.hero h1 {
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.05;
}
.hero h1 em { color: var(--rust-soft); font-style: italic; }
.hero .hero-sub {
  font-size: 1.05rem;
  max-width: 52ch;
  color: rgba(232,235,241,0.85);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hero-meta {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 28px;
  font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(232,235,241,0.6);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.1rem;
}
.hero-meta strong { color: #fff; font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  line-height: 1;
}
.btn-primary {
  background: var(--rust); color: #fff;
}
.btn-primary:hover { background: var(--rust-hover); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-dark {
  background: var(--navy); color: #fff;
}
.btn-dark:hover { background: var(--navy-2); }
.btn-ghost {
  background: transparent; color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--navy); }

/* ---------- Section: The Issue ---------- */
.section-issue { background: var(--bg-light); }
.issue-intro {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px;
  margin-bottom: 48px;
}
.issue-intro h2 { margin-bottom: 0; }
.issue-intro .lede { margin-bottom: 0.7rem; }

.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  counter-reset: tl;
}
.timeline-step {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.timeline-step:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.timeline-step .step-num {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--rust);
  line-height: 1;
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}
.timeline-step h3 { font-size: 0.98rem; margin-bottom: 0.35rem; }
.timeline-step p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; margin: 0; }

@media (max-width: 980px) {
  .issue-intro { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr; }
}

/* ---------- Section: Pillars ---------- */
.section-pillars { background: var(--navy); color: var(--text-on-dark); }
.pillars-head { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.pillars-head h2 { color: #fff; }
.pillars-head .lede { color: rgba(232,235,241,0.78); }
.pillars-head .eyebrow { justify-content: center; }
.pillars-head .eyebrow::before, .pillars-head .eyebrow::after { background: var(--rust-soft); }
.pillars-head .eyebrow::after { content: ""; width: 26px; height: 1px; display: inline-block; }

.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.pillar-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(232,116,60,0.18);
  color: var(--rust-soft);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 0.9rem;
  font-family: var(--font-serif); font-weight: 600;
  font-size: 0.98rem;
}
.pillar h3 { color: #fff; margin-bottom: 0.45rem; font-size: 1.1rem; }
.pillar p { color: rgba(232,235,241,0.76); font-size: 0.92rem; line-height: 1.55; margin: 0; }

@media (max-width: 860px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ---------- Section: How It Works ---------- */
.section-process { background: var(--bg-light); }
.process-head { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; margin-bottom: 40px; align-items: end; }
.process-head h2 { margin: 0; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  counter-reset: stp;
}
.process-step {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid var(--border);
  position: relative;
}
.process-step .step-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.process-step p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; margin: 0; }
@media (max-width: 980px) {
  .process-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ---------- Section: Contribute ---------- */
.section-contribute {
  background: linear-gradient(180deg, var(--bg-light) 0%, #E6E9ED 100%);
}
.contribute-head { text-align: center; max-width: 700px; margin: 0 auto 36px; }
.contribute-head .eyebrow { justify-content: center; }
.contribute-head .eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--rust); display: inline-block; }

.tier-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
  margin-bottom: 28px;
}
.tier-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.tier-card:hover {
  transform: translateY(-2px);
  border-color: var(--rust);
  box-shadow: var(--shadow-md);
}
.tier-card .tier-name {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.tier-card .tier-amount {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1;
}
.tier-card.featured {
  background: var(--navy); border-color: var(--navy);
}
.tier-card.featured .tier-name { color: var(--rust-soft); }
.tier-card.featured .tier-amount { color: #fff; }

.recurring-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  max-width: 480px; margin: 0 auto 36px;
}
.recurring-row .tier-card .tier-amount span { font-size: 1rem; color: var(--text-muted); font-weight: 500; }

@media (max-width: 860px) {
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
}

.donate-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 32px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--rust);
  text-align: center;
}
.donate-card h3 { font-size: 1.3rem; margin-bottom: 0.45rem; }
.donate-card .donate-status {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  background: rgba(155,58,47,0.08);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.donate-card .donate-body { color: var(--text-muted); margin-bottom: 1.4rem; font-size: 1rem; }
.donate-widget-placeholder {
  background: var(--bg-light);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  margin: 1rem 0 1.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.donate-widget-placeholder strong { display: block; color: var(--text-dark); font-size: 1rem; margin-bottom: 0.3rem; }
.donate-widget-placeholder span { display: block; font-size: 0.86rem; }

/* ---------- Thank-you page ---------- */
.thankyou { padding: 96px 0; background: var(--bg-light); min-height: 60vh; }
.thankyou .container-narrow { text-align: center; }
.thankyou h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 0.6rem; }
.thankyou p { color: var(--text-muted); font-size: 1.08rem; max-width: 620px; margin: 0 auto 0.9rem; }
.thankyou-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }
@media (max-width: 520px) { .thankyou-actions { flex-direction: column; } .thankyou-actions .btn { width: 100%; } }
.donate-agreement-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-sans);
  color: var(--navy); text-decoration: none;
  font-size: 0.92rem; border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.18s ease;
}
.donate-agreement-link:hover { border-color: var(--navy); }
.donate-tax-note {
  margin-top: 1.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  text-align: left;
}
.donate-tax-note strong { color: var(--text-dark); }

/* ---------- Section: Board ---------- */
.section-board { background: var(--bg-light); }
.board-head { text-align: center; max-width: 600px; margin: 0 auto 36px; }
.board-head .eyebrow { justify-content: center; }
.board-head .eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--rust); display: inline-block; }
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.board-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  border: 1px solid var(--border);
}
.board-card .board-initials {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy); color: var(--rust-soft);
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 0.8rem;
}
.board-card h3 { font-size: 1.08rem; margin-bottom: 0.2rem; }
.board-card .board-role {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
}
@media (max-width: 860px) { .board-grid { grid-template-columns: 1fr; } }

/* ---------- Section: Counsel ---------- */
.section-counsel { background: var(--navy); color: var(--text-on-dark); }
.section-counsel h1,
.section-counsel h2,
.section-counsel h3,
.section-counsel h4 { color: var(--text-on-dark); }
.section-counsel .eyebrow { color: var(--rust-soft); }
.section-counsel .eyebrow::before { background: var(--rust-soft); }
.section-counsel a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  transition: border-color 0.18s ease, color 0.18s ease;
}
.section-counsel a:hover { border-color: var(--rust-soft); color: var(--rust-soft); }
.counsel-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center;
}
.counsel-wrap .lede { color: rgba(232,235,241,0.78); }
.counsel-points {
  list-style: none; padding: 0; margin: 1.6rem 0 0;
  display: grid; gap: 16px;
}
.counsel-points li {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  align-items: start;
  font-size: 0.95rem;
  color: rgba(232,235,241,0.86);
}
.counsel-points li::before {
  content: "→";
  color: var(--rust-soft);
  font-family: var(--font-serif);
  font-size: 1.1rem; line-height: 1.2;
}
.counsel-quote {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--rust-soft);
  padding: 22px 24px;
  border-radius: var(--radius-sm);
}
.counsel-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.4;
  margin: 0 0 0.8rem;
  color: #fff;
}
.counsel-quote cite {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-soft);
}

@media (max-width: 980px) { .counsel-wrap { grid-template-columns: 1fr; } }

/* ---------- Section: Court Filings ---------- */
.section-filings { background: var(--bg-light); }
.filing-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.filing-item { margin: 0; }
.filing-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--rust);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.18s ease;
}
.filing-link:hover {
  border-color: var(--rust);
  border-left-color: var(--rust);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.filing-doc {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
  white-space: nowrap;
}
.filing-main { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.filing-title { font-family: var(--font-serif); font-size: 1.12rem; font-weight: 600; color: var(--text-dark); line-height: 1.2; }
.filing-meta { font-size: 0.84rem; color: var(--text-muted); }
.filing-action {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
  white-space: nowrap;
}
.filing-children { list-style: none; margin: 10px 0 0; padding: 0 0 0 30px; display: flex; flex-direction: column; gap: 8px; }
.filing-children > li { margin: 0; position: relative; }
.filing-children > li::before {
  content: ""; position: absolute; left: -16px; top: 50%; width: 10px; height: 1px; background: var(--border);
}
.filing-link--child {
  padding: 14px 20px;
  background: #FBFBFC;
  border-left-color: rgba(28,35,51,0.18);
  box-shadow: none;
}
.filing-link--child .filing-title { font-size: 0.98rem; }
.filing-link--child:hover { border-left-color: var(--rust); }
@media (max-width: 620px) { .filing-children { padding-left: 16px; } }
.filing-note { margin-top: 24px; font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 620px) {
  .filing-link { grid-template-columns: 1fr; gap: 8px; padding: 18px 20px; }
  .filing-action { justify-self: start; }
}

/* ---------- Section: FAQ ---------- */
.section-faq { background: var(--bg-light); }
.faq-head { text-align: center; max-width: 600px; margin: 0 auto 32px; }
.faq-head .eyebrow { justify-content: center; }
.faq-head .eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--rust); display: inline-block; }
.faq-list { max-width: 780px; margin: 0 auto; }
details.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0;
  margin-bottom: 8px;
  transition: box-shadow 0.18s ease;
}
details.faq-item[open] { box-shadow: var(--shadow-sm); }
details.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 22px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text-dark);
  position: relative;
  padding-right: 48px;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: "+";
  position: absolute;
  right: 24px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--rust);
  line-height: 1; font-weight: 400;
  transition: transform 0.2s ease;
}
details.faq-item[open] > summary::after { content: "−"; }
details.faq-item > .faq-body {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
details.faq-item > .faq-body a {
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,116,60,0.35);
  transition: border-color 0.18s ease;
}
details.faq-item > .faq-body a:hover { border-bottom-color: var(--rust); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--text-on-dark); padding: 48px 0 24px; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { color: rgba(232,235,241,0.68); font-size: 0.94rem; max-width: 36ch; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a, .footer-col p { color: rgba(232,235,241,0.72); text-decoration: none; font-size: 0.94rem; display: block; margin-bottom: 0.5rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(232,235,241,0.55); letter-spacing: 0.04em; }
.footer-bottom a { color: rgba(232,235,241,0.72); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer-disclosure {
  margin-top: 24px;
  padding: 18px 22px;
  background: rgba(0,0,0,0.2);
  border-left: 3px solid var(--rust);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.78rem; line-height: 1.55;
  color: rgba(232,235,241,0.7);
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, html { transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Anchor offset for sticky header ---------- */
section[id] { scroll-margin-top: 80px; }
