:root {
  --bg: #000000;
  --bg-elevated: #0b0b0b;
  --red: #c4161c;
  --red-bright: #dc1e24;
  --red-deep: #7a0f14;
  --red-glow: rgba(180, 16, 28, 0.55);
  --text: #ffffff;
  --text-soft: #e8e8e8;
  --text-muted: #b7b7b7;
  --line: rgba(255, 255, 255, 0.14);
  --header-h: 78px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: Inter, system-ui, sans-serif;
  --display: Cinzel, "Playfair Display", serif;
  --script: "Great Vibes", cursive;
  --max: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 48px;
}

.logo img {
  height: 48px;
  width: auto;
  mix-blend-mode: screen;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
}

.nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 0 7px;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--red-bright);
}

.nav a.is-active {
  border-bottom-color: var(--red);
}

.header-end {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.socials {
  display: flex;
  gap: 8px;
}

.social {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.social svg {
  width: 14px;
  height: 14px;
}

.social:hover {
  border-color: var(--red);
  background: rgba(196, 22, 28, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-red:hover {
  background: var(--red-bright);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline-red {
  border-color: var(--red);
  border-width: 1.5px;
  color: #fff;
  background: transparent;
  padding-inline: 26px;
}

.btn-outline-red:hover {
  background: rgba(196, 22, 28, 0.12);
}

.icon {
  width: 16px;
  height: 16px;
}

.play {
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
}

.play::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red-bright);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero,
.story {
  scroll-margin-top: var(--header-h);
}

.hero {
  position: relative;
  z-index: 1;
  margin-top: calc(-1 * var(--header-h));
  height: 100vh;
  max-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(340px, 1.15fr) minmax(230px, 270px);
  grid-template-rows: minmax(0, 1fr);
  align-items: stretch;
  column-gap: 8px;
  padding: var(--header-h) 40px 0 56px;
  overflow: hidden;
  background: #000 url("../images/hero-background.png") center / cover no-repeat;
}

.watermark {
  position: absolute;
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 24px 12px 48px 0;
  max-width: 560px;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(56px, 7.4vw, 108px);
  line-height: 0.9;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 2px;
  margin-top: 18px;
  background: var(--red);
}

.lede {
  margin: 28px 0 14px;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 38ch;
}

.body {
  margin: 0 0 34px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-visual img {
  position: relative;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.signature {
  position: absolute;
  left: auto;
  right: -26%;
  top: 16%;
  margin: 0;
  font-family: var(--script);
  font-size: clamp(38px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.94);
  transform: rotate(-8deg);
  z-index: 3;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  white-space: nowrap;
}

.memoir-card {
  position: relative;
  z-index: 4;
  align-self: end;
  width: 100%;
  max-width: 250px;
  margin: 0 0 56px auto;
  padding: 22px 20px 18px;
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.memoir-kicker {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.memoir-kicker::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 10px;
  background: var(--red);
}

.memoir-card p:nth-of-type(2) {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.35);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.learn-more:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.story {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - var(--header-h));
  background: #000;
  overflow: hidden;
}

.watermark-story {
  left: -2%;
  top: 18%;
  font-size: clamp(220px, 32vw, 460px);
  color: rgba(255, 255, 255, 0.035);
  z-index: 0;
}

.story-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 48px 88px 64px;
  max-width: 740px;
}

.story-copy h2 {
  margin: 0 0 32px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.accent {
  color: var(--red-bright);
}

.story-body {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
}

.story-body p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  max-width: 62ch;
}

.story-copy .btn {
  align-self: flex-start;
}

.story-visual {
  position: relative;
  min-height: 720px;
  height: 100%;
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 90px;
  background: linear-gradient(to right, #000, transparent);
  pointer-events: none;
}

.story-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.teaser-modal[hidden] {
  display: none;
}

.teaser-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.teaser-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.teaser-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 32px));
  margin: 8vh auto 0;
}

.teaser-close {
  position: absolute;
  right: 8px;
  top: -40px;
  font-size: 32px;
  line-height: 1;
  color: #fff;
}

.teaser-frame {
  position: relative;
  background: #111;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.teaser-frame img {
  width: 100%;
  height: min(70vh, 560px);
  object-fit: cover;
  object-position: center top;
}

.teaser-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 28px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.teaser-caption h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 32px;
}

.teaser-caption .eyebrow {
  margin-bottom: 8px;
}

.teaser-caption p:last-child {
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 1180px) {
  .nav {
    gap: 12px;
  }

  .nav a {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero {
    grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr) minmax(210px, 240px);
    padding-left: 28px;
    padding-right: 24px;
  }

  .story-copy {
    padding: 72px 32px 72px 36px;
  }

  .signature {
    right: -18%;
  }
}

@media (max-width: 980px) {
  .site-header {
    background: #000;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #050505;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    font-size: 13px;
    padding: 10px 0;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    margin-top: 0;
    padding: 24px 24px 40px;
  }

  .story {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .hero-copy,
  .story-copy {
    padding: 24px 0 8px;
    max-width: none;
  }

  .hero-visual,
  .story-visual {
    height: 72vh;
    min-height: 480px;
  }

  .hero-visual img {
    max-width: 88%;
    height: 100%;
  }

  .signature {
    right: -6%;
    top: 8%;
  }

  .memoir-card {
    margin: 8px auto 0;
    max-width: none;
  }

  .watermark-story {
    font-size: 220px;
    left: 4%;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: 48px;
  }

  .story-copy h2 {
    font-size: 36px;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}
