:root {
  --ink: #080b0c;
  --ink-soft: #111719;
  --paper: #f1eadc;
  --paper-bright: #fffaf0;
  --river: #0b8e96;
  --river-light: #1ab8c2;
  --gold: #d79c2d;
  --gold-light: #f0bd52;
  --pine: #183d31;
  --rust: #93462d;
  --line: rgba(241, 234, 220, 0.18);
  --muted: #a9aaa3;
  --max: 1240px;
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Source Sans 3", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.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: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(18px, 4vw, 64px);
  background: rgba(8, 11, 12, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 205px;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.brand strong, .brand small { display: block; }
.brand strong {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}
.brand small {
  margin-top: 4px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.4vw, 24px);
}
.site-nav a {
  color: #d6d3ca;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav a svg {
  width: 12px;
  height: 12px;
  vertical-align: -2px;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold-light); }
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  color: var(--paper);
  background: transparent;
  align-items: center;
  justify-content: center;
}

.hero {
  position: relative;
  min-height: 780px;
  padding-top: 74px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 8, 9, .96) 0%, rgba(4, 8, 9, .83) 43%, rgba(4, 8, 9, .3) 75%, rgba(4, 8, 9, .56) 100%),
    url("assets/photos/katy-trail-bridge.webp") center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 74px 0 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}
.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: repeating-linear-gradient(123deg, transparent 0 5px, rgba(255,255,255,.05) 5px 6px);
  mix-blend-mode: overlay;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .84fr);
  align-items: center;
  gap: 54px;
  padding: 48px 0 70px;
}
.eyebrow, .section-label, .phase-kicker, .meta {
  color: var(--gold-light);
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}
.eyebrow { font-size: 14px; }
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #57d36f;
  box-shadow: 0 0 0 5px rgba(87, 211, 111, .12);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  line-height: .95;
}
h1 {
  margin: 24px 0 26px;
  font-size: clamp(76px, 9.5vw, 148px);
  text-transform: uppercase;
}
h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 2px var(--gold-light);
}
.hero-deck {
  max-width: 650px;
  color: #d5d3cc;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}
.hero-actions, .support-actions, .media-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: var(--gold-light); }
.button-ghost { border-color: rgba(241, 234, 220, .46); background: rgba(8, 11, 12, .25); }
.button-ghost:hover { background: var(--paper); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--paper); }
.hero-mark {
  position: relative;
  filter: drop-shadow(0 26px 45px rgba(0,0,0,.48));
}
.hero-mark::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: rgba(11, 142, 150, .15);
  box-shadow: 0 0 100px rgba(11, 142, 150, .2);
}
.hero-mark img { position: relative; width: 100%; }
.status-ribbon {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  color: var(--ink);
  border-top: 5px solid var(--gold);
}
.status-ribbon div { padding: 18px 24px; border-right: 1px solid rgba(8,11,12,.14); }
.status-ribbon div:last-child { border-right: 0; }
.status-ribbon span, .status-ribbon strong { display: block; }
.status-ribbon span {
  color: #6b6e69;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.status-ribbon strong {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
}

.band {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}
.section-label {
  margin-bottom: 32px;
  font-size: 13px;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 10vw;
}
.manifesto h2, .route-heading h2, .section-heading h2, .partners h2, .support h2, .media h2 {
  font-size: clamp(52px, 7vw, 92px);
  text-transform: uppercase;
}
.manifesto-copy { padding-top: 8px; color: #c4c3bc; }
.lead { color: var(--paper-bright); font-size: 23px; line-height: 1.45; }

.featured-news {
  display: grid;
  grid-template-columns: .38fr .62fr;
  padding-top: 70px;
  padding-bottom: 70px;
}
.news-source {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px;
  background: #15191a;
  border: 1px solid var(--line);
}
.news-source > span, .news-source small {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}
.news-source > span { color: var(--gold-light); font-size: 12px; }
.news-source strong { margin: 35px 0 12px; font-family: var(--display); font-size: clamp(56px, 7vw, 92px); line-height: .8; }
.news-source strong b { display: inline-flex; width: .82em; height: .82em; align-items: center; justify-content: center; background: #cf2733; font-size: .7em; }
.news-source small { color: #8d928e; }
.news-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(35px, 6vw, 75px);
  border: 1px solid var(--line);
  border-left: 0;
  background: var(--ink-soft);
}
.news-copy .section-label { margin-bottom: 18px; }
.news-copy h2 { font-size: clamp(40px, 5vw, 66px); text-transform: uppercase; }
.news-copy > p:not(.section-label) { max-width: 700px; color: #abb0aa; }

.phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.phase {
  position: relative;
  min-height: 640px;
  padding: clamp(46px, 7vw, 100px);
  overflow: hidden;
}
.phase::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.phase-land { background: linear-gradient(145deg, #1d3d31, #0c1b17); }
.phase-river { background: linear-gradient(145deg, #0b5860, #07252a); }
.phase > * { position: relative; }
.phase-number {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.phase-icon {
  display: flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  margin: 90px 0 35px;
  border: 1px solid rgba(255,255,255,.3);
}
.phase-icon svg { width: 35px; height: 35px; }
.phase-kicker { margin-bottom: 12px; font-size: 13px; }
.phase h2 { max-width: 560px; font-size: clamp(50px, 6vw, 80px); text-transform: uppercase; }
.phase p:not(.phase-kicker) { max-width: 600px; color: #d1d3cb; }
.phase dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 50px 0 0;
  border-top: 1px solid rgba(255,255,255,.2);
}
.phase dl div { padding: 18px 10px 0 0; }
.phase dt {
  color: #9ca9a2;
  font-family: var(--display);
  font-size: 11px;
  text-transform: uppercase;
}
.phase dd {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.route-section { width: 100%; padding-left: max(20px, calc((100% - var(--max)) / 2)); padding-right: max(20px, calc((100% - var(--max)) / 2)); }
.route-heading, .section-heading, .partners-grid {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}
.route-heading h2, .section-heading h2 { margin-bottom: 0; }
.route-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-bottom: 10px;
  color: #bbbdb7;
  font-size: 14px;
}
.route-legend span { display: flex; align-items: center; gap: 8px; }
.legend-line { width: 25px; height: 3px; display: inline-block; }
.legend-line.walked { background: var(--gold-light); }
.legend-line.walking-planned { border-top: 3px dashed var(--gold-light); }
.legend-line.river { border-top: 3px dashed var(--river-light); }
.real-route-map {
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-soft);
}
.real-route-head {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 24px;
}
.real-route-head h3 {
  margin: 8px 0 0;
  font-size: 26px;
  text-transform: uppercase;
}
.real-route-head > a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-family: var(--display);
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
}
.real-route-head > a svg { width: 17px; }
.map-embed {
  position: relative;
  width: 100%;
  height: clamp(420px, 60vw, 680px);
  overflow: hidden;
  background: #d8d8d2;
  isolation: isolate;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.route-board {
  margin-top: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 40px 40px;
}
.route-phase { padding: 34px 38px; }
.route-phase-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--display);
  text-transform: uppercase;
}
.route-phase-heading span { color: var(--gold-light); font-weight: 700; }
.route-phase-heading strong { font-size: 18px; }
.route-track {
  position: relative;
  height: 190px;
  margin-top: 24px;
}
.track-line {
  position: absolute;
  top: 78px;
  height: 5px;
}
.track-complete {
  left: 5%;
  width: 39%;
  background: var(--gold-light);
}
.track-planned-walk {
  left: 44%;
  right: 5%;
  border-top: 5px dashed var(--gold-light);
}
.route-stop {
  position: absolute;
  top: 54px;
  display: flex;
  width: 220px;
  flex-direction: column;
  gap: 14px;
}
.route-stop svg {
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
}
.route-stop span, .route-stop small { display: block; }
.route-stop span {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.route-stop small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
}
.route-stop-start { left: 5%; }
.route-stop-current { left: 44%; transform: translateX(-14px); }
.route-stop-current svg {
  background: #57d36f;
  box-shadow: 0 0 0 7px rgba(87,211,111,.16);
}
.route-stop-pittsburgh { right: 5%; align-items: flex-end; text-align: right; }
.route-turn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(11,142,150,.16);
  color: var(--river-light);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.route-turn svg { width: 17px; }
.route-phase-river .route-phase-heading span { color: var(--river-light); }
.river-corridor {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 0 8px;
}
.river-line {
  position: absolute;
  top: 53px;
  left: 6%;
  right: 6%;
  border-top: 4px dashed var(--river-light);
}
.river-stop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.river-stop svg {
  z-index: 1;
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 50%;
  background: var(--river);
  color: white;
}
.river-stop span, .river-stop small { display: block; }
.river-stop span {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}
.river-stop small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
}
.route-status {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 30px 38px;
  border-top: 1px solid var(--line);
  background: rgba(8,11,12,.68);
}
.status-label { display: flex; gap: 8px; color: #78d38d; font-family: var(--display); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.status-label svg { width: 16px; }
.route-status h3 { margin: 12px 0 8px; font-size: 30px; text-transform: uppercase; }
.route-status p { max-width: 660px; margin-bottom: 0; color: #b8b9b2; font-size: 14px; }
.route-status a, .text-link, .journal-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-family: var(--display);
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
}
.route-status a svg, .text-link svg, .journal-card a svg { width: 17px; }
.route-actions {
  display: flex;
  min-width: 220px;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.route-actions a:first-child {
  padding: 10px 13px;
  border: 1px solid rgba(240,189,82,.5);
}
.map-note { margin-top: 12px; color: #aeb0aa; font-size: 12px; }

.story {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 10vw;
  align-items: center;
  border-top: 1px solid var(--line);
}
.story-mark {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  outline: 1px solid rgba(215,156,45,.28);
  outline-offset: -14px;
  background: radial-gradient(circle, rgba(215,156,45,.11), transparent 65%);
  color: var(--gold-light);
  font-family: var(--display);
  text-transform: uppercase;
}
.story-mark strong { font-size: clamp(90px, 13vw, 160px); line-height: .8; }
.story-mark span { font-size: 20px; font-weight: 700; }
.story-copy h2, .enzo-copy h2 {
  font-size: clamp(58px, 8vw, 104px);
  text-transform: uppercase;
}
.story-copy > p, .enzo-copy > p { color: #bfc0ba; }

.enzo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 8vw;
  padding-top: 40px;
}
.enzo-copy blockquote {
  margin: 42px 0 0;
  padding: 24px 0 24px 28px;
  border-left: 4px solid var(--gold);
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.12;
  text-transform: uppercase;
}
.enzo-visual {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #09272b;
}
.enzo-visual img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; object-position: center 34%; }
.field-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--paper);
  color: var(--ink);
}
.field-note svg { width: 28px; color: var(--river); }
.field-note span, .field-note strong { display: block; }
.field-note span { font-size: 12px; }
.field-note strong { font-family: var(--display); font-size: 16px; text-transform: uppercase; }

.field-gallery { border-top: 1px solid var(--line); }
.gallery-intro { max-width: 460px; color: #aeb0aa; }
.field-photo-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.field-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
}
.field-photo-wide { grid-column: span 2; }
.field-photo-tall { grid-row: span 2; }
.field-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.field-photo:hover img { transform: scale(1.025); }
.field-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 9px 11px;
  background: rgba(5, 10, 11, .86);
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.journal { border-top: 1px solid var(--line); }
.journal-grid {
  display: grid;
  grid-template-columns: 1.45fr .8fr .8fr;
  gap: 18px;
  margin-top: 48px;
}
.journal-feature, .journal-card { border: 1px solid var(--line); background: var(--ink-soft); }
.journal-feature { display: grid; grid-template-rows: 280px 1fr; }
.journal-art {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(8,11,12,.12), rgba(8,11,12,.6)),
    repeating-linear-gradient(115deg, #18504b 0 28px, #1d625a 28px 31px);
}
.journal-art svg { width: 96px; height: 96px; color: var(--gold-light); opacity: .88; }
.journal-body, .journal-card { position: relative; padding: 28px; }
.meta { font-size: 12px; }
.journal h3 { font-size: 34px; line-height: 1; text-transform: uppercase; }
.journal p:not(.meta) { color: #aeb0aa; }
.journal-body > a {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}
.journal-card { min-height: 310px; }

.videos { padding: 0; border-top: 1px solid var(--line); background: #091315; }
.video-section-inner { padding-top: 100px; padding-bottom: 100px; }
.video-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}
.video-section-heading h2 { max-width: 760px; font-size: clamp(64px, 8vw, 112px); line-height: .86; text-transform: uppercase; }
.video-section-heading > div:first-child > p:last-child { max-width: 690px; color: #bdc6c2; font-size: 19px; }
.subscribe-panel { padding: 24px; border-left: 4px solid #ff2d20; background: #101f21; }
.subscribe-panel span, .subscribe-panel small { display: block; }
.subscribe-panel span { margin-bottom: 13px; color: var(--paper-bright); font-family: var(--display); font-size: 18px; font-weight: 700; text-transform: uppercase; }
.subscribe-panel small { margin-top: 12px; color: #9fa8a4; }
.button-youtube { width: 100%; background: #ff2d20; color: #fff; }
.button-youtube:hover { background: #d92318; }
.expedition-video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.expedition-video-card { position: relative; min-width: 0; border: 1px solid var(--line); background: #0d1b1d; }
.video-featured { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .7fr); }
.youtube-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #030505; }
.youtube-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-featured .youtube-frame { height: 100%; min-height: 420px; aspect-ratio: auto; }
.video-card-copy { display: flex; min-height: 190px; padding: 24px; flex-direction: column; align-items: flex-start; }
.video-card-copy h3 { font-size: clamp(27px, 3vw, 38px); line-height: .96; text-transform: uppercase; }
.video-card-copy p { margin-bottom: 24px; color: #aeb7b3; }
.video-card-copy a { display: inline-flex; gap: 8px; align-items: center; margin-top: auto; color: var(--gold-light); font-weight: 700; }
.video-card-copy a svg { width: 17px; }
.video-card-label { position: absolute; z-index: 2; top: 12px; left: 12px; display: inline-flex; gap: 7px; align-items: center; padding: 9px 11px; background: #ff2d20; color: #fff; font-family: var(--display); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.video-card-label svg { width: 16px; }
.video-followthrough { display: flex; gap: 28px; align-items: center; justify-content: space-between; margin-top: 24px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.video-followthrough p { max-width: 720px; margin: 0; color: #aeb7b3; }
.video-followthrough strong { color: var(--paper-bright); }

.partners {
  color: var(--ink);
  background: var(--gold);
  width: 100%;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  padding-right: max(20px, calc((100% - var(--max)) / 2));
}
.partners .section-label { color: var(--ink); }
.partners-grid > div:first-child { max-width: 650px; }
.partners-grid p { max-width: 580px; font-size: 19px; }
.partner-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  min-width: 430px;
  background: rgba(8,11,12,.2);
}
.partner-types span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--gold);
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}
.partner-types svg { width: 20px; }

.support {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 9vw;
  align-items: center;
}
.support-copy > p { max-width: 650px; color: #b6b7b1; font-size: 19px; }
.support-options { border-top: 1px solid var(--line); }
.support-options article {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.support-options article > span {
  grid-row: 1 / 3;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 700;
}
.support-options strong { font-family: var(--display); font-size: 22px; text-transform: uppercase; }
.support-options p { margin: 2px 0 0; color: #93968f; font-size: 14px; }

.store-section {
  background: var(--paper);
  color: var(--ink);
}
.store-intro {
  width: min(var(--max), calc(100% - 40px));
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.store-intro .section-label { margin-bottom: 8px; color: var(--river); }
.store-intro h2 { margin: 0; font-size: 50px; text-transform: uppercase; }
.store-intro > p { margin: 0; }
.store-action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 7px;
}
.store-action span {
  color: #666b67;
  font-size: 11px;
  text-align: center;
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
  padding-bottom: 70px;
}
.merch-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(8, 11, 12, .15);
  background: #fffaf0;
}
.merch-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #e5ded1;
}
.merch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.merch-card:hover .merch-image img { transform: scale(1.025); }
.merch-card-body {
  display: flex;
  min-height: 155px;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}
.merch-card h3 {
  margin-bottom: 8px;
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
}
.merch-price {
  margin: 0;
  color: #5e625e;
  font-size: 15px;
}
.merch-card .text-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--river);
}
.merch-status {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 50px;
  color: #646964;
  font-size: 13px;
}

.media {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}
.media-copy { max-width: 780px; }
.media-copy > p { max-width: 620px; color: #b4b6b0; font-size: 19px; }
.media-actions { min-width: 260px; flex-direction: column; }

.site-footer {
  padding: 58px max(20px, calc((100% - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: #040606;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 70px; height: 70px; object-fit: contain; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-family: var(--display); font-size: 26px; text-transform: uppercase; }
.footer-brand span { color: var(--gold-light); font-size: 12px; text-transform: uppercase; }
.footer-motto {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.footer-motto i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer nav a { color: #aeb0aa; font-family: var(--display); font-size: 13px; text-transform: uppercase; }
.copyright { margin: 0; color: #aeb0aa; font-size: 12px; text-align: right; }

@media (max-width: 1120px) {
  .menu-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 24px 28px;
    background: rgba(8,11,12,.98);
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .site-nav.open { display: flex; }
  .hero-inner { grid-template-columns: 1.15fr .85fr; }
  .status-ribbon { grid-template-columns: 1fr 1fr; }
  .status-ribbon div:nth-child(2) { border-right: 0; }
  .status-ribbon div:nth-child(-n+2) { border-bottom: 1px solid rgba(8,11,12,.14); }
  .journal-grid { grid-template-columns: 1.2fr 1fr; }
  .journal-card:last-child { grid-column: 2; }
  .partner-types { min-width: 360px; }
}

@media (max-width: 800px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(4, 8, 9, .96) 0%, rgba(4, 8, 9, .83) 43%, rgba(4, 8, 9, .3) 75%, rgba(4, 8, 9, .56) 100%),
      url("assets/photos/katy-trail-bridge-960.webp") center / cover no-repeat;
  }
  body { font-size: 16px; }
  .site-header { min-height: 68px; }
  .brand img { width: 42px; height: 42px; }
  .site-nav { top: 68px; flex-direction: column; align-items: flex-start; }
  .hero { min-height: auto; padding-top: 68px; }
  .hero-mark { display: none; }
  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 4px;
    padding-top: 54px;
  }
  .hero-copy { z-index: 2; }
  h1 { font-size: clamp(66px, 20vw, 106px); }
  .status-ribbon { position: relative; width: 100%; }
  .manifesto-grid, .phases, .story, .enzo, .support { grid-template-columns: 1fr; }
  .featured-news { grid-template-columns: 1fr; }
  .news-copy { border-left: 1px solid var(--line); border-top: 0; }
  .manifesto-grid { gap: 20px; }
  .band { padding-top: 76px; padding-bottom: 76px; }
  .phase { min-height: 560px; }
  .phase-icon { margin-top: 64px; }
  .route-heading, .section-heading, .partners-grid, .media { align-items: flex-start; flex-direction: column; }
  .route-phase { padding: 28px 22px; }
  .real-route-head { align-items: flex-start; flex-direction: column; }
  .map-embed { height: 500px; }
  .route-track {
    height: auto;
    display: grid;
    gap: 28px;
    padding: 20px 0 10px 28px;
  }
  .track-line {
    top: 28px;
    bottom: 28px;
    left: 10px;
    width: 4px;
    height: auto;
  }
  .track-complete { background: linear-gradient(var(--gold-light) 0 46%, transparent 46%); }
  .track-planned-walk {
    right: auto;
    border-top: 0;
    border-left: 4px dashed var(--gold-light);
  }
  .route-stop {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
  .route-stop-pittsburgh { align-items: flex-start; }
  .river-corridor { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .river-line { display: none; }
  .route-status { align-items: flex-start; flex-direction: column; }
  .route-actions { align-items: flex-start; }
  .story-mark { width: min(84vw, 460px); margin: 0 auto; }
  .enzo { padding-top: 0; }
  .enzo-visual { min-height: 480px; }
  .field-photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 320px 240px; }
  .field-photo-tall { grid-row: span 1; }
  .field-photo-wide { grid-column: span 2; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card:last-child { grid-column: auto; }
  .video-section-heading { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .video-featured { display: block; }
  .video-featured .youtube-frame { height: auto; min-height: 0; aspect-ratio: 16 / 9; }
  .partner-types { min-width: 0; width: 100%; }
  .support { gap: 50px; }
  .store-intro { grid-template-columns: 1fr; gap: 18px; }
  .merch-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .copyright { text-align: left; }
}

@media (max-width: 520px) {
  .brand strong { font-size: 18px; }
  .brand small { font-size: 10px; }
  .hero-inner, .band { width: min(100% - 28px, var(--max)); }
  .hero-actions .button, .support-actions .button, .media-actions .button { width: 100%; }
  .status-ribbon { grid-template-columns: 1fr; }
  .status-ribbon div { border-right: 0; border-bottom: 1px solid rgba(8,11,12,.14); }
  .status-ribbon div:last-child { border-bottom: 0; }
  .phase { padding: 44px 24px; }
  .phase dl { grid-template-columns: 1fr; }
  .phase dl div { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .route-legend { flex-direction: column; gap: 10px; }
  .enzo-visual { min-height: 400px; }
  .field-photo-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .field-photo, .field-photo-wide, .field-photo-tall { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 3; }
  .field-note { left: 12px; right: 12px; }
  .video-section-inner { padding-top: 72px; padding-bottom: 72px; }
  .video-section-heading h2 { font-size: 62px; }
  .expedition-video-grid { grid-template-columns: 1fr; }
  .video-featured { grid-column: auto; }
  .video-card-copy { min-height: 0; }
  .video-followthrough { align-items: flex-start; flex-direction: column; }
  .partner-types { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr; }
  .footer-motto { font-size: 17px; }
}

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

.inquiry-launcher {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 899;
  display: grid;
  min-height: 48px;
  align-content: center;
  padding: 8px 16px;
  border: 1px solid rgba(32,186,194,.65);
  border-radius: 5px;
  background: #101719;
  color: #fffaf0;
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: 1;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
}
.inquiry-launcher span { color: #f0bd52; font-size: 16px; font-weight: 800; }
.inquiry-launcher small { margin-top: 4px; color: #7fd8dd; font-size: 10px; font-weight: 700; }
.inquiry-launcher:hover { border-color: #f0bd52; background: #172123; transform: translateY(-2px); }

.support-launcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 5px;
  background: #d79c2d;
  color: #080b0c;
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}
.support-launcher:hover { background: #f0bd52; transform: translateY(-2px); }
.support-launcher svg { width: 19px; height: 19px; }
.support-popover {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 901;
  width: min(360px, calc(100% - 36px));
  padding: 24px;
  border: 1px solid rgba(240,189,82,.45);
  border-radius: 5px;
  background: #101719;
  color: #f1eadc;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.support-popover[hidden] { display: none; }
.support-popover-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.support-popover-head p { margin: 0 0 4px; color: #f0bd52; font-family: var(--display); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.support-popover h2 { margin: 0; font-family: var(--display); font-size: 32px; line-height: 1; text-transform: uppercase; }
.support-close {
  display: flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  background: transparent;
  color: #f1eadc;
  cursor: pointer;
}
.support-close svg { width: 17px; }
.support-message { margin: 17px 0; color: #c7cbc5; font-size: 14px; line-height: 1.45; }
.support-methods { display: grid; gap: 10px; }
.support-method {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 4px;
  background: #172123;
  color: #f1eadc;
}
.support-method:hover { border-color: #f0bd52; background: #1b292b; }
.support-method > svg { width: 24px; color: #f0bd52; }
.support-method span, .support-method strong, .support-method small { display: block; }
.support-method strong { font-family: var(--display); font-size: 18px; text-transform: uppercase; }
.support-method small { color: #b3bab5; font-size: 12px; }
.support-method > span:last-child { color: #f0bd52; font-family: var(--display); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.support-disclosure { margin: 15px 0 0; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.1); color: #aeb5b0; font-size: 11px; }

@media (max-width: 520px) {
  .inquiry-launcher { right: 12px; bottom: 72px; }
  .support-launcher { right: 12px; bottom: 12px; }
  .support-popover { right: 12px; bottom: 72px; width: calc(100% - 24px); }
}
