:root {
  --ink: #171312;
  --ink-soft: #2a2420;
  --paper: #f7f0e7;
  --paper-deep: #eadcc8;
  --gold: #d9b775;
  --gold-dark: #9a6b35;
  --wine: #7d2638;
  --teal: #1f6b68;
  --mist: rgba(255, 250, 242, 0.76);
  --line: rgba(217, 183, 117, 0.34);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-body: "Onest", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 42px 42px;
  mix-blend-mode: soft-light;
}

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

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

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

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(23, 19, 18, 0.88), rgba(23, 19, 18, 0.72)),
    url("https://images.unsplash.com/photo-1726125560955-d4b23fc18027?auto=format&fit=crop&w=1800&q=82") center/cover;
}

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

.age-gate__panel {
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(23, 19, 18, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.age-gate__panel h2 {
  margin: 12px 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 600;
  line-height: 0.92;
}

.age-gate__panel p {
  margin: 0;
  color: rgba(247, 240, 231, 0.78);
  line-height: 1.7;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(247, 240, 231, 0.1);
  background: rgba(23, 19, 18, 0.46);
  backdrop-filter: blur(18px);
}

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

.brand {
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
}

.nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(247, 240, 231, 0.72);
  font-size: 13px;
}

.nav a,
.header-cta {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav a:hover,
.header-cta:hover {
  color: var(--paper);
}

.header-cta {
  justify-self: end;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(217, 183, 117, 0.46);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

.header-cta:hover {
  background: rgba(217, 183, 117, 0.12);
  border-color: var(--gold);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media {
  transform: scale(1.03);
  background:
    url("https://images.unsplash.com/photo-1640108821624-4b47663ea2dd?auto=format&fit=crop&w=2200&q=85") center/cover;
  animation: slow-drift 18s ease-in-out infinite alternate;
}

.hero__veil {
  background:
    radial-gradient(circle at 78% 62%, rgba(31, 107, 104, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(23, 19, 18, 0.94) 0%, rgba(23, 19, 18, 0.74) 42%, rgba(23, 19, 18, 0.16) 100%),
    linear-gradient(0deg, rgba(23, 19, 18, 0.72), transparent 30%);
}

.hero__inner {
  position: relative;
  display: grid;
  min-height: 88svh;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: end;
  gap: 32px;
  padding: 132px clamp(18px, 6vw, 76px) 58px;
}

.hero__copy {
  max-width: 850px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  margin: 10px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(78px, 16vw, 214px);
  font-weight: 700;
  line-height: 0.82;
}

.hero p {
  max-width: 700px;
  margin: 0;
  color: rgba(247, 240, 231, 0.82);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button--primary {
  background: var(--gold);
  color: #1d1715;
}

.button--primary:hover {
  background: #f0ce86;
}

.button--quiet,
.button--ghost {
  border-color: rgba(247, 240, 231, 0.28);
  color: var(--paper);
}

.button--quiet:hover,
.button--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero__brief {
  align-self: end;
  padding: 22px;
  border-left: 1px solid var(--gold);
  background: linear-gradient(90deg, rgba(23, 19, 18, 0.58), rgba(23, 19, 18, 0));
}

.hero__brief span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
}

.hero__brief p {
  margin-top: 12px;
  color: rgba(247, 240, 231, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.section-band {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.section-band--dark {
  background: var(--ink);
  color: var(--paper);
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0;
}

.intro__grid,
.screening__grid,
.apply__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
}

.intro h2,
.section-head h2,
.host-note h2,
.apply h2 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 600;
  line-height: 0.96;
}

.intro p,
.section-head p,
.host-note p,
.apply__copy p {
  margin: 0;
  color: rgba(23, 19, 18, 0.72);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}

.section-band--dark .section-head p,
.section-band--dark .apply__copy p {
  color: rgba(247, 240, 231, 0.72);
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head--center .kicker {
  justify-content: center;
}

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

.format-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(247, 240, 231, 0.14);
  border-radius: 8px;
  background: #241d1a;
}

.format-card img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transform: scale(1.01);
  transition: transform 600ms ease;
}

.format-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(23, 19, 18, 0.9), rgba(23, 19, 18, 0.1) 62%);
}

.format-card:hover img {
  transform: scale(1.07);
}

.format-card div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
}

.format-card span,
.rate-card__label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.format-card h3,
.steps h3,
.rate-card h3 {
  margin: 8px 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.format-card p,
.steps p,
.rate-card p {
  margin: 0;
  color: rgba(247, 240, 231, 0.74);
  line-height: 1.6;
}

.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid rgba(23, 19, 18, 0.16);
}

.steps li:last-child {
  border-bottom: 1px solid rgba(23, 19, 18, 0.16);
}

.steps span {
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 42px;
}

.steps p {
  color: rgba(23, 19, 18, 0.68);
}

.rates {
  background:
    linear-gradient(90deg, rgba(125, 38, 56, 0.08), transparent 38%),
    var(--paper);
}

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

.rate-card {
  min-height: 310px;
  padding: 24px;
  border: 1px solid rgba(23, 19, 18, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.9);
}

.rate-card--accent {
  background: var(--ink);
  color: var(--paper);
}

.rate-card h3 {
  color: inherit;
}

.rate-card .rate-card__price {
  margin: 28px 0 16px;
  color: #6d1f30;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700;
  line-height: 0.95;
}

.rate-card--accent .rate-card__price {
  color: var(--gold);
}

.rate-card p:not(.rate-card__price) {
  color: rgba(23, 19, 18, 0.66);
}

.rate-card--accent p:not(.rate-card__price) {
  color: rgba(247, 240, 231, 0.72);
}

.host-note {
  min-height: 600px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(23, 19, 18, 0.92), rgba(23, 19, 18, 0.66) 50%, rgba(23, 19, 18, 0.3)),
    url("https://images.unsplash.com/photo-1640108821624-4b47663ea2dd?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.host-note__content {
  display: flex;
  min-height: 600px;
  flex-direction: column;
  justify-content: center;
}

.host-note h2 {
  max-width: 980px;
}

.host-note p {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(247, 240, 231, 0.78);
}

.apply__copy {
  position: sticky;
  top: 110px;
}

.apply__note {
  display: grid;
  gap: 6px;
  margin-top: 34px;
  padding-left: 18px;
  border-left: 1px solid var(--gold);
}

.apply__note strong {
  color: var(--gold);
}

.apply__note span {
  color: rgba(247, 240, 231, 0.68);
  line-height: 1.5;
}

.apply-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(217, 183, 117, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
}

.field span,
.check span {
  color: rgba(247, 240, 231, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(247, 240, 231, 0.16);
  border-radius: 8px;
  outline: none;
  background: rgba(23, 19, 18, 0.46);
  color: var(--paper);
  padding: 12px 14px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.field select {
  color-scheme: dark;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(23, 19, 18, 0.66);
  box-shadow: 0 0 0 3px rgba(217, 183, 117, 0.12);
}

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

.field--hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--gold);
}

.check a,
.policy a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

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

.form-status.is-error {
  color: #ffb2a8;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid rgba(247, 240, 231, 0.1);
  background: var(--ink);
  color: rgba(247, 240, 231, 0.62);
  font-size: 13px;
}

.site-footer span:first-child {
  color: var(--paper);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.policy-page {
  background:
    linear-gradient(120deg, rgba(23, 19, 18, 0.96), rgba(42, 36, 32, 0.94)),
    url("https://images.unsplash.com/photo-1640108821624-4b47663ea2dd?auto=format&fit=crop&w=1800&q=82") center/cover fixed;
}

.policy {
  min-height: 100svh;
  padding: 128px 18px 72px;
}

.policy__article {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid rgba(217, 183, 117, 0.3);
  border-radius: 8px;
  background: rgba(23, 19, 18, 0.9);
  box-shadow: var(--shadow);
}

.policy__article h1 {
  margin: 16px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.96;
}

.policy__lead,
.policy__article p {
  color: rgba(247, 240, 231, 0.74);
  line-height: 1.72;
}

.policy__lead {
  max-width: 720px;
  margin: 0 0 34px;
  font-size: clamp(17px, 2vw, 21px);
}

.policy__article section {
  padding: 24px 0;
  border-top: 1px solid rgba(217, 183, 117, 0.18);
}

.policy__article h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
}

.policy__article p {
  max-width: 760px;
  margin: 0 0 12px;
}

.policy__updated {
  margin-top: 20px;
  color: var(--gold);
}

@keyframes slow-drift {
  from {
    transform: scale(1.03) translate3d(-0.6%, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(0.8%, -0.5%, 0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero__inner,
  .intro__grid,
  .screening__grid,
  .apply__grid {
    grid-template-columns: 1fr;
  }

  .hero__brief {
    max-width: 430px;
  }

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

  .apply__copy {
    position: static;
  }
}

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

  .brand {
    letter-spacing: 0.08em;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero__inner {
    align-items: center;
    min-height: 92svh;
    padding: 110px 18px 42px;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(23, 19, 18, 0.94), rgba(23, 19, 18, 0.58)),
      linear-gradient(0deg, rgba(23, 19, 18, 0.8), transparent 36%);
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

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

  .button {
    width: 100%;
  }

  .hero__brief {
    display: none;
  }

  .format__grid,
  .rates__grid,
  .apply-form {
    grid-template-columns: 1fr;
  }

  .format-card,
  .format-card img {
    min-height: 430px;
  }

  .steps li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .steps span {
    font-size: 34px;
  }
}
