/* =========================================================
   Scott A. Sibley — Nevada Legal News editorial theme
   Palette:  navy · newsprint cream · oxblood
   Voice:    broadsheet / masthead / editorial column
   ========================================================= */

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
hr { border: 0; }

/* ===== Design tokens ===== */
:root {
  --paper:       #ffffff;         /* pure white base */
  --paper-2:     #f7f6f2;         /* whisper-warm section band (subtle) */
  --paper-3:     #ffffff;         /* card fills */
  --ink:         #0e1220;         /* near-black w/ navy undertone */
  --ink-soft:    #3a3f4d;         /* body copy */
  --ink-muted:   #6d7180;         /* metadata */
  --rule:        #e6e3d9;         /* hairline separator */
  --rule-soft:   #efeee7;
  --navy:        #0b1a2c;         /* NLN masthead navy — deeper */
  --navy-2:      #14263f;
  --navy-3:      #050d18;         /* darkest — footer */
  --accent:      #9a1e15;         /* rich oxblood accent */
  --accent-2:    #c43a2e;         /* brighter — hover/highlight */
  --accent-soft: #f4e5e3;
  --sans:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --serif:       'Source Serif 4', Georgia, 'Times New Roman', serif;
  --display:     'Playfair Display', Georgia, serif;
  --container:   1180px;
  --space:       clamp(80px, 9vw, 128px);
}

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

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.05;
  margin: 0 0 0.4em;
  letter-spacing: -0.005em;
  font-weight: 700;
}
h1 { font-size: clamp(3rem, 7vw, 5.8rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 600; }
p  { margin: 0 0 1.05em; color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }
em, i { font-style: italic; }

.lede {
  font-size: 1.18rem;
  color: var(--ink);
  max-width: 60ch;
  line-height: 1.6;
}
.accent { color: var(--accent); font-style: italic; font-weight: 700; }
.dot { color: var(--rule); font-weight: 400; margin: 0 6px; }

/* newspaper-style dateline / section-flag */
.dateline, .eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 1.35em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.dateline::before, .eyebrow::before {
  content: "§";
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0;
  transform: translateY(1px);
}

/* ===== Rules ===== */
.rule {
  height: 1px;
  background: var(--rule);
  margin: 28px 0;
}
.rule-short { width: 60px; height: 2px; background: var(--accent); margin: 24px 0 28px; }
.rule-double {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  height: 4px;
  background: transparent;
}

/* ===== Utilities ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper); padding: 12px 16px;
}
.skip-link:focus { left: 0; }

/* ===== Masthead strip ===== */
.masthead-strip {
  background: var(--navy);
  color: #d7cdb4;
  border-bottom: 3px double var(--paper-2);
}
.masthead-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 7px 28px;
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 600;
}
.masthead-item { white-space: nowrap; }
.masthead-sep {
  color: var(--accent-2);
  font-family: var(--serif);
  letter-spacing: 0;
  transform: translateY(-1px);
}

/* ===== Header / Nav — transparent over dark hero, solid on scroll ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease,
              box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--rule);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 12px;
  color: var(--paper);
  transition: color 0.2s ease;
}
.brand-mark {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  background: var(--paper); color: var(--navy);
  font-family: var(--display); font-weight: 800; font-size: 15px;
  letter-spacing: 0.08em;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.brand-name {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.nav-list {
  display: flex; align-items: center; gap: 32px;
}
.nav-list a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.15s ease;
}
.nav-list a:hover { color: var(--paper); border-bottom-color: var(--accent-2); }
.nav-list a[aria-current="page"] { border-bottom-color: var(--accent-2); }
.nav-cta {
  color: var(--paper) !important;
  background: var(--accent);
  padding: 9px 18px !important;
  border-bottom: 0 !important;
}
.nav-cta:hover { background: var(--accent-2) !important; border-bottom: 0 !important; }

/* On scroll — flip to dark text on light bg */
.site-header.scrolled .brand { color: var(--ink); }
.site-header.scrolled .brand-mark { background: var(--navy); color: var(--paper); }
.site-header.scrolled .nav-list a { color: var(--ink); }
.site-header.scrolled .nav-list a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.site-header.scrolled .nav-cta { background: var(--navy); }
.site-header.scrolled .nav-cta:hover { background: var(--accent); }

.nav-toggle { display: none; width: 40px; height: 40px; }
.nav-toggle .bar {
  display: block; width: 22px; height: 2px;
  background: var(--paper); margin: 5px auto;
  transition: background 0.2s ease;
}
.site-header.scrolled .nav-toggle .bar { background: var(--ink); }

/* ===== Text links (CTAs) ===== */
.text-link {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  transition: color 0.15s, border-color 0.15s;
}
.text-link:hover { color: var(--ink); border-bottom-color: var(--ink); }
.text-link--muted { color: var(--ink); border-bottom-color: var(--rule); }
.text-link--muted:hover { color: var(--accent); border-bottom-color: var(--accent); }
.inline-link {
  color: var(--accent);
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.15s;
}
.inline-link:hover { border-bottom-color: var(--accent); }

/* ===== Hero — full-bleed banner photo w/ navy overlay ===== */
.hero {
  padding: clamp(128px, 15vw, 200px) 0 clamp(112px, 14vw, 180px);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex; align-items: center;
  background-color: var(--navy);
  background-image:
    linear-gradient(90deg,
      var(--navy-3) 0%,
      rgba(5,13,24,0.94) 22%,
      rgba(11,26,44,0.82) 40%,
      rgba(11,26,44,0.50) 58%,
      rgba(11,26,44,0.20) 76%,
      rgba(11,26,44,0.05) 92%,
      transparent 100%),
    url('assets/scott-banner.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero::before {                                  /* top edge glow */
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
.hero::after {                                   /* subtle vertical vignette on right */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 22%, transparent 78%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  width: 100%;
  display: block;                                /* single column — banner style */
}
.hero-copy {
  max-width: 620px;
}
.hero-copy h1 {
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.hero-copy .accent {
  color: var(--accent-2);
  font-style: italic;
  font-weight: 700;
}
.hero-copy .dateline {
  color: var(--accent-2);
}
.hero-copy .dateline::before { color: var(--accent-2); }
.hero-copy .lede {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
}
.hero-copy .lede strong,
.hero-copy strong {
  color: var(--paper);
  font-weight: 700;
}
.hero-byline {
  font-family: var(--sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin: 0 0 6px;
}
.hero-copy .dot { color: rgba(255,255,255,0.35); }
.hero-copy .rule-short { background: var(--accent-2); }
.hero-copy .text-link { color: var(--accent-2); border-bottom-color: var(--accent-2); }
.hero-copy .text-link:hover { color: var(--paper); border-bottom-color: var(--paper); }
.hero-copy .text-link--muted { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.35); }
.hero-copy .text-link--muted:hover { color: var(--accent-2); border-bottom-color: var(--accent-2); }
.hero-cta {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin: 36px 0 52px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 24px 0;
}
.hero-stats li {
  padding: 4px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 6px;
}
.hero-stats li:first-child { padding-left: 0; }
.hero-stats li:last-child { border-right: 0; padding-right: 0; }
.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  color: var(--paper);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

/* ===== Photo credit — bottom-right of banner ===== */
.hero-photo-credit {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 4px;
  padding: 12px 16px;
  border-left: 2px solid var(--accent-2);
  background: rgba(5, 13, 24, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.photo-name {
  font-family: var(--display);
  font-size: 0.98rem; font-weight: 700;
  color: var(--paper);
  letter-spacing: 0;
}
.photo-place {
  font-family: var(--sans);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-portrait { display: none; }        /* legacy — hidden if present */

/* ===== Sections ===== */
.section { padding: var(--space) 0; }
.section-light {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.section-dark {
  background:
    radial-gradient(1200px 700px at 15% 0%, rgba(196, 58, 46, 0.08), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-3) 100%);
  color: rgba(255, 255, 255, 0.82);
  position: relative;
}
.section-dark::before,
.section-dark::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
}
.section-dark::before { top: 0; }
.section-dark::after  { bottom: 0; }
.section-dark h2, .section-dark h3 { color: var(--paper); }
.section-dark p  { color: rgba(255, 255, 255, 0.82); }
.section-dark strong { color: var(--paper); font-weight: 700; }
.section-dark .accent { color: var(--accent-2); font-style: italic; font-weight: 800; }
.section-dark .dateline,
.section-dark .eyebrow { color: var(--accent-2); }
.section-dark .dateline::before,
.section-dark .eyebrow::before { color: var(--accent-2); }

/* Editorial "profile" spread — dropcap on first paragraph */
.section-profile .col-body p:first-of-type {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
}
.section-profile .col-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  font-size: 5.4rem;
  color: var(--accent-2);
  float: left;
  line-height: 0.9;
  padding: 6px 14px 0 0;
  margin-top: 4px;
}
.section-profile .col-body p { font-size: 1.05rem; line-height: 1.75; }
.section-profile .col-body p + p { margin-top: 1.1em; }
.section-profile .col-body-outro {
  margin-top: 2em !important;
  padding-top: 1.4em;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.94rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-style: italic;
}
.section-profile .col-head h2 {
  color: var(--paper);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

/* ===== Cards inside a dark section ===== */
.section-dark .cards {
  background: transparent;
  border-color: rgba(255,255,255,0.14);
}
.section-dark .card {
  background: rgba(255,255,255,0.02);
  border-right-color: rgba(255,255,255,0.14);
  border-bottom-color: rgba(255,255,255,0.14);
}
.section-dark .card:hover { background: rgba(255,255,255,0.05); }
.section-dark .card h3 { color: var(--paper); }
.section-dark .card p  { color: rgba(255,255,255,0.75); }
.section-dark .card strong { color: var(--paper); font-weight: 700; }
.section-dark .card em { color: rgba(255,255,255,0.9); }
.section-dark .card-tag { color: var(--accent-2); }
.section-dark .card-link {
  color: var(--accent-2);
  border-bottom-color: var(--accent-2);
}
.section-dark .card-link.muted {
  color: rgba(255,255,255,0.55);
  border-bottom-color: rgba(255,255,255,0.2);
}
.section-dark .card-list {
  border-top-color: rgba(255,255,255,0.15);
}
.section-dark .card-list li {
  border-bottom-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.78);
}
.section-dark .card-list li::before { color: var(--accent-2); }

/* Ventures section head — bigger + centered accent */
.section-dark .section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
}
.section-dark .col-head h2 {
  color: var(--paper);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

/* Timeline inside a dark section */
.section-dark .timeline {
  border-left-color: rgba(255, 255, 255, 0.18);
}
.section-dark .timeline li::before {
  background: var(--accent-2);
  border-color: var(--navy-3);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}
.section-dark .tl-year { color: var(--accent-2); }
.section-dark .timeline strong { color: var(--paper); }
.section-dark .timeline p { color: rgba(255, 255, 255, 0.72); }
.section-dark .inline-link {
  color: var(--accent-2);
  border-bottom-color: rgba(255, 255, 255, 0.22);
}
.section-dark .inline-link:hover { border-bottom-color: var(--accent-2); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 0.35em; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.col-head h2 { position: sticky; top: 110px; }

/* ===== Cards (ventures) — bordered boxes, no floating ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--paper-3);
}
.card {
  background: var(--paper-3);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 36px 32px;
  position: relative;
  transition: background 0.2s ease;
}
.card:nth-child(2n) { border-right: 0; }
.card:nth-last-child(-n+2) { border-bottom: 0; }
.card:hover { background: #fbfaf5; }
.card > .venture-logo:first-child { margin: -36px -32px 26px; }

.card-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  padding: 0;
  margin-bottom: 14px;
  border: 0;
}
.card h3 {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.15;
}
.card p { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); }
.card-link {
  display: inline-block; margin-top: 6px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.card-link.muted {
  color: var(--ink-muted);
  border-bottom: 1px solid var(--rule);
}

/* Card lists (bullets) */
.card-list {
  margin: 14px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--rule);
}
.card-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
  border-bottom: 1px dotted var(--rule);
}
.card-list li:last-child { border-bottom: 0; }
.card-list li::before {
  content: "§";
  font-family: var(--serif);
  position: absolute; left: 0; top: 10px;
  color: var(--accent);
  font-weight: 700;
}

/* ===== Venture logo strip ===== */
.venture-logo {
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.venture-logo img,
.venture-logo svg {
  max-height: 100%; max-width: 80%;
  width: auto; display: block;
}
.logo-nln   { background: var(--navy); }
.logo-equis { background: linear-gradient(135deg, #1c3454 0%, #0d1f36 100%); }
.logo-sfo   { background: var(--navy-2); }
.logo-nhm   { background: #1f4432; }

/* ===== Timeline ===== */
.timeline {
  border-left: 2px solid var(--rule);
  padding-left: 32px;
}
.timeline li {
  position: relative;
  padding: 0 0 36px;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute; left: -39px; top: 10px;
  width: 12px; height: 12px;
  background: var(--accent);
  border: 2px solid var(--paper);
  border-radius: 0;                    /* square markers, editorial */
}
.tl-year {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.timeline strong {
  display: block;
  font-family: var(--display);
  color: var(--ink);
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 700;
  line-height: 1.2;
}
.timeline p { font-size: 0.98rem; margin: 0; }

/* ===== Pull quote — dark editorial break ===== */
.quote-section {
  color: var(--paper);
  text-align: center;
  padding: clamp(88px, 11vw, 144px) 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(196, 58, 46, 0.08), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-3) 100%);
}
.quote-section::before,
.quote-section::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
}
.quote-section::before { top: 0; }
.quote-section::after  { bottom: 0; }
.quote-section blockquote {
  max-width: 820px; margin: 0 auto;
  position: relative;
}
.quote-section blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 9rem);
  color: var(--accent-2);
  line-height: 0.6;
  margin-bottom: 20px;
  font-weight: 700;
}
.quote-section p {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 500;
  color: var(--paper);
  line-height: 1.35;
  margin: 0 0 32px;
  text-wrap: balance;
}
.quote-section cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== Contact — compact colophon band ===== */
.section-contact {
  background:
    radial-gradient(900px 400px at 50% 100%, rgba(196, 58, 46, 0.06), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--paper);
  border-top: 3px double rgba(255, 255, 255, 0.15);
  padding: clamp(52px, 6vw, 80px) 0;
  position: relative;
}
.section-contact::before,
.section-contact::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
}
.section-contact::before { top: 0; }
.section-contact::after { bottom: 0; }

.contact-band {
  text-align: center;
  max-width: 900px;
}
.contact-band .eyebrow {
  color: var(--accent-2);
  justify-content: center;
  margin: 0 0 22px;
}
.contact-band .eyebrow::before { color: var(--accent-2); }

.contact-lines {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
}
.contact-line {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0 8px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.contact-line:hover { border-bottom-color: var(--accent-2); }
.cl-label {
  font-family: var(--sans);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--accent-2);
}
.cl-value {
  font-family: var(--display);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--paper);
  font-weight: 500;
  letter-spacing: 0.005em;
}
.contact-sep {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
@media (max-width: 720px) {
  .contact-lines { flex-direction: column; gap: 16px; }
  .contact-sep { display: none; }
}

/* ===== Foundation page ===== */
/* Foundation hero — ceremonial editorial seal */
.hero-foundation {
  background:
    radial-gradient(1200px 700px at 50% 20%, rgba(196, 58, 46, 0.12), transparent 55%),
    radial-gradient(900px 500px at 10% 10%, rgba(20, 38, 63, 0.9), transparent 65%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-3) 100%);
  min-height: 82vh;
}
/* Ceremonial seal: giant § with concentric hairline rings */
.hero-foundation::before {
  content: "";
  position: absolute;
  width: clamp(520px, 60vw, 780px);
  height: clamp(520px, 60vw, 780px);
  left: 50%; top: 52%; transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 0 1px rgba(196, 58, 46, 0.05),
    inset 0 0 0 60px rgba(255, 255, 255, 0),
    inset 0 0 0 60px rgba(255, 255, 255, 0),
    0 0 0 60px rgba(255, 255, 255, 0);
  z-index: 0;
  pointer-events: none;
  background: none;
}
.hero-foundation::after {
  content: "§";
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(22rem, 38vw, 40rem);
  color: rgba(196, 58, 46, 0.06);
  line-height: 0.8;
  z-index: 0;
  pointer-events: none;
  background: none;
  font-weight: 400;
}
/* Ring accent — outer & inner hairline circles */
.hero-foundation .container {
  position: relative;
  z-index: 2;
}
.hero-foundation .container::before {
  content: "";
  position: absolute;
  width: clamp(360px, 40vw, 520px);
  height: clamp(360px, 40vw, 520px);
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: -1;
  pointer-events: none;
}
.hero-foundation .container::after {
  content: "";
  position: absolute;
  width: clamp(280px, 30vw, 400px);
  height: clamp(280px, 30vw, 400px);
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(196, 58, 46, 0.15);
  z-index: -1;
  pointer-events: none;
}
.hero-copy--wide {
  grid-column: 1 / -1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 2;
}
.hero-copy--wide .dateline { justify-content: center; }
.hero-copy--wide .rule-short { margin: 26px auto 30px; }
.hero-copy--wide .lede { margin-left: auto; margin-right: auto; }
.hero-copy--wide .hero-cta { justify-content: center; }
.hero-copy--wide .hero-stats { margin-top: 12px; }

/* Featured giving — dark editorial */
.highlight-list {
  display: grid; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.highlight {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  padding: 52px 4px;
  border-top: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: background 0.2s ease;
}
.highlight:hover { background: rgba(255,255,255,0.02); }
.highlight:first-child { border-top: 0; }
.highlight-amount {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.5rem, 6vw, 5.4rem);
  line-height: 1;
  color: var(--accent-2);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 16px;
}
.highlight-amount::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 60px; height: 2px;
  background: var(--accent-2);
}
.highlight-body h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 14px;
  line-height: 1.2;
  color: var(--paper);
}
.highlight-body p {
  margin: 0;
  line-height: 1.75;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
}
.highlight-body strong { color: var(--paper); }
.year-pill {
  display: inline-block; margin-left: 12px; vertical-align: middle;
  font-family: var(--sans);
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent-2);
  background: transparent;
  border: 1px solid var(--accent-2);
  padding: 4px 10px;
}

/* ===== In the Press — light editorial band ===== */
.press-list {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 32px;
}
.press-item {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: baseline;
  padding: 28px 4px;
  border-bottom: 1px solid var(--rule);
  transition: background 0.15s ease;
}
.press-item:last-child { border-bottom: 0; }
.press-item:hover { background: rgba(154, 30, 21, 0.02); }
.press-meta {
  display: flex; flex-direction: column; gap: 4px;
}
.press-outlet {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}
.press-date {
  font-family: var(--sans);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--accent);
}
.press-headline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.06rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.press-link {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.press-link:hover { color: var(--ink); border-bottom-color: var(--ink); }

.press-note {
  margin: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--ink-muted);
}
.press-note a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.press-note a:hover { color: var(--ink); border-bottom-color: var(--ink); }

@media (max-width: 720px) {
  .press-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .press-link { justify-self: start; }
}

/* ===== Contributions grid — dark editorial ===== */
.contrib-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.contrib-grid li {
  padding: 18px 12px 18px 30px;
  position: relative;
  font-family: var(--serif);
  font-size: 1.02rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: background 0.15s, color 0.15s;
}
.contrib-grid li:hover { background: rgba(255,255,255,0.03); color: var(--paper); }
.contrib-grid li:nth-child(3n) { border-right: 0; }
.contrib-grid li::before {
  content: "§";
  font-family: var(--serif);
  position: absolute; left: 10px; top: 50%;
  transform: translateY(-50%);
  color: var(--accent-2);
  font-weight: 700;
}

/* ===== Footer — editorial colophon ===== */
.site-footer {
  background:
    radial-gradient(1000px 500px at 50% 100%, rgba(196, 58, 46, 0.05), transparent 65%),
    var(--navy-3);
  color: rgba(255, 255, 255, 0.55);
  padding: clamp(72px, 8vw, 112px) 0 clamp(40px, 4vw, 56px);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
}

.footer-inner {
  display: flex; flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}

/* Editorial § flag at top-center */
.footer-flag {
  text-align: center;
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--accent-2);
  line-height: 1;
  position: relative;
}
.footer-flag::before,
.footer-flag::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(80px, 20vw, 220px);
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.footer-flag::before { right: 55%; }
.footer-flag::after  { left: 55%; }

/* Brand row — big wordmark + tag */
.footer-brand-row {
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  text-align: center;
}
.site-footer .brand { color: var(--paper); }
.site-footer .brand-mark { background: var(--paper); color: var(--navy); }
.site-footer .brand-name { font-size: 1.55rem; }
.footer-tag {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-tag .dot { color: rgba(255,255,255,0.25); margin: 0 8px; }

/* Three-column colophon */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 64px);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: clamp(32px, 4vw, 48px) 0;
}
.footer-col-label {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent-2);
  margin: 0 0 18px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li {
  font-family: var(--serif);
  font-size: 0.98rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}
.footer-col li a {
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  padding-bottom: 1px;
}
.footer-col li a:hover {
  color: var(--paper);
  border-bottom-color: var(--accent-2);
}

/* Bottom colophon line — copyright + typography credit */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom .copyright,
.footer-bottom .colophon {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-bottom .colophon em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255,255,255,0.72);
}
.footer-bottom .copyright .dot { color: rgba(255,255,255,0.28); margin: 0 6px; }

@media (max-width: 720px) {
  .footer-columns { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-flag::before,
  .footer-flag::after { display: none; }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero {
    min-height: 620px;
    padding: 128px 0 100px;
    background-image:
      linear-gradient(180deg,
        rgba(11,26,44,0.55) 0%,
        rgba(11,26,44,0.78) 45%,
        rgba(5,13,24,0.92) 100%),
      url('assets/scott-banner.jpg');
    background-position: center 30%;
  }
  .hero-copy { max-width: 100%; }
  .hero-photo-credit { right: 20px; bottom: 20px; }
  .two-col { grid-template-columns: 1fr; }
  .col-head h2 { position: static; }
  .cards { grid-template-columns: 1fr; }
  .card { border-right: 0 !important; }
  .card:last-child { border-bottom: 0 !important; }
  .card:not(:last-child) { border-bottom: 1px solid var(--rule) !important; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .copyright { text-align: center; }
  .highlight { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .contrib-grid { grid-template-columns: repeat(2, 1fr); }
  .contrib-grid li:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.12); }
  .contrib-grid li:nth-child(2n) { border-right: 0; }
}

@media (max-width: 720px) {
  .masthead-inner { font-size: 0.62rem; letter-spacing: 0.2em; gap: 8px; padding: 6px 14px; }
  .masthead-item:nth-child(3), .masthead-sep:nth-child(2) { display: none; }
  .nav-toggle { display: block; }
  .nav-list {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 8px 28px 16px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-list a { display: block; padding: 14px 0; border-bottom: 1px solid var(--rule); }
  .nav-list a:last-child { border-bottom: 0; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .primary-nav.open .nav-list {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  .hero-stats { grid-template-columns: 1fr; gap: 0; padding: 0; border: 0; }
  .hero-stats li { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 18px 0; }
  .hero-stats li:last-child { border-bottom: 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .contact-card:last-child { border-bottom: 0; }
  .contrib-grid { grid-template-columns: 1fr; }
  .contrib-grid li,
  .contrib-grid li:nth-child(2n),
  .contrib-grid li:nth-child(3n) { border-right: 0; }
  .hero-cta { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Reveal — retained but subtler (no big translate) */
.reveal { opacity: 0; transition: opacity 0.6s ease; }
.reveal.is-visible { opacity: 1; }
