@font-face {
  font-family: "Noto Body";
  src: url("assets/fonts/body.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Body";
  src: url("assets/fonts/body-bold.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Display";
  src: url("assets/fonts/display.ttf") format("truetype");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --canvas: #0b0b0c;
  --surface: #171719;
  --paper: #f6f1e8;
  --ink: #f6f1e8;
  --muted: #b8b3aa;
  --red: #e1282d;
  --rule: #3b3a3c;
  --focus: #ffd166;
  --gutter: clamp(1.15rem, 4vw, 4rem);
  --rail: 1180px;
  --header-height: 4.6rem;
  background: var(--canvas);
  font-family: "Noto Body", Arial, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--canvas); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-size: clamp(1rem, .32vw + .93rem, 1.16rem);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .2em; text-decoration-thickness: .08em; }
a:hover { text-decoration-thickness: .14em; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed; z-index: 100; inset: 0 auto auto 0; padding: .8rem 1rem;
  background: var(--focus); color: #111; transform: translateY(-120%);
}
.skip-link:focus { transform: translateY(0); }

.concept-bar {
  min-height: 2.5rem; display: grid; place-items: center; padding: .58rem var(--gutter);
  background: var(--red); color: #fff; text-align: center; text-transform: uppercase;
  font-size: .68rem; font-weight: 800; letter-spacing: .115em; line-height: 1.3;
}
.concept-bar p { margin: 0; }

.site-header {
  position: absolute; z-index: 20; top: 2.5rem; left: 0; right: 0; min-height: var(--header-height);
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding: .8rem var(--gutter); border-bottom: 1px solid rgba(255,255,255,.3); color: #fff;
}
.wordmark { display: inline-flex; align-items: center; gap: .75rem; font-size: .86rem; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.wordmark b { color: #fff; }
.mark-stripe { width: .55rem; height: 2rem; display: block; background: var(--red); box-shadow: .75rem 0 0 rgba(255,255,255,.88); transform: skewX(-12deg); margin-right: .75rem; }
.site-header nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(.75rem, 2.1vw, 2rem); font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.site-header nav a { min-height: 44px; display: inline-flex; align-items: center; text-decoration: none; }
.site-header nav .nav-secondary:hover, .site-header nav .nav-secondary:focus-visible { text-decoration: underline; }
.nav-call { padding: .55rem .78rem; background: var(--red); border: 1px solid var(--red); }
.nav-call span { margin-left: .45rem; }

.opening { position: relative; min-height: calc(94svh - 2.5rem); display: grid; align-items: end; overflow: hidden; isolation: isolate; background: #111; }
.opening-media, .opening-scrim { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; }
.opening-media { object-fit: cover; object-position: 50% 57%; filter: saturate(.68) contrast(1.18); }
.opening-scrim { z-index: -1; background: linear-gradient(90deg, rgba(6,6,7,.88) 0%, rgba(6,6,7,.4) 55%, rgba(6,6,7,.5) 100%), linear-gradient(0deg, rgba(6,6,7,.78) 0%, transparent 62%); }
.opening-content { width: min(var(--rail), calc(100% - 2 * var(--gutter))); margin: 0 auto; padding: calc(var(--header-height) + 4rem) 0 clamp(6rem, 9vw, 8rem); display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(17rem, .65fr); gap: clamp(2rem, 7vw, 7rem); align-items: end; }
h1, h2 { margin: 0; font-family: "Noto Display", Impact, sans-serif; font-weight: 900; letter-spacing: -.055em; line-height: .86; text-transform: uppercase; }
h1 { max-width: 9ch; font-size: clamp(4.8rem, 12.5vw, 11.2rem); text-shadow: 0 .08em .45em rgba(0,0,0,.35); }
h1 em, h2 em { color: var(--red); font-style: normal; }
.opening-copy { padding-bottom: .35rem; }
.opening-copy > p:first-child { max-width: 19ch; margin: 0 0 1.1rem; font-size: clamp(1.45rem, 2vw, 2.35rem); font-weight: 700; line-height: 1.06; }
.opening-context { max-width: 36ch; margin: 0 0 1.6rem; color: rgba(255,255,255,.8); font-size: .94rem; }
.primary-link { min-height: 48px; display: inline-flex; align-items: center; justify-content: space-between; gap: 2rem; padding: .72rem .1rem; border-bottom: 2px solid currentColor; font-size: .74rem; font-weight: 900; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.primary-link span { transition: transform 150ms ease; }
.primary-link:hover span { transform: translate(.15rem,-.15rem); }
.media-note { z-index: 5; margin: 0; color: rgba(255,255,255,.72); font-size: .6rem; font-weight: 800; letter-spacing: .075em; line-height: 1.4; text-transform: uppercase; }
.opening-note { position: absolute; right: var(--gutter); bottom: 1rem; max-width: 40rem; text-align: right; }

.verified { width: min(var(--rail), calc(100% - 2 * var(--gutter))); margin: 0 auto; padding: clamp(5.5rem, 10vw, 9rem) 0; }
.verified-intro { display: grid; grid-template-columns: .55fr 1.25fr .72fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: start; margin-bottom: clamp(3.5rem, 7vw, 6.5rem); }
.section-label { margin: .25rem 0 0; font-size: .68rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.section-label::before { content: ""; width: 2.8rem; height: .22rem; display: block; margin-bottom: .8rem; background: var(--red); }
.verified h2, .detail-intro h2 { font-size: clamp(3.1rem, 6vw, 6.6rem); line-height: .92; }
.verified-intro > p:last-child, .detail-intro > p:last-child { margin: .2rem 0 0; color: var(--muted); font-size: .93rem; }
.fact-ledger { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--rule); }
.fact-ledger article { min-height: 23rem; display: flex; flex-direction: column; padding: clamp(1.4rem, 3vw, 2.6rem); background: var(--surface); border-right: 1px solid var(--rule); }
.fact-ledger article:nth-child(2) { background: var(--paper); color: #111; }
.fact-ledger article:last-child { border-right: 0; }
.fact-ledger article > span { width: 3.1rem; height: 3.1rem; display: grid; place-items: center; margin-bottom: auto; background: var(--red); color: #fff; font-size: .68rem; font-weight: 900; }
.fact-ledger h3 { margin: 4rem 0 .8rem; font-size: clamp(1.5rem, 2.5vw, 2.5rem); line-height: 1; text-transform: uppercase; }
.fact-ledger p { margin: 0 0 1.2rem; font-size: clamp(1.1rem, 1.3vw, 1.35rem); font-weight: 700; }
.fact-ledger small { margin-top: auto; color: var(--muted); }
.fact-ledger article:nth-child(2) small { color: #595756; }
.fact-ledger article > a { min-height: 44px; display: inline-flex; align-items: center; margin-top: auto; font-size: .72rem; font-weight: 900; text-transform: uppercase; }

.scroll-scene { position: relative; min-height: 96svh; background: #101011; color: #fff; }
.scroll-scene.is-enhanced { height: 330svh; }
.scroll-stage { position: relative; min-height: 96svh; display: grid; overflow: hidden; isolation: isolate; background: #101011; }
.is-enhanced .scroll-stage { position: sticky; top: 0; height: 100svh; min-height: 0; }
.scroll-video, .scroll-shade { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; }
.scroll-video { object-fit: cover; object-position: 50% 50%; }
.scroll-shade { z-index: -1; background: linear-gradient(90deg, rgba(7,7,8,.9) 0%, rgba(7,7,8,.55) 48%, rgba(7,7,8,.48) 100%), linear-gradient(0deg, rgba(7,7,8,.62), transparent 55%); }
.scene-copy { width: min(var(--rail), calc(100% - 2 * var(--gutter))); min-height: 96svh; margin: 0 auto; padding: clamp(5rem, 9vw, 8rem) 0 clamp(5rem, 8vw, 7rem); display: grid; grid-template-columns: 1.25fr .68fr; gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.scene-heading h2 { max-width: 9ch; font-size: clamp(3.8rem, 8.2vw, 8.5rem); }
.light-label { color: rgba(255,255,255,.74); }
.scene-panels { min-height: 20rem; display: grid; align-items: end; }
.scene-panel { grid-area: 1/1; padding: 1.5rem 0 1.5rem 1.4rem; border-left: .32rem solid var(--red); }
.scene-panel > span { font-size: .66rem; font-weight: 900; letter-spacing: .14em; }
.scene-panel h3 { max-width: 13ch; margin: 2.7rem 0 .85rem; font-size: clamp(2rem, 3.5vw, 3.65rem); line-height: .95; text-transform: uppercase; }
.scene-panel p { max-width: 31ch; margin: 0; color: rgba(255,255,255,.78); }
.motion-card { position: absolute; z-index: 6; left: var(--gutter); bottom: 4.8rem; max-width: 28rem; padding: .9rem 1rem; background: rgba(11,11,12,.9); border-left: .25rem solid var(--focus); }
.motion-card p { margin: 0 0 .65rem; font-size: .82rem; }
.motion-card button { min-height: 44px; padding: .55rem .8rem; border: 1px solid var(--focus); background: var(--focus); color: #111; font: 800 .72rem "Noto Body", sans-serif; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.scene-progress { position: absolute; z-index: 5; left: 0; right: 0; bottom: 0; height: .42rem; background: rgba(255,255,255,.2); }
.scene-progress span { width: 100%; height: 100%; display: block; background: var(--red); transform: scaleX(0); transform-origin: left center; }
.conceptual-note { position: absolute; z-index: 6; right: var(--gutter); bottom: 1.05rem; max-width: 48rem; text-align: right; }

.detail-section { width: min(var(--rail), calc(100% - 2 * var(--gutter))); margin: 0 auto; padding: clamp(6rem, 11vw, 10rem) 0; }
.detail-intro { display: grid; grid-template-columns: .55fr 1.3fr .68fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: start; margin-bottom: clamp(3.2rem, 7vw, 6rem); }
.detail-card { position: relative; min-height: min(72svh, 52rem); overflow: hidden; background: var(--surface); border: 1px solid var(--rule); }
.detail-card > img { width: 100%; height: 100%; min-height: min(72svh, 52rem); object-fit: cover; filter: saturate(.72) contrast(1.08); }
.prep-overlay { position: absolute; inset: auto 0 0; min-height: 56%; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.5rem, 4vw, 4rem); background: linear-gradient(0deg, rgba(8,8,9,.98) 0%, rgba(8,8,9,.94) 68%, rgba(8,8,9,.25) 100%); color: #fff; }
.js .prep-overlay { transform: translateY(calc(100% - 5.5rem)); transition: transform 360ms cubic-bezier(.2,.8,.2,1); }
.js .detail-card[data-overlay-state="pointer-active"] .prep-overlay,
.js .detail-card[data-overlay-state="keyboard-active"] .prep-overlay,
.js .detail-card[data-overlay-state="touch-persistent"] .prep-overlay,
.detail-card:focus-within .prep-overlay { transform: none; }
.overlay-kicker { margin: 0 0 .6rem; color: var(--focus); font-size: .68rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.prep-overlay h3 { margin: 0 0 .9rem; font-size: clamp(2rem, 4vw, 4.7rem); line-height: .95; text-transform: uppercase; }
.prep-overlay > p:not(.overlay-kicker):not(.overlay-credit) { max-width: 48ch; margin: 0 0 1.1rem; color: rgba(255,255,255,.78); }
.prep-overlay .primary-link { width: fit-content; }
.overlay-credit { margin: 1.1rem 0 0; color: rgba(255,255,255,.6); font-size: .66rem; }

.contact { display: grid; grid-template-columns: 1.2fr .7fr; gap: clamp(2rem, 8vw, 8rem); padding: clamp(6rem, 10vw, 10rem) max(var(--gutter), calc((100% - var(--rail))/2)); background: var(--red); color: #fff; }
.contact h2 { max-width: 8ch; font-size: clamp(4rem, 8.5vw, 9rem); }
.contact h2 em { color: #111; }
.contact .section-label::before { background: #111; }
.contact-details { align-self: end; }
.contact-phone { min-height: 52px; display: inline-flex; align-items: center; margin-bottom: 1.4rem; font-family: "Noto Display", sans-serif; font-size: clamp(2rem, 4vw, 4rem); font-weight: 900; line-height: 1; text-decoration: none; }
.contact-details > p { max-width: 39ch; }
.fact-note { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.55); font-size: .86rem; }
.directions-link { min-height: 48px; display: inline-flex; align-items: center; gap: 1rem; margin-top: .8rem; font-size: .74rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

footer { width: min(var(--rail), calc(100% - 2 * var(--gutter))); margin: 0 auto; padding: 3.5rem 0; display: grid; grid-template-columns: .6fr 1fr 1fr; gap: 2.5rem; color: var(--muted); font-size: .72rem; }
.footer-mark { color: #fff; align-self: start; }
footer p { margin: 0; }

@media (max-width: 820px) {
  .nav-secondary { display: none !important; }
  .opening-content, .verified-intro, .detail-intro, .scene-copy, .contact { grid-template-columns: 1fr; }
  .opening-content { gap: 1.6rem; padding-bottom: 6.8rem; }
  .opening-copy { max-width: 31rem; }
  .verified-intro, .detail-intro { gap: 1.3rem; }
  .fact-ledger { grid-template-columns: 1fr; }
  .fact-ledger article { min-height: 18rem; border-right: 0; border-bottom: 1px solid var(--rule); }
  .fact-ledger article:last-child { border-bottom: 0; }
  .scene-copy { align-content: center; gap: 2rem; }
  .scene-heading h2 { font-size: clamp(3.4rem, 13vw, 6.2rem); }
  .scene-panels { min-height: 16rem; }
  .contact { padding-left: var(--gutter); padding-right: var(--gutter); }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-mark { grid-column: 1/-1; }
}

@media (max-width: 520px) {
  .concept-bar { font-size: .6rem; }
  .site-header { gap: .5rem; }
  .wordmark { font-size: .66rem; letter-spacing: .06em; }
  .mark-stripe { height: 1.65rem; width: .42rem; margin-right: .5rem; box-shadow: .58rem 0 0 rgba(255,255,255,.88); }
  .nav-call { padding: .5rem .65rem; }
  .nav-call span { display: none; }
  .opening { min-height: calc(92svh - 2.5rem); }
  .opening-content { padding-top: calc(var(--header-height) + 2rem); }
  h1 { font-size: clamp(3.65rem, 18vw, 5.4rem); }
  .opening-note, .conceptual-note { left: var(--gutter); right: var(--gutter); text-align: left; }
  .verified h2, .detail-intro h2 { font-size: clamp(2.85rem, 14vw, 4.6rem); }
  .scroll-scene.is-enhanced { height: 350svh; }
  .scene-copy { min-height: 100svh; padding-top: 4.5rem; padding-bottom: 5.5rem; }
  .scene-heading h2 { font-size: clamp(3.15rem, 14.5vw, 5rem); }
  .scene-panels { min-height: 14rem; }
  .scene-panel h3 { margin-top: 1.5rem; }
  .motion-card { left: var(--gutter); right: var(--gutter); bottom: 5.2rem; }
  .detail-card, .detail-card > img { min-height: 68svh; }
  .prep-overlay { min-height: 62%; }
  footer { grid-template-columns: 1fr; }
  .footer-mark { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .prep-overlay { transform: none; }
}
