:root {
  --ink: #f3eadb;
  --paper: #050505;
  --paper-strong: #0b0a08;
  --mist: #14120f;
  --forest: #1f342d;
  --moss: #778163;
  --copper: #c58a62;
  --wine: #8b3c3c;
  --night: #050505;
  --muted: #bfb3a2;
  --line: rgba(243, 234, 219, 0.16);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(24px, 4vw, 64px);
  color: var(--ink);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.88);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
}

.brand-mark {
  display: none;
}

.nav {
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  min-height: 100vh;
  padding-top: 92px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.68) 48%, rgba(5, 5, 5, 0.96)),
    radial-gradient(circle at 38% 42%, rgba(197, 138, 98, 0.14), transparent 34%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  padding: clamp(70px, 9vw, 118px) clamp(24px, 5vw, 76px) 44px;
}

.eyebrow,
.format-kicker {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--copper);
}

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

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  display: grid;
  gap: 0;
  margin-bottom: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 11vw, 9.8rem);
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 720px;
  padding-left: 22px;
  border-left: 1px solid rgba(197, 138, 98, 0.55);
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid rgba(197, 138, 98, 0.68);
  border-radius: 0;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

.button-primary {
  background: rgba(197, 138, 98, 0.12);
}

.button-secondary {
  background: transparent;
}

.hero-strip {
  position: relative;
  z-index: 1;
  padding: 0 clamp(24px, 5vw, 76px) 56px;
}

.hero-strip img {
  width: 100%;
  max-height: 34vh;
  min-height: 210px;
  object-fit: cover;
  opacity: 0.72;
}

.section {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
}

.section-heading {
  width: min(880px, 100%);
  margin-bottom: clamp(30px, 5vw, 56px);
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
  max-width: 1120px;
  font-size: 1.08rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: var(--paper-strong);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.text-panel {
  max-width: 760px;
  color: var(--muted);
}

.facts {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}

.facts div {
  padding: 18px 0;
  border-top: 1px solid rgba(25, 63, 53, 0.2);
}

.facts dt {
  color: var(--ink);
  font-weight: 900;
}

.facts dd {
  margin: 4px 0 0;
}

.region {
  background: var(--paper);
}

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

.feature {
  overflow: hidden;
  min-height: 100%;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
}

.feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature h3,
.feature p {
  padding-inline: 18px;
}

.feature h3 {
  margin-top: 18px;
  color: var(--ink);
}

.feature p {
  padding-bottom: 20px;
}

.formats {
  color: var(--paper-strong);
  background: #080706;
}

.formats .eyebrow,
.formats .format-kicker {
  color: #e8b97d;
}

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

.format-card {
  min-height: 320px;
  padding: 24px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 0;
  background: rgba(255, 250, 240, 0.04);
}

.format-card:nth-child(2) {
  background: rgba(91, 124, 82, 0.2);
}

.format-card:nth-child(3) {
  background: rgba(168, 95, 51, 0.18);
}

.format-card:nth-child(4) {
  background: rgba(109, 40, 50, 0.2);
}

.timeline {
  background: var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.steps article {
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--wine);
  font-weight: 900;
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(48px, 6vw, 84px) clamp(20px, 5vw, 76px);
  color: var(--ink);
  background: var(--mist);
}

.closing img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
  opacity: 0.84;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 76px);
  color: #fffaf0;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 800;
  text-decoration: none;
}

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

  .intro-grid,
  .split,
  .closing {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .format-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-panel img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding: 112px 20px 48px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .feature-row,
  .format-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .format-card,
  .steps article {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
  }
}
