:root {
  color-scheme: dark;
  --black: #060406;
  --ink: #111014;
  --wine: #4c1022;
  --gold: #d7a75b;
  --cream: #f5efe6;
  --muted: #b9aaa1;
  --line: rgba(245, 239, 230, 0.18);
  --shadow: rgba(0, 0, 0, 0.55);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--cream);
}

body.gated {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 48px;
  background: linear-gradient(180deg, rgba(6, 4, 6, 0.86), rgba(6, 4, 6, 0));
}

.brand,
.nav-links,
.hero-actions,
.age-actions,
.input-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 750;
  font-size: 18px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(215, 167, 91, 0.75);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(6, 4, 6, 0.55);
}

.nav-links {
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(245, 239, 230, 0.08);
  cursor: pointer;
  white-space: nowrap;
}

.button.primary {
  border-color: rgba(215, 167, 91, 0.9);
  background: var(--gold);
  color: #180d06;
  font-weight: 750;
}

.button.ghost {
  backdrop-filter: blur(16px);
}

.button.small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px var(--shadow);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 132px 48px 72px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-foot.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 4, 6, 0.94) 0%, rgba(6, 4, 6, 0.72) 36%, rgba(6, 4, 6, 0.22) 78%),
    linear-gradient(180deg, rgba(6, 4, 6, 0.2), rgba(6, 4, 6, 0.88));
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: 72px;
  line-height: 0.96;
}

h2 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.08;
}

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

.hero-copy {
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.48;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip p {
  margin: 0;
  padding: 22px 48px;
  background: #0b090b;
  color: var(--muted);
  font-weight: 650;
}

.section,
.join-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  padding: 96px 48px;
}

.split,
.policy {
  max-width: 1180px;
  margin: 0 auto;
}

.section-copy,
.policy-list p,
.feature-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-card {
  min-height: 280px;
  padding: 42px;
  background:
    radial-gradient(circle at top right, rgba(76, 16, 34, 0.5), transparent 42%),
    var(--ink);
}

.feature-card span {
  display: block;
  margin-bottom: 72px;
  color: var(--gold);
  font-weight: 800;
}

.feature-card p {
  margin-bottom: 0;
}

.join-section {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(76, 16, 34, 0.82), rgba(6, 4, 6, 0.98)),
    var(--wine);
  border-top: 1px solid rgba(215, 167, 91, 0.24);
  border-bottom: 1px solid rgba(215, 167, 91, 0.24);
}

.join-form {
  width: min(620px, 100%);
  margin-left: auto;
}

.join-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}

.input-row {
  gap: 10px;
}

.input-row input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(245, 239, 230, 0.28);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--cream);
  background: rgba(6, 4, 6, 0.48);
  outline: none;
}

.input-row input:focus {
  border-color: var(--gold);
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--gold);
}

.policy-list {
  display: grid;
  gap: 18px;
}

.policy-list p {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.age-gate {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(6, 4, 6, 0.92), rgba(76, 16, 34, 0.9)),
    rgba(6, 4, 6, 0.9);
}

.age-gate.is-visible {
  display: flex;
}

.age-panel {
  width: min(460px, 100%);
  padding: 34px;
  border: 1px solid rgba(215, 167, 91, 0.4);
  border-radius: 8px;
  background: rgba(17, 16, 20, 0.96);
  box-shadow: 0 30px 80px var(--shadow);
}

.age-panel h2 {
  margin-bottom: 14px;
  font-size: 34px;
}

.age-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.age-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding: 112px 22px 54px;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 4, 6, 0.88), rgba(6, 4, 6, 0.44)),
      linear-gradient(180deg, rgba(6, 4, 6, 0.14), rgba(6, 4, 6, 0.9));
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .intro-strip,
  .feature-band,
  .section,
  .join-section {
    grid-template-columns: 1fr;
  }

  .intro-strip p,
  .section,
  .join-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section,
  .join-section {
    gap: 30px;
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .feature-card {
    min-height: 230px;
    padding: 32px 22px;
  }

  .feature-card span {
    margin-bottom: 44px;
  }

  .join-form {
    margin-left: 0;
  }

  .site-footer {
    padding: 24px 22px;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  .button.small {
    min-height: 38px;
    padding: 0 12px;
  }

  h1 {
    font-size: 40px;
  }

  .input-row {
    align-items: stretch;
    flex-direction: column;
  }

  .input-row .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
