/* ==========================================================================
   THE CANNABIS CO. — B1G1 CAMPAIGN LANDING PAGE
   Standalone. Shares no CSS with thecannabisconv.com.
   Brand tokens mirrored from the live site so the look stays consistent.
   ========================================================================== */

@font-face {
  font-family: "Freestyle Script";
  src: url("../assets/fonts/freestyle-script.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  --green: #7eed57;
  --pink: #ff2e9e;
  --teal: #00b3b3;
  --yellow: #ffc536;
  --purple: #a64cfc;

  --bg: #020202;
  --bg-2: #0a0a0b;
  --card: #121214;
  --card-2: #17171a;
  --card-line: #26262c;

  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.5);
  --line: rgba(255, 255, 255, 0.14);

  --glow-green: rgba(126, 237, 87, 0.28);
  --glow-pink: rgba(255, 46, 158, 0.28);

  --f-body: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-cond: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --f-disp: "Anton", Impact, "Arial Narrow", sans-serif;
  --f-script: "Freestyle Script", cursive;

  --wrap: 1240px;
  --gut: 24px;
  --pad-y: clamp(76px, 9vw, 136px);

  --r-card: 16px;
  --r-lg: clamp(18px, 2vw, 26px);
  --r-pill: 999px;

  --t-fast: 0.2s ease;
  --t-base: 0.35s ease;
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. GRAIN
   -------------------------------------------------------------------------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/></filter><rect width='140' height='140' filter='url(%23n)'/></svg>");
}

/* --------------------------------------------------------------------------
   4. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.sec {
  padding-block: var(--pad-y);
  position: relative;
}

.sechead {
  max-width: 800px;
  margin: 0 auto clamp(42px, 5vw, 66px);
  text-align: center;
}

.sechead .p {
  margin-top: 18px;
}

/* --------------------------------------------------------------------------
   5. TYPE
   -------------------------------------------------------------------------- */
.h2 {
  font-family: var(--f-disp);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.h2--center {
  text-align: center;
}

.h3 {
  font-family: var(--f-disp);
  font-weight: 400;
  font-size: clamp(21px, 2.3vw, 28px);
  line-height: 1.2;
}

.p {
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
}

.p + .p {
  margin-top: 14px;
}

.p--center {
  text-align: center;
  margin-inline: auto;
  max-width: 720px;
}

.p--accent {
  color: var(--green);
  font-weight: 600;
}

.tag {
  display: inline-block;
  font-family: var(--f-cond);
  font-size: clamp(13px, 1.05vw, 15px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  padding: 9px 16px 7px;
  border-radius: var(--r-pill);
  border: 1px solid currentColor;
  margin-bottom: 20px;
}

.tag--green  { color: var(--green);  box-shadow: 0 0 22px rgba(126, 237, 87, 0.22); }
.tag--pink   { color: var(--pink);   box-shadow: 0 0 22px rgba(255, 46, 158, 0.22); }
.tag--teal   { color: var(--teal);   box-shadow: 0 0 22px rgba(0, 179, 179, 0.22); }
.tag--yellow { color: var(--yellow); box-shadow: 0 0 22px rgba(255, 197, 54, 0.22); }

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-cond);
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  padding: 17px 34px 14px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}

.btn--lg {
  font-size: 20px;
  padding: 20px 44px 17px;
}

.btn--solid {
  background: var(--green);
  color: #04120a;
  box-shadow: 0 0 0 1px var(--glow-green), 0 0 26px rgba(126, 237, 87, 0.32);
}

.btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(126, 237, 87, 0.55), 0 0 36px rgba(126, 237, 87, 0.5);
}

.btn:active {
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   7. BRAND BAR
   -------------------------------------------------------------------------- */
.brandbar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 28px var(--gut) 24px;
}

.brandbar__logo {
  width: clamp(175px, 24vw, 235px);
}

/* --------------------------------------------------------------------------
   8. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 82vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

/* Dark scrim keeps the mural readable behind white type without killing it. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(95% 75% at 50% 55%, rgba(2, 2, 2, 0.5) 0%, rgba(2, 2, 2, 0.82) 55%, rgba(2, 2, 2, 0.94) 100%),
    linear-gradient(180deg, rgba(2, 2, 2, 0.7) 0%, rgba(2, 2, 2, 0.35) 35%, rgba(2, 2, 2, 0.95) 100%);
}

.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(2, 2, 2, 0) 0%, var(--bg) 100%);
  pointer-events: none;
}

.hero__inner {
  text-align: center;
  padding-block: 60px;
}

.hero__title {
  font-family: var(--f-disp);
  font-weight: 400;
  font-size: clamp(42px, 8vw, 90px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  text-shadow: 0 4px 44px rgba(0, 0, 0, 0.75);
}

.hero__title em {
  font-style: normal;
  color: var(--green);
  text-shadow: 0 0 36px rgba(126, 237, 87, 0.5);
}

.hero__copy {
  max-width: 620px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.hero__note {
  margin-top: 26px;
  font-family: var(--f-cond);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* --------------------------------------------------------------------------
/* --------------------------------------------------------------------------
   9. MARQUEE
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--card-line);
  background: linear-gradient(90deg, rgba(126, 237, 87, 0.08), rgba(255, 46, 158, 0.08));
  padding-block: 16px;
  width: 100%;
}

.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marqueeSlide 26s linear infinite;
}

.marquee__set {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee b {
  font-family: var(--f-cond);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.marquee i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--glow-green);
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marqueeSlide {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* --------------------------------------------------------------------------
   10. SECTION 2 — OFFER
   -------------------------------------------------------------------------- */
.offer {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  padding: clamp(32px, 4.5vw, 60px);
  background: linear-gradient(160deg, var(--card-2), var(--card));
  border: 1px solid var(--card-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.offer__glow {
  position: absolute;
  width: 460px;
  height: 460px;
  right: -140px;
  top: -160px;
  background: radial-gradient(circle, rgba(255, 46, 158, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.offer__body {
  position: relative;
}

.offer__body .p {
  margin-top: 18px;
}

.offer__body .btn {
  margin-top: 30px;
}

.offer__art {
  display: grid;
  place-items: center;
}

.ticket {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  width: min(280px, 100%);
  aspect-ratio: 1 / 1.05;
  padding: 30px 22px;
  text-align: center;
  border: 2px dashed rgba(126, 237, 87, 0.5);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 40%, rgba(126, 237, 87, 0.12) 0%, transparent 65%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 40px rgba(126, 237, 87, 0.14);
  transform: rotate(-3deg);
}

.ticket__top,
.ticket__mid {
  font-family: var(--f-disp);
  font-size: clamp(34px, 4.6vw, 48px);
  line-height: 0.92;
}

.ticket__mid {
  color: var(--green);
  text-shadow: 0 0 26px rgba(126, 237, 87, 0.5);
}

.ticket__rule {
  width: 54px;
  height: 2px;
  margin: 12px 0 10px;
  background: var(--pink);
  box-shadow: 0 0 14px var(--glow-pink);
}

.ticket__bot {
  font-family: var(--f-cond);
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   11. SECTION 3 — BRAND MOMENT
   -------------------------------------------------------------------------- */
.moment {
  position: relative;
  isolation: isolate;
  padding-block: clamp(90px, 12vw, 165px);
  overflow: hidden;
}

.moment__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.moment__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moment::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(2, 2, 2, 0.74) 20%,
              rgba(2, 2, 2, 0.76) 80%, var(--bg) 100%);
}

.moment__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.moment__stack {
  display: grid;
  gap: 2px;
  font-family: var(--f-disp);
  font-weight: 400;
  font-size: clamp(38px, 6.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.moment__stack span:nth-child(2) { color: var(--green); text-shadow: 0 0 32px rgba(126, 237, 87, 0.45); }
.moment__stack span:nth-child(3) { color: var(--pink);  text-shadow: 0 0 32px rgba(255, 46, 158, 0.45); }

.moment__note {
  padding: clamp(22px, 2.6vw, 32px);
  border-radius: var(--r-card);
  border: 1px solid var(--card-line);
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.moment__note .p {
  margin-top: 16px;
}

/* --------------------------------------------------------------------------
   12. SECTION 4 — WHY
   -------------------------------------------------------------------------- */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.why__text .p {
  margin-top: 16px;
}

.why__text .btn {
  margin-top: 32px;
}

.why__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--card-line);
}

.why__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.why__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 1px;
  padding: 12px 18px 10px;
  border-radius: 12px;
  background: rgba(2, 2, 2, 0.8);
  border: 1px solid rgba(126, 237, 87, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.why__badge span {
  font-family: var(--f-cond);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.why__badge strong {
  font-family: var(--f-disp);
  font-weight: 400;
  font-size: 19px;
  color: var(--green);
}

/* --------------------------------------------------------------------------
   13. SECTION 5 — DIFFERENTIATORS
   -------------------------------------------------------------------------- */
.sec--diff {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(126, 237, 87, 0.06) 0%, transparent 70%),
    var(--bg-2);
  border-block: 1px solid var(--card-line);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
}

.card {
  --c: var(--green);
  position: relative;
  padding: clamp(26px, 3vw, 36px);
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--c);
  opacity: 0.75;
  transition: opacity var(--t-base);
}

.card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--c) 45%, transparent);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.card:hover::before {
  opacity: 1;
}

.card__no {
  display: block;
  font-family: var(--f-disp);
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--c);
  margin-bottom: 14px;
}

.card__title {
  font-family: var(--f-disp);
  font-weight: 400;
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.18;
  margin-bottom: 10px;
}

.card__copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   14. SECTION 6 — EXPERIENCE + GALLERY
   -------------------------------------------------------------------------- */
.exp {
  position: relative;
  isolation: isolate;
  padding-block: var(--pad-y);
  overflow: hidden;
}

.exp__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.exp__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(2, 2, 2, 0.88) 26%,
              rgba(2, 2, 2, 0.9) 74%, var(--bg) 100%);
}

.exp__inner {
  text-align: center;
}

.exp__inner .h2 {
  margin-bottom: 22px;
}

.exp__words {
  margin: 26px auto;
  max-width: 800px;
  font-family: var(--f-disp);
  font-size: clamp(22px, 3.2vw, 38px);
  line-height: 1.28;
}

.exp__words span {
  font-family: var(--f-script);
  font-size: 1.32em;
  color: var(--green);
  padding-inline: 2px;
}

/* mural / arts gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 240px 240px;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(36px, 4.5vw, 50px);
  margin-bottom: 0;
  width: 100%;
}

@media (min-width: 1200px) {
  .gallery {
    grid-template-rows: 280px 280px;
  }
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }
  .gallery__item--tall {
    grid-row: auto;
    height: 320px;
  }
  .gallery__item {
    height: 240px;
  }
}

.gallery__item {
  overflow: hidden;
  border-radius: var(--r-card);
  border: 1px solid var(--card-line);
  background: var(--card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

/* Feature Highlights Strip */
.exp__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: clamp(36px, 4.5vw, 52px);
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .exp__features {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.exp__feature-item {
  background: linear-gradient(160deg, #17171c, #0e0e12);
  border: 1px solid var(--card-line);
  border-radius: var(--r-card);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  transition: all 0.3s ease;
}

.exp__feature-item:hover {
  border-color: rgba(126, 237, 87, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(126, 237, 87, 0.12);
}

.exp__feature-item--highlight {
  border-color: rgba(126, 237, 87, 0.3);
  background: linear-gradient(160deg, rgba(126, 237, 87, 0.06), #101014);
}

.exp__feature-icon {
  color: var(--green);
  font-size: 13px;
  margin-bottom: 2px;
  filter: drop-shadow(0 0 8px var(--green));
}

.exp__feature-title {
  font-family: var(--f-cond);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.2;
  font-weight: 400;
}

.exp__feature-sub {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   15. SECTION 7 — REVIEWS
   Native scroll-snap rail: works with zero JS, JS only adds the dots.
   -------------------------------------------------------------------------- */
.reviews {
  position: relative;
}

.reviews__rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.reviews__rail::-webkit-scrollbar {
  display: none;
}

.rev {
  /* two cards per view on desktop; the flex basis is what makes the rail
     overflow and therefore scroll — do not swap this for a grid track */
  flex: 0 0 calc(50% - 11px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
  background: linear-gradient(165deg, var(--card-2), var(--card));
  border: 1px solid var(--card-line);
  border-radius: var(--r-lg);
}

.rev__stars {
  color: var(--yellow);
  font-size: 19px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.rev__title {
  font-family: var(--f-disp);
  font-weight: 400;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.22;
  margin-bottom: 12px;
}

.rev__text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  flex: 1;
}

.rev__meta {
  display: block;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--card-line);
  font-family: var(--f-cond);
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.dot {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

/* invisible 43px hit area so dots are thumb-friendly */
.dot::after {
  content: "";
  position: absolute;
  inset: -16px;
}

.dot.is-active {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.15);
  box-shadow: 0 0 14px var(--glow-green);
}

/* --------------------------------------------------------------------------
   16. SECTION 8 — FINAL CTA
   -------------------------------------------------------------------------- */
.final {
  position: relative;
  overflow: hidden;
  padding-block: clamp(84px, 10vw, 145px);
  border-top: 1px solid var(--card-line);
  background: var(--bg-2);
}

.final__glow {
  position: absolute;
  left: 50%;
  top: -30%;
  width: min(820px, 120vw);
  aspect-ratio: 1;
  translate: -50% 0;
  background: radial-gradient(circle, rgba(126, 237, 87, 0.16) 0%, transparent 62%);
  pointer-events: none;
}

.final__art {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: min(360px, 42vw);
  opacity: 0.16;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 72%);
}

.final__inner {
  position: relative;
  text-align: center;
}

.final__title {
  font-family: var(--f-disp);
  font-weight: 400;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.final__title em {
  font-style: normal;
  color: var(--green);
  text-shadow: 0 0 32px rgba(126, 237, 87, 0.45);
}

.final__inner .btn {
  margin-top: 34px;
}

/* --------------------------------------------------------------------------
   17. SECTION 9 — FOOTER
   -------------------------------------------------------------------------- */
.foot {
  border-top: 1px solid var(--card-line);
  padding-top: clamp(50px, 6vw, 76px);
  background: var(--bg);
}

.foot__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
  gap: clamp(28px, 3.5vw, 52px);
  padding-bottom: clamp(40px, 5vw, 60px);
}

.foot__logo {
  width: 120px;
  margin-bottom: 18px;
}

.foot__addr {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.foot__h {
  font-family: var(--f-cond);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

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

.foot__list a {
  display: inline-block;
  padding-block: 8px;
  color: var(--muted);
  font-size: 15px;
  transition: color var(--t-fast);
}

.foot__list a:hover {
  color: var(--white);
}

.foot__fine {
  color: var(--muted-2);
  font-size: 13.5px;
  line-height: 1.75;
}

.foot__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  padding-block: 22px 30px;
  border-top: 1px solid var(--card-line);
  color: var(--muted-2);
  font-size: 12.5px;
}

/* --------------------------------------------------------------------------
   18. SCROLL REVEAL
   Gated behind html.js so content is never hidden when JS is off or when a
   crawler / ad-review bot renders the page without scripts.
   -------------------------------------------------------------------------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--d, 0) * 110ms);
}

html.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal[data-d="1"] { --d: 1; }
.reveal[data-d="2"] { --d: 2; }
.reveal[data-d="3"] { --d: 3; }
.reveal[data-d="4"] { --d: 4; }

/* --------------------------------------------------------------------------
   19. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .foot__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --gut: 20px;
  }

  .offer,
  .moment__inner,
  .why {
    grid-template-columns: 1fr;
  }

  .offer__art {
    order: -1;
  }

  .ticket {
    width: min(230px, 70%);
    transform: rotate(-2deg);
  }

  .why__media {
    order: -1;
  }

  .rev {
    flex: 0 0 86%;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, minmax(120px, 30vw));
    max-height: none;
  }

  .gallery__item--tall {
    grid-row: span 2;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15.5px;
  }

  .hero {
    min-height: 0;
  }

  .hero__inner {
    padding-block: 44px 74px;
  }

  .btn,
  .btn--lg {
    width: 100%;
    max-width: 340px;
    font-size: 18px;
    padding: 18px 28px 15px;
  }

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

  .rev {
    flex: 0 0 100%;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 60vw);
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .foot__grid {
    grid-template-columns: 1fr;
  }

  .foot__legal {
    justify-content: flex-start;
  }

  .marquee b {
    font-size: 15px;
  }
}

/* --------------------------------------------------------------------------
   20. MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
