:root {
  --ink: #15130f;
  --paper: #f2e7d2;
  --paper-soft: #fff7e8;
  --rust: #c85b32;
  --moss: #7a8a69;
  --gold: #e8b44f;
  --line: rgba(21, 19, 15, 0.18);
  --shadow: rgba(21, 19, 15, 0.24);
  --font-title: Georgia, "Noto Serif SC", serif;
  --font-body: "Noto Serif SC", "Songti SC", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21, 19, 15, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 19, 15, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  font-family: var(--font-body);
  line-height: 1.7;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(242, 231, 210, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-title);
  font-size: 15px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 14px;
}

nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

nav a:hover,
nav a:focus-visible {
  border-color: var(--rust);
  color: var(--rust);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(36px, 7vw, 96px) clamp(18px, 5vw, 72px) 64px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto 8% -6%;
  width: 32vw;
  height: 42vh;
  border: 1px solid rgba(200, 91, 50, 0.45);
  transform: rotate(-10deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-title);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 9em;
  font-size: clamp(46px, 8vw, 112px);
}

h2 {
  font-size: clamp(30px, 4.5vw, 62px);
}

h3 {
  font-size: clamp(21px, 2.5vw, 34px);
}

.hero-lede {
  max-width: 660px;
  margin: 28px 0 0;
  font-size: clamp(17px, 2vw, 23px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font: 900 14px/1 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-primary {
  background: var(--rust);
  color: var(--paper-soft);
}

.button-muted {
  background: var(--gold);
}

.button-ghost {
  background: transparent;
}

.hero-media {
  position: relative;
  align-self: stretch;
  margin: 0;
  min-height: 560px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.hero-media figcaption {
  position: absolute;
  right: clamp(16px, 4vw, 42px);
  bottom: clamp(16px, 4vw, 42px);
  max-width: 280px;
  padding: 18px;
  border: 1px solid var(--ink);
  background: var(--paper-soft);
  box-shadow: 8px 8px 0 var(--shadow);
  font-size: 14px;
}

.hero-media strong {
  display: block;
  margin-bottom: 6px;
  color: var(--rust);
}

.income-strip {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: 32px;
  display: grid;
  width: min(560px, calc(100vw - 36px));
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.income-strip span {
  color: var(--gold);
  font-weight: 900;
}

.income-strip strong {
  font-family: var(--font-title);
  font-size: clamp(26px, 4vw, 52px);
  line-height: 1;
}

.income-strip small {
  min-width: 0;
}

.reality-band,
.club-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background: var(--paper-soft);
}

.reality-band p,
.club-section p {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 22px);
}

.section-grid,
.shop-section,
.operate-section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

.feature-tile,
.offer-card,
.qr-panel {
  border: 1px solid var(--ink);
  background: rgba(255, 247, 232, 0.9);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.section-grid .section-heading {
  grid-column: 1 / -1;
}

.feature-tile {
  min-height: 250px;
  grid-column: span 4;
  padding: clamp(22px, 3vw, 34px);
}

.feature-tile.tall {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 520px;
  background: var(--moss);
  color: var(--paper-soft);
}

.feature-tile.wide {
  grid-column: span 7;
  background: var(--gold);
}

.tile-number,
.offer-label {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--rust);
  font-weight: 900;
}

.feature-tile.tall .tile-number {
  color: var(--gold);
}

.feature-tile p,
.offer-card p {
  margin: 18px 0 0;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.offer-card {
  min-height: 360px;
  padding: clamp(22px, 3vw, 34px);
}

.offer-card.accent {
  transform: translateY(28px);
  background: var(--ink);
  color: var(--paper);
}

.tracked-link {
  display: inline-flex;
  margin-top: 28px;
  font-weight: 900;
  color: var(--rust);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.offer-card.accent .tracked-link {
  color: var(--gold);
}

.club-section {
  background: var(--moss);
  color: var(--paper-soft);
}

.club-section .eyebrow {
  color: var(--gold);
}

.qr-panel {
  justify-self: end;
  width: min(100%, 380px);
  padding: 26px;
  background: var(--paper-soft);
  color: var(--ink);
  text-align: center;
}

.qr-grid {
  width: min(100%, 240px);
  aspect-ratio: 1;
  margin: 0 auto 20px;
  border: 1px solid var(--ink);
  background:
    linear-gradient(90deg, var(--ink) 12px, transparent 12px) 0 0 / 48px 48px,
    linear-gradient(var(--ink) 12px, transparent 12px) 0 0 / 48px 48px,
    var(--paper);
}

.qr-panel strong,
.qr-panel span {
  display: block;
}

.qr-panel span {
  margin-top: 8px;
  font-size: 14px;
}

.ops-list {
  display: grid;
  max-width: 980px;
  margin: 0;
  padding: 0;
  gap: 14px;
  list-style: none;
  counter-reset: ops;
}

.ops-list li {
  counter-increment: ops;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.ops-list li::before {
  content: counter(ops, decimal-leading-zero);
  color: var(--rust);
  font-family: var(--font-title);
  font-size: 34px;
  line-height: 1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(21, 19, 15, 0.84);
}

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

.gate-panel {
  width: min(680px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--ink);
  background: var(--paper-soft);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.4);
}

.gate-panel h1 {
  max-width: 10em;
  font-size: clamp(34px, 6vw, 68px);
}

.gate-panel p:not(.eyebrow) {
  margin: 22px 0 0;
}

@media (max-width: 920px) {
  .hero,
  .reality-band,
  .club-section,
  .section-heading,
  .offer-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 104px;
  }

  h1 {
    max-width: 11em;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  .income-strip {
    grid-template-columns: 1fr;
  }

  .feature-tile,
  .feature-tile.tall,
  .feature-tile.wide {
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .offer-card.accent {
    transform: none;
  }

  .qr-panel {
    justify-self: stretch;
  }
}

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

  nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-media,
  .hero-media img {
    min-height: 320px;
  }

  .hero-media figcaption {
    position: static;
    max-width: none;
    box-shadow: none;
  }

  .ops-list li {
    grid-template-columns: 1fr;
  }

  .gate-actions,
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
