:root {
  --night: #10130f;
  --pine: #17382b;
  --paper: #f0ede4;
  --white: #fffdf7;
  --gold: #d7a945;
  --rust: #b64b2f;
  --ink: #171916;
  --line: rgba(23, 25, 22, .2);
  --display: "Libre Caslon Display", Georgia, serif;
  --condensed: "Barlow Condensed", sans-serif;
  --body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); }
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; }
.skip-link { position: fixed; top: 0; left: 1rem; z-index: 100; transform: translateY(-110%); background: var(--white); padding: .8rem 1rem; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}
.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; }
.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.brand-type { display: grid; gap: .14rem; }
.brand-type strong { font: 400 1.25rem/1 var(--display); }
.brand-type small { font: 600 .63rem/1 var(--body); letter-spacing: .14em; text-transform: uppercase; opacity: .7; }
nav { display: flex; gap: 2.25rem; align-items: center; }
nav a { text-decoration: none; font: 600 .72rem/1 var(--body); letter-spacing: .16em; text-transform: uppercase; }
nav a:last-child { border: 1px solid rgba(255,255,255,.45); padding: .8rem 1.1rem; }
.menu-button { display: none; color: white; background: none; border: 0; text-transform: uppercase; letter-spacing: .12em; }

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #10130f;
}
.hero iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 178vh;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.03);
  border: 0;
  pointer-events: none;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,12,9,.78) 0%, rgba(8,12,9,.38) 45%, rgba(8,12,9,.08) 76%),
    linear-gradient(180deg, rgba(8,12,9,.28) 0%, transparent 55%, rgba(8,12,9,.62) 100%);
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(1.25rem, 8vw, 8.5rem);
  bottom: clamp(7.5rem, 16vh, 11rem);
  max-width: 830px;
}
.eyebrow { margin: 0 0 1.25rem; color: var(--gold); font: 700 .71rem/1 var(--body); letter-spacing: .22em; text-transform: uppercase; }
.eyebrow.ink { color: var(--rust); }
.hero h1 { margin: 0; font: 400 clamp(4rem, 8.5vw, 8.4rem)/.82 var(--display); letter-spacing: -.055em; text-wrap: balance; }
.hero-deck { max-width: 610px; margin: 1.8rem 0 0; font-size: clamp(1rem, 1.5vw, 1.26rem); line-height: 1.65; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.2rem; }
.button { display: inline-flex; align-items: center; min-height: 52px; padding: 0 1.4rem; text-decoration: none; font: 700 .73rem/1 var(--body); letter-spacing: .12em; text-transform: uppercase; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--night); background: var(--white); }
.button-light:hover { background: var(--gold); }
.text-link { color: white; text-decoration: none; font: 600 .78rem/1 var(--body); letter-spacing: .08em; text-transform: uppercase; }
.text-link span { display: inline-block; margin-left: .4rem; color: var(--gold); }
.hero-index { position: absolute; z-index: 2; right: clamp(1.25rem, 4vw, 4.5rem); bottom: 2rem; display: flex; gap: 1.5rem; font: 600 .61rem/1 var(--body); letter-spacing: .15em; opacity: .55; }
.hero-seal {
  position: absolute;
  z-index: 2;
  right: clamp(2rem, 6vw, 7rem);
  top: 50%;
  display: grid;
  place-items: center;
  width: 172px;
  height: 172px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  transform: translateY(-15%);
  backdrop-filter: blur(6px);
  background: rgba(10,14,11,.13);
}
.hero-seal::before, .hero-seal::after { content: ""; position: absolute; background: rgba(255,255,255,.3); }
.hero-seal::before { width: 216px; height: 1px; }
.hero-seal::after { width: 1px; height: 216px; }
.hero-seal img { width: 58px; position: relative; z-index: 1; }
.hero-seal p { position: absolute; inset: -28px; margin: 0; animation: seal-spin 30s linear infinite; }
.hero-seal span { position: absolute; left: 50%; top: 50%; font: 600 .53rem/1 var(--body); letter-spacing: .18em; text-transform: uppercase; }
.hero-seal span:nth-child(1) { transform: translate(-50%,-50%) rotate(0deg) translateY(-96px); }
.hero-seal span:nth-child(2) { transform: translate(-50%,-50%) rotate(120deg) translateY(-96px); }
.hero-seal span:nth-child(3) { transform: translate(-50%,-50%) rotate(240deg) translateY(-96px); }
@keyframes seal-spin { to { transform: rotate(360deg); } }
.scroll-cue { position: absolute; z-index: 2; left: clamp(1.25rem, 4vw, 4.5rem); bottom: 2rem; display: flex; align-items: center; gap: .7rem; color: white; text-decoration: none; font: 600 .61rem/1 var(--body); letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue span { display: block; width: 42px; height: 1px; background: white; }

.news-section { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 7rem); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; max-width: 1380px; margin: 0 auto 3.5rem; }
.section-heading h2, .corridor-intro h2, .join-section h2 { margin: 0; font: 400 clamp(3rem, 6vw, 6rem)/.94 var(--display); letter-spacing: -.04em; }
.section-link { padding-bottom: .5rem; border-bottom: 1px solid currentColor; text-decoration: none; font: 600 .7rem/1 var(--body); letter-spacing: .12em; text-transform: uppercase; }
.news-slider { max-width: 1380px; margin: auto; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.slides { position: relative; min-height: 550px; }
.news-slide { position: absolute; inset: 0; display: grid; grid-template-columns: minmax(300px, .75fr) 1.25fr; gap: clamp(2rem, 6vw, 7rem); padding: 2.5rem 0; opacity: 0; visibility: hidden; transform: translateX(18px); transition: opacity .55s ease, transform .55s ease, visibility .55s; }
.news-slide.is-active { opacity: 1; visibility: visible; transform: translateX(0); }
.slide-art { position: relative; overflow: hidden; background: #d4d0c4; }
.slide-art img { width: 100%; height: 100%; object-fit: cover; object-position: top; filter: saturate(.82) contrast(1.04); }
.issue-stamp { position: absolute; left: 0; bottom: 0; padding: .8rem 1rem; color: white; background: var(--rust); font: 700 .65rem/1 var(--body); letter-spacing: .1em; text-transform: uppercase; }
.slide-copy { align-self: center; max-width: 790px; }
.story-meta { margin: 0 0 1.4rem; color: var(--rust); font: 700 .7rem/1 var(--body); letter-spacing: .15em; text-transform: uppercase; }
.slide-copy h3 { margin: 0; font: 400 clamp(2.4rem, 4vw, 4.7rem)/.98 var(--display); letter-spacing: -.035em; }
.slide-copy > p:not(.story-meta) { max-width: 640px; margin: 1.6rem 0; color: #55584f; line-height: 1.75; }
.slide-copy a { font: 700 .72rem/1 var(--body); letter-spacing: .1em; text-transform: uppercase; text-decoration: none; }
.slide-copy a span { margin-left: .5rem; color: var(--rust); }
.slider-controls { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-top: 1px solid var(--line); }
.slider-controls p { margin: 0; font: 600 .7rem/1 var(--body); letter-spacing: .12em; }
.slider-button { width: 48px; height: 48px; margin-left: .35rem; border: 1px solid var(--ink); background: transparent; cursor: pointer; transition: background .2s, color .2s; }
.slider-button:hover { color: white; background: var(--ink); }

.corridor-section { position: relative; overflow: hidden; padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 7rem); color: white; background: var(--pine); }
.corridor-intro { display: grid; grid-template-columns: 1fr 1.2fr; column-gap: clamp(2rem, 8vw, 10rem); max-width: 1380px; margin: auto; }
.corridor-intro .eyebrow { grid-column: 1 / -1; }
.corridor-intro p:last-child { max-width: 520px; margin: .5rem 0 0; color: rgba(255,255,255,.68); line-height: 1.8; }
.corridor-map { max-width: 1380px; margin: 4.5rem auto 0; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 35px 90px rgba(0,0,0,.22); }
.corridor-map img { width: 100%; height: auto; }
.route { position: relative; display: grid; grid-template-columns: repeat(8, 1fr); max-width: 1380px; margin: 6rem auto 0; }
.route-line { position: absolute; top: 16px; left: 1%; right: 1%; height: 1px; background: rgba(255,255,255,.3); }
.route-stop { position: relative; display: grid; padding-top: 3.4rem; color: white; text-decoration: none; }
.route-stop::before { content: ""; position: absolute; top: 11px; left: 0; width: 11px; height: 11px; border: 1px solid var(--gold); border-radius: 50%; background: var(--pine); transition: background .2s, transform .2s; }
.route-stop.live::before { background: var(--gold); box-shadow: 0 0 0 5px rgba(215,169,69,.15); }
.route-stop:hover::before { background: white; transform: scale(1.35); }
.route-stop span { color: var(--gold); font: 600 .62rem/1 var(--body); letter-spacing: .14em; }
.route-stop strong { margin-top: .65rem; font: 500 1.25rem/1 var(--condensed); text-transform: uppercase; letter-spacing: .04em; }
.route-stop small { margin-top: .4rem; color: rgba(255,255,255,.5); font-size: .65rem; }
.route-note { display: flex; align-items: center; gap: .55rem; max-width: 1380px; margin: 3rem auto 0; color: rgba(255,255,255,.54); font-size: .68rem; }
.route-note i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

.channels-section { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 7rem); color: white; background: var(--night); }
.light-heading p:last-child { max-width: 440px; margin: 0; color: rgba(255,255,255,.58); line-height: 1.7; }
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1380px; margin: auto; border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.channel { position: relative; min-height: 290px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; overflow: hidden; color: white; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); text-decoration: none; transition: background .25s; }
.channel::before {
  content: attr(data-art);
  position: absolute;
  right: -1.1rem;
  bottom: -1.7rem;
  color: rgba(255,255,255,.045);
  font: 700 clamp(6rem, 10vw, 10.5rem)/.8 var(--condensed);
  letter-spacing: -.08em;
  transition: color .3s, transform .5s;
}
.channel:hover::before { color: rgba(215,169,69,.13); transform: translate(-.5rem,-.3rem); }
.channel:hover { background: var(--pine); }
.channel-number { position: relative; z-index: 2; color: var(--gold); font: 600 .65rem/1 var(--body); letter-spacing: .15em; }
.channel div { position: relative; z-index: 2; }
.channel small { color: rgba(255,255,255,.55); font: 600 .65rem/1 var(--body); letter-spacing: .14em; text-transform: uppercase; }
.channel h3 { margin: .55rem 0 0; font: 400 clamp(2rem, 3vw, 3.2rem)/1 var(--display); }
.channel p { max-width: 360px; margin: .8rem 0 0; color: rgba(255,255,255,.62); font-size: .82rem; line-height: 1.6; }
.channel b { position: absolute; right: 1.5rem; top: 1.4rem; font-weight: 400; color: rgba(255,255,255,.5); }
.channel-large { grid-column: span 2; background: linear-gradient(110deg, #1b4938, #17382b 50%, #0f211b); }
.channel-photo { grid-column: span 2; }
.channel-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; filter: grayscale(.25); transition: transform .8s; }
.channel-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,14,11,.88), rgba(10,14,11,.25)); }
.channel-photo::before { z-index: 2; color: rgba(255,255,255,.11); }
.channel-photo:hover img { transform: scale(1.04); }

.join-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 9rem); padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 8vw, 9rem); background: var(--gold); }
.join-copy { align-self: end; }
.join-copy > p { max-width: 560px; margin: 0; line-height: 1.8; }
.join-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.button-dark { color: white; background: var(--night); }
.dark-link { color: var(--night); }
.dark-link span { color: var(--rust); }

footer { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 3rem; padding: 4rem clamp(1.25rem, 6vw, 7rem); color: white; background: var(--night); border-top: 1px solid rgba(255,255,255,.15); }
.footer-brand strong { font: 400 1.8rem/1 var(--display); }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.5); font-size: .75rem; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; align-content: start; }
.footer-links a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .72rem; }
.copyright { align-self: end; color: rgba(255,255,255,.4); font-size: .62rem; }

@media (max-width: 900px) {
  .site-header { height: 82px; }
  nav { position: absolute; top: 82px; left: 0; right: 0; display: none; padding: 1.5rem; background: var(--night); }
  .menu-open nav { display: grid; }
  .menu-button { display: block; }
  .hero { min-height: 700px; }
  .hero-copy { left: 1.25rem; right: 1.25rem; bottom: 8rem; }
  .hero h1 { font-size: clamp(4.2rem, 17vw, 6.7rem); }
  .hero-seal { display: none; }
  .hero-deck { max-width: 500px; }
  .news-slide { grid-template-columns: .7fr 1.3fr; gap: 2rem; }
  .corridor-intro, .join-section { grid-template-columns: 1fr; }
  .corridor-intro p:last-child { margin-top: 2rem; }
  .route { grid-template-columns: repeat(4, 1fr); row-gap: 3.5rem; }
  .route-line { display: none; }
  .route-stop { padding-top: 2rem; }
  .route-stop::before { top: 0; }
  .channel-grid { grid-template-columns: repeat(2, 1fr); }
  footer { grid-template-columns: 1fr 1fr; }
  .copyright { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .brand-type small { display: none; }
  .site-header { padding: 0 1rem; }
  .hero { height: 92svh; min-height: 650px; }
  .hero-shade { background: linear-gradient(180deg, rgba(8,12,9,.3), rgba(8,12,9,.82)); }
  .hero-copy { bottom: 7.5rem; }
  .hero h1 { font-size: clamp(3.7rem, 19vw, 5.2rem); line-height: .88; }
  .hero-deck { margin-top: 1.25rem; font-size: .92rem; line-height: 1.55; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
  .hero-index { display: none; }
  .news-section, .corridor-section, .channels-section { padding-left: 1rem; padding-right: 1rem; }
  .section-heading { display: block; margin-bottom: 2rem; }
  .section-link { display: inline-block; margin-top: 1.5rem; }
  .slides { min-height: 680px; }
  .news-slide { grid-template-columns: 1fr; grid-template-rows: 270px 1fr; gap: 1.6rem; padding: 1rem 0 2rem; }
  .slide-copy h3 { font-size: 2.5rem; }
  .slide-copy > p:not(.story-meta) { font-size: .84rem; line-height: 1.65; }
  .route { display: flex; overflow-x: auto; gap: 0; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
  .corridor-map { margin-top: 3rem; overflow: hidden; }
  .corridor-map img { width: 920px; max-width: none; transform: translateX(-170px); }
  .route-stop { min-width: 155px; scroll-snap-align: start; }
  .route::before { content: ""; position: absolute; left: 0; right: -700px; top: 5px; height: 1px; background: rgba(255,255,255,.3); }
  .channel-grid { grid-template-columns: 1fr; }
  .channel, .channel-large, .channel-photo { grid-column: auto; min-height: 230px; }
  .light-heading p:last-child { margin-top: 1.5rem; }
  .join-section { padding: 5rem 1rem; }
  .join-actions { align-items: flex-start; flex-direction: column; }
  footer { grid-template-columns: 1fr; padding: 3rem 1rem; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero iframe { display: none; }
  .hero { background: linear-gradient(140deg, #17382b, #10130f); }
}
