:root {
  --ivory: #f7f2e8;
  --warm-white: #fffaf0;
  --stone: #d9cbb9;
  --sand: #c9aa83;
  --olive: #777144;
  --olive-dark: #4d4a2d;
  --wine: #8f1024;
  --wine-dark: #5f0817;
  --ink: #171611;
  --charcoal: #28251d;
  --muted: #6e685e;
  --line: rgba(23, 22, 17, 0.12);
  --shadow: 0 24px 80px rgba(38, 31, 20, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(143, 16, 36, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(119, 113, 68, 0.05) 1px, transparent 1px),
    var(--ivory);
  background-size: 84px 84px;
  font-family: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(216, 184, 143, 0.72);
  outline-offset: 3px;
}

body.age-gate-locked {
  overflow: hidden;
}

body.age-gate-blocked .site-header,
body.age-gate-blocked main,
body.age-gate-blocked .site-footer {
  visibility: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(23, 22, 17, 0.08);
  background: rgba(247, 242, 232, 0.88);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1;
  color: var(--ink);
}

.brand-mark img {
  width: clamp(58px, 6.4vw, 82px);
  height: clamp(58px, 6.4vw, 82px);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a,
.nav-cta,
.language-switcher button,
.site-footer a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.nav-cta:hover,
.language-switcher button:hover,
.site-footer a:hover {
  color: var(--wine);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
}

.nav-cta {
  color: var(--wine-dark);
  font-weight: 700;
  white-space: nowrap;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-width: max-content;
  padding: 3px;
  border: 1px solid rgba(23, 22, 17, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.5);
}

.language-switcher button {
  min-width: 36px;
  min-height: 32px;
  border: 0;
  border-radius: calc(var(--radius) - 3px);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--wine);
  color: var(--warm-white);
}

.section-pad {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 79px);
  padding-top: clamp(48px, 8vw, 86px);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--wine);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 980px;
  margin-bottom: 26px;
  font-size: clamp(3.15rem, 8.8vw, 8.4rem);
}

h2 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-subtitle,
.insight p,
.membership-copy p,
.origin p,
.waitlist-copy p {
  max-width: 670px;
  color: var(--charcoal);
  font-size: clamp(1.06rem, 2vw, 1.34rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--warm-white);
}

.button-primary:hover {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.button-secondary {
  border-color: rgba(23, 22, 17, 0.22);
  background: rgba(255, 250, 240, 0.42);
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 22, 17, 0.1);
  background:
    linear-gradient(140deg, rgba(255, 250, 240, 0.82), rgba(217, 203, 185, 0.18)),
    var(--warm-white);
  box-shadow: var(--shadow);
}

.hero-path {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.release-card {
  position: absolute;
  right: clamp(18px, 4vw, 44px);
  bottom: clamp(18px, 4vw, 44px);
  z-index: 4;
  width: min(310px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(23, 22, 17, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 18px 48px rgba(38, 31, 20, 0.14);
  backdrop-filter: blur(14px);
}

.release-kicker,
.step-number {
  display: block;
  margin-bottom: 12px;
  color: var(--olive-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.release-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.insight,
.membership,
.origin,
.transparency,
.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.concept,
.audiences {
  border-bottom: 1px solid var(--line);
}

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

.steps-grid article,
.audience-grid article,
.membership-panel {
  min-height: 230px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 250, 240, 0.74);
}

.steps-grid p,
.audience-grid p,
.membership-panel li,
.transparency-list p {
  color: var(--muted);
}

.membership-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.membership-panel ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.membership-panel li {
  position: relative;
  padding-left: 26px;
}

.membership-panel li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wine);
}

.origin {
  align-items: center;
}

.origin-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(23, 22, 17, 0.1);
  background:
    linear-gradient(135deg, rgba(119, 113, 68, 0.22), rgba(143, 16, 36, 0.08)),
    var(--warm-white);
}

.origin-visual span {
  position: absolute;
  left: 34px;
  bottom: 30px;
  z-index: 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 8vw, 7rem);
  line-height: 1;
}

.region-lines {
  position: absolute;
  inset: 42px 32px;
}

.region-lines i {
  position: absolute;
  display: block;
  border: 2px solid rgba(77, 74, 45, 0.58);
  clip-path: polygon(12% 4%, 84% 8%, 98% 46%, 72% 94%, 22% 86%, 2% 38%);
}

.region-lines i:nth-child(1) {
  top: 0;
  left: 8%;
  width: 38%;
  height: 54%;
}

.region-lines i:nth-child(2) {
  right: 8%;
  top: 14%;
  width: 36%;
  height: 42%;
  background: rgba(201, 170, 131, 0.38);
}

.region-lines i:nth-child(3) {
  left: 26%;
  bottom: 4%;
  width: 52%;
  height: 44%;
  background: rgba(143, 16, 36, 0.08);
}

.transparency-list {
  display: grid;
  gap: 14px;
}

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

.waitlist {
  align-items: start;
  background: var(--charcoal);
  color: var(--warm-white);
}

.waitlist .eyebrow {
  color: #d8b88f;
}

.waitlist-copy p {
  color: rgba(255, 250, 240, 0.76);
}

.waitlist-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.06);
}

.waitlist-form label {
  display: grid;
  gap: 8px;
}

.waitlist-form span {
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: rgba(255, 250, 240, 0.1);
  color: var(--warm-white);
  outline: none;
}

.waitlist-form input[type="checkbox"] {
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--wine);
}

.waitlist-form textarea {
  min-height: 118px;
  resize: vertical;
}

.waitlist-form select option {
  color: var(--ink);
}

.waitlist-form input::placeholder,
.waitlist-form textarea::placeholder {
  color: rgba(255, 250, 240, 0.42);
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  border-color: #d8b88f;
  box-shadow: 0 0 0 3px rgba(216, 184, 143, 0.18);
}

.checkbox-label {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-label span {
  color: rgba(255, 250, 240, 0.78);
  line-height: 1.45;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #d8b88f;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--warm-white);
}

.site-footer .brand-mark {
  color: var(--warm-white);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.site-footer .legal {
  grid-column: 1 / -1;
  max-width: 820px;
  color: rgba(255, 250, 240, 0.5);
  font-size: 0.84rem;
}

.site-footer .legal-compliance {
  max-width: 1040px;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(23, 22, 17, 0.66), rgba(23, 22, 17, 0.74)),
    rgba(247, 242, 232, 0.98);
}

.age-gate[hidden] {
  display: none;
}

.age-gate__panel {
  width: min(100%, 520px);
  padding: clamp(26px, 6vw, 44px);
  border: 1px solid rgba(23, 22, 17, 0.12);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: 0 34px 100px rgba(23, 22, 17, 0.28);
  color: var(--ink);
}

.age-gate__kicker {
  margin: 0 0 12px;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.age-gate__title {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 8vw, 3.75rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.age-gate__body,
.age-gate__blocked {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.04rem;
}

.age-gate__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.age-gate__reject {
  border-color: rgba(23, 22, 17, 0.2);
  background: transparent;
  color: var(--ink);
}

.age-gate__reject:hover {
  border-color: var(--ink);
  background: rgba(23, 22, 17, 0.04);
}

.age-gate__blocked {
  font-weight: 700;
}

@media (max-width: 1080px) {
  .hero,
  .insight,
  .membership,
  .origin,
  .transparency,
  .waitlist {
    grid-template-columns: 1fr;
  }

.hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

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

.hero > *,
.insight > *,
.membership > *,
.origin > *,
.transparency > *,
.waitlist > * {
  min-width: 0;
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 14px 18px;
  }

  .site-nav {
    display: none;
  }

  .brand-mark span {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions {
    gap: 10px;
  }

  .language-switcher button {
    min-width: 32px;
  }

  .section-pad {
    padding: 64px 18px;
  }

  .hero-copy {
    width: min(100%, calc(100vw - 36px));
  }

  .hero-subtitle {
    max-width: 100%;
  }

  h1 {
    width: 100%;
    max-width: 8.8em;
    font-size: clamp(2.25rem, 9.35vw, 2.58rem);
    line-height: 1.02;
    text-wrap: wrap;
  }

  .hero-visual {
    min-height: 500px;
  }

  .steps-grid,
  .audience-grid,
  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .steps-grid article,
  .audience-grid article {
    min-height: auto;
  }

  .origin-visual {
    min-height: 320px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

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

  .brand-mark {
    gap: 12px;
    font-size: clamp(1.1rem, 5.4vw, 1.45rem);
  }

  .brand-mark img {
    width: 52px;
    height: 52px;
  }

  .brand-mark span {
    max-width: 168px;
  }

  .hero-copy,
  .hero-visual {
    width: min(100%, 354px);
    max-width: 354px;
    justify-self: start;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-visual {
    min-height: 460px;
  }

  .release-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
  }
}
