:root {
  color-scheme: dark;
  --ink: #f1eee7;
  --muted: #b9b5ad;
  --quiet: #88837b;
  --ground: #111313;
  --surface: #181b1b;
  --line: rgba(241, 238, 231, 0.16);
  --accent: #a27035;
  --header-h: 72px;
}

@font-face {
  font-display: swap;
  font-family: "Nord";
  src: local("Nord"), url("assets/fonts/Nord.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "ITC Avant Garde";
  font-weight: 400;
  src:
    local("ITC Avant Garde Std Bk"),
    url("assets/fonts/ITCAvantGardeStd-Bk.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "ITC Avant Garde";
  font-weight: 600;
  src:
    local("ITC Avant Garde Std Demi"),
    url("assets/fonts/ITCAvantGardeStd-Demi.otf") format("opentype");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: "ITC Avant Garde", "Helvetica Neue", Arial, system-ui, sans-serif;
}

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

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

.site-header {
  align-items: center;
  display: flex;
  height: var(--header-h);
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.site-header::before {
  background: linear-gradient(to bottom, rgba(17, 19, 19, 0.86), rgba(17, 19, 19, 0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.wordmark,
.brand-name {
  font-family: "Nord", "ITC Avant Garde", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.wordmark {
  font-size: clamp(1.64rem, 2.4vw, 1.96rem);
  letter-spacing: 0.18em;
}

.brand-name {
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(241, 238, 231, 0.78);
  transition: color 180ms ease;
}

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

.hero {
  min-height: min(90svh, 820px);
  overflow: hidden;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 240ms ease;
  z-index: 3;
}

.hero::before {
  background:
    linear-gradient(168deg, transparent 18%, rgba(162, 112, 53, 0.58) 18.06%, rgba(162, 112, 53, 0.58) 18.14%, transparent 18.24%),
    linear-gradient(174deg, transparent 45%, rgba(162, 112, 53, 0.46) 45.06%, rgba(162, 112, 53, 0.46) 45.16%, transparent 45.28%),
    linear-gradient(186deg, transparent 73%, rgba(162, 112, 53, 0.32) 73.06%, rgba(162, 112, 53, 0.32) 73.14%, transparent 73.24%);
  opacity: 0.96;
}

.hero::after {
  background:
    repeating-linear-gradient(90deg, rgba(241, 238, 231, 0.055) 0, rgba(241, 238, 231, 0.055) 1px, transparent 1px, transparent 96px),
    linear-gradient(112deg, rgba(162, 112, 53, 0.22), transparent 34%);
  mix-blend-mode: screen;
  opacity: 0.52;
}

.hero.has-image::before,
.hero.has-image::after,
.hero.has-image .hero-fallback {
  opacity: 0;
}

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

.hero-image {
  object-fit: cover;
  z-index: 1;
}

.hero-image.is-missing {
  opacity: 0;
}

.hero-fallback {
  background:
    linear-gradient(118deg, rgba(162, 112, 53, 0.22), rgba(17, 19, 19, 0.12) 34%, rgba(17, 19, 19, 0.86) 74%),
    linear-gradient(180deg, #4b4234 0%, #202524 50%, #080a0a 100%);
  transition: opacity 240ms ease;
  z-index: 0;
}

.hero-fallback span {
  background: linear-gradient(90deg, rgba(162, 112, 53, 0), rgba(162, 112, 53, 0.62), rgba(162, 112, 53, 0.08));
  display: block;
  height: 1px;
  left: 5%;
  position: absolute;
  transform-origin: left center;
  width: 106%;
}

.hero-fallback span:nth-child(1) {
  top: 34%;
  transform: rotate(-9deg);
}

.hero-fallback span:nth-child(2) {
  top: 55%;
  transform: rotate(-3deg);
}

.hero-fallback span:nth-child(3) {
  top: 72%;
  transform: rotate(5deg);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 19, 19, 0.9) 0%, rgba(17, 19, 19, 0.6) 36%, rgba(17, 19, 19, 0.22) 70%, rgba(17, 19, 19, 0.72) 100%),
    linear-gradient(0deg, rgba(17, 19, 19, 0.9), rgba(17, 19, 19, 0.04) 48%);
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(90svh, 820px);
  padding: calc(var(--header-h) + 24px) clamp(20px, 6vw, 80px) 64px;
  position: relative;
  width: min(760px, 100%);
  z-index: 4;
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-weight: 600;
  line-height: 0.92;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.65rem, 6vw, 6.2rem);
  margin-bottom: 0;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-copy,
.intro-copy,
.teaser-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.55;
}

.hero-copy {
  max-width: 610px;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: #111313;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent);
}

.button-secondary {
  background: rgba(17, 19, 19, 0.26);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(241, 238, 231, 0.54);
}

.scroll-cue {
  border-left: 1px solid rgba(241, 238, 231, 0.44);
  bottom: 32px;
  height: 52px;
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  z-index: 5;
}

.scroll-cue span {
  animation: cue 1.8s ease-in-out infinite;
  background: var(--ink);
  display: block;
  height: 8px;
  margin-left: -1px;
  width: 1px;
}

.section-pad {
  padding: clamp(84px, 12vw, 160px) clamp(20px, 6vw, 80px);
}

.intro-section,
.format-section {
  background: var(--ground);
}

.intro-grid {
  display: grid;
  gap: clamp(36px, 6vw, 96px);
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.intro-copy {
  align-self: end;
}

.intro-copy p:last-child,
.teaser-card p:last-child {
  margin-bottom: 0;
}

.intro-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.teaser-section {
  background:
    radial-gradient(circle at 78% 12%, rgba(162, 112, 53, 0.22), transparent 32%),
    linear-gradient(180deg, #090b0b 0%, #15110d 100%);
}

.teaser-card {
  border: 1px solid var(--line);
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(28px, 6vw, 72px);
  position: relative;
}

.teaser-card::before {
  background:
    linear-gradient(174deg, transparent 22%, rgba(162, 112, 53, 0.5) 22.08%, rgba(162, 112, 53, 0.5) 22.16%, transparent 22.26%),
    linear-gradient(186deg, transparent 68%, rgba(162, 112, 53, 0.32) 68.06%, rgba(162, 112, 53, 0.32) 68.14%, transparent 68.24%);
  content: "";
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
}

.teaser-card > * {
  position: relative;
  z-index: 1;
}

.teaser-card h2 {
  font-family: "Nord", "ITC Avant Garde", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(5rem, 13vw, 10rem);
  font-weight: 400;
  text-transform: uppercase;
}

.teaser-card p {
  max-width: 720px;
  margin-top: 28px;
}

.fact-list {
  border-top: 1px solid var(--line);
  margin: clamp(36px, 6vw, 56px) 0 0;
}

.fact-list div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 120px 1fr;
  padding: 18px 0;
}

.fact-list dt {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
}

.format-list {
  border-top: 1px solid var(--line);
}

.format-list article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(18px, 3vw, 48px);
  grid-template-columns: 72px minmax(180px, 0.42fr) minmax(260px, 0.58fr);
  padding: clamp(28px, 4vw, 48px) 0;
}

.format-list span {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 600;
}

.format-list p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.final-section {
  align-items: end;
  background:
    linear-gradient(120deg, rgba(162, 112, 53, 0.16), rgba(162, 112, 53, 0)),
    var(--surface);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 70svh;
  padding: clamp(84px, 12vw, 160px) clamp(20px, 6vw, 80px) clamp(32px, 5vw, 64px);
}

.final-section h2 {
  max-width: 820px;
}

.final-section .eyebrow {
  font-family: "Nord", "ITC Avant Garde", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.reveal {
  animation: rise 900ms ease both;
}

.reveal-media {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cue {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(26px);
  }
}

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

@media (max-width: 920px) {
  .intro-grid,
  .final-section {
    grid-template-columns: 1fr;
  }

  .format-list article {
    grid-template-columns: 52px 1fr;
  }

  .format-list p {
    grid-column: 2;
  }

  .final-section {
    align-items: start;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }

  .nav-links {
    gap: 18px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .hero-content {
    justify-content: end;
    min-height: 88svh;
    padding-bottom: 84px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(17, 19, 19, 0.44), rgba(17, 19, 19, 0.94) 68%),
      linear-gradient(90deg, rgba(17, 19, 19, 0.46), rgba(17, 19, 19, 0));
  }

  .button {
    width: 100%;
  }

  .fact-list div,
  .format-list article {
    grid-template-columns: 1fr;
  }

  .format-list p {
    grid-column: auto;
  }
}
