:root {
  --ink: #172019;
  --muted: #637065;
  --paper: #f6f5ef;
  --paper-2: #ebe8dc;
  --forest: #173c2b;
  --moss: #6f7d52;
  --brass: #b78b45;
  --charcoal: #101312;
  --line: rgba(23, 32, 25, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 19, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.gate-open {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  background: rgba(246, 245, 239, 0.94);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(16, 19, 18, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand strong {
  display: block;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid currentColor;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 800;
}

.header-action {
  white-space: nowrap;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 36px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.site-header.is-solid .language-switch {
  border-color: rgba(23, 32, 25, 0.18);
  background: rgba(23, 32, 25, 0.04);
}

.language-switch button {
  display: inline-grid;
  min-width: 34px;
  height: 28px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
}

.language-switch button.is-active {
  background: var(--brass);
  color: #17140f;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(18px, 7vw, 92px) 92px;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform: scale(1.04);
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 19, 18, 0.94), rgba(16, 19, 18, 0.52) 46%, rgba(16, 19, 18, 0.18)),
    linear-gradient(0deg, rgba(16, 19, 18, 0.78), rgba(16, 19, 18, 0.08) 56%);
}

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

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

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 10vw, 136px);
  line-height: 0.9;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy {
  width: min(620px, 100%);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.2vw, 24px);
}

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

.button.primary {
  border-color: var(--brass);
  background: var(--brass);
  color: #17140f;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button.secondary.dark {
  border-color: rgba(23, 32, 25, 0.26);
  color: var(--ink);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    linear-gradient(120deg, rgba(16, 19, 18, 0.92), rgba(23, 60, 43, 0.84)),
    url("assets/hero-trichomes.png") center / cover;
  color: var(--white);
}

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

.age-panel {
  width: min(620px, 100%);
  padding: clamp(28px, 6vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(246, 245, 239, 0.96);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.age-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 6vw, 56px);
}

.age-panel p:not(.eyebrow) {
  font-size: 17px;
}

.legal-card {
  display: grid;
  gap: 6px;
  margin: 20px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--brass);
  background: rgba(183, 139, 69, 0.1);
  color: var(--ink);
}

.legal-card strong {
  font-size: 15px;
}

.legal-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.hero-status {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 36px;
  z-index: 1;
  display: grid;
  gap: 4px;
  width: min(280px, calc(100% - 36px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(16, 19, 18, 0.48);
  backdrop-filter: blur(14px);
}

.hero-status span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-status strong {
  font-size: 18px;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 18px 0;
  animation: ticker-slide 28s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  font-size: clamp(18px, 2.4vw, 34px);
  font-family: "Playfair Display", Georgia, serif;
  white-space: nowrap;
}

.ticker span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
}

.band,
.split,
.rules,
.contact {
  padding: clamp(70px, 10vw, 128px) clamp(18px, 7vw, 92px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.intro {
  position: relative;
  isolation: isolate;
  background: var(--charcoal);
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(16, 19, 18, 0.3);
}

.club-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(240px, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
  margin-bottom: 1px;
  min-height: clamp(560px, 72vh, 760px);
  padding: clamp(34px, 6vw, 76px);
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(90deg, rgba(16, 19, 18, 0.96), rgba(16, 19, 18, 0.76) 42%, rgba(16, 19, 18, 0.2)),
    url("assets/real-grow-room.jpeg") center right / cover;
  color: var(--white);
  box-shadow: none;
}

.club-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 19, 18, 0.42), transparent 5%, transparent 95%, rgba(16, 19, 18, 0.42)),
    linear-gradient(0deg, rgba(16, 19, 18, 0.42), transparent 6%, transparent 94%, rgba(16, 19, 18, 0.42));
}

.club-copy {
  display: grid;
  align-content: center;
  grid-column: 1;
  position: relative;
  z-index: 1;
}

.real-photo-label {
  position: absolute;
  left: clamp(34px, 6vw, 76px);
  bottom: clamp(12px, 2vw, 22px);
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.club-copy h2 {
  width: min(720px, 100%);
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.96;
}

.club-copy p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.5vw, 21px);
}

.club-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.club-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.intro-grid article,
.benefit-grid article {
  min-height: 250px;
  background: rgba(246, 245, 239, 0.94);
  padding: clamp(24px, 4vw, 42px);
}

.intro-grid span {
  display: block;
  margin-bottom: 56px;
  color: var(--brass);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  background: var(--forest);
  color: var(--white);
}

.split p {
  color: rgba(255, 255, 255, 0.74);
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.step span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--brass);
  color: #14110c;
  font-weight: 900;
}

.compact {
  display: block;
  width: min(760px, 100%);
}

.benefits {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, var(--charcoal) 0%, rgba(16, 19, 18, 0.9) 24%, rgba(23, 60, 43, 0.94) 100%),
    linear-gradient(90deg, rgba(16, 19, 18, 0.86), rgba(16, 19, 18, 0.48) 55%, rgba(16, 19, 18, 0.82)),
    url("assets/control-monitor.jpg") center / cover;
  color: var(--white);
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("assets/control-monitor.jpg") center / cover;
  filter: blur(3px) saturate(0.78);
  opacity: 0.36;
  transform: scale(1.03);
}

.benefits h2 {
  color: var(--white);
}

.benefits .section-heading,
.benefits .benefit-grid {
  position: relative;
  z-index: 1;
}

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-grid article {
  min-height: 220px;
  background: rgba(16, 19, 18, 0.58);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.benefits .benefit-grid {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.14);
}

.benefits .benefit-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.rules {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.rules ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rules li {
  padding: 22px 24px;
  border-left: 4px solid var(--brass);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(16, 19, 18, 0.07);
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  background: var(--charcoal);
  color: var(--white);
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 15px 16px;
  outline: none;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(183, 139, 69, 0.18);
}

.lead-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.intro-grid article,
.benefit-grid article,
.step,
.rules li,
.lead-form {
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.intro-grid article:hover,
.benefit-grid article:hover,
.step:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 18px 46px rgba(16, 19, 18, 0.12);
}

@keyframes ticker-slide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 30px clamp(18px, 7vw, 92px);
  background: #090b0a;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer strong {
  color: var(--white);
}

.footer a {
  color: var(--white);
  font-weight: 800;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.55;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: clamp(18px, 3vw, 30px);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  color: #07140c;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

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

  .nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .header-action {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .language-switch {
    min-height: 34px;
  }

  .language-switch button {
    min-width: 30px;
    height: 26px;
    font-size: 10px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 120px;
    padding-bottom: 150px;
  }

  .hero-status {
    left: 18px;
    right: 18px;
    bottom: 24px;
  }

  .section-heading,
  .club-hero,
  .split,
  .rules,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .intro-grid article,
  .benefit-grid article {
    min-height: auto;
  }

  .intro-grid span {
    margin-bottom: 28px;
  }

  .footer {
    display: grid;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

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

  .language-switch {
    grid-column: 1 / -1;
    justify-self: end;
    order: 3;
  }

  .site-header.is-solid .language-switch {
    display: none;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .club-hero {
    padding: 18px;
    gap: 16px;
    min-height: 620px;
    background:
      linear-gradient(0deg, rgba(16, 19, 18, 0.92), rgba(16, 19, 18, 0.54)),
      url("assets/real-grow-room.jpeg") center / cover;
  }

  .club-copy h2 {
    font-size: 40px;
  }

  .real-photo-label {
    left: 18px;
    bottom: 12px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
