:root {
  color-scheme: dark;
  --ink: #090a09;
  --charcoal: #11130f;
  --panel: #151711;
  --bone: #f1ead9;
  --muted: #b7aa93;
  --gold: #c4a45a;
  --rust: #ad3d2d;
  --blue: #86aeb7;
  --green: #819958;
  --line: rgba(241, 234, 217, 0.16);
  --shadow: rgba(0, 0, 0, 0.46);
  font-family: "Aptos Display", "Gill Sans", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ink);
}

body {
  min-height: 100%;
  margin: 0;
  background:
    linear-gradient(115deg, rgba(173, 61, 45, 0.12), transparent 34%),
    linear-gradient(245deg, rgba(134, 174, 183, 0.1), transparent 42%),
    linear-gradient(180deg, #11130f 0%, #080908 48%, #050605 100%);
  color: var(--bone);
  font-family: "Aptos Display", "Gill Sans", "Trebuchet MS", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(241, 234, 217, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 234, 217, 0.032) 1px, transparent 1px);
  background-size: 92px 92px;
  mix-blend-mode: screen;
  opacity: 0.2;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 21;
  pointer-events: none;
  content: "";
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 4px
    );
  opacity: 0.38;
}

body.naked-video-page::before,
body.naked-video-page::after {
  display: none;
}

a {
  color: inherit;
}

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

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.top-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 34px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 8, 0.8);
  backdrop-filter: blur(18px);
}

.brand-mark {
  font-family: Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  min-height: 38px;
  padding: 11px 14px 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: rgba(241, 234, 217, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  border-color: rgba(196, 164, 90, 0.52);
  background: rgba(241, 234, 217, 0.07);
  color: var(--bone);
}

.nav-links a:focus-visible,
.button:focus-visible,
.social-card:focus-visible,
.film-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.page {
  min-height: 100vh;
  padding: 112px 34px 56px;
}

.home-page {
  padding: 112px 0 0;
  text-align: center;
}

.home-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 1060px);
  min-height: calc(100vh - 112px);
  margin: 0 auto;
  padding: 0 34px 76px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-title {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  font-size: 8.4rem;
  line-height: 0.85;
  text-transform: uppercase;
  text-shadow: 0 28px 80px var(--shadow);
}

.hero-line {
  margin: 32px auto 0;
  max-width: 780px;
  color: rgba(241, 234, 217, 0.82);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
}

.slashes {
  color: var(--gold);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 980px);
  margin: 76px auto 0;
}

.social-card {
  display: grid;
  min-height: 172px;
  place-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(241, 234, 217, 0.09), rgba(241, 234, 217, 0.035)),
    var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  color: var(--bone);
  font-family: Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.social-card span {
  display: block;
  color: var(--muted);
  font-family: "Aptos Display", "Gill Sans", "Trebuchet MS", sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-manifesto {
  width: min(100%, 890px);
  margin: 64px auto 0;
  color: rgba(241, 234, 217, 0.74);
  font-size: clamp(1.12rem, 1.8vw, 1.52rem);
  line-height: 1.55;
  text-align: left;
}

.home-manifesto p {
  margin: 0;
}

.home-manifesto p + p {
  margin-top: 22px;
}

.social-card:hover {
  border-color: rgba(196, 164, 90, 0.62);
  transform: translateY(-6px);
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 168px);
}

.naked-page {
  padding: 0;
}

.naked-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 112px 34px 56px;
}

.media-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.3), rgba(8, 9, 8, 0.76)),
    url("https://i.ytimg.com/vi/TKb9IXb9eN8/maxresdefault.jpg") center / cover;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
}

.naked-hero .media-stage {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 62% 42%, rgba(173, 61, 45, 0.18), transparent 34%),
    linear-gradient(135deg, #080908, #14110d 52%, #050605);
  box-shadow: none;
}

.media-stage iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  border: 0;
  opacity: 0.82;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: contrast(1.08) saturate(0.82) brightness(0.72);
}

.naked-hero .media-stage iframe {
  width: 177.78vh;
  min-width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  opacity: 0;
  animation: nakedVideoReveal 1ms linear 4000ms forwards;
  filter: contrast(1.06) saturate(0.9) brightness(0.9);
}

.media-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.72), transparent 44%),
    linear-gradient(180deg, transparent 38%, rgba(8, 9, 8, 0.84));
}

.naked-hero .media-stage::after {
  display: none;
}

.content-stack {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.86);
}

.hero-seal {
  display: grid;
  width: 96px;
  height: 96px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(241, 234, 217, 0.2);
  border-radius: 50%;
  background: rgba(8, 9, 8, 0.62);
  box-shadow: 0 0 70px rgba(173, 61, 45, 0.24);
  color: var(--bone);
  font-size: 1.12rem;
  font-weight: 900;
}

.naked-hero .eyebrow {
  font-size: 0.78rem !important;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.naked-hero .hero-seal {
  display: none !important;
}

.section-title {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  font-size: 6rem;
  line-height: 0.88;
  text-transform: uppercase;
}

.lead {
  margin: 28px 0 0;
  color: rgba(241, 234, 217, 0.76);
  font-size: 1.45rem;
  line-height: 1.46;
}

.series-line {
  max-width: 680px;
  color: rgba(241, 234, 217, 0.86);
  font-size: 1.18rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 20px;
  border: 1px solid rgba(241, 234, 217, 0.18);
  border-radius: 6px;
  background: rgba(241, 234, 217, 0.08);
  color: var(--bone);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button.primary {
  border-color: rgba(173, 61, 45, 0.74);
  background: var(--rust);
}

.button:hover {
  transform: translateY(-3px);
}

.signal-section,
.transmission-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70vh;
  padding: 96px 7vw;
}

.signal-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 26%, rgba(196, 164, 90, 0.1), transparent 34%),
    linear-gradient(135deg, #0d0f0d, #15120d);
}

.transmission-section {
  min-height: 78vh;
  background:
    radial-gradient(circle at 72% 42%, rgba(173, 61, 45, 0.22), transparent 34%),
    linear-gradient(180deg, #0d0f0d, #050605);
}

.signal-section h2,
.transmission-section h2 {
  max-width: 1180px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  font-size: clamp(3rem, 10vw, 8.25rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.signal-section p:not(.eyebrow),
.transmission-section p:not(.eyebrow) {
  max-width: 900px;
  margin: 28px 0 0;
  color: rgba(241, 234, 217, 0.7);
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  line-height: 1.45;
}

.transmission-section .button {
  width: fit-content;
  margin-top: 34px;
}

.orders-section {
  padding: 96px 34px;
  background: #050605;
}

.orders-title {
  margin: 0 0 40px;
  font-family: Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  font-size: clamp(3.6rem, 12vw, 7.4rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.myth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.order-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 17, 13, 0.82);
}

.order-card strong {
  display: block;
  color: var(--order-color);
  font-size: 0.9rem;
}

.order-card h3 {
  margin: 54px 0 12px;
  font-family: Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  font-size: 2.55rem;
  line-height: 0.94;
  text-transform: uppercase;
}

.order-card p {
  margin: 0;
  color: rgba(241, 234, 217, 0.68);
}

.archive-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin: 0 auto 46px;
  max-width: 1480px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
}

.home-archive {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 12%, rgba(173, 61, 45, 0.16), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(134, 174, 183, 0.1), transparent 32%),
    linear-gradient(180deg, #090a0b 0%, #050607 48%, #020303 100%);
  padding: 96px 34px 112px;
  text-align: left;
}

.count {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.archive-section-label {
  max-width: 1480px;
  margin: 0 auto 24px;
}

.timeline-title-block {
  margin-bottom: 46px;
}

.timeline-title-block h2 {
  max-width: 980px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  font-size: clamp(3.6rem, 10vw, 8.75rem);
  line-height: 0.84;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  gap: clamp(18px, 2vw, 28px);
  max-width: 1480px;
  margin: 0 auto;
  padding-top: 44px;
}

.timeline::before {
  position: absolute;
  top: 15px;
  right: 7%;
  left: 7%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(196, 164, 90, 0.78), rgba(134, 174, 183, 0.46), transparent);
  box-shadow: 0 0 36px rgba(196, 164, 90, 0.24);
}

.timeline-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: 16px;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(241, 234, 217, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(241, 234, 217, 0.09), rgba(241, 234, 217, 0.026)),
    rgba(11, 13, 11, 0.84);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  color: var(--bone);
  text-decoration: none;
  transform: translateY(0);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease;
}

.timeline-card::before {
  position: absolute;
  top: -32px;
  left: 50%;
  width: 1px;
  height: 32px;
  content: "";
  background: linear-gradient(180deg, rgba(196, 164, 90, 0.86), rgba(196, 164, 90, 0.08));
}

.timeline-date {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  padding: 12px 12px 13px;
  border-bottom: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(5, 6, 5, 0.58);
  color: var(--muted);
  text-transform: uppercase;
}

.timeline-pin {
  position: absolute;
  top: -40px;
  left: calc(50% - 8px);
  z-index: 1;
  width: 16px;
  height: 16px;
  border: 2px solid #090a09;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 1px rgba(196, 164, 90, 0.8),
    0 0 30px rgba(196, 164, 90, 0.55);
}

.timeline-date span,
.timeline-date strong {
  line-height: 1;
}

.timeline-date span {
  font-size: clamp(0.72rem, 0.9vw, 0.84rem);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.timeline-date strong {
  color: var(--gold);
  font-family: Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  font-size: clamp(2.1rem, 3vw, 3.05rem);
  font-weight: 400;
}

.timeline-card .poster {
  box-shadow: none;
}

.timeline-card:hover,
.timeline-card:focus-visible {
  border-color: rgba(196, 164, 90, 0.7);
  transform: translateY(-8px);
}

.timeline-card .timeline-copy {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px;
  border: 1px solid rgba(241, 234, 217, 0.14);
  border-radius: 7px;
  background: rgba(7, 8, 7, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.timeline-card:hover .timeline-copy,
.timeline-card:focus-visible .timeline-copy {
  opacity: 1;
  transform: translateY(0);
}

.timeline-copy h2 {
  margin: 0 0 8px;
  font-size: 1.14rem;
  line-height: 1.12;
}

.timeline-copy p {
  margin: 0;
  color: rgba(241, 234, 217, 0.66);
  font-size: 0.92rem;
  line-height: 1.42;
}

.timeline-card:hover .poster img {
  transform: scale(1.055);
}

.timeline-card:hover .poster::after {
  opacity: 1;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  gap: 18px;
  max-width: 1480px;
  margin: 0 auto;
}

.film-card {
  display: block;
  color: var(--bone);
  text-decoration: none;
}

.poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 420ms ease;
}

.poster::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  content: "PLAY";
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.76)),
    rgba(0, 0, 0, 0.04);
  color: rgba(241, 234, 217, 0.84);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  opacity: 0;
  transition: opacity 220ms ease;
}

.film-card:hover .poster img {
  transform: scale(1.055);
}

.film-card:hover .poster::after {
  opacity: 1;
}

.film-card h2 {
  margin: 14px 0 4px;
  font-size: 1.06rem;
  line-height: 1.18;
}

.film-card p {
  margin: 0;
  color: rgba(241, 234, 217, 0.62);
  font-size: 0.88rem;
  line-height: 1.38;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: baseline;
  justify-content: center;
  max-width: 1480px;
  margin: clamp(56px, 7vw, 84px) auto 0;
  padding: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.contact-section span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.contact-section a {
  color: var(--bone);
  font-size: clamp(1.35rem, 3vw, 2.65rem);
  font-weight: 900;
  line-height: 1.12;
  text-decoration: none;
}

.contact-section a:hover,
.contact-section a:focus-visible {
  color: var(--gold);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1280px) {
  .social-grid,
  .myth-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .film-grid {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
  }

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

}

@media (max-width: 920px) {
  .top-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .page {
    padding: 148px 20px 42px;
  }

  .home-page {
    padding: 148px 0 0;
  }

  .home-panel {
    min-height: calc(100vh - 148px);
    padding: 0 20px 64px;
  }

  .naked-page {
    padding: 0;
  }

  .hero-title {
    font-size: 5rem;
  }

  .hero-line {
    font-size: 1.45rem;
  }

  .split-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .media-stage {
    min-height: 420px;
    order: -1;
  }

  .naked-hero {
    padding: 148px 20px 56px;
  }

  .naked-hero .media-stage {
    order: initial;
  }

  .section-title {
    font-size: 4.25rem;
  }

  .lead {
    font-size: 1.16rem;
  }

  .archive-head {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-top: 0;
  }

  .timeline::before,
  .timeline-card::before,
  .timeline-pin {
    display: none;
  }

  .timeline-card .timeline-copy {
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

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

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

@media (max-width: 560px) {
  .top-nav {
    gap: 12px;
  }

  .nav-links a {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.68rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-line {
    font-size: 1.2rem;
  }

  .social-grid,
  .myth-grid,
  .film-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .social-card {
    min-height: 126px;
    font-size: 1.65rem;
  }

  .section-title {
    font-size: 3.2rem;
  }

  .media-stage {
    min-height: 300px;
  }

  .hero-seal {
    width: 78px;
    height: 78px;
    font-size: 0.96rem;
  }

  .signal-section,
  .home-archive,
  .transmission-section {
    padding: 72px 20px;
  }

  .orders-section {
    padding: 72px 20px;
  }
}

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