/* ==========================================================================
   THE CONTAINER — design system
   Culture by day. Culture by night.
   Static, dependency-free, CDN-ready.
   ========================================================================== */

/* ---------- Fonts (official brand kit, self-hosted) ----------
   Space Grotesk  — primary / lead copy (headlines)
   Host Grotesk   — secondary / body copy
   LCT Ptex       — accent (labels, buttons, data) — monospace */
@font-face { font-family: "Space Grotesk"; src: url("../fonts/space-grotesk-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("../fonts/space-grotesk-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("../fonts/space-grotesk-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Host Grotesk"; src: url("../fonts/host-grotesk-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Host Grotesk"; src: url("../fonts/host-grotesk-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Host Grotesk"; src: url("../fonts/host-grotesk-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Host Grotesk"; src: url("../fonts/host-grotesk-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "LCT Ptex"; src: url("../fonts/lct-ptex-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "LCT Ptex"; src: url("../fonts/lct-ptex-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "LCT Ptex"; src: url("../fonts/lct-ptex-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  /* official palette — THE_CONTAINER_BRANDSHEET */
  --ink: #131419;          /* cargo black */
  --steel: #303236;        /* steel frame */
  --dock: #5b5f66;         /* dock grey */
  --brushed: #c7c9cc;      /* brushed steel */
  --paper: #f4f4f6;        /* concrete light */

  --font-d: "Space Grotesk", "Archivo Black", Impact, sans-serif;
  --font-b: "Host Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-m: "LCT Ptex", ui-monospace, "IBM Plex Mono", monospace;

  --w-max: 1280px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 2px;
  --ease: cubic-bezier(.22, .8, .24, 1);
  --speed-theme: .45s;
}

/* NIGHT — the club */
html[data-mode="night"] {
  --bg: #131419;
  --bg-2: #17181e;
  --card: #1b1c22;
  --text: #f4f4f6;
  --text-dim: rgba(244, 244, 246, .62);
  --line: rgba(244, 244, 246, .14);
  --line-strong: rgba(244, 244, 246, .32);
  --accent: #f4f4f6;
  --accent-text: #c7c9cc;
  --glow: rgba(244, 244, 246, .05);
  --shadow: 0 24px 60px rgba(0, 0, 0, .5);
  color-scheme: dark;
}

/* DAY — the gallery */
html[data-mode="day"] {
  --bg: #f4f4f6;
  --bg-2: #ececee;
  --card: #ffffff;
  --text: #131419;
  --text-dim: rgba(19, 20, 25, .64);
  --line: rgba(19, 20, 25, .16);
  --line-strong: rgba(19, 20, 25, .38);
  --accent: #131419;
  --accent-text: #5b5f66;
  --glow: rgba(19, 20, 25, .05);
  --shadow: 0 20px 50px rgba(19, 20, 25, .12);
  color-scheme: light;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.55;
  transition: background-color var(--speed-theme) var(--ease), color var(--speed-theme) var(--ease);
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--steel); color: var(--paper); }
:focus-visible { outline: 2px solid var(--dock); outline-offset: 3px; }

/* mode-conditional content */
html[data-mode="night"] .day-only { display: none !important; }
html[data-mode="day"] .night-only { display: none !important; }

.wrap { max-width: var(--w-max); margin-inline: auto; padding-inline: var(--gutter); }
/* flex-column heroes stretch the wrap so it doesn't shrink to content */
.hero > .wrap, .soon > .wrap { width: 100%; }

/* ---------- Type utilities ---------- */
.display {
  font-family: var(--font-d);
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin: 0;
}
.eyebrow {
  font-family: var(--font-m);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent-text);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.1rem;
}
.eyebrow::before { content: ""; width: 2.2rem; height: 2px; background: var(--accent-text); flex: none; }
.mono { font-family: var(--font-m); }
.dim { color: var(--text-dim); }
.lede { font-size: clamp(1.02rem, 1.5vw, 1.2rem); line-height: 1.65; color: var(--text-dim); max-width: 56ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.7rem;
  font-family: var(--font-m);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1.5px solid var(--text);
  border-radius: var(--radius);
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--solid { background: var(--text); border-color: var(--text); color: var(--bg); }
.btn--solid:hover { background: color-mix(in srgb, var(--text) 84%, var(--bg)); border-color: transparent; }
.btn--ghost:hover { background: var(--text); color: var(--bg); }
.btn--soon { border-style: dashed; color: var(--text-dim); cursor: default; }
.btn--soon:hover { transform: none; }
.btn--soon .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--dock);
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .35; transform: scale(.72);} }

/* ---------- Header ---------- */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-head.is-scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-head__in {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: .8rem; margin-right: auto; }
.brand img { height: 30px; width: auto; transition: opacity .3s; }
.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-family: var(--font-m);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.nav a { position: relative; padding: .4rem 0; color: var(--text-dim); transition: color .2s; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--text);
  transition: right .25s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }

/* Day / Night toggle — the signature control */
.mode-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: .55rem;
  padding: .5rem .9rem;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-m);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: border-color .2s, background .2s;
}
.mode-toggle:hover { border-color: var(--text); }
.mode-toggle__icon { width: 15px; height: 15px; }
.mode-toggle__icon .sun, .mode-toggle__icon .moon { transform-origin: center; transition: opacity .3s, transform .45s var(--ease); }
html[data-mode="night"] .mode-toggle__icon .sun { opacity: 0; transform: rotate(90deg) scale(.4); }
html[data-mode="day"] .mode-toggle__icon .moon { opacity: 0; transform: rotate(-90deg) scale(.4); }
.mode-toggle__label::after { content: "NIGHT"; }
html[data-mode="day"] .mode-toggle__label::after { content: "DAY"; }

/* burger */
.burger { display: none; width: 44px; height: 44px; position: relative; z-index: 75; }
.burger span {
  position: absolute; left: 10px; right: 10px; height: 2px;
  background: var(--text);
  transition: transform .3s var(--ease), opacity .2s, top .3s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
body.nav-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0;
    z-index: 70;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background: var(--bg);
    font-size: 1.05rem;
    letter-spacing: .3em;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
  }
  body.nav-open .nav { opacity: 1; pointer-events: auto; }
  .nav .btn { margin-top: 1rem; }
  html:not(.js) .burger { display: none; }
  html:not(.js) .nav { position: static; opacity: 1; pointer-events: auto; background: none; flex-direction: row; flex-wrap: wrap; gap: .9rem; font-size: .62rem; justify-content: flex-end; }
}

/* ---------- Crane loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  background: #131419;
  color: #f4f4f6;
  transition: transform .55s cubic-bezier(.65, 0, .35, 1);
  animation: loader-failsafe .5s 4.5s forwards;
}
@keyframes loader-failsafe { to { visibility: hidden; opacity: 0; } }
.loader.is-done { transform: translateY(-101%); }
.loader.is-off { display: none; }
html[data-skip-loader="1"] .loader { display: none; }
.loader__label {
  font-family: var(--font-m);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(244,244,246,.66);
}
.loader__label b { color: #c7c9cc; }
.loader { --ld-bg: #131419; }

/* pixel arcade loader — 8-bit crane drop, stepped like an arcade cabinet */
.pixelload { width: 128px; shape-rendering: crispEdges; color: #f4f4f6; }
.pixelload .px-drop {
  animation: px-drop 2.4s steps(4, end) infinite;
}
.pixelload .px-cable {
  transform-origin: 32px 6px;
  transform-box: view-box;
  animation: px-cable 2.4s steps(4, end) infinite;
}
.pixelload .px-blink { animation: px-blink .6s steps(2, jump-none) infinite; }
@keyframes px-drop {
  0%, 8%   { transform: translateY(0); opacity: 1; }
  50%, 78% { transform: translateY(16px); opacity: 1; }
  80%      { transform: translateY(16px); opacity: 0; }
  82%, 96% { transform: translateY(0); opacity: 0; }
  100%     { transform: translateY(0); opacity: 1; }
}
@keyframes px-cable {
  0%, 8%   { transform: scaleY(1); opacity: 1; }
  50%, 78% { transform: scaleY(2.6); opacity: 1; }
  80%      { transform: scaleY(2.6); opacity: 0; }
  82%, 96% { transform: scaleY(1); opacity: 0; }
  100%     { transform: scaleY(1); opacity: 1; }
}
@keyframes px-blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

/* crane loading loop — gantry crane lowers a container onto a truck,
   the truck hauls it away, the next box arrives. Accurate port choreography. */
.crane-scene { width: min(340px, 74vw); }
.crane-scene .ld-truck  { animation: ld-truck  4.4s cubic-bezier(.45, 0, .3, 1) infinite; }
.crane-scene .ld-box    { animation: ld-box    4.4s cubic-bezier(.45, 0, .3, 1) infinite; }
.crane-scene .ld-spread { animation: ld-spread 4.4s cubic-bezier(.45, 0, .3, 1) infinite; }
.crane-scene .ld-cable  {
  transform-origin: 173px 68px;
  transform-box: view-box;
  animation: ld-cable 4.4s cubic-bezier(.45, 0, .3, 1) infinite;
}
.crane-scene .blink { animation: pulse 1.4s infinite; }
@keyframes ld-truck {
  0%        { transform: translateX(-260px); }
  20%, 64%  { transform: translateX(0); }
  90%, 100% { transform: translateX(240px); }
}
@keyframes ld-box {
  0%, 24%   { transform: translate(0, 0); opacity: 1; }
  48%, 64%  { transform: translate(0, 84px); opacity: 1; }
  89.9%     { transform: translate(240px, 84px); opacity: 1; }
  90%       { transform: translate(240px, 84px); opacity: 0; }
  94%, 97%  { transform: translate(0, 0); opacity: 0; }
  100%      { transform: translate(0, 0); opacity: 1; }
}
@keyframes ld-spread {
  0%, 24%   { transform: translateY(0); }
  48%, 58%  { transform: translateY(84px); }
  76%, 100% { transform: translateY(0); }
}
@keyframes ld-cable {
  0%, 24%   { transform: scaleY(1); }
  48%, 58%  { transform: scaleY(8); }
  76%, 100% { transform: scaleY(1); }
}

/* mini crane inline (store / form) */
.mini-load { display: inline-flex; align-items: center; gap: .5rem; }
.mini-load i {
  width: 12px; height: 9px;
  background: currentColor;
  border-radius: 1px;
  animation: mini-bob 1s infinite var(--ease);
}
@keyframes mini-bob { 0%,100% { transform: translateY(-4px);} 50% { transform: translateY(2px);} }

/* ---------- Theme sweep (mode switch wipe) ---------- */
.sweep {
  position: fixed; inset: -6% 0; z-index: 90;
  background: var(--steel) repeating-linear-gradient(90deg, rgba(19, 20, 25, .28) 0 42px, transparent 42px 84px);
  transform: translateY(101%);
  pointer-events: none;
  visibility: hidden;
}
.sweep.run { visibility: visible; animation: sweep 0.72s cubic-bezier(.7, 0, .3, 1); }
@keyframes sweep {
  0%   { transform: translateY(101%); }
  45%  { transform: translateY(0); }
  55%  { transform: translateY(0); }
  100% { transform: translateY(-101%); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 110px;
  overflow: clip;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* night mode: real venue render + legibility scrim replaces the glow */
html[data-mode="night"] .hero--photo .hero__bg::before { content: none; }
html[data-mode="night"] .hero--photo .hero__bg::after {
  background:
    linear-gradient(90deg, rgba(19, 20, 25, .72) 0%, rgba(19, 20, 25, .28) 42%, rgba(19, 20, 25, 0) 68%),
    linear-gradient(180deg,
    rgba(19, 20, 25, .6) 0%,
    rgba(19, 20, 25, .12) 30%,
    rgba(19, 20, 25, .2) 55%,
    rgba(19, 20, 25, .95) 100%);
  inset: 0; left: 0; bottom: 0; width: auto; height: auto; transform: none;
  animation: none; border-radius: 0;
}
html[data-mode="night"] .hero--photo .hero h1 .accent,
html[data-mode="night"] .hero--photo h1 .accent { color: #c7c9cc; }
html[data-mode="night"] .hero--photo video.hero__photo { object-position: center 24%; }
html[data-mode="day"] .hero--photo .hero h1 .accent,
html[data-mode="day"] .hero--photo h1 .accent { color: #303236; }
/* corrugated container ridges */
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 34px,
    color-mix(in srgb, var(--text) 4%, transparent) 34px 38px
  );
  mask-image: linear-gradient(180deg, transparent 0%, #000 40%, transparent 96%);
}
/* glow */
.hero__bg::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -32vh;
  width: 130vw; height: 78vh;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, var(--glow), transparent 72%);
  animation: breathe 7s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { opacity: .8; transform: translateX(-50%) scale(1);} 50% { opacity: 1; transform: translateX(-50%) scale(1.07);} }

.hero__plate {
  font-family: var(--font-m);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
  margin-bottom: 1.4rem;
}
.hero__plate .tag {
  border: 1px solid var(--line-strong);
  padding: .32rem .7rem;
  border-radius: 2px;
  white-space: nowrap;
}
.hero--photo .hero__plate .tag {
  background: color-mix(in srgb, var(--bg) 52%, transparent);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
@media (max-width: 640px) {
  .hero__plate { letter-spacing: .22em; gap: .7rem; }
}
.hero h1 {
  font-size: clamp(1.9rem, 4.6vw, 4.1rem);
  margin-bottom: 1rem;
}
.hero h1 .accent { color: var(--dock); }
.hero__sub { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 2rem; justify-content: space-between; margin-bottom: 3rem; }
.hero__cta { display: flex; gap: .9rem; flex-wrap: wrap; }

/* cargo data strip at hero base */
.cargo-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-m);
}
.cargo-strip__in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cargo-cell {
  border-left: 1px solid var(--line);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.cargo-cell:first-child { border-left: 0; }
.cargo-cell b { display: block; color: var(--text); font-size: .92rem; letter-spacing: .18em; margin-top: .3rem; font-weight: 600; }
@media (max-width: 720px) {
  .cargo-strip__in { grid-template-columns: 1fr 1fr; }
  .cargo-cell:nth-child(3) { border-left: 0; }
  .cargo-cell { border-top: 1px solid var(--line); }
  .cargo-cell:nth-child(-n+2) { border-top: 0; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: .85rem;
  background: var(--bg-2);
  transition: background-color var(--speed-theme) var(--ease);
}
.marquee__track {
  display: flex;
  gap: 3.2rem;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--font-m);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 3.2rem; }
.marquee__track .o { color: var(--dock); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding-block: clamp(4.2rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4.5vw, 3.6rem);
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(2rem, 4.9vw, 3.9rem); }
.link-arrow {
  font-family: var(--font-m);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-text);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
}
.link-arrow svg { transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Two worlds split ---------- */
.worlds { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 860px) { .worlds { grid-template-columns: 1fr; } }
.world {
  position: relative;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s var(--ease);
  text-align: left;
  width: 100%;
}
.world:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--shadow); }
.world__art { position: absolute; inset: 0; z-index: 0; }
.world__art img { width: 100%; height: 100%; object-fit: cover; }
.world__art::after { content: ""; position: absolute; inset: 0; }
.world--day .world__art::after {
  background: linear-gradient(76deg, rgba(244, 244, 246, .92) 0%, rgba(244, 244, 246, .55) 46%, rgba(244, 244, 246, .05) 78%);
}
.world--night .world__art::after {
  background: linear-gradient(76deg, rgba(19, 20, 25, .9) 0%, rgba(19, 20, 25, .5) 46%, rgba(19, 20, 25, .08) 78%);
}
.world__art svg { width: 100%; height: 100%; }
.world > :not(.world__art) { position: relative; z-index: 1; }
.world h3 { font-family: var(--font-d); font-weight: 700; text-transform: uppercase; font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: .96; letter-spacing: -.01em; margin: 0 0 .7rem; }
.world__desc {
  font-size: .95rem;
  line-height: 1.55;
  max-width: 46ch;
  margin: 0 0 1.1rem;
  opacity: .88;
}
.world ul {
  list-style: none; margin: 0 0 1.4rem; padding: 0;
  font-family: var(--font-m); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-dim);
  display: flex; flex-wrap: wrap; gap: .45rem .6rem;
}
.world ul li { border: 1px solid var(--line-strong); padding: .34rem .68rem; border-radius: 999px; }
.world__go {
  font-family: var(--font-m); font-size: .72rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: var(--accent-text);
  display: inline-flex; align-items: center; gap: .5rem;
}
/* each world keeps its own contrast regardless of site mode */
.world--day { color: #131419; }
.world--day ul { color: rgba(20, 21, 26, .78); }
.world--day ul li { border-color: rgba(20, 21, 26, .46); background: rgba(244, 244, 246, .6); }
.world--day .world__go { color: #5b5f66; }
.world--night { color: #f4f4f6; }
.world--night ul { color: rgba(244, 244, 246, .82); }
.world--night ul li { border-color: rgba(244, 244, 246, .42); background: rgba(11, 12, 16, .5); }
.world--night .world__go { color: #f4f4f6; }

/* ---------- Event cards ---------- */
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 1020px) { .event-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .event-grid { grid-template-columns: 1fr; } }

.event {
  position: relative;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s, background-color var(--speed-theme);
}
.event:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--accent); }
.event__art { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.event__art svg, .event__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.event:hover .event__art svg, .event:hover .event__art img { transform: scale(1.045); }
.event__kind {
  position: absolute; top: .9rem; left: .9rem;
  font-family: var(--font-m); font-size: .62rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  padding: .34rem .66rem; border-radius: 999px;
  background: rgba(11, 12, 16, .78); color: #f4f4f6;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.event__kind.is-day { background: rgba(244,244,246,.86); color: #131419; }
.event__date {
  position: absolute; top: .9rem; right: .9rem;
  text-align: center;
  background: var(--text); color: var(--bg);
  border-radius: 2px;
  padding: .45rem .6rem .5rem;
  font-family: var(--font-m); font-weight: 600; line-height: 1;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--bg) 50%, transparent);
}
.event__date b { display: block; font-size: 1.25rem; letter-spacing: 0; }
.event__date span { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; }
.event__body { padding: 1.3rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.event__body h3 {
  margin: 0;
  font-family: var(--font-d); font-weight: 700;
  text-transform: uppercase; font-size: 1.32rem; line-height: 1.02; letter-spacing: -.01em;
}
.event__meta { font-family: var(--font-m); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-text); font-weight: 600; }
.event__desc { font-size: .92rem; color: var(--text-dim); line-height: 1.5; margin: 0; flex: 1; }
.event__foot { margin-top: .9rem; }
.event__foot .btn { width: 100%; padding-block: .8rem; }

/* filter chips */
.chips { display: flex; gap: .6rem; flex-wrap: wrap; }
.chip {
  min-height: 44px;
  font-family: var(--font-m); font-size: .7rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  padding: .55rem 1.1rem;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text-dim);
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--accent); color: var(--text); }
.chip[aria-pressed="true"] { background: var(--text); color: var(--bg); border-color: var(--text); }

/* ---------- FAQ accordion ---------- */
.faq details {
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--card);
  margin-bottom: .7rem;
  transition: border-color .25s, background-color var(--speed-theme);
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  font-family: var(--font-d);
  font-weight: 500;
  text-transform: uppercase;
  font-size: .98rem;
  letter-spacing: .01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-m);
  font-size: 1.15rem;
  color: var(--accent);
  transition: transform .25s var(--ease);
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__a { padding: 0 1.3rem 1.25rem; color: var(--text-dim); font-size: .95rem; max-width: 62ch; }

/* ---------- Forms ---------- */
.form { display: grid; gap: .9rem; }
.form-row { display: grid; gap: .9rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .4rem; }
.field label {
  font-family: var(--font-m); font-size: .64rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: var(--text-dim);
}
.field input, .field textarea, .field select {
  font: inherit;
  color: var(--text);
  background: var(--card);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  transition: border-color .2s, background-color var(--speed-theme);
  width: 100%;
}
.field input:focus, .field textarea:focus { border-color: var(--dock); }
.field textarea { min-height: 140px; resize: none; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-family: var(--font-m); font-size: .7rem; letter-spacing: .12em; color: color-mix(in srgb, var(--text) 76%, transparent); }
.form-status {
  display: none;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-family: var(--font-m);
  font-size: .8rem;
  letter-spacing: .06em;
}
.form-status.is-on { display: block; }
.form-status.ok { border-color: #1f9d55; }

/* newsletter band */
.band {
  border-block: 1.5px solid var(--line-strong);
  background:
    repeating-linear-gradient(-45deg,
      transparent 0 26px,
      color-mix(in srgb, var(--text) 5%, transparent) 26px 52px);
}
.band__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  padding-block: clamp(2.6rem, 5vw, 4rem);
}
.band h2 { font-size: clamp(1.8rem, 4vw, 3.1rem); margin: 0; }
.band form { display: flex; gap: .7rem; flex-wrap: wrap; }
.band input {
  font: inherit; color: var(--text);
  background: var(--card);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  min-width: min(320px, 72vw);
}
.band input:focus { border-color: var(--dock); }

/* ---------- Media / gallery ---------- */
.media-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 900px) { .media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .media-grid { grid-template-columns: minmax(0, 1fr); } }
.media-item {
  min-width: 0;
  position: relative;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--card);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.media-item:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.media-item svg, .media-item img, .media-item video { width: 100%; height: 100%; object-fit: cover; }
.media-item--wide { grid-column: span 2; aspect-ratio: 21 / 10; min-height: 320px; }
@media (max-width: 560px) { .media-item--wide { grid-column: span 1; min-height: 0; aspect-ratio: 4 / 3; } }
.media-item__tag {
  position: absolute; left: .9rem; bottom: .8rem;
  font-family: var(--font-m); font-size: .62rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  background: rgba(11,12,16,.78); color: #f4f4f6;
  padding: .34rem .66rem; border-radius: 999px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}

/* ---------- Store / coming soon ---------- */
.soon {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 110px;
  position: relative;
  overflow: clip;
  text-align: center;
  align-items: center;
}
.soon h1 { font-size: clamp(2.9rem, 11.5vw, 9rem); }
.soon .lede { margin-inline: auto; }
.soon .crane-scene { width: min(380px, 82vw); margin-bottom: 1.6rem; margin-inline: auto; color: var(--text); --ld-bg: var(--bg); }
.soon .hero__plate { justify-content: center; }
.soon form {
  display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap;
  margin-top: 1.6rem;
}
.soon form input[type=email] {
  font: inherit; color: var(--text); background: var(--card);
  border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  padding: .9rem 1.1rem; min-width: min(320px, 72vw);
}
.soon form input[type=email]:focus { border-color: var(--dock); }
.soon .form-status { margin-inline: auto; max-width: 480px; }

/* ---------- Footer ---------- */
.site-foot {
  border-top: 1.5px solid var(--line-strong);
  background: var(--bg-2);
  transition: background-color var(--speed-theme) var(--ease);
  position: relative;
  overflow: clip;
}
.site-foot::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 34px, color-mix(in srgb, var(--text) 3%, transparent) 34px 38px);
  pointer-events: none;
}
.site-foot__in {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.4rem;
  padding-block: clamp(2.8rem, 6vw, 4.6rem) 1.6rem;
}
@media (max-width: 820px) { .site-foot__in { grid-template-columns: 1fr; } }
.site-foot img { height: 84px; width: auto; margin-bottom: 1.1rem; }
.site-foot .foot-h {
  font-family: var(--font-m); font-size: .66rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: var(--accent-text);
  margin: 0 0 1rem;
}
.site-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-foot ul a {
  font-family: var(--font-m); font-size: .8rem; letter-spacing: .1em;
  color: var(--text-dim); transition: color .2s;
}
.site-foot ul a:hover { color: var(--accent); }
.site-foot__legal {
  position: relative;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-block: 1.2rem 1.4rem;
  font-family: var(--font-m); font-size: .64rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-dim);
}

/* hazard divider */
.hazard {
  height: 6px;
  background: repeating-linear-gradient(-45deg, var(--steel) 0 14px, transparent 14px 28px);
}

/* ---------- Reveal on scroll ---------- */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- Page intro (inner pages) ---------- */
.page-head { padding: 158px 0 clamp(2.4rem, 5vw, 4rem); }
.page-head h1 { font-size: clamp(2.7rem, 8.5vw, 6.8rem); }

/* ---------- 404 ---------- */
.lost { min-height: 100svh; display: grid; place-content: center; text-align: center; gap: 1.2rem; padding: var(--gutter); }
.lost h1 { font-size: clamp(3.4rem, 14vw, 9.5rem); }
.lost .eyebrow { justify-content: center; }


/* day mode: real render + light scrim */
html[data-mode="day"] .hero--photo .hero__bg::before { content: none; }
html[data-mode="day"] .hero--photo .hero__bg::after {
  background:
    linear-gradient(90deg, rgba(244, 244, 246, .78) 0%, rgba(244, 244, 246, .3) 42%, rgba(244, 244, 246, 0) 68%),
    linear-gradient(180deg,
    rgba(244, 244, 246, .6) 0%,
    rgba(244, 244, 246, .12) 30%,
    rgba(244, 244, 246, .22) 55%,
    rgba(244, 244, 246, .95) 100%);
  inset: 0; left: 0; bottom: 0; width: auto; height: auto; transform: none;
  animation: none; border-radius: 0;
}
/* stacked variant of the cargo cells (sound section) */
.cargo-strip__in--stack { grid-template-columns: 1fr; }
.cargo-strip__in--stack .cargo-cell { border-left: 0; border-top: 1px solid var(--line); }
.cargo-strip__in--stack .cargo-cell:first-child { border-top: 0; }

/* ---------- Small utilities ---------- */
.skip {
  position: fixed; top: -100px; left: var(--gutter); z-index: 120;
  background: var(--text); color: var(--bg);
  font-family: var(--font-m); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .7rem 1.1rem; border-radius: 0 0 4px 4px;
  transition: top .2s;
}
.skip:focus { top: 0; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.foot-tag {
  font-family: var(--font-m); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-dim); max-width: 30ch; line-height: 1.9;
}
.foot-tag .o { color: var(--dock); }

.contact-grid { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split .display { font-size: clamp(2rem, 4.6vw, 3.5rem); }
.body-copy p { margin: 0 0 1.1em; color: var(--text-dim); }
.body-copy p:last-child { margin-bottom: 0; }
.body-copy strong { color: var(--text); }

.cargo-cell { padding: 1.1rem 1.4rem 1.2rem; }

.play-badge {
  position: absolute; inset: 0; display: grid; place-content: center;
}
.play-badge svg { width: 74px; height: 74px; transition: transform .25s var(--ease); }
.media-item:hover .play-badge svg { transform: scale(1.08); }

.ig-cta { display: inline-flex; align-items: center; gap: .55rem; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .loader { display: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
  .band form .btn, .soon form .btn { width: 100%; }
}

/* ==========================================================================
   MOBILE FIT — compact type & spacing so nothing feels oversized on phones
   ========================================================================== */
@media (max-width: 640px) {
  .hero { min-height: 94svh; padding-top: 92px; }
  .hero h1 { font-size: clamp(1.7rem, 8.4vw, 2.2rem); margin-bottom: .8rem; }
  .hero__plate { font-size: .58rem; gap: .5rem; margin-bottom: 1rem; }
  .hero__plate .tag { padding: .26rem .55rem; }
  .lede { font-size: .95rem; line-height: 1.6; }
  .hero__sub { gap: 1.1rem; margin-bottom: 2rem; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1 1 auto; }

  .btn { padding: .85rem 1.2rem; font-size: .72rem; letter-spacing: .14em; }
  .section { padding-block: 3rem; }
  .section--tight { padding-block: 2.2rem; }
  .section-head { margin-bottom: 1.6rem; gap: 1rem; }
  .section-head h2 { font-size: 1.65rem; }
  .eyebrow { font-size: .62rem; letter-spacing: .22em; margin-bottom: .8rem; }
  .page-head { padding: 118px 0 1.8rem; }
  .page-head h1 { font-size: 2.15rem; }

  .marquee { padding-block: .6rem; }
  .marquee__track { font-size: .62rem; letter-spacing: .22em; }

  .cargo-cell { padding: .8rem 1rem .9rem; font-size: .58rem; }
  .cargo-cell b { font-size: .76rem; margin-top: .2rem; }

  .world { min-height: 330px; padding: 1.3rem; }
  .world h3 { font-size: 1.5rem; }
  .world__desc { font-size: .86rem; max-width: none; }
  .world ul { font-size: .64rem; gap: .35rem .45rem; }
  .world ul li { padding: .28rem .55rem; }
  .world__go { font-size: .64rem; }

  .event__body { padding: 1rem 1rem 1.1rem; }
  .event__body h3 { font-size: 1.12rem; }
  .event__meta { font-size: .6rem; }
  .event__desc { font-size: .86rem; }
  .event__date { padding: .34rem .5rem .4rem; }
  .event__date b { font-size: 1rem; }
  .event__date span { font-size: .5rem; }
  .event__kind { font-size: .55rem; padding: .28rem .55rem; }

  .split { gap: 1.6rem; }
  .split .display { font-size: 1.65rem; }
  .body-copy { font-size: .95rem; }

  .band__in { padding-block: 2.2rem; gap: 1.2rem; }
  .band h2 { font-size: 1.55rem; }
  .band input { min-width: 0; width: 100%; }
  .band form { width: 100%; }

  .faq summary { font-size: .9rem; padding: 1rem 1.05rem; }
  .faq .faq__a { font-size: .88rem; padding: 0 1.05rem 1.05rem; }

  .soon h1 { font-size: 2.3rem; }
  .soon .crane-scene { width: min(300px, 78vw); }
  .lost h1 { font-size: 2.6rem; }

  .site-foot img { height: 60px; }
  .site-foot__in { gap: 1.6rem; padding-block: 2.2rem 1.2rem; }
  .foot-tag { font-size: .62rem; }
  .site-foot ul a { font-size: .74rem; }
  .site-foot__legal { font-size: .56rem; }

  .media-item__tag { font-size: .55rem; }
  .pixelload { width: 104px; }
}
