:root {
  --black: #050505;
  --black-2: #0b0b0b;
  --paper: #eeece7;
  --muted: #858581;
  --red: #a62b25;
  --hairline: rgba(238, 236, 231, 0.2);
  --page-gutter: clamp(1.25rem, 3.8vw, 4.5rem);
  --header-height: 5rem;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  background: var(--black);
  scroll-behavior: auto;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  height: 100vh;
  overflow: hidden;
}

::selection {
  background: var(--red);
  color: var(--paper);
}

img,
canvas,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 1px solid var(--paper);
  outline-offset: 5px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  background: var(--paper);
  color: var(--black);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.loader {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity 700ms cubic-bezier(0.7, 0, 0.2, 1), visibility 700ms;
}

.loader.is-complete {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  width: min(28rem, calc(100vw - 3rem));
}

.wordmark {
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  font-family: var(--display);
  text-transform: uppercase;
}

.wordmark__gp {
  color: var(--red);
  font-size: 2.5rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.wordmark__name {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 0.95;
}

.loader p {
  margin: 2.2rem 0 0.85rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
}

.loader__track {
  position: relative;
  height: 1px;
  background: rgba(238, 236, 231, 0.15);
  overflow: hidden;
}

.loader__track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--red);
  transition: width 150ms linear;
}

.loader__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 0.7rem;
  color: #555;
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--page-gutter);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.83);
  border-color: rgba(238, 236, 231, 0.1);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  text-transform: uppercase;
}

.brand span:first-child {
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brand span:last-child {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  margin-left: auto;
  margin-right: clamp(1.2rem, 2.4vw, 2.8rem);
  color: rgba(238, 236, 231, 0.42);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.language-toggle button {
  min-width: 2rem;
  padding: 0.55rem 0.25rem;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.language-toggle button:hover,
.language-toggle button:focus-visible,
.language-toggle button[aria-pressed="true"] {
  color: var(--paper);
  border-bottom-color: var(--red);
}

.language-toggle button:focus-visible {
  outline: 1px solid var(--paper);
  outline-offset: 3px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.7vw, 3.2rem);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav a:not(.nav-cta) {
  position: relative;
  padding-block: 0.5rem;
  color: rgba(238, 236, 231, 0.72);
}

.desktop-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.72rem 1.05rem;
  border: 1px solid rgba(238, 236, 231, 0.45);
  transition: background 200ms ease, color 200ms ease;
}

.nav-cta:hover {
  background: var(--paper);
  color: var(--black);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.sequence {
  position: relative;
  height: 500vh;
  background: var(--black);
}

.sequence--hero {
  height: 560vh;
}

.sequence--final {
  height: 620vh;
}

.sequence__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

[data-sequence="arrival"] .sequence__stage {
  background: #000 url("/frames/arrival/frame_0001.jpg") center / cover no-repeat;
}

[data-sequence="breakdown"] .sequence__stage {
  background: #000 url("/frames/breakdown/frame_0150.jpg") center / cover no-repeat;
}

[data-sequence="options"] .sequence__stage {
  background: #000 url("/frames/options/frame_0150.jpg") center / cover no-repeat;
}

[data-sequence="assembly"] .sequence__stage {
  background: #000 url("/frames/assembly/frame_0150.jpg") center / cover no-repeat;
}

[data-sequence="final"] .sequence__stage {
  background: #000 url("/frames/final/frame_0150.jpg") center / cover no-repeat;
}

.sequence__canvas,
.sequence__video {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sequence__video {
  display: none;
  transition: opacity 180ms ease;
}

.sequence__video.is-unavailable {
  opacity: 0;
}

.sequence__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 38%, transparent 68%, rgba(0, 0, 0, 0.24)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 24%, transparent 70%, rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.sequence__shade--hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.54), transparent 26%, transparent 68%, rgba(0, 0, 0, 0.64));
}

.sequence__shade--edge {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.73), transparent 48%, rgba(0, 0, 0, 0.08));
}

.sequence__shade--final {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 46%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 30%, transparent 72%, rgba(0, 0, 0, 0.65));
}

.sequence__chrome {
  position: absolute;
  top: calc(var(--header-height) + 1.35rem);
  left: var(--page-gutter);
  right: var(--page-gutter);
  display: flex;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px solid var(--hairline);
  color: rgba(238, 236, 231, 0.62);
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.beat {
  opacity: var(--beat-opacity, 0);
  transform: translateY(var(--beat-y, 1.2rem));
  will-change: opacity, transform;
}

.eyebrow {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(0.63rem, 0.7vw, 0.74rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.85rem;
  height: 1px;
  margin: 0 0.65rem 0.22rem 0;
  background: var(--red);
}

.hero-lockup {
  position: absolute;
  left: var(--page-gutter);
  bottom: clamp(5rem, 12vh, 9rem);
}

.hero-lockup h1,
.chapter-title h2,
.craft h2,
.build-sheet h2,
.garage-preview h2,
.your-turn h2,
.about-strip h2,
.closing h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.76;
  text-transform: uppercase;
}

.hero-lockup h1 {
  margin-top: 1.25rem;
  font-size: clamp(5.5rem, 12vw, 12rem);
}

.hero-lockup h1 span {
  display: block;
}

.tagline {
  margin: 1.7rem 0 0;
  color: rgba(238, 236, 231, 0.7);
  font-family: var(--display);
  font-size: clamp(0.88rem, 1.25vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.sequence-statement {
  position: absolute;
  left: var(--page-gutter);
  bottom: 14vh;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 8.3vw, 8.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-transform: uppercase;
}

.sequence-statement--right {
  right: var(--page-gutter);
  left: auto;
  text-align: right;
}

.scroll-cue {
  position: absolute;
  right: var(--page-gutter);
  bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 3.5rem;
  height: 1px;
  background: rgba(238, 236, 231, 0.38);
  overflow: hidden;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0% { transform: translateX(-105%); }
  55%, 100% { transform: translateX(105%); }
}

.manifesto {
  min-height: 225vh;
  display: grid;
  grid-template-columns: minmax(8rem, 21vw) 1fr;
  gap: 2rem;
  padding: 24vh var(--page-gutter) 30vh;
  background: var(--black);
}

.manifesto__index {
  position: sticky;
  top: 30vh;
  align-self: start;
  font-family: var(--display);
  text-transform: uppercase;
}

.manifesto__index span {
  display: block;
  color: var(--red);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.manifesto__index p {
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}

.manifesto__lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18vh;
}

.reveal-line {
  margin: 0;
  color: #393937;
  font-family: var(--display);
  font-size: clamp(3.8rem, 8.7vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.82;
  text-transform: uppercase;
  transition: color 800ms ease, transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateY(2rem);
}

.reveal-line.is-visible {
  color: var(--paper);
  transform: translateY(0);
}

.reveal-line--accent.is-visible {
  color: var(--red);
}

.chapter-title {
  position: absolute;
  top: 15vh;
  left: var(--page-gutter);
}

.chapter-title h2 {
  margin-top: 1.15rem;
  font-size: clamp(5rem, 10.5vw, 10.8rem);
}

.chapter-title--small h2 {
  font-size: clamp(4rem, 8vw, 8rem);
}

.callout {
  position: absolute;
  width: min(17rem, 23vw);
  padding-top: 0.72rem;
  border-top: 1px solid rgba(238, 236, 231, 0.36);
}

.callout::before {
  content: "";
  position: absolute;
  top: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}

.callout--left {
  left: var(--page-gutter);
}

.callout--left::before {
  right: 0;
}

.callout--right {
  right: var(--page-gutter);
  text-align: right;
}

.callout--right::before {
  left: 0;
}

.callout--high {
  top: 29vh;
}

.callout--low {
  bottom: 22vh;
}

.callout--center {
  left: 50%;
  bottom: 5vh;
  text-align: center;
  transform: translate(-50%, var(--beat-y, 1.2rem));
}

.callout--center::before {
  left: calc(50% - 2px);
}

.callout span {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.callout p {
  margin: 0.35rem 0 0;
  color: rgba(238, 236, 231, 0.62);
  font-size: clamp(0.65rem, 0.7vw, 0.76rem);
  line-height: 1.5;
}

.option-story {
  position: absolute;
  top: 17vh;
  right: var(--page-gutter);
  bottom: 12vh;
  width: min(29rem, 36vw);
}

.option-step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}

.option-step > p {
  margin: 0 0 1.35rem;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.8;
  text-transform: uppercase;
}

.option-step > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
  color: rgba(238, 236, 231, 0.5);
  font-family: var(--display);
  font-size: clamp(0.66rem, 0.9vw, 0.88rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.option-step strong {
  color: var(--paper);
  font-weight: 600;
}

.craft {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  background: var(--black-2);
}

.craft__image-wrap {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.craft__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--black-2));
}

.craft__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
}

.craft__scale {
  position: absolute;
  z-index: 2;
  left: var(--page-gutter);
  bottom: 2rem;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(6rem, 13vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.7;
  opacity: 0.82;
}

.craft__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12vh var(--page-gutter) 12vh 2vw;
}

.craft h2 {
  margin-top: 1.8rem;
  font-size: clamp(5rem, 9vw, 9rem);
}

.craft__body {
  width: min(28rem, 100%);
  margin: clamp(3rem, 8vh, 6rem) 0 0 auto;
  padding-top: 1.3rem;
  border-top: 1px solid var(--hairline);
}

.craft__body p {
  color: rgba(238, 236, 231, 0.62);
  font-size: clamp(0.86rem, 1.05vw, 1rem);
  line-height: 1.8;
}

.craft__body p + p {
  margin-top: 1rem;
}

.craft__body .text-link {
  margin-top: 1.2rem;
}

.craft__body .builder-name {
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.assembly-word {
  position: absolute;
  left: var(--page-gutter);
  bottom: 10vh;
  font-family: var(--display);
  font-size: clamp(7rem, 17vw, 18rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.72;
  text-transform: uppercase;
}

.assembly-payoff {
  position: absolute;
  inset: auto var(--page-gutter) 10vh;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.assembly-payoff p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 11vw, 11.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.72;
  text-transform: uppercase;
}

.assembly-payoff span {
  padding-bottom: 0.6rem;
  color: rgba(238, 236, 231, 0.64);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.final-id {
  position: absolute;
  inset: calc(var(--header-height) + 5vh) var(--page-gutter) 8vh;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.final-id h2 {
  margin: 0;
  color: rgba(238, 236, 231, 0.95);
  font-family: var(--display);
  font-size: clamp(15rem, 39vw, 38rem);
  font-weight: 800;
  letter-spacing: -0.095em;
  line-height: 0.58;
}

.final-id__name {
  max-width: 21rem;
  padding-bottom: 0.7rem;
  text-align: right;
}

.final-id__name p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.3vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.final-id__name span,
.garage-message > span {
  display: block;
  margin-top: 1.25rem;
  color: rgba(238, 236, 231, 0.58);
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.garage-message {
  position: absolute;
  left: var(--page-gutter);
  bottom: 9vh;
}

.garage-architecture {
  position: absolute;
  z-index: -1;
  inset: 14vh var(--page-gutter) 7vh;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(238, 236, 231, 0.22);
  border-bottom: 1px solid rgba(238, 236, 231, 0.16);
  pointer-events: none;
}

.garage-architecture__bay {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0.8rem;
  border-left: 1px solid rgba(238, 236, 231, 0.16);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(238, 236, 231, 0.35);
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.garage-architecture__bay:last-child {
  border-right: 1px solid rgba(238, 236, 231, 0.16);
}

.garage-architecture__bay--on {
  background: radial-gradient(circle at 50% 10%, rgba(238, 236, 231, 0.12), transparent 52%);
  color: var(--red);
}

.garage-message > p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 11vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.77;
  text-transform: uppercase;
}

.garage-message > span {
  color: var(--red);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 2.8rem;
  margin-top: 2rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(238, 236, 231, 0.4);
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: border-color 200ms ease, color 200ms ease;
}

.text-link i,
.button i {
  color: var(--red);
  font-style: normal;
}

.text-link:hover {
  color: var(--red);
  border-color: var(--red);
}

.build-sheet {
  padding: clamp(7rem, 15vh, 13rem) var(--page-gutter);
  background: var(--paper);
  color: var(--black);
}

.build-sheet__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: clamp(4rem, 9vh, 7rem);
}

.build-sheet .eyebrow {
  color: var(--black);
}

.build-sheet h2 {
  margin-top: 1.5rem;
  font-size: clamp(6rem, 13vw, 13rem);
}

.build-sheet__head > p {
  margin: 0 0 0.5rem;
  color: #6e6e69;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  line-height: 1.7;
  text-align: right;
  text-transform: uppercase;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border-top: 1px solid rgba(5, 5, 5, 0.3);
}

.spec-grid > div {
  display: grid;
  grid-template-columns: minmax(6rem, 0.36fr) 1fr;
  gap: 1.5rem;
  padding: 1.6rem 1.25rem 1.6rem 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.22);
}

.spec-grid > div:nth-child(odd) {
  border-right: 1px solid rgba(5, 5, 5, 0.22);
}

.spec-grid > div:nth-child(even) {
  padding-left: 1.25rem;
}

.spec-grid dt,
.spec-grid dd {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
}

.spec-grid dt {
  color: #767671;
  font-size: 0.68rem;
  letter-spacing: 0.17em;
}

.spec-grid dd {
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.garage-preview {
  min-height: 100vh;
  padding: clamp(8rem, 18vh, 15rem) var(--page-gutter);
  background: var(--black);
}

.garage-preview__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(4rem, 9vh, 8rem);
}

.garage-preview h2 {
  font-size: clamp(5rem, 10vw, 10rem);
  text-align: right;
}

.bay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(238, 236, 231, 0.14);
  border: 1px solid rgba(238, 236, 231, 0.14);
}

.bay {
  position: relative;
  aspect-ratio: 0.75;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.1rem;
  overflow: hidden;
  background: #080808;
}

.bay--open img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.85);
  transition: filter 400ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bay--open::after,
.bay--locked::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 40%, rgba(0, 0, 0, 0.65));
}

.bay--open:hover img {
  filter: brightness(0.9) saturate(1);
  transform: scale(1.035);
}

.bay--locked::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 31%;
  height: 17%;
  border-radius: 55% 48% 24% 20%;
  background: #111;
  filter: blur(3px);
  opacity: 0.62;
}

.bay__number,
.bay__status {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  text-transform: uppercase;
}

.bay__number {
  color: var(--paper);
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.8;
}

.bay--open .bay__number {
  color: var(--red);
}

.bay__status {
  color: rgba(238, 236, 231, 0.62);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
}

.garage-preview__link {
  margin-top: 2.5rem;
}

.your-turn {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 14vh var(--page-gutter);
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.05), transparent 28%),
    var(--black-2);
}

.your-turn__silhouette {
  position: absolute;
  left: 50%;
  bottom: 20%;
  width: min(62rem, 76vw);
  height: min(15rem, 20vw);
  border-radius: 52% 45% 22% 20%;
  background: #0e0e0e;
  transform: translateX(-50%);
  filter: blur(5px);
  opacity: 0.8;
}

.your-turn__silhouette::after {
  content: "";
  position: absolute;
  inset: auto 5% -26% 5%;
  height: 20%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(15px);
}

.your-turn__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.your-turn .eyebrow::before {
  display: none;
}

.your-turn h2 {
  margin-top: 1.6rem;
  font-size: clamp(6rem, 14vw, 15rem);
}

.your-turn__steps {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3rem);
  margin-top: 3rem;
  color: rgba(238, 236, 231, 0.62);
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  min-width: 15rem;
  margin-top: 2.8rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(238, 236, 231, 0.65);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease;
}

.button:hover {
  background: var(--paper);
  color: var(--black);
}

.microcopy {
  margin: 1.2rem 0 0;
  color: #5f5f5b;
  font-size: 0.72rem;
}

.about-strip {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 0.7fr 1.7fr 0.6fr;
  align-items: end;
  gap: 2rem;
  padding: 14vh var(--page-gutter);
  border-top: 1px solid var(--hairline);
  background: var(--black);
}

.about-strip h2 {
  font-size: clamp(6rem, 13vw, 13rem);
}

.about-strip .text-link {
  justify-self: end;
}

.closing {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 13vh var(--page-gutter);
}

.closing > img {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.65));
}

.closing h2 {
  margin-top: 1.5rem;
  font-size: clamp(7rem, 15vw, 16rem);
}

.closing__copy > p:not(.eyebrow) {
  margin: 2rem 0 0;
  font-family: var(--display);
  font-size: clamp(0.8rem, 1.2vw, 1.08rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.closing__actions {
  display: flex;
  align-items: baseline;
  gap: 2.5rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1.5fr 1.4fr auto;
  align-items: end;
  gap: 2rem;
  padding: 4rem var(--page-gutter);
  border-top: 1px solid var(--hairline);
  background: var(--black);
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer__identity {
  display: grid;
  gap: 0.45rem;
}

.site-footer__identity p {
  color: var(--paper);
}

.site-footer__identity span {
  color: #575753;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer__nav {
  justify-content: center;
}

.site-footer nav a:hover {
  color: var(--paper);
}

.site-footer > p:last-child {
  text-align: right;
}

.noscript-message {
  position: fixed;
  z-index: 2000;
  inset: auto 1rem 1rem;
  margin: 0;
  padding: 1rem;
  background: var(--paper);
  color: var(--black);
}

.reduce-motion .sequence,
.reduce-motion .sequence--hero,
.reduce-motion .sequence--final {
  height: 120svh;
}

.reduce-motion .sequence__video {
  display: none !important;
}

.reduce-motion .sequence__canvas {
  display: block !important;
}

.reduce-motion .beat {
  transition: none !important;
}

.reduce-motion .sequence-statement,
.reduce-motion .callout,
.reduce-motion .option-step:not(:last-child),
.reduce-motion .assembly-word,
.reduce-motion .garage-message {
  display: none;
}

.reduce-motion .option-step:last-child,
.reduce-motion .assembly-payoff {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 980px) {
  .about-strip {
    grid-template-columns: 1fr 2fr;
  }

  .about-strip .text-link {
    grid-column: 2;
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer nav,
  .site-footer > p:last-child {
    justify-self: end;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 4.25rem;
    --page-gutter: 1.2rem;
  }

  .desktop-nav {
    display: none;
  }

  .language-toggle {
    margin-right: 0.85rem;
    font-size: 0.64rem;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--paper);
    font-family: var(--display);
    font-size: 0.67rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .menu-toggle i {
    position: relative;
    width: 1.15rem;
    height: 1px;
    background: currentColor;
  }

  .menu-toggle i::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 1.15rem;
    height: 1px;
    background: currentColor;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 1px;
    padding: 0 var(--page-gutter) 1rem;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid var(--hairline);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(238, 236, 231, 0.1);
    font-family: var(--display);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .sequence {
    height: 500svh;
  }

  .sequence--hero {
    height: 560svh;
  }

  .sequence--final {
    height: 620svh;
  }

  .sequence__canvas {
    display: none;
  }

  .sequence__video {
    display: block;
  }

  .sequence__shade,
  .sequence__shade--edge {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 28%, transparent 58%, rgba(0, 0, 0, 0.75)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 75%);
  }

  .sequence__chrome {
    top: calc(var(--header-height) + 0.8rem);
  }

  .hero-lockup {
    right: var(--page-gutter);
    bottom: 12vh;
  }

  .hero-lockup h1 {
    font-size: clamp(4.7rem, 25vw, 8rem);
  }

  .tagline {
    max-width: 17rem;
    line-height: 1.5;
  }

  .scroll-cue {
    display: none;
  }

  .sequence-statement {
    bottom: 12vh;
    font-size: clamp(3.6rem, 17vw, 5.5rem);
  }

  .manifesto {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 9rem;
  }

  .manifesto__index {
    position: static;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 5rem;
  }

  .manifesto__index span {
    font-size: 5rem;
  }

  .manifesto__index p {
    margin-bottom: 0.15rem;
  }

  .manifesto__lines {
    gap: 4.5rem;
  }

  .reveal-line {
    font-size: clamp(3.2rem, 15.5vw, 5rem);
  }

  .chapter-title {
    top: 15vh;
  }

  .chapter-title h2,
  .chapter-title--small h2 {
    font-size: clamp(4.2rem, 20vw, 6.5rem);
  }

  .callout {
    width: 44vw;
  }

  .callout--high {
    top: 33vh;
  }

  .callout--low {
    bottom: 19vh;
  }

  .callout--center {
    bottom: 7vh;
  }

  .callout span {
    font-size: 1.2rem;
  }

  .callout p {
    font-size: 0.62rem;
  }

  .option-story {
    top: auto;
    right: var(--page-gutter);
    bottom: 10vh;
    width: calc(100% - (var(--page-gutter) * 2));
  }

  .option-step > p {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .option-step > div {
    max-width: 22rem;
    font-size: 0.62rem;
  }

  .craft {
    grid-template-columns: 1fr;
  }

  .craft__image-wrap {
    min-height: 65svh;
  }

  .craft__image-wrap::after {
    background: linear-gradient(180deg, transparent 65%, var(--black-2));
  }

  .craft__scale {
    font-size: 7rem;
  }

  .craft__copy {
    padding: 5rem var(--page-gutter) 7rem;
  }

  .craft h2 {
    font-size: clamp(5rem, 24vw, 7rem);
  }

  .craft__body {
    margin-top: 3.5rem;
  }

  .assembly-word {
    bottom: 13vh;
    font-size: clamp(5rem, 23vw, 7rem);
  }

  .assembly-payoff {
    display: block;
    bottom: 12vh;
  }

  .assembly-payoff p {
    font-size: clamp(4.3rem, 20vw, 6.5rem);
  }

  .assembly-payoff span {
    display: block;
    margin-top: 1.4rem;
  }

  .final-id {
    inset: calc(var(--header-height) + 7vh) var(--page-gutter) 9vh;
    display: block;
  }

  .final-id h2 {
    font-size: clamp(13rem, 67vw, 20rem);
  }

  .final-id__name {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 14rem;
  }

  .final-id__name p {
    font-size: 2rem;
  }

  .garage-message > p {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .garage-architecture {
    inset: 16vh var(--page-gutter) 10vh;
    grid-template-columns: 1.5fr repeat(3, 0.5fr);
  }

  .build-sheet {
    padding-block: 7rem;
  }

  .build-sheet__head {
    display: block;
  }

  .build-sheet h2 {
    font-size: clamp(5.5rem, 26vw, 8rem);
  }

  .build-sheet__head > p {
    margin-top: 3rem;
    text-align: left;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .spec-grid > div:nth-child(odd) {
    border-right: 0;
  }

  .spec-grid > div:nth-child(even) {
    padding-left: 0;
  }

  .spec-grid > div {
    grid-template-columns: 5rem 1fr;
  }

  .garage-preview {
    padding-block: 7rem;
  }

  .garage-preview__head {
    display: block;
  }

  .garage-preview h2 {
    margin-top: 2rem;
    font-size: clamp(4.5rem, 21vw, 6.5rem);
    text-align: left;
  }

  .bay-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bay {
    aspect-ratio: 0.8;
  }

  .your-turn {
    min-height: 95svh;
  }

  .your-turn h2 {
    font-size: clamp(4.7rem, 22vw, 7rem);
  }

  .your-turn__steps {
    flex-direction: column;
    gap: 0.75rem;
  }

  .your-turn__silhouette {
    bottom: 23%;
    width: 100vw;
    height: 26vw;
  }

  .about-strip {
    min-height: 70svh;
    grid-template-columns: 1fr;
    align-content: end;
    padding-block: 7rem;
  }

  .about-strip h2 {
    font-size: clamp(5.5rem, 27vw, 8rem);
  }

  .about-strip .text-link {
    grid-column: auto;
    justify-self: start;
  }

  .closing {
    min-height: 100svh;
    padding-bottom: 8vh;
  }

  .closing > img {
    object-position: 58% center;
  }

  .closing h2 {
    font-size: clamp(5.3rem, 25vw, 8rem);
  }

  .closing__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .site-footer nav {
    justify-self: start;
    flex-wrap: wrap;
  }

  .site-footer > p:last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .sequence,
  .sequence--hero,
  .sequence--final {
    height: 120svh;
  }

  .sequence__video {
    display: none !important;
  }

  .sequence__canvas {
    display: block;
  }

  .beat {
    opacity: 1;
    transform: none;
  }

  .hero-lockup,
  .chapter-title,
  .final-id {
    opacity: 1 !important;
  }

  .sequence-statement,
  .callout,
  .option-step:not(:last-child),
  .assembly-word,
  .garage-message {
    display: none;
  }

  .option-step:last-child,
  .assembly-payoff {
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal-line {
    color: var(--paper);
    transform: none;
  }
}
