:root {
  --ink: #f1ece4;
  --muted: #c2b8aa;
  --dim: #8a8278;
  --black: #070807;
  --panel: #121412;
  --panel-2: #191512;
  --line: rgba(241, 236, 228, 0.16);
  --amber: #c19252;
  --blood: #8f2f27;
  --green: #4e665d;
  --cold: #9ba7ad;
  --shadow: rgba(0, 0, 0, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

body.age-locked {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 5px
    ),
    radial-gradient(circle at 20% 10%, rgba(193, 146, 82, 0.08), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(78, 102, 93, 0.08), transparent 24%);
  mix-blend-mode: screen;
  opacity: 0.42;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.76), rgba(7, 8, 7, 0.94)),
    radial-gradient(circle at 74% 22%, rgba(143, 47, 39, 0.28), transparent 32%),
    url("assets/images/you-promised-me-cover-official.png") center / cover;
}

.age-gate.is-hidden {
  display: none;
}

.age-card {
  width: min(100%, 560px);
  border: 1px solid rgba(241, 236, 228, 0.18);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 42px);
  background: rgba(9, 10, 9, 0.86);
  box-shadow: 0 30px 90px var(--shadow);
  backdrop-filter: blur(10px);
}

.age-card img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 22px;
  filter: contrast(1.08) brightness(0.92);
}

.age-card h1 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 8vw, 4rem);
  line-height: 0.92;
}

.age-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.age-form input {
  width: 112px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 0 14px;
}

.age-message,
.notify-message {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--amber);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(to bottom, rgba(7, 8, 7, 0.9), rgba(7, 8, 7, 0.12));
  backdrop-filter: blur(6px);
}

.brand,
.nav-links,
.hero-actions,
.tabs,
.notify-form,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  object-fit: cover;
  filter: contrast(1.08) brightness(0.9);
}

.nav-links {
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--ink);
}

.language-switch {
  display: flex;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 3px;
  background: rgba(7, 8, 7, 0.48);
}

.language-switch button {
  min-width: 34px;
  min-height: 28px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  cursor: pointer;
}

.language-switch button.is-active {
  background: rgba(193, 146, 82, 0.2);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 72px) 72px;
}

.hero-image,
.hero-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05) brightness(0.68);
}

.hero-vignette {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.9) 0%, rgba(7, 8, 7, 0.55) 42%, rgba(7, 8, 7, 0.78) 100%),
    linear-gradient(0deg, var(--black) 0%, transparent 35%, rgba(7, 8, 7, 0.24) 100%);
}

.cover-hero .hero-image {
  object-position: center;
  filter: saturate(0.92) contrast(1.04) brightness(0.82);
}

.cover-hero .hero-vignette {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.08) 0%, rgba(7, 8, 7, 0.02) 48%, rgba(7, 8, 7, 0.52) 100%),
    linear-gradient(0deg, rgba(7, 8, 7, 0.94) 0%, transparent 34%, rgba(7, 8, 7, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.cover-hero .hero-content {
  width: min(560px, 100%);
  margin-top: auto;
}

.cover-hero .hero-copy {
  color: var(--muted);
}

.kicker,
.eyebrow,
.file-type,
.scroll-cue,
.footer,
.button,
.tab,
.notify-form input {
  font-family: Arial, Helvetica, sans-serif;
}

.kicker,
.eyebrow,
.file-type {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(4.2rem, 13vw, 10.5rem);
  font-weight: 400;
  line-height: 0.78;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 0.92;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  font-weight: 400;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-copy {
  max-width: 640px;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 18px;
  font-size: 0.78rem;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--blood);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff8ef;
}

.button.secondary {
  background: rgba(7, 8, 7, 0.44);
  color: var(--ink);
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 30px;
  z-index: 1;
  color: var(--cold);
  font-size: 0.78rem;
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.trailer-section,
.case-section,
.character-section,
.cicy-section,
.archive-section,
.media-section,
.wishlist-section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.trailer-section {
  background:
    linear-gradient(180deg, #070807, #11100d 52%, #090a09),
    radial-gradient(circle at 78% 24%, rgba(143, 47, 39, 0.14), transparent 30%);
}

.trailer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 7vw, 82px);
  align-items: center;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(241, 236, 228, 0.16);
  border-radius: 8px;
  background: #020202;
  box-shadow: 0 28px 80px var(--shadow);
}

.video-frame video,
.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  object-fit: cover;
}

.case-section {
  background: linear-gradient(180deg, var(--black), #11100d 55%, var(--black));
}

.case-grid,
.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.case-copy {
  border-left: 1px solid var(--line);
  padding-left: clamp(22px, 4vw, 46px);
}

.character-section {
  background:
    linear-gradient(180deg, #090a09, #15110f 48%, #0b0c0b),
    radial-gradient(circle at 68% 16%, rgba(143, 47, 39, 0.18), transparent 32%);
}

.adam-section {
  background:
    linear-gradient(180deg, #0b0c0b, #111513 48%, #070807),
    radial-gradient(circle at 24% 18%, rgba(78, 102, 93, 0.2), transparent 30%);
}

.character-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 82px);
  align-items: center;
}

.character-grid.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
}

.portrait-stack {
  position: relative;
  min-height: clamp(430px, 58vw, 620px);
}

.portrait-stack img,
.photo-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.portrait-stack img {
  position: absolute;
  border: 1px solid rgba(241, 236, 228, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 80px var(--shadow);
  filter: saturate(0.78) contrast(1.03);
}

.portrait-stack img:first-child {
  top: 0;
  left: 0;
  width: 72%;
  aspect-ratio: 0.82;
}

.portrait-stack img:last-child {
  right: 0;
  bottom: 0;
  width: 62%;
  aspect-ratio: 0.92;
  filter: saturate(0.7) contrast(1.12) brightness(0.82);
}

.adam-stack img:first-child {
  width: 70%;
  filter: saturate(0.65) contrast(1.08) brightness(0.78);
}

.adam-stack img:last-child {
  width: 66%;
  filter: saturate(0.58) contrast(1.12) brightness(0.72);
}

.character-copy {
  max-width: 640px;
}

.quiet-record {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.quiet-record img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(155, 167, 173, 0.22);
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(0.58) contrast(1.12) brightness(0.72);
}

.quiet-record span {
  display: block;
  margin-bottom: 6px;
  color: var(--cold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.quiet-record p {
  margin-bottom: 0;
  color: var(--dim);
  font-size: 0.98rem;
}

.cicy-section {
  background:
    linear-gradient(180deg, #070807, #14100f 50%, #090a09),
    radial-gradient(circle at 18% 22%, rgba(193, 146, 82, 0.12), transparent 30%);
}

.cicy-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 82px);
  align-items: center;
}

.missing-poster {
  max-width: 440px;
  border: 1px solid rgba(241, 236, 228, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: #f4f0e7;
  box-shadow: 0 28px 80px var(--shadow);
  transform: rotate(-1.5deg);
}

.missing-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.tabs {
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tab {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #101210;
  color: var(--muted);
  padding: 0 14px;
  text-transform: uppercase;
  cursor: pointer;
}

.tab.is-active {
  border-color: rgba(193, 146, 82, 0.68);
  background: rgba(193, 146, 82, 0.12);
  color: var(--ink);
}

.archive-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.archive-panel.is-hidden {
  display: none;
}

.file-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    linear-gradient(135deg, rgba(78, 102, 93, 0.13), rgba(143, 47, 39, 0.08)),
    var(--panel);
}

.file-card p {
  color: var(--dim);
}

.photo-card {
  padding: 0;
  overflow: hidden;
}

.photo-card img {
  height: 210px;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.72) contrast(1.08) brightness(0.86);
}

.photo-card .file-type,
.photo-card h3,
.photo-card p {
  display: block;
  margin-left: 20px;
  margin-right: 20px;
}

.photo-card .file-type {
  margin-top: 18px;
}

.photo-card p {
  margin-bottom: 22px;
}

.poster-card img {
  height: 260px;
  object-position: top center;
}

.media-section {
  background: #0d0f0d;
}

.media-intro {
  margin-bottom: clamp(44px, 7vw, 76px);
}

.media-feature {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(155, 167, 173, 0.2);
  border-radius: 8px;
  background: #070807;
  box-shadow: 0 28px 80px var(--shadow);
}

.media-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.1) brightness(0.76);
}

.media-feature span,
.shot-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  border: 1px solid rgba(241, 236, 228, 0.18);
  border-radius: 6px;
  background: rgba(7, 8, 7, 0.66);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  padding: 8px 10px;
  text-transform: uppercase;
}

.media-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(155, 167, 173, 0.2);
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 7px),
    linear-gradient(135deg, rgba(193, 146, 82, 0.14), rgba(78, 102, 93, 0.08)),
    #070807;
  color: var(--cold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.4rem, 5vw, 4rem);
}

.noise-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(241, 236, 228, 0.36);
  animation: scan 5s linear infinite;
}

@keyframes scan {
  from {
    transform: translateY(-170px);
  }
  to {
    transform: translateY(170px);
  }
}

.feature-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li {
  border-top: 1px solid var(--line);
  padding: 14px 0;
  color: var(--ink);
}

.screenshot-block {
  border-top: 1px solid var(--line);
  padding-top: clamp(36px, 6vw, 58px);
}

.section-heading.compact {
  max-width: 720px;
}

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

.shot-card {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(241, 236, 228, 0.12);
  border-radius: 8px;
  background: var(--panel);
}

.shot-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.shot-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.shot-card:hover img {
  transform: scale(1.025);
}

.shot-card.warm img {
  filter: saturate(0.78) contrast(1.04) brightness(0.82);
}

.shot-card.cold img {
  filter: saturate(0.66) contrast(1.12) brightness(0.72);
}

.wishlist-section {
  background:
    linear-gradient(90deg, rgba(143, 47, 39, 0.18), transparent 58%),
    linear-gradient(180deg, #100d0c, #080908);
}

.soundtrack-section {
  padding: clamp(72px, 10vw, 132px) 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(193, 146, 82, 0.12), transparent 30%),
    linear-gradient(180deg, #090a09, #14120f 52%, #080908);
}

.soundtrack-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(32px, 7vw, 82px);
  align-items: center;
}

.cassette-player {
  border: 1px solid rgba(241, 236, 228, 0.16);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 32px);
  background:
    linear-gradient(135deg, rgba(78, 102, 93, 0.18), rgba(143, 47, 39, 0.08)),
    #10110f;
  box-shadow: 0 28px 80px var(--shadow);
}

.cassette-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.cassette-reels {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 6vw, 56px);
  margin-bottom: 24px;
  border: 1px solid rgba(241, 236, 228, 0.1);
  border-radius: 8px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.24);
}

.cassette-reels span {
  width: 74px;
  aspect-ratio: 1;
  border: 10px solid rgba(241, 236, 228, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 18%, rgba(193, 146, 82, 0.5) 19% 23%, transparent 24%),
    repeating-conic-gradient(from 8deg, rgba(241, 236, 228, 0.2) 0 8deg, transparent 8deg 22deg);
}

.cassette-player audio {
  width: 100%;
  accent-color: var(--amber);
}

.wishlist-box {
  max-width: 780px;
}

.notify-form {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.notify-form input {
  min-width: min(100%, 340px);
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  padding: 0 14px;
  font-size: 0.95rem;
}

.notify-form input::placeholder {
  color: var(--dim);
}

.notify-message {
  text-transform: none;
}

.footer {
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .language-switch {
    align-self: flex-end;
  }

  .hero {
    min-height: 88svh;
    padding-top: 160px;
  }

  .case-grid,
  .trailer-grid,
  .character-grid,
  .character-grid.reverse,
  .cicy-grid,
  .soundtrack-grid,
  .media-grid,
  .archive-panel {
    grid-template-columns: 1fr;
  }

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

  .shot-card.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .case-copy {
    border-left: 0;
    padding-left: 0;
  }

  .file-card {
    min-height: 180px;
  }

  .portrait-stack {
    min-height: 520px;
  }
}

@media (max-width: 520px) {
  .nav-links {
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(3.5rem, 19vw, 6rem);
  }

  .button,
  .notify-form input,
  .age-form input,
  .age-form .button {
    width: 100%;
  }

  .quiet-record {
    grid-template-columns: 1fr;
  }

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