:root {
    --stock:    #050f24;
    --stock-hi: #0a1830;
    --stock-lo: #142542;
    --ink:      #ece7d9;
    --ink-mid:  #93a1bd;
    --ink-soft: #64738f;
    --hazard:   #f0b429;
    --alarm:    #e05a45;
    --rule:     #22355c;

    --display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
    --body: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--stock);
    color: var(--ink);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

.sheet { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

.rule       { border-top: 4px solid var(--rule); }
.rule-thin  { border-top: 1px solid var(--rule); }

h1, h2, h3, .display {
    font-family: var(--display);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.88;
    letter-spacing: 0.005em;
}

.mark {
    position: relative;
    display: inline-block;
    isolation: isolate;
    color: #0b1a33;
}
.mark::before {
    content: '';
    position: absolute;
    top: 0.02em; bottom: 0.04em; left: -0.09em; right: -0.09em;
    background: var(--hazard);
    z-index: -1;
    transform-origin: left center;
}

.stamp {
    display: inline-block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px 3px;
    background: var(--hazard);
    color: #10203c;
}

.caption {
    font-family: var(--body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-mid);
}

.masthead {
    background: rgba(5, 15, 36, 0.92);
    backdrop-filter: none;
    border-bottom: 1px solid var(--rule);
    color: var(--ink);
    position: sticky;
    top: 0;
    z-index: 100;
}
.masthead-in {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.wordmark {
    display: flex;
    align-items: baseline;
    gap: 14px;
    min-width: 0;
}
.wordmark b {
    font-family: var(--display);
    font-weight: 900;
    font-size: 30px;
    letter-spacing: 0.06em;
    line-height: 1;
}
.wordmark span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    white-space: nowrap;
}
@media (max-width: 1080px) { .wordmark span { display: none; } }
.masthead nav { display: flex; gap: 24px; flex: none; }
.masthead nav a {
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-mid);
    padding: 4px 0;
    border-bottom: 3px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
.masthead nav a:hover { color: var(--hazard); border-bottom-color: var(--hazard); }
.burger { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 4px; }
@media (max-width: 900px) {
    .masthead nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--stock);
        padding: 8px 32px 20px;
    }
    .masthead nav.open { display: flex; }
    .masthead nav a { padding: 12px 0; border-bottom: 1px solid var(--rule); }
    .burger { display: block; }
    .wordmark span { display: none; }
}

.hero {
    position: relative;
    padding: 96px 0 78px;
    overflow: hidden;
    min-height: min(90vh, 900px);
    display: flex;
    align-items: flex-end;
}
.hero > .sheet { width: 100%; }
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--stock) url('/videos/hero-poster.jpg') 62% center / cover no-repeat;
}
.hero-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
}
.hero-toggle {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(236, 231, 217, 0.45);
    background: rgba(5, 15, 36, 0.55);
    color: var(--ink);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.hero-toggle:hover { background: rgba(5, 15, 36, 0.85); border-color: var(--ink); }
.hero-toggle svg { width: 18px; height: 18px; }
.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--stock) 0%, rgba(5, 15, 36, 0.92) 34%, rgba(5, 15, 36, 0.18) 68%, rgba(5, 15, 36, 0.30) 100%),
        linear-gradient(0deg, var(--stock) 2%, rgba(5, 15, 36, 0) 52%);
}
.hero > .sheet { position: relative; z-index: 1; }
@media (max-width: 900px) {
    .hero-toggle { top: 16px; bottom: auto; right: 16px; }
    .hero-media::after {
        background: linear-gradient(0deg, var(--stock) 20%, rgba(5, 15, 36, 0.5) 100%);
    }
}
.hero-kicker { margin-bottom: 26px; }
.hero h1 {
    font-size: clamp(58px, 10.5vw, 148px);
    font-weight: 900;
    margin-bottom: 30px;
}
.hero h1 .line2 { display: block; margin-top: 0.06em; }
.hero-lede {
    font-size: 21px;
    line-height: 1.45;
    max-width: 33ch;
    margin-bottom: 34px;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
    gap: 56px;
    align-items: end;
}
.hero-aside {
    border-left: 4px solid var(--hazard);
    padding-left: 22px;
}
.hero-aside p { font-size: 16px; line-height: 1.5; margin-bottom: 14px; }
.hero-aside p:last-child { margin-bottom: 0; }
.hero-aside strong { font-weight: 700; }
@media (max-width: 900px) {
    .hero { padding: 56px 0 44px; min-height: 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 34px; }
    .hero-aside { border-left: 0; border-top: 4px solid var(--hazard); padding-left: 0; padding-top: 20px; }
    .hero-lede { font-size: 19px; max-width: none; }
}

.stores { display: flex; flex-wrap: wrap; gap: 12px; }
.store {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 13px 20px;
    background: var(--stock-hi);
    border: 1px solid var(--rule);
    color: var(--ink);
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.store:hover { background: var(--hazard); border-color: var(--hazard); color: #10203c; }
.store svg { width: 22px; height: 22px; fill: currentColor; flex: none; }
.store i { font-style: normal; display: block; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.72; }
.store b { display: block; font-size: 16px; font-weight: 700; line-height: 1.15; }

.band { padding: 70px 0; }
.band-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding-top: 14px;
    margin-bottom: 44px;
}
.band-head h2 { font-size: clamp(34px, 4.6vw, 60px); }
.band-head .caption { flex: none; }
@media (max-width: 700px) {
    .band { padding: 48px 0; }
    .band-head { flex-direction: column; gap: 10px; margin-bottom: 30px; }
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step {
    padding: 22px 22px 26px;
    border-left: 1px solid var(--rule);
}
.step:first-child { border-left: 4px solid var(--hazard); }
.step-n {
    font-family: var(--display);
    font-weight: 900;
    font-size: 62px;
    line-height: 0.8;
    margin-bottom: 16px;
}
.step h3 { font-size: 25px; margin-bottom: 8px; }
.step p { font-size: 15px; line-height: 1.5; color: var(--ink-mid); }
@media (max-width: 900px) {
    .steps { grid-template-columns: 1fr 1fr; }
    .step:nth-child(3) { border-left: 4px solid var(--hazard); }
    .step:nth-child(3), .step:nth-child(4) { border-top: 1px solid var(--rule); }
}
@media (max-width: 560px) {
    .steps { grid-template-columns: 1fr; }
    .step { border-left: 4px solid var(--hazard); border-top: 1px solid var(--rule); }
    .step:first-child { border-top: 0; }
}

.reels { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.reel { position: relative; aspect-ratio: 9 / 16; background: #000; border: 1px solid var(--rule); overflow: hidden; }
.reel video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.reel::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 38%;
    background: linear-gradient(0deg, rgba(5, 15, 36, 0.88), rgba(5, 15, 36, 0));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.reel-play {
    position: absolute;
    left: 50%; top: 50%;
    z-index: 3;
    width: 68px; height: 68px;
    margin: -34px 0 0 -34px;
    display: flex; align-items: center; justify-content: center;
    border: 0;
    background: var(--hazard);
    color: #0b1a33;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    transition: transform 0.15s, opacity 0.2s, background 0.15s;
}
.reel-play:hover { transform: scale(1.06); background: #ffc94d; }
.reel-play svg { width: 28px; height: 28px; margin-left: 3px; }
.reel-bar {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    padding: 0 8px 8px;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
}
.reel-row { display: flex; align-items: center; gap: 2px; margin-top: 4px; }
.reel-btn {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    padding: 0; border: 0; background: none;
    color: var(--ink);
    cursor: pointer;
}
.reel-btn:hover { color: var(--hazard); }
.reel-btn svg { width: 20px; height: 20px; }
.reel-time { margin-right: auto; padding-left: 4px; font-size: 12px; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--ink-mid); }
.reel-seek {
    -webkit-appearance: none;
    appearance: none;
    display: block;
    width: calc(100% - 8px);
    height: 4px;
    margin: 0 4px;
    background: linear-gradient(90deg, var(--hazard) var(--p, 0%), rgba(236, 231, 217, 0.28) var(--p, 0%));
    cursor: pointer;
}
.reel-seek::-webkit-slider-thumb { -webkit-appearance: none; width: 12px; height: 12px; border: 0; background: var(--hazard); }
.reel-seek::-moz-range-thumb { width: 12px; height: 12px; border: 0; border-radius: 0; background: var(--hazard); }
.reel-spin {
    position: absolute;
    left: 50%; top: 50%;
    z-index: 3;
    width: 36px; height: 36px;
    margin: -18px 0 0 -18px;
    border: 3px solid rgba(236, 231, 217, 0.25);
    border-top-color: var(--hazard);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: reel-spin 0.8s linear infinite;
}
@keyframes reel-spin { to { transform: rotate(360deg); } }
.reel.started::after, .reel.started .reel-bar { opacity: 1; }
.reel.started .reel-bar { transform: none; pointer-events: auto; }
.reel.playing .reel-play { opacity: 0; transform: scale(0.9); pointer-events: none; }
.reel.playing.idle::after, .reel.playing.idle .reel-bar { opacity: 0; pointer-events: none; }
.reel.playing.idle { cursor: none; }
.reel.waiting .reel-spin { opacity: 1; }
.reel:fullscreen { aspect-ratio: auto; border: 0; }
.reel:fullscreen video { object-fit: contain; }
@media (max-width: 1000px) { .reels { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) {
    .reels { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; margin-right: -32px; padding-right: 32px; }
    .reel { flex: 0 0 72%; scroll-snap-align: start; }
}
@media (prefers-reduced-motion: reduce) { .reel-spin { animation-duration: 2s; } }
.plates { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.plate figure { background: var(--stock-hi); border: 1px solid var(--rule); padding: 12px 12px 0; }
.plate img { width: 100%; }
.plate figcaption {
    margin-top: 12px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
}
.plate figcaption em {
    font-family: var(--display);
    font-style: normal;
    font-weight: 900;
    font-size: 19px;
}
@media (max-width: 900px) { .plates { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (max-width: 520px) { .plates { grid-template-columns: 1fr; } }

.stations { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 520px); gap: 40px; align-items: start; }
table.roster { width: 100%; border-collapse: collapse; }
table.roster th {
    text-align: left;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-mid);
    padding: 0 10px 8px 0;
    border-bottom: 3px solid var(--rule);
}
table.roster td {
    padding: 13px 10px 13px 0;
    border-bottom: 1px solid var(--rule);
    vertical-align: baseline;
}
table.roster tr { cursor: pointer; }
table.roster tr:hover td, table.roster tr.on td { background: var(--stock-hi); }
table.roster tr.on td:first-child { box-shadow: inset 4px 0 0 var(--hazard); }
.st-n { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--ink-soft); width: 44px; padding-left: 8px !important; }
.st-name { font-family: var(--display); font-weight: 800; font-size: 24px; line-height: 1; text-transform: uppercase; }
.st-co { font-variant-numeric: tabular-nums; font-size: 14px; color: var(--ink-mid); white-space: nowrap; }
#map { height: 470px; border: 1px solid var(--rule); background: var(--stock-hi); }
@media (max-width: 980px) {
    .stations { grid-template-columns: 1fr; gap: 28px; }
    #map { height: 340px; }
    .st-co { display: none; }
    table.roster th.co { display: none; }
}

.roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.role { padding: 24px 24px 28px; border-left: 1px solid var(--rule); }
.role:first-child { border-left: 4px solid var(--hazard); }
.role h3 { font-size: 34px; margin-bottom: 10px; }
.role p { font-size: 15px; line-height: 1.5; color: var(--ink-mid); }
.roles-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-top: 34px; }
.roles-foot p { max-width: 54ch; font-size: 16px; }
@media (max-width: 780px) {
    .roles { grid-template-columns: 1fr; }
    .role { border-left: 4px solid var(--hazard); border-top: 1px solid var(--rule); }
    .role:first-child { border-top: 0; }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 19px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 13px 26px 11px;
    background: var(--hazard);
    color: #10203c;
    border: 0;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.btn:hover { background: var(--ink); color: var(--stock); }
.btn-hazard { background: var(--hazard); color: #10203c; }
.btn-hazard:hover { background: var(--ink); color: var(--stock); }

.contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 540px); gap: 56px; align-items: start; }
.contact-copy p { margin-bottom: 16px; max-width: 46ch; }
.contact-copy .note { border-left: 4px solid var(--hazard); padding-left: 18px; font-size: 16px; }
form .f { margin-bottom: 20px; }
form label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-mid);
    margin-bottom: 5px;
}
form select option { background: var(--stock-hi); color: var(--ink); }
form input, form select, form textarea {
    width: 100%;
    padding: 9px 2px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--rule);
    font-size: 17px;
    outline: none;
}
form input:focus, form select:focus, form textarea:focus { border-bottom-color: var(--hazard); }
form input::placeholder, form textarea::placeholder { color: var(--ink-soft); }
form textarea { min-height: 96px; resize: vertical; }
.base-only { display: none; }
.base-only.show { display: block; }
.err { display: none; color: var(--alarm); font-size: 13px; font-weight: 700; margin-top: 8px; }
.cap { margin: 22px 0; }
.sent { display: none; border: 1px solid var(--rule); background: var(--stock-hi); padding: 34px; }
.sent h3 { font-size: 34px; margin-bottom: 10px; }
@media (max-width: 980px) { .contact { grid-template-columns: 1fr; gap: 34px; } }

footer { background: #030a18; border-top: 1px solid var(--rule); color: var(--ink); margin-top: 70px; padding: 54px 0 28px; }
.f-top { display: grid; grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr)); gap: 40px; }
.f-top img { height: 40px; width: auto; margin-bottom: 16px; }
.f-top .blurb { font-size: 14px; color: var(--ink-soft); max-width: 42ch; line-height: 1.55; }
.f-col h4 {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    padding-bottom: 8px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--rule);
}
.f-col a { display: block; padding: 5px 0; font-size: 14px; color: var(--ink-mid); }
.f-col a:hover { color: var(--hazard); }
.f-bot {
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
@media (max-width: 780px) { .f-top { grid-template-columns: 1fr 1fr; } .f-top > div:first-child { grid-column: 1 / -1; } }
.sister { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; padding: 8px 13px; border: 1px solid var(--rule); border-radius: 9px; text-decoration: none; transition: border-color .15s ease; }
.sister:hover { border-color: var(--hazard); }
.f-top .sister img { height: 24px; width: 24px; margin: 0; border-radius: 6px; }
.sister .st { display: flex; flex-direction: column; line-height: 1.25; }
.sister .st b { font-size: 13px; color: var(--ink); font-weight: 600; }
.sister .st span { font-size: 11px; color: var(--ink-soft); text-transform: none; letter-spacing: 0; }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.to-top {
    position: fixed;
    right: 24px;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: var(--hazard);
    color: #0b1a33;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s, background 0.15s;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: #ffc94d; }
.to-top svg { width: 22px; height: 22px; }
@media (max-width: 900px) { .to-top { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); } }
@media (prefers-reduced-motion: reduce) { .to-top { transition: none; } }
:focus-visible { outline: 3px solid var(--alarm); outline-offset: 2px; }

.leaflet-container { background: #e5e7eb !important; font-family: 'Public Sans', sans-serif !important; }
.leaflet-tile { filter: grayscale(0.35) brightness(0.99); }
.leaflet-popup-content-wrapper {
    background: #f0b429 !important; color: #0b1a33 !important;
    border-radius: 0 !important; box-shadow: none !important;
    font-family: 'Big Shoulders Display', sans-serif !important;
    font-weight: 800 !important; font-size: 17px !important; text-transform: uppercase;
}
.leaflet-popup-content { margin: 7px 13px !important; }
.leaflet-popup-tip { background: #f0b429 !important; box-shadow: none !important; }
.leaflet-popup-close-button { color: #0b1a33 !important; }
.leaflet-control-zoom { border: 1px solid #22355c !important; border-radius: 0 !important; }
.leaflet-control-zoom a {
    background: #0a1830 !important; color: #93a1bd !important;
    border-radius: 0 !important; border-bottom: 1px solid #22355c !important;
}
.leaflet-control-zoom a:hover { background: #f0b429 !important; color: #0b1a33 !important; }

.stations-note { margin-top: 18px; font-size: 15px; color: var(--ink-mid); max-width: 52ch; }
.map-pin { width: 13px; height: 13px; background: #f0b429; border: 2px solid #050f24; }
