* { box-sizing: border-box; }

:root {
  --black: #050505;
  --panel: #080808;
  --text: #f2f2ef;
  --muted: #989894;
  --line: rgba(255,255,255,.14);
}

html { scroll-behavior: smooth; background: var(--black); }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: .045;
  background-image: radial-gradient(rgba(255,255,255,.7) .45px, transparent .55px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}


/* FIRST-VISIT CINEMATIC LOADER */
.first-loader {
  position: fixed;
  inset: 0;
  z-index: 250;
  overflow: hidden;
  background: #020202;
  opacity: 1;
  visibility: visible;
  transition: opacity .62s cubic-bezier(.2,.8,.2,1), visibility .62s ease;
}

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

.loader-smoke {
  position: absolute;
  inset: -7%;
  width: 114%;
  height: 114%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.14) brightness(.42);
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity .85s ease,
    filter 1s ease,
    transform 1.7s cubic-bezier(.2,.8,.2,1);
}

.first-loader.loader-reveal .loader-smoke {
  opacity: .92;
  filter: grayscale(1) contrast(1.10) brightness(.62);
  transform: scale(1.02);
}

.loader-blackout {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 47%, rgba(0,0,0,.16) 0%, rgba(0,0,0,.42) 50%, rgba(0,0,0,.88) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.08) 46%, rgba(0,0,0,.55));
}

.loader-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .06;
  background-image:
    linear-gradient(rgba(255,255,255,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.075) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, #000 0 16%, transparent 75%);
}

.loader-scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: -7%;
  z-index: 6;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent 3%, rgba(255,255,255,.18) 20%, rgba(255,255,255,.78) 50%, rgba(255,255,255,.18) 80%, transparent 97%);
  box-shadow: 0 0 22px rgba(255,255,255,.18);
  animation: loaderScan 1.35s cubic-bezier(.4,0,.2,1) .24s forwards;
}

@keyframes loaderScan {
  0%   { top: 3%; opacity: 0; }
  10%  { opacity: .85; }
  90%  { opacity: .38; }
  100% { top: 96%; opacity: 0; }
}

.loader-corner {
  position: absolute;
  z-index: 7;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 6px;
  line-height: 1;
  letter-spacing: .27em;
  color: rgba(255,255,255,.28);
  opacity: 0;
  animation: loaderMicro .38s ease .18s forwards;
}

.loader-corner-tl {
  left: 26px;
  top: 24px;
}

.loader-corner-br {
  right: 26px;
  bottom: 24px;
  text-align: right;
}

@keyframes loaderMicro {
  to { opacity: 1; }
}

.loader-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 8;
  width: min(480px, calc(100vw - 44px));
  transform: translate(-50%, -50%);
  text-align: center;
}

.loader-code {
  margin-bottom: 15px;
  font-size: 6px;
  letter-spacing: .42em;
  color: rgba(255,255,255,.28);
  opacity: 0;
  transform: translateY(4px);
  animation: loaderCode .34s ease .26s forwards;
}

@keyframes loaderCode {
  to { opacity: 1; transform: none; }
}

.loader-logo-shell {
  position: relative;
  width: 176px;
  margin: 0 auto;
}

.loader-logo {
  display: block;
  width: 176px;
  height: auto;
  opacity: 0;
  filter: brightness(1.08) contrast(1.08);
  clip-path: inset(0 100% 0 0);
  animation:
    loaderLogoCut .62s cubic-bezier(.16,.8,.2,1) .36s forwards,
    loaderLogoOpacity .18s ease .36s forwards;
}

.loader-logo-ghost {
  position: absolute;
  inset: -14px -22px;
  opacity: 0;
  border-top: 1px solid rgba(255,255,255,.20);
  border-bottom: 1px solid rgba(255,255,255,.10);
  transform: scaleX(.72);
  animation: loaderGhost .54s ease .48s forwards;
}

@keyframes loaderLogoCut {
  to { clip-path: inset(0 0 0 0); }
}

@keyframes loaderLogoOpacity {
  to { opacity: 1; }
}

@keyframes loaderGhost {
  0%   { opacity: 0; transform: scaleX(.72); }
  35%  { opacity: .58; }
  100% { opacity: .12; transform: scaleX(1); }
}

.loader-status {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  opacity: 0;
  animation: loaderStatusIn .32s ease .68s forwards;
}

.loader-status span,
.loader-status b {
  font-size: 6px;
  font-weight: 400;
  letter-spacing: .30em;
  color: rgba(255,255,255,.46);
}

.loader-status b {
  min-width: 34px;
  text-align: right;
  color: rgba(255,255,255,.72);
}

@keyframes loaderStatusIn {
  to { opacity: 1; }
}

.loader-progress {
  position: relative;
  height: 1px;
  margin-top: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.14);
}

.loader-progress i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: rgba(255,255,255,.88);
  box-shadow: 0 0 14px rgba(255,255,255,.38);
}

.loader-checker-rail {
  position: relative;
  width: 100%;
  height: 9px;
  margin-top: 17px;
  overflow: hidden;
  opacity: 0;
  filter: grayscale(1) brightness(.74);
  clip-path: inset(0 100% 0 0);
  transition:
    clip-path .68s cubic-bezier(.2,.8,.2,1),
    opacity .25s ease,
    filter .30s ease;
}

.loader-checker-rail img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  min-width: 450px;
  transform: translate(-50%, -50%);
}

.first-loader.loader-reveal .loader-checker-rail {
  opacity: .80;
  clip-path: inset(0 0 0 0);
}

.first-loader.loader-ready .loader-checker-rail {
  filter: grayscale(0) brightness(.88);
}

.loader-ready {
  margin-top: 15px;
  font-family: "Orbitron", sans-serif;
  font-size: 7px;
  letter-spacing: .38em;
  color: rgba(255,255,255,.70);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .24s ease, transform .24s ease;
}

.first-loader.loader-ready .loader-ready {
  opacity: 1;
  transform: none;
}

.first-loader.loader-ready .loader-logo {
  animation: loaderReadyPulse .26s ease forwards;
}

@keyframes loaderReadyPulse {
  0%   { transform: scale(1); filter: brightness(1.08); }
  50%  { transform: scale(1.035); filter: brightness(1.45); }
  100% { transform: scale(1); filter: brightness(1.12); }
}

.loader-flash {
  position: absolute;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0;
  background: #fff;
}

.first-loader.loader-exit .loader-flash {
  animation: loaderExitFlash .36s ease forwards;
}

.first-loader.loader-exit .loader-stage {
  animation: loaderStageExit .46s cubic-bezier(.2,.8,.2,1) forwards;
}

.first-loader.loader-exit .loader-smoke {
  filter: grayscale(1) contrast(1.02) brightness(.82);
  transform: scale(1);
}

@keyframes loaderExitFlash {
  0%   { opacity: 0; }
  28%  { opacity: .15; }
  100% { opacity: 0; }
}

@keyframes loaderStageExit {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.035); filter: blur(2px); }
}

@media (max-width: 600px) {
  .loader-stage {
    width: calc(100vw - 38px);
  }

  .loader-logo-shell,
  .loader-logo {
    width: 150px;
  }

  .loader-corner {
    font-size: 5px;
  }

  .loader-corner-tl {
    left: 18px;
    top: 19px;
  }

  .loader-corner-br {
    right: 18px;
    bottom: 19px;
  }

  .loader-status span,
  .loader-status b {
    font-size: 5px;
  }

  .loader-checker-rail img {
    min-width: 390px;
  }
}

/* CURSOR FLASHLIGHT */
.flashlight {
  --x: 50vw;
  --y: 50vh;

  position: fixed;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      circle 220px at var(--x) var(--y),
      rgba(255,255,255,.095) 0%,
      rgba(255,255,255,.048) 24%,
      rgba(255,255,255,.015) 46%,
      rgba(255,255,255,0) 72%
    );
  mix-blend-mode: screen;
  transition: opacity .22s ease;
}

body.flashlight-ready .flashlight {
  opacity: 1;
}

/* CUSTOM DESIGNED — metallic light reacts to pointer */
.custom-designed {
  --feature-x: 50%;

  position: relative;
  color: transparent !important;
  background:
    radial-gradient(
      circle at var(--feature-x) 48%,
      #ffffff 0 7%,
      #dadad7 16%,
      #969692 42%,
      #d0d0cc 64%,
      #777773 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 1px 0 rgba(255,255,255,.07),
    0 18px 42px rgba(0,0,0,.42);
}

.custom-designed::after {
  content: "CUSTOM\A DESIGNED.";
  white-space: pre;
  position: absolute;
  inset: 0;
  z-index: -1;
  color: rgba(0,0,0,.35);
  transform: translateY(8px);
  filter: blur(3px);
}

.footer-statement {
  margin-top: 16px !important;
  font-size: 8px !important;
  line-height: 1.6 !important;
  letter-spacing: .22em !important;
  color: rgba(255,255,255,.42);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 38px;
  border-bottom: 1px solid transparent;
  background: rgba(4,4,4,.22);
  transition: height .3s ease, background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  height: 58px;
  background: rgba(4,4,4,.82);
  backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.10);
}
.brand { justify-self: start; display: flex; align-items: center; }
.brand img { width: 138px; height: auto; transition: width .3s ease; }
.site-header.scrolled .brand img { width: 118px; }

.desktop-nav { display: flex; align-items: center; gap: 44px; }
.desktop-nav a {
  font-size: 9px;
  letter-spacing: .23em;
  color: rgba(255,255,255,.66);
  transition: color .18s ease;
}
.desktop-nav a:hover { color: #fff; }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.mini-link { font-size: 8px; letter-spacing: .22em; color: rgba(255,255,255,.54); }

.menu-button {
  display: none;
  width: 28px;
  height: 24px;
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
}
.menu-button span {
  position: absolute;
  left: 2px;
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,.82);
  transition: .25s ease;
}
.menu-button span:first-child { top: 8px; }
.menu-button span:last-child { top: 15px; }
.menu-button.active span:first-child { top: 11px; transform: rotate(45deg); }
.menu-button.active span:last-child { top: 11px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  padding: 105px 24px 28px;
  flex-direction: column;
  justify-content: space-between;
  background: #050505;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--line);
  font-size: 28px;
  font-weight: 300;
}
.mobile-menu nav a:last-child { border-bottom: 1px solid var(--line); }
.mobile-menu nav span { width: 28px; font-size: 8px; letter-spacing: .22em; color: rgba(255,255,255,.35); }
.mobile-meta { display: flex; justify-content: space-between; font-size: 8px; letter-spacing: .24em; color: rgba(255,255,255,.35); }

/* Hero */
.hero {
  position: relative;
  min-height: 620px;
  height: min(720px, 86svh);
  overflow: hidden;
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.hero-video {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(.78);
  transform: scale(1.02);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(0,0,0,.00) 0%, rgba(0,0,0,.08) 42%, rgba(0,0,0,.48) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,.00) 42%, rgba(0,0,0,.28));
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 0 18%, transparent 72%);
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(900px, 88vw);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-brand {
  margin: 0 0 18px;
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  letter-spacing: .48em;
  color: rgba(255,255,255,.52);
}
.hero h1 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(64px, 7.8vw, 116px);
  line-height: .88;
  font-weight: 800;
  letter-spacing: .006em;
  transform: scaleX(1.035);
  transform-origin: center;
  background:
    linear-gradient(
      180deg,
      #f2f2ef 0%,
      #cfcfca 18%,
      #8d8d89 43%,
      #dadad5 63%,
      #9a9a96 82%,
      #ecece8 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 1px 0 rgba(255,255,255,.10),
    0 10px 30px rgba(0,0,0,.38),
    0 24px 70px rgba(0,0,0,.30);
  filter: contrast(1.05);
}
.hero-subtitle {
  margin: 27px 0 0;
  font-size: 9px;
  letter-spacing: .42em;
  color: rgba(255,255,255,.68);
}
.outline-button,
.street-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.34);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.outline-button {
  min-width: 195px;
  height: 43px;
  margin-top: 33px;
  background: rgba(0,0,0,.12);
  font-size: 8px;
  letter-spacing: .25em;
}
.outline-button:hover,
.street-button:hover {
  background: #efefec;
  color: #050505;
  border-color: #efefec;
  transform: translateY(-1px);
}
.hero-meta {
  position: absolute;
  bottom: 22px;
  z-index: 3;
  font-size: 7px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.30);
}
.hero-meta-left { left: 36px; }
.hero-meta-right { right: 36px; }

/* Checker transition */
.checker-divider {
  height: 30px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #050505;
}
.checker-divider img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  min-width: 1250px;
  transform: translate(-50%, -50%);
  filter: saturate(.86) contrast(1.08);
}

/* Zagreb culture */
.culture-section {
  padding: 22px 28px 36px;
  background: #050505;
}
.culture-grid {
  max-width: 1540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 12px;
}
.feature-card,
.story-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: #080808;
}
.feature-card { min-height: 610px; }
.feature-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: grayscale(1) contrast(1.12) brightness(.68);
  transform: scale(1.01);
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .5s ease;
}
.feature-card:hover .feature-image { transform: scale(1.025); filter: grayscale(1) contrast(1.12) brightness(.73); }
.feature-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.86) 32%, rgba(0,0,0,.30) 62%, rgba(0,0,0,.08) 100%),
    linear-gradient(to top, rgba(0,0,0,.54), transparent 45%);
}
.feature-smoke {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 44% 54%, rgba(255,255,255,.10), transparent 32%),
    radial-gradient(ellipse at 70% 30%, rgba(255,255,255,.08), transparent 28%);
  mix-blend-mode: screen;
  opacity: .46;
  filter: blur(16px);
}
.feature-copy {
  position: absolute;
  z-index: 3;
  left: 34px;
  top: 50%;
  width: min(400px, 48%);
  transform: translateY(-50%);
}
.eyebrow {
  margin: 0 0 18px;
  font-size: 9px;
  letter-spacing: .22em;
  color: rgba(255,255,255,.66);
  display: flex;
  align-items: center;
  gap: 16px;
}
.eyebrow span { display: block; width: 56px; height: 1px; background: rgba(255,255,255,.52); }
.feature-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(58px, 6vw, 92px);
  font-weight: 700;
  line-height: .82;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.feature-deck {
  margin: 25px 0 0;
  max-width: 370px;
  font-size: 10px;
  line-height: 1.65;
  letter-spacing: .12em;
  color: rgba(255,255,255,.62);
}
.street-button {
  min-width: 180px;
  height: 43px;
  margin-top: 28px;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 8px;
  letter-spacing: .18em;
}
.street-button b { font-size: 14px; font-weight: 400; }
.card-index {
  position: absolute;
  z-index: 3;
  left: 34px;
  bottom: 22px;
  font-size: 7px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.28);
}
.culture-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.story-card { min-height: 299px; }
.story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .4s ease;
}
.story-card:hover img { transform: scale(1.022); filter: brightness(.94); }

.story-card.clean-photo {
  min-height: 299px;
  background: #080808;
}
.story-card.clean-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: none;
}
.story-card.clean-photo:hover img {
  transform: scale(1.01);
  filter: none;
}
.story-card.clean-photo .story-shade,
.story-card.clean-photo .story-caption {
  display: none;
}

.story-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.12) 52%, rgba(0,0,0,.05) 100%);
}
.story-caption {
  position: absolute;
  z-index: 3;
  inset: auto 0 0 0;
  min-height: 78px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
}
.story-caption p { margin: 0; font-size: 13px; letter-spacing: .08em; }
.story-caption span { display: block; margin-top: 7px; font-size: 7px; letter-spacing: .22em; color: rgba(255,255,255,.48); }
.story-caption a {
  flex: 0 0 auto;
  min-width: 142px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.30);
  text-align: center;
  font-size: 7px;
  letter-spacing: .20em;
  transition: background .2s ease, color .2s ease;
}
.story-caption a:hover { background: #efefec; color: #050505; }

/* Footer */
.footer {
  padding: 30px 38px 34px;
  display: grid;
  grid-template-columns: 1.6fr .7fr .7fr 1fr;
  gap: 34px;
  align-items: end;
  border-top: 1px solid rgba(255,255,255,.10);
  background: #050505;
  color: rgba(255,255,255,.46);
}
.footer-brand img { width: 122px; }
.footer-brand p { margin: 16px 0 0; font-size: 9px; line-height: 1.7; letter-spacing: .05em; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col strong { margin-bottom: 3px; font-size: 8px; letter-spacing: .20em; color: rgba(255,255,255,.72); }
.footer-col a { font-size: 8px; letter-spacing: .12em; }
.footer-col a:hover { color: #fff; }
.footer-mark {
  justify-self: end;
  min-width: 210px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: .30em;
  color: rgba(255,255,255,.58);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

.hero-reveal { opacity: 0; transform: translateY(12px); animation: heroIn .85s cubic-bezier(.2,.8,.2,1) .25s forwards; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

@media (max-width: 1050px) {
  .desktop-nav { gap: 24px; }
  .culture-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 620px; }
  .culture-stack { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .story-card { min-height: 340px; }
  .footer { grid-template-columns: 1.4fr .7fr .7fr; }
  .footer-mark { grid-column: 1 / -1; justify-self: stretch; }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; padding: 0 20px; }
  .desktop-nav { display: none; }
  .mini-link { display: none; }
  .menu-button { display: block; }
  .mobile-menu { display: flex; }
  .hero { height: 82svh; min-height: 600px; }
  .hero-meta { display: none; }
  .culture-section { padding: 16px; }
  .feature-card { min-height: 680px; }
  .feature-copy { left: 24px; top: auto; bottom: 60px; width: calc(100% - 48px); transform: none; }
  .feature-gradient { background: linear-gradient(to top, rgba(0,0,0,.96), rgba(0,0,0,.30) 62%, rgba(0,0,0,.04)); }
  .feature-image { object-position: 58% center; }
  .card-index { left: 24px; bottom: 20px; }
  .culture-stack { grid-template-columns: 1fr; }
  .story-card { min-height: 390px; }
  .footer { grid-template-columns: 1fr 1fr; padding: 28px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-mark { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .brand img { width: 118px; }
  .hero h1 { font-size: 14vw; transform: scaleX(1.015); }
  .hero-subtitle { max-width: 80vw; font-size: 8px; line-height: 1.7; }
  .checker-divider { height: 22px; }
  .feature-card { min-height: 650px; }
  .feature-copy h2 { font-size: 17vw; }
  .feature-deck { font-size: 10px; }
  .story-card { min-height: 330px; }
  .story-caption { flex-direction: column; align-items: flex-start; }
  .story-caption a { min-width: 0; width: 100%; }
  .footer { grid-template-columns: 1fr; }
  .footer-brand, .footer-mark { grid-column: auto; }
}

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


/* ================================================================
   V18 / VOLUME II LOCKED PAGE
   ================================================================ */

.desktop-nav a.active {
  color: #fff;
}

.volume-nav-status {
  font-size: 7px;
  letter-spacing: .26em;
  color: rgba(255,255,255,.50);
}

.volume-page {
  background: #020202;
}

.lock-slide {
  --lock-x: 50%;
  --lock-y: 50%;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #020202;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.lock-video {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(.50);
  transform: scale(1.03);
}

.lock-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle 330px at var(--lock-x) var(--lock-y), rgba(255,255,255,.09), transparent 68%),
    radial-gradient(circle at center, rgba(0,0,0,.12), rgba(0,0,0,.82) 86%),
    linear-gradient(to bottom, rgba(0,0,0,.48), rgba(0,0,0,.06) 46%, rgba(0,0,0,.62));
}

.lock-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .065;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: radial-gradient(circle at center, #000 0 18%, transparent 78%);
}

.lock-scan {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  opacity: .16;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.70), transparent);
}

.lock-top-meta,
.lock-bottom-meta {
  position: absolute;
  left: 30px;
  right: 30px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  font-size: 6px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.28);
}

.lock-top-meta { top: 92px; }
.lock-bottom-meta { bottom: 25px; }

.lock-content {
  position: relative;
  z-index: 6;
  width: min(980px, calc(100vw - 40px));
  padding-top: 58px;
  text-align: center;
}

.lock-kicker {
  margin: 0 0 18px;
  font-size: 7px;
  letter-spacing: .38em;
  color: rgba(255,255,255,.38);
}

.lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.23);
  background: rgba(0,0,0,.22);
  font-size: 7px;
  letter-spacing: .27em;
  color: rgba(255,255,255,.68);
}

.lock-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.46);
  box-shadow: 0 0 13px rgba(255,255,255,.22);
}

.lock-content h1 {
  margin: 25px 0 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(62px, 10vw, 150px);
  font-weight: 800;
  line-height: .84;
  letter-spacing: -.015em;
  transform: scaleX(1.035);
  background: linear-gradient(
    180deg,
    #f3f3f0 0%,
    #c6c6c2 17%,
    #777773 43%,
    #d8d8d3 63%,
    #8d8d89 83%,
    #efefeb 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 20px 60px rgba(0,0,0,.48);
}

.lock-date {
  margin: 28px 0 0;
  font-size: 8px;
  letter-spacing: .34em;
  color: rgba(255,255,255,.49);
}

.countdown {
  margin: 44px auto 0;
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 10px;
}

.countdown-cell {
  min-width: 0;
}

.countdown-cell strong {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(42px, 6.2vw, 82px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
  color: #e2e2de;
}

.countdown-cell span {
  display: block;
  margin-top: 11px;
  font-size: 6px;
  letter-spacing: .32em;
  color: rgba(255,255,255,.31);
}

.countdown-separator {
  padding-top: 8px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  color: rgba(255,255,255,.18);
}

.lock-note {
  margin: 34px 0 0;
  font-size: 6px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.30);
}

.lock-scroll {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.20);
  font-size: 7px;
  letter-spacing: .22em;
  color: rgba(255,255,255,.60);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.lock-scroll span {
  font-size: 14px;
}

.lock-scroll:hover {
  background: #efefec;
  color: #040404;
  border-color: #efefec;
}

.inventory-slide {
  min-height: 100svh;
  padding: 96px 34px 42px;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    #050505;
  background-size: 100px 100px;
}

.inventory-header {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}

.inventory-kicker {
  margin: 0 0 12px;
  font-size: 7px;
  letter-spacing: .30em;
  color: rgba(255,255,255,.35);
}

.inventory-header h2 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(64px, 8vw, 116px);
  font-weight: 800;
  line-height: .86;
  letter-spacing: -.02em;
  color: #e6e6e2;
}

.inventory-state {
  padding-bottom: 7px;
  text-align: right;
}

.inventory-state span {
  display: block;
  font-size: 7px;
  letter-spacing: .24em;
  color: rgba(255,255,255,.38);
}

.inventory-state b {
  display: block;
  margin-top: 9px;
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .12em;
  color: rgba(255,255,255,.72);
}

.inventory-rule {
  max-width: 1500px;
  height: 1px;
  margin: 24px auto;
  background: rgba(255,255,255,.13);
}

.inventory-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
  border-left: 1px solid rgba(255,255,255,.12);
}

.inventory-unit {
  position: relative;
  min-height: 118px;
  overflow: hidden;
  padding: 13px 14px;
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,.022), transparent 42%),
    rgba(0,0,0,.15);
}

.inventory-unit::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 50%;
  height: 32px;
  transform: translateY(-50%) rotate(-2deg);
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 0 20px rgba(0,0,0,.50);
}

.inventory-unit::after {
  content: "PNV // CLASSIFIED";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: 5px;
  letter-spacing: .30em;
  color: rgba(255,255,255,.10);
}

.inventory-unit span,
.inventory-unit em {
  position: relative;
  z-index: 2;
  font-style: normal;
  font-size: 6px;
  letter-spacing: .25em;
  color: rgba(255,255,255,.27);
}

.inventory-unit span {
  float: left;
}

.inventory-unit em {
  float: right;
}

.inventory-unit b {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  font-family: "Orbitron", sans-serif;
  font-size: clamp(11px, 1.25vw, 18px);
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.82);
}

.inventory-footer {
  max-width: 1500px;
  margin: 23px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 6px;
  letter-spacing: .25em;
  color: rgba(255,255,255,.29);
}

/* At launch the page automatically shifts from LOCKED to LIVE. */
.volume-unlocked .lock-badge i {
  background: #e5e5e0;
  box-shadow: 0 0 18px rgba(255,255,255,.55);
}

.volume-unlocked .inventory-unit::before,
.volume-unlocked .inventory-unit::after,
.volume-unlocked .inventory-unit b {
  opacity: .16;
}

.volume-unlocked .inventory-unit {
  background: rgba(255,255,255,.018);
}

.volume-unlocked .volume-nav-status {
  color: rgba(255,255,255,.82);
}

@media (max-width: 900px) {
  .inventory-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .lock-content {
    padding-top: 80px;
  }
}

@media (max-width: 700px) {
  .volume-nav-status {
    display: none;
  }

  .lock-top-meta,
  .lock-bottom-meta {
    left: 18px;
    right: 18px;
    font-size: 5px;
  }

  .lock-top-meta {
    top: 80px;
  }

  .lock-content h1 {
    font-size: 16vw;
  }

  .lock-date {
    font-size: 6px;
    line-height: 1.7;
  }

  .countdown {
    gap: 4px;
  }

  .countdown-cell strong {
    font-size: 9.5vw;
  }

  .countdown-separator {
    padding-top: 4px;
    font-size: 7vw;
  }

  .countdown-cell span {
    font-size: 5px;
    letter-spacing: .22em;
  }

  .inventory-slide {
    padding: 82px 16px 28px;
  }

  .inventory-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .inventory-state {
    text-align: left;
  }

  .inventory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inventory-unit {
    min-height: 100px;
  }

  .inventory-unit b {
    font-size: 11px;
  }

  .inventory-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .lock-kicker {
    font-size: 5px;
  }

  .lock-badge {
    font-size: 6px;
  }

  .lock-note {
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
  }

  .lock-scroll {
    font-size: 6px;
  }
}



/* ================================================================
   V23 / WORLDWIDE SHIPPING FINAL BANNER
   ================================================================ */

.worldwide-banner {
  position: relative;
  min-height: 680px;
  height: min(78svh, 860px);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: #020202;
}

.worldwide-media {
  position: absolute;
  inset: -7%;
  overflow: hidden;
}

.worldwide-media img {
  width: 114%;
  height: 114%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.035);
  filter: none;
  transition:
    transform 1.4s cubic-bezier(.2,.8,.2,1);
}

.worldwide-banner:hover .worldwide-media img {
  transform: scale(1.055);
}

.worldwide-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.90) 0%,
      rgba(0,0,0,.70) 22%,
      rgba(0,0,0,.25) 48%,
      rgba(0,0,0,.06) 72%,
      rgba(0,0,0,.20) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,.58) 0%,
      rgba(0,0,0,.04) 36%,
      rgba(0,0,0,.08) 65%,
      rgba(0,0,0,.74) 100%
    );
}

.worldwide-smoke {
  position: absolute;
  inset: -10%;
  opacity: .42;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 8% 30%, rgba(255,255,255,.10), transparent 26%),
    radial-gradient(ellipse at 88% 72%, rgba(255,255,255,.08), transparent 28%),
    radial-gradient(ellipse at 40% 105%, rgba(255,255,255,.045), transparent 30%);
  filter: blur(22px);
  mix-blend-mode: screen;
}

.worldwide-grid {
  position: absolute;
  inset: 0;
  opacity: .045;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 116px 116px;
  mask-image: linear-gradient(90deg, black, rgba(0,0,0,.55) 35%, transparent 78%);
}

.worldwide-copy {
  position: relative;
  z-index: 4;
  width: min(540px, 42vw);
  margin-left: clamp(34px, 6vw, 96px);
  padding-top: 24px;
}

.worldwide-kicker {
  margin: 0 0 18px;
  font-size: 7px;
  letter-spacing: .34em;
  color: rgba(255,255,255,.40);
}

.worldwide-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(74px, 8vw, 132px);
  font-weight: 700;
  line-height: .80;
  letter-spacing: .015em;
  color: #f0f0ed;
  text-shadow:
    0 12px 42px rgba(0,0,0,.42),
    0 28px 82px rgba(0,0,0,.32);
}

.worldwide-sub {
  margin: 26px 0 0;
  font-size: 8px;
  letter-spacing: .30em;
  color: rgba(255,255,255,.55);
}

.worldwide-meta {
  width: min(430px, 100%);
  margin-top: 35px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: 6px;
  letter-spacing: .25em;
  color: rgba(255,255,255,.29);
}

.worldwide-corner {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  font-size: 5px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.22);
}

.worldwide-corner-left { left: 30px; }
.worldwide-corner-right { right: 30px; }

@media (max-width: 920px) {
  .worldwide-banner {
    min-height: 700px;
    height: 78svh;
    align-items: flex-end;
  }

  .worldwide-media {
    inset: -3%;
  }

  .worldwide-media img {
    width: 106%;
    height: 106%;
    object-position: 58% center;
    transform: scale(1.08);
  }

  .worldwide-vignette {
    background:
      linear-gradient(
        to top,
        rgba(0,0,0,.97) 0%,
        rgba(0,0,0,.79) 30%,
        rgba(0,0,0,.30) 61%,
        rgba(0,0,0,.18) 100%
      );
  }

  .worldwide-copy {
    width: calc(100% - 40px);
    margin: 0 20px 75px;
  }

  .worldwide-copy h2 {
    font-size: clamp(68px, 15vw, 108px);
  }
}

@media (max-width: 560px) {
  .worldwide-banner {
    min-height: 650px;
  }

  .worldwide-media img {
    object-position: 60% center;
    transform: scale(1.13);
  }

  .worldwide-copy {
    margin-bottom: 72px;
  }

  .worldwide-copy h2 {
    font-size: 18vw;
  }

  .worldwide-sub {
    font-size: 6px;
    line-height: 1.8;
  }

  .worldwide-meta {
    flex-direction: column;
    gap: 8px;
  }

  .worldwide-corner-right {
    display: none;
  }

  .worldwide-corner-left {
    left: 20px;
  }
}

/* ================================================================
   V26 / ABOUT PONAV
   ================================================================ */

.desktop-nav a.active { color: #fff; }
.about-page { background: #050505; }

.about-hero {
  position: relative;
  min-height: 790px;
  height: 94svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #020202;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.about-hero-image { position: absolute; inset: -5%; }

.about-hero-image img {
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.70) contrast(1.08) brightness(.56);
  transform: scale(1.04);
}

.about-hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.84) 31%, rgba(0,0,0,.43) 56%, rgba(0,0,0,.18) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.52), rgba(0,0,0,.04) 44%, rgba(0,0,0,.66));
}

.about-hero-smoke {
  position: absolute;
  inset: -10%;
  opacity: .44;
  background:
    radial-gradient(ellipse at 10% 28%, rgba(255,255,255,.11), transparent 25%),
    radial-gradient(ellipse at 75% 80%, rgba(255,255,255,.055), transparent 30%);
  mix-blend-mode: screen;
  filter: blur(22px);
}

.about-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .045;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(90deg, black, rgba(0,0,0,.5) 40%, transparent 80%);
}

.about-hero-copy {
  position: relative;
  z-index: 4;
  width: min(720px, 58vw);
  margin-left: clamp(30px, 7vw, 110px);
  padding-top: 50px;
}

.about-kicker {
  margin: 0 0 23px;
  font-size: 7px;
  letter-spacing: .38em;
  color: rgba(255,255,255,.40);
}

.about-hero-copy h1 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(70px, 8vw, 130px);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.025em;
  background: linear-gradient(180deg, #f2f2ef, #9a9a96 46%, #d6d6d1 68%, #7d7d79);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 28px 70px rgba(0,0,0,.40);
}

.about-intro {
  margin: 31px 0 0;
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: .27em;
  color: rgba(255,255,255,.57);
}

.about-hero-meta {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 22px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  font-size: 5px;
  letter-spacing: .27em;
  color: rgba(255,255,255,.25);
}

.about-statement {
  position: relative;
  min-height: 760px;
  padding: 120px clamp(28px, 8vw, 130px);
  display: grid;
  grid-template-columns: .28fr 1fr;
  gap: 50px;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background:
    linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px),
    #050505;
  background-size: 110px 110px;
}

.about-statement-index {
  padding-top: 12px;
  font-size: 6px;
  letter-spacing: .30em;
  color: rgba(255,255,255,.24);
}

.about-small-label {
  margin: 0 0 24px;
  font-size: 7px;
  letter-spacing: .32em;
  color: rgba(255,255,255,.36);
}

.about-statement-copy h2 {
  margin: 0;
  max-width: 980px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(68px, 8vw, 122px);
  font-weight: 700;
  line-height: .82;
  color: #edede9;
}

.about-body-copy {
  max-width: 780px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.about-body-copy p {
  margin: 0;
  font-size: 12px;
  line-height: 1.85;
  color: rgba(255,255,255,.49);
}

.about-philosophy {
  padding: 30px;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.about-philosophy-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
  border-left: 1px solid rgba(255,255,255,.12);
}

.about-philosophy-card {
  min-height: 330px;
  padding: 25px 24px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,.022), transparent 52%),
    rgba(0,0,0,.12);
}

.about-philosophy-card > span {
  font-size: 6px;
  letter-spacing: .26em;
  color: rgba(255,255,255,.24);
}

.about-philosophy-card > p {
  margin: auto 0 15px;
  font-size: 7px;
  letter-spacing: .30em;
  color: rgba(255,255,255,.34);
}

.about-philosophy-card strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  line-height: .95;
  font-weight: 700;
  color: #e9e9e5;
}

.about-philosophy-card em {
  margin-top: 18px;
  max-width: 300px;
  font-style: normal;
  font-size: 7px;
  line-height: 1.8;
  letter-spacing: .13em;
  color: rgba(255,255,255,.38);
}

.about-closing {
  min-height: 650px;
  padding: 90px 30px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.035), transparent 36%),
    #030303;
}

.about-closing-line p {
  margin: 0 0 24px;
  font-size: 7px;
  letter-spacing: .35em;
  color: rgba(255,255,255,.30);
}

.about-closing-line h2 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(62px, 8vw, 120px);
  line-height: .88;
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(180deg, #eeeeeb, #92928e 46%, #d6d6d1 68%, #73736f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-closing-line a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 44px;
  margin-top: 37px;
  border: 1px solid rgba(255,255,255,.25);
  font-size: 7px;
  letter-spacing: .23em;
  color: rgba(255,255,255,.70);
  transition: background .2s ease, color .2s ease;
}

.about-closing-line a:hover {
  background: #efefec;
  color: #050505;
}

@media (max-width: 900px) {
  .about-hero-copy {
    width: calc(100% - 42px);
    margin-left: 21px;
  }

  .about-statement {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-body-copy {
    grid-template-columns: 1fr;
  }

  .about-philosophy-grid {
    grid-template-columns: 1fr;
  }

  .about-philosophy-card {
    min-height: 260px;
  }
}

@media (max-width: 620px) {
  .about-hero {
    min-height: 720px;
    height: 88svh;
    align-items: flex-end;
  }

  .about-hero-image img {
    object-position: 58% center;
  }

  .about-hero-vignette {
    background:
      linear-gradient(to top, rgba(0,0,0,.97), rgba(0,0,0,.72) 35%, rgba(0,0,0,.24) 68%, rgba(0,0,0,.18));
  }

  .about-hero-copy {
    margin-bottom: 90px;
    padding-top: 0;
  }

  .about-hero-copy h1 {
    font-size: 16vw;
  }

  .about-intro {
    font-size: 7px;
  }

  .about-hero-meta {
    left: 20px;
    right: 20px;
  }

  .about-statement {
    min-height: auto;
    padding: 90px 20px;
  }

  .about-statement-copy h2 {
    font-size: 17vw;
  }

  .about-body-copy p {
    font-size: 11px;
  }

  .about-philosophy {
    padding: 18px;
  }

  .about-closing {
    min-height: 560px;
  }

  .about-closing-line h2 {
    font-size: 15vw;
  }
}


/* ================================================================
   V27 / SHOP — TWO COLLECTION WINDOWS
   ================================================================ */

.shop-section {
  padding: 112px 28px 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.025), transparent 30%),
    #050505;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.shop-heading,
.shop-grid {
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
}

.shop-heading {
  margin-bottom: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.shop-kicker {
  margin: 0 0 13px;
  font-size: 7px;
  letter-spacing: .32em;
  color: rgba(255,255,255,.34);
}

.shop-heading h2 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(60px, 7.5vw, 112px);
  line-height: .86;
  font-weight: 800;
  letter-spacing: -.025em;
  background: linear-gradient(180deg, #eeeeeb, #979793 46%, #d5d5d0 68%, #747470);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.shop-heading > span {
  padding-bottom: 8px;
  font-size: 6px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.26);
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.shop-window {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  background: #020202;
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    border-color .3s ease;
}

.shop-window:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.32);
}

.shop-window-media,
.shop-window-video {
  position: absolute;
  inset: -4%;
}

.shop-window-media img,
.shop-window-video video {
  width: 108%;
  height: 108%;
  object-fit: cover;
  transition:
    transform 1.2s cubic-bezier(.2,.8,.2,1),
    filter .5s ease;
}

.shop-v1 .shop-window-media img {
  object-position: 62% center;
  transform: scale(1.05);
  filter: saturate(.62) contrast(1.08) brightness(.56);
}

.shop-v1:hover .shop-window-media img {
  transform: scale(1.085);
  filter: saturate(.72) contrast(1.08) brightness(.62);
}

.shop-v2 .shop-window-video video {
  object-position: center;
  transform: scale(1.04);
  filter: grayscale(1) contrast(1.08) brightness(.56);
}

.shop-v2:hover .shop-window-video video {
  transform: scale(1.075);
  filter: grayscale(1) contrast(1.08) brightness(.63);
}

.shop-window-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.18) 46%, rgba(0,0,0,.36) 100%),
    radial-gradient(circle at center, transparent 18%, rgba(0,0,0,.24) 100%);
}

.shop-v1 .shop-window-overlay {
  background:
    linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.16) 48%, rgba(0,0,0,.42) 100%),
    linear-gradient(90deg, rgba(0,0,0,.30), transparent 60%);
}

.shop-window-lock-grid {
  position: absolute;
  inset: 0;
  opacity: .055;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.shop-window-top,
.shop-window-bottom {
  position: absolute;
  left: 22px;
  right: 22px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 6px;
  letter-spacing: .26em;
  color: rgba(255,255,255,.40);
}

.shop-window-top {
  top: 20px;
}

.shop-window-bottom {
  bottom: 20px;
  align-items: center;
}

.shop-window-bottom b {
  font-size: 6px;
  font-weight: 400;
  letter-spacing: .24em;
  color: rgba(255,255,255,.72);
}

.shop-window-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  text-align: center;
}

.shop-window-center p {
  margin: 0 0 12px;
  font-size: 7px;
  letter-spacing: .34em;
  color: rgba(255,255,255,.40);
}

.shop-window-center h3 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(110px, 12vw, 190px);
  line-height: .72;
  font-weight: 800;
  letter-spacing: -.06em;
  background: linear-gradient(180deg, #f1f1ee, #969692 46%, #d3d3ce 68%, #747470);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 24px 70px rgba(0,0,0,.42);
}

.shop-v2 .shop-window-center h3 {
  background: linear-gradient(180deg, #e6e6e2, #858581 45%, #cacac5 66%, #666662);
  -webkit-background-clip: text;
  background-clip: text;
}

@media (max-width: 900px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-window {
    min-height: 590px;
  }

  .shop-window-center h3 {
    font-size: 25vw;
  }
}

@media (max-width: 600px) {
  .shop-section {
    padding: 88px 16px 24px;
  }

  .shop-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-window {
    min-height: 520px;
  }

  .shop-window-top,
  .shop-window-bottom {
    left: 16px;
    right: 16px;
  }

  .shop-window-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .shop-v1 .shop-window-media img {
    object-position: 66% center;
  }
}


/* ================================================================
   V28 / INSTAGRAM SUPPORT
   ================================================================ */

.footer-support {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: end;
}

.footer-support span {
  font-size: 8px;
  letter-spacing: .20em;
  color: rgba(255,255,255,.72);
}

.footer-support a {
  max-width: 220px;
  font-size: 8px;
  line-height: 1.55;
  letter-spacing: .11em;
  color: rgba(255,255,255,.46);
  transition: color .18s ease;
}

.footer-support a:hover {
  color: #fff;
}

@media (max-width: 1050px) {
  .footer-support {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .footer-support {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-support {
    grid-column: auto;
  }
}


/* ================================================================
   V30 / STANDALONE SHOP + CORRECT V1/V2 ARTWORK
   ================================================================ */

.shop-page-main {
  background: #050505;
}

.shop-page .shop-section {
  min-height: 100svh;
  padding-top: 118px;
}

.shop-page .shop-window {
  min-height: 700px;
}

.shop-page .shop-v1 .shop-window-media img {
  object-position: center center;
  transform: scale(1.085);
  filter: saturate(.88) contrast(1.06) brightness(.68);
}

.shop-page .shop-v1:hover .shop-window-media img {
  transform: scale(1.115);
  filter: saturate(.94) contrast(1.08) brightness(.74);
}

.shop-page .shop-v2 .shop-window-media img {
  object-position: 62% center;
  transform: scale(1.06);
  filter: saturate(.62) contrast(1.08) brightness(.56);
}

.shop-page .shop-v2:hover .shop-window-media img {
  transform: scale(1.09);
  filter: saturate(.72) contrast(1.08) brightness(.62);
}

@media (max-width: 900px) {
  .shop-page .shop-window {
    min-height: 600px;
  }
}

@media (max-width: 600px) {
  .shop-page .shop-section {
    padding-top: 92px;
  }
}
