/* ==========================================================================
   John Meredith III — johnmeredith3.com
   Design system: near-black + Texas burnt orange + cream serif
   Geometry matched to the design PDF at 1440x810 reference.
   Fonts: DejaVu Serif Bold + DejaVu Sans — the exact faces embedded in the
   design PDF, self-hosted (fully offline).
   ========================================================================== */

@font-face {
  font-family: 'DejaVu Serif';
  src: url('../fonts/dejavu-serif-bold.woff2') format('woff2');
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DejaVu Sans';
  src: url('../fonts/dejavu-sans.woff2') format('woff2');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DejaVu Sans';
  src: url('../fonts/dejavu-sans-bold.woff2') format('woff2');
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:            #080808;
  --bg-panel:      #121212;
  --bg-chip:       #171717;
  --bg-input:      #151515;
  --bg-quote:      #241406;
  --bg-caption:    #1B110E;
  --orange:        #E26915;
  --orange-bright: #F07E24;
  --orange-deep:   #BF5700;
  --cream:         #F5F0E7;
  --body:          #C8C4BC;
  --muted:         #8F8A82;
  --line:          #2A2724;
  --nav-h:         clamp(70px, 4.86vw, 92px);
  --strip-h:       clamp(70px, 4.86vw, 92px);

  --serif: 'DejaVu Serif', Georgia, 'Times New Roman', serif;
  --sans:  'DejaVu Sans', 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- Reset / base ---------- */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
}

main > section { flex: 1; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--orange); color: #0A0602; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--orange-bright);
  outline-offset: 3px;
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0C0C0C; }
::-webkit-scrollbar-thumb { background: #2E2A26; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange-deep); }

/* ---------- Navigation (PDF: logo 45px @48px, links 11.3px, 51px gaps, left-aligned) ---------- */

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--orange);
}

.nav-inner {
  height: 100%;
  padding: 0 clamp(24px, 3.33vw, 48px);
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(30px, 3.13vw, 45px);
  letter-spacing: 0.01em;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  padding-right: clamp(24px, 3vw, 44px);
  border-right: 1px solid var(--line);
  transition: color 0.25s, filter 0.25s;
}

.nav-logo img {
  height: clamp(46px, 3.9vw, 64px);
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.nav-logo:hover { color: var(--orange-bright); }
.nav-logo:hover img { filter: drop-shadow(0 2px 10px rgba(226, 105, 21, 0.35)); }

.nav-menu {
  display: flex;
  align-items: center;
  margin-left: clamp(32px, 7.5vw, 108px);
  gap: clamp(20px, 3.54vw, 51px);
}

.nav-link {
  position: relative;
  font-size: clamp(11.5px, 0.8vw, 15px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 6px 0;
  transition: color 0.25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover { color: var(--orange-bright); }

.nav-link.active { color: var(--orange); }
.nav-link.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--orange);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Shared: eyebrow, titles, body ---------- */

.eyebrow {
  display: inline-block;
  font-size: clamp(11px, 0.76vw, 14px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 78px);
  line-height: 1.05;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 16px;
}

.section-title .accent { color: var(--orange); }

/* Per-line scale factors measured from the PDF */
.tl-xl { font-size: 1.21em; }   /* bio JOHN, ut WEEK.        */
.tl-lg { font-size: 1.18em; }   /* journey JOURNEY           */
.tl-md { font-size: 1.075em; }  /* sponsorships THE GAME.    */
.tl-sm { font-size: 0.917em; }  /* contact MEANINGFUL.       */

/* Per-page base title sizes (PDF @1440: 72 / 69 / 66 / 60 / 70.5 / 72) */
#bio-title          { font-size: clamp(38px, 5vw, 100px); }
#ut-title           { font-size: clamp(37px, 4.8vw, 96px); }
#journey-title      { font-size: clamp(36px, 4.6vw, 92px); }
#sponsorships-title { font-size: clamp(34px, 4.2vw, 84px); }
#foundation-title   { font-size: clamp(38px, 4.9vw, 98px); }
#contact-title      { font-size: clamp(38px, 5vw, 100px); }

.section-sub {
  font-size: clamp(15px, 1.04vw, 19px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.section-sub.small { font-size: clamp(13.5px, 0.94vw, 17px); color: var(--cream); }

.section-sub.ready {
  font-size: clamp(18px, 1.88vw, 28px);
  color: var(--cream);
  letter-spacing: 0.05em;
  margin: 12px 0 28px;
}

.section-sub .sep { color: var(--muted); font-weight: 400; padding: 0 6px; }

.section-body {
  max-width: clamp(620px, 43vw, 780px);
  font-size: clamp(15px, 1.04vw, 19px);
  color: var(--body);
  line-height: 1.5;
  margin-bottom: 36px;
}

.dot { color: var(--orange); }

/* ---------- Buttons (PDF: 45-50px tall, 12px text) ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: clamp(12px, 0.83vw, 15px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
}

.btn .arrow { font-size: 18px; line-height: 0; transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-solid {
  background: var(--orange);
  color: #12080A;
}

.btn-solid:hover { background: var(--orange-bright); }
.btn-solid:active { transform: translateY(1px); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: #4A443E;
}

.btn-ghost:hover { border-color: var(--orange); color: var(--orange-bright); }

.btn-wide { min-width: 268px; padding: 17px 30px; }

/* ---------- Hero (PDF p1: 40/60 split, JOHN 8.7vw, MEREDITH III 4.75vw) ---------- */

main.hero {
  min-height: calc(100vh - var(--nav-h));
  background:
    radial-gradient(1100px 500px at 85% 20%, rgba(191, 87, 0, 0.10), transparent 60%),
    var(--bg);
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 40fr) 1px minmax(0, 60fr);
  align-items: stretch;
  width: 100%;
  min-height: calc(100vh - var(--nav-h) - 118px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 56px clamp(12px, 1.1vw, 18px) 56px clamp(24px, 3.6vw, 52px);
}

.hero-mark {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(420px, 100%);
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(22px, 1.9vw, 30px);
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.hero-mark::before,
.hero-mark::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191, 87, 0, 0.55));
}

.hero-mark::after {
  background: linear-gradient(90deg, rgba(191, 87, 0, 0.55), transparent);
}

.hero-name {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 0.95;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
}

.hero-name-first {
  display: block;
  font-size: clamp(54px, 7vw, 112px);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hero-name-last {
  display: block;
  font-size: clamp(26px, 4vw, 64px);
  letter-spacing: 0.03em;
  margin-top: 8px;
  white-space: nowrap;
}

.hero-rule {
  width: min(440px, 96%);
  height: 1px;
  background: linear-gradient(90deg, rgba(191, 87, 0, 0.15), var(--orange-deep), rgba(191, 87, 0, 0.15));
  margin: 22px auto;
}

.hero-content .hero-rule:first-of-type { margin-top: clamp(32px, 6vh, 56px); }

.hero-tagline {
  font-size: clamp(11px, 0.95vw, 14px);
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-tagline .dot { padding: 0 2px; }

.hero-domain {
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 36px;
}

.hero-domain span { color: var(--orange); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

/* Keep the two hero CTAs on one row across laptop widths (PDF shows side-by-side) */
@media (min-width: 981px) and (max-width: 1439px) {
  .hero-actions { gap: 12px; }
  .hero-actions .btn {
    font-size: clamp(10.5px, 0.83vw, 12px);
    padding: clamp(12px, 1.05vw, 15px) clamp(14px, 1.8vw, 26px);
  }
}

.hero-divider {
  background: linear-gradient(180deg, transparent, rgba(226, 105, 21, 0.45) 15%, rgba(226, 105, 21, 0.45) 85%, transparent);
}

.hero-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ---------- Sponsor logo bar (PDF p1: 118px tall @1440, logos ~64px) ---------- */

.logo-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #0D0C0C;
  border-top: 2px solid var(--orange);
}

.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  min-height: clamp(116px, 8vw, 152px);
  position: relative;
}

.logo-cell + .logo-cell::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #262321;
}

.logo-cell img {
  max-height: clamp(74px, 5.2vw, 98px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.92;
  mix-blend-mode: screen;
  transition: opacity 0.25s, transform 0.25s;
}

.logo-cell:hover img { opacity: 1; transform: scale(1.04); }

/* ---------- Split sections — per-page column ratios measured from the PDF ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: calc(100vh - var(--nav-h) - var(--strip-h));
  border-bottom: 1px solid #161412;
}

.split--bio          { grid-template-columns: 58.2fr 41.8fr; }
.split--ut           { grid-template-columns: 54.3fr 45.7fr; }
.split--sponsorships { grid-template-columns: 43.75fr 56.25fr; }
.split--foundation   { grid-template-columns: 48.96fr 51.04fr; }
.split--contact      { grid-template-columns: 64.6fr 35.4fr; }

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px clamp(28px, 3.5vw, 52px);
}

/* Text-column left offsets from the PDF (82 / 50 / 52 / 60 / 82 @1440) */
.split--bio .split-content,
.split--contact .split-content      { padding-left: clamp(32px, 5.7vw, 84px); }
.split--ut .split-content           { padding-left: clamp(28px, 3.5vw, 52px); }
.split--sponsorships .split-content { padding-left: clamp(28px, 3.6vw, 54px); }
.split--foundation .split-content   { padding-left: clamp(30px, 4.2vw, 62px); }

/* Foundation & contact titles flow straight into body copy (PDF gap ~26px) */
.split--foundation .section-title,
.split--contact .section-title { margin-bottom: 26px; }

/* Foundation photo is a tall portrait — keep the face in frame */
.split--foundation .split-media img { object-position: 50% 18%; }

/* Body copy measures per page (PDF: 620 / 505 / 640 / 550 / 645 @1440, fluid above) */
.split--ut .section-body           { max-width: clamp(505px, 35vw, 640px); }
.split--sponsorships .section-body { max-width: clamp(640px, 44.4vw, 810px); margin-bottom: clamp(40px, 8vh, 76px); }
.split--foundation .section-body   { max-width: clamp(555px, 38.5vw, 700px); }
.split--contact .section-body      { max-width: clamp(645px, 44.8vw, 815px); }

.split-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.95);
}

/* ---------- Bio stats (PDF: 33px numbers, 9.8px labels, 162px pitch, no rule) ---------- */

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 7vw, 100px);
  margin-top: 28px;
}

.stat { display: flex; flex-direction: column; }

.stat dd {
  font-size: clamp(26px, 2.3vw, 44px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  order: -1;
  margin-bottom: 12px;
}

.stat dt {
  font-size: clamp(10px, 0.69vw, 13px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Bio full story ---------- */

.bio-story {
  border-bottom: 1px solid #161412;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(191, 87, 0, 0.06), transparent 60%),
    var(--bg);
}

.bio-story-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(80px, 10vh, 120px) clamp(24px, 5vw, 48px);
}

.story-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.08;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.story-title .accent { color: var(--orange); }

.story-copy { overflow: hidden; }

.story-figure {
  float: right;
  width: min(280px, 42%);
  margin: 6px 0 20px 34px;
  border: 1px solid #241B15;
  background: var(--bg-caption);
  padding: 10px;
}

.story-figure img { width: 100%; }

.story-figure figcaption {
  font-size: clamp(10px, 0.69vw, 12px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 4px 4px;
}

.story-copy h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 42px 0 14px;
}

.story-copy h3:first-child { margin-top: 0; }

.story-copy p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--body);
  margin-bottom: 18px;
}

.story-copy .story-close {
  color: var(--cream);
  font-weight: 500;
  border-left: 3px solid var(--orange);
  padding-left: 22px;
}

.stats.accolades {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
  margin: 48px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  justify-content: space-between;
  gap: 28px;
}

.stats.accolades .stat dt { line-height: 1.6; }

/* ---------- Quote box (PDF: flat #241406, 520px, 13.5/19.5px lines) ---------- */

.quote-box {
  background: var(--bg-quote);
  padding: clamp(24px, 1.8vw, 34px) clamp(22px, 1.7vw, 32px);
  width: min(clamp(520px, 36.1vw, 660px), 100%);
}

.quote-box p {
  font-size: clamp(13.5px, 0.94vw, 17px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.55;
}

.quote-line1 { color: var(--cream); }
.quote-line2 { color: var(--orange); font-size: clamp(19.5px, 1.35vw, 25px); }

.quote-box cite {
  display: block;
  font-style: normal;
  font-size: clamp(10px, 0.69vw, 13px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- Journey (PDF: intro 244px col, cards 198px w, 9px gap, 3:5 images) ---------- */

.journey {
  min-height: calc(100vh - var(--nav-h) - var(--strip-h));
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #161412;
  background:
    radial-gradient(900px 400px at 15% 15%, rgba(191, 87, 0, 0.07), transparent 60%),
    var(--bg);
}

/* PDF-exact: fixed 250px intro column — the oversized JOURNEY headline
   intentionally runs behind the cards, exactly as the design mock shows */
.journey-grid {
  display: grid;
  grid-template-columns: minmax(230px, 250px) minmax(0, 1fr);
  gap: clamp(40px, 4.86vw, 70px);
  align-items: stretch;
  width: 100%;
  padding: 56px clamp(14px, 1vw, 20px) clamp(64px, 12vh, 120px) clamp(28px, 4.6vw, 68px);
}

.journey-intro .section-title { white-space: nowrap; }

.journey-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.journey-intro .section-title { margin-bottom: 0; }

.journey-rule {
  width: 250px;
  max-width: 100%;
  height: 2px;
  background: var(--orange);
  margin: 48px 0 22px;
  margin-top: auto;
  padding-top: 0;
}

.journey-intro .section-body { margin-bottom: 0; font-size: clamp(13.5px, 0.94vw, 17px); max-width: clamp(250px, 17.4vw, 310px); }

.journey-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 9px;
  align-self: center;
}

.journey-card {
  background: var(--bg-caption);
  border: 1px solid #241B15;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.journey-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 105, 21, 0.55);
}

.journey-card-img {
  aspect-ratio: 3 / 5;
  overflow: hidden;
  position: relative;
  background: #120B08;
}

.journey-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.journey-card:hover .journey-card-img img { transform: scale(1.05); }

.journey-card-caption { padding: 15px 18px 20px; }

.journey-card-caption .num {
  font-size: clamp(12px, 0.83vw, 15px);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 8px;
}

.journey-card-caption h3 {
  font-size: clamp(13.5px, 0.94vw, 17px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 5px;
  white-space: nowrap;
}

.journey-card-caption .sub {
  font-size: clamp(10px, 0.69vw, 13px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Sponsorships (PDF: 3x197px chips, 21px gap, 268px button) ---------- */

.brand-label {
  font-size: clamp(11px, 0.76vw, 14px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.brand-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, clamp(197px, 13.7vw, 250px)));
  gap: 21px;
  margin-bottom: 26px;
}

.chip {
  background: var(--bg-chip);
  border: 1px solid #262626;
  color: var(--cream);
  font-size: clamp(9.8px, 0.68vw, 12.5px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 6px;
  text-align: center;
  white-space: nowrap;
  transition: border-color 0.25s, color 0.25s;
}

.chip:hover { border-color: var(--orange); color: var(--orange-bright); }

/* ---------- Foundation review box (PDF: 500px, 27px padding) ---------- */

.review-box {
  background: var(--bg-chip);
  border: 1px solid #262626;
  padding: clamp(26px, 1.9vw, 34px) clamp(27px, 2vw, 36px);
  max-width: clamp(500px, 34.7vw, 640px);
}

.review-label {
  font-size: clamp(11px, 0.76vw, 14px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.review-primary {
  font-size: clamp(13.5px, 0.94vw, 17px);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 10px;
}

.review-secondary {
  font-size: clamp(11px, 0.76vw, 14px);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Contact (PDF: 668px form, 322px fields, 24px col gap, 30px row gap) ---------- */

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 24px;
  width: 100%;
  max-width: clamp(668px, 46.4vw, 840px);
}

.field { display: flex; flex-direction: column; }

.field label {
  font-size: clamp(10px, 0.69vw, 13px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  background: var(--bg-input);
  border: 1px solid #2C2C2C;
  border-bottom-color: #4A443E;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(14px, 0.97vw, 17px);
  padding: 11px 12px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E26915' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.field select:invalid { color: var(--muted); }
.field option { background: var(--bg-input); color: var(--cream); }

.field textarea { resize: vertical; min-height: 130px; line-height: 1.5; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  background: #191715;
}

.field input.error,
.field select.error,
.field textarea.error { border-color: #C0392B; }

.btn-submit {
  grid-column: 1 / -1;
  width: 100%;
  padding: 16px;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--orange-bright);
  min-height: 1.2em;
  margin-top: -14px;
}

.contact-media img { filter: brightness(0.72) saturate(0.9); }

.contact-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 24px 24px 0;
  background: linear-gradient(180deg, transparent, rgba(5, 4, 3, 0.88));
}

.contact-site {
  font-size: clamp(15px, 1.04vw, 19px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.contact-site a:hover, .contact-email a:hover { color: var(--orange-bright); }

.contact-email {
  font-size: clamp(11px, 0.78vw, 14px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 8px;
}

/* ---------- Footer (PDF strip: 70px tall, 11px names, orange top rule) ---------- */

.site-footer {
  border-top: 2px solid var(--orange);
  background: #0A0909;
}

.site-footer.no-border { border-top: none; }

.footer-sponsors {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 32px;
  min-height: 68px;
  padding: 12px 86px 12px 100px;
}

.footer-sponsors span {
  font-size: clamp(11px, 0.76vw, 14px);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--orange);
}

.footer-meta {
  border-top: 1px solid #1A1816;
  text-align: center;
  padding: 16px 40px 20px;
}

.footer-meta p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1200px) {
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .journey-intro .section-body { max-width: 420px; }
  .journey-rule { margin-top: 40px; }
  .journey-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    margin: 0 -8px;
    padding-left: 8px;
  }
  .journey-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }
  .journey-track::-webkit-scrollbar { height: 6px; }
}

@media (max-width: 980px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 2px solid var(--orange);
    padding: 12px 0 20px;
    transform: translateY(-130%);
    transition: transform 0.35s ease;
    z-index: 99;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link {
    padding: 14px 40px;
    font-size: 13px;
  }
  .nav-link::after { display: none; }
  .nav-link.active { background: rgba(226, 105, 21, 0.08); }
  .nav-toggle { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-divider { display: none; }
  .hero-content {
    padding: 56px clamp(24px, 6vw, 48px) 48px;
    text-align: left;
  }
  .hero-content .hero-rule:first-of-type { margin-top: 28px; }
  .hero-media { min-height: 56vw; }

  .logo-bar { grid-template-columns: repeat(3, 1fr); }
  .logo-cell { min-height: 88px; }
  .logo-cell img { max-height: 56px; }
  .logo-cell:nth-child(4)::before { display: none; }

  .split, .split.media-left,
  .split--bio, .split--ut, .split--sponsorships, .split--foundation, .split--contact {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  /* Mobile: taller portrait media band + top-biased crop so subjects' heads aren't cut off. */
  .split-media { min-height: 0; aspect-ratio: 3 / 4; }
  .split-media img { object-position: 50% 15%; }
  /* Sponsorships photo is near-square — use its exact aspect so nothing crops at all. */
  .split--sponsorships .split-media { aspect-ratio: 840 / 892; }
  .split--sponsorships .split-media img { object-position: 50% 12%; }
  .split-content,
  .split--bio .split-content, .split--ut .split-content,
  .split--sponsorships .split-content, .split--foundation .split-content,
  .split--contact .split-content {
    padding: 64px clamp(24px, 6vw, 48px);
  }
  .brand-chips { grid-template-columns: repeat(auto-fit, minmax(150px, 197px)); }
  .footer-sponsors { padding: 12px 32px; }
}

@media (max-width: 720px) {
  .stats.accolades { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero-actions .btn { width: 100%; }
  .hero-tagline { letter-spacing: 0.18em; }
  .hero-domain { letter-spacing: 0.22em; }
  .hero-name-first { font-size: clamp(46px, 15vw, 68px); }
  .hero-name-last { font-size: clamp(22px, 7.2vw, 34px); }
  .contact-form { grid-template-columns: 1fr; }
  .stats { gap: 32px; }
  .logo-bar { grid-template-columns: repeat(2, 1fr); }
  .logo-cell:nth-child(odd)::before { display: none; }
  .logo-cell:nth-child(4)::before { display: block; }
  .footer-sponsors { justify-content: center; text-align: center; }
}


/* ---------- Agency credit ---------- */
.credit-link {
  color: inherit;
  transition: color .2s ease;
}
.credit-link:hover,
.credit-link:focus-visible { color: var(--orange); }
