/* === 1. CUSTOM PROPERTIES === */
:root {
  --black:      #040404;
  --panel:      #0d0d10;
  --panel-soft: #15151a;
  --cream:      #f7f0df;
  --muted:      rgba(247, 240, 223, 0.68);
  --line:       rgba(247, 240, 223, 0.16);
  --pink:       #f125a9;
  --green:      #1be5a7;
  --gold:       #d7aa62;
  --radius:     30px;
  --pad:        clamp(18px, 4vw, 58px);
}

/* === 2. RESET + BASE === */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(241, 37, 169, 0.18), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(27, 229, 167, 0.14), transparent 32rem),
    var(--black);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

h1, h2, h3, h4 {
  margin: 0;
}

button {
  cursor: pointer;
  font: inherit;
}

::selection {
  background: var(--pink);
  color: #fff;
}

/* === 3. UTILITIES === */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.13;
  mix-blend-mode: screen;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 3px 3px;
}

.cursor {
  pointer-events: none;
  position: fixed;
  z-index: 99;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 180ms ease, height 180ms ease, opacity 180ms ease;
}

.cursor.is-big {
  width: 54px;
  height: 54px;
  opacity: 0.18;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 200;
  padding: 12px 24px;
  background: var(--green);
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

.skip-link:focus {
  top: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 750ms ease, transform 750ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--pink), var(--green));
  border-radius: 999px;
  border: 2px solid var(--black);
}
::-webkit-scrollbar-thumb:hover { background: var(--green); }
html { scrollbar-color: var(--pink) var(--black); scrollbar-width: thin; }

/* === 4. TYPOGRAPHY SCALE === */
.kicker,
.section-index {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.36;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.breadcrumb a:hover { color: var(--cream); }
.breadcrumb-sep { color: var(--line); }

/* === 5. HEADER + NAV === */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 18px var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(4, 4, 4, 0.76);
  backdrop-filter: blur(18px);
  transition: background 300ms ease;
}

.header.is-scrolled {
  background: rgba(4, 4, 4, 0.92);
}

.brand img {
  width: clamp(120px, 12vw, 154px);
  height: auto;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  gap: clamp(16px, 2.2vw, 34px);
  align-items: center;
}

.nav > a,
.nav-dropdown-trigger {
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 200ms ease;
}

.nav > a:hover,
.nav-dropdown-trigger:hover { color: var(--cream); }
.nav > a[aria-current="page"] { color: var(--green); }

.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.nav-dropdown-arrow {
  font-size: 10px;
  transition: transform 200ms ease;
}

.nav-dropdown-trigger[aria-expanded="true"] .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(13, 13, 16, 0.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}

.nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-panel {
  display: block;
}

.nav-dropdown-panel li a {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 10px;
  transition: background 150ms ease, color 150ms ease;
}

.nav-dropdown-panel li a:hover,
.nav-dropdown-panel li a[aria-current="page"] {
  background: rgba(255,255,255,.06);
  color: var(--cream);
}

.nav-dropdown-panel li a[aria-current="page"] { color: var(--green); }

.header-action {
  justify-self: end;
  color: var(--black);
  background: linear-gradient(90deg, var(--pink), var(--green));
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 200ms ease, filter 200ms ease;
}

.header-action:hover {
  transform: translateY(-2px);
  filter: saturate(1.2);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 48px;
  height: 38px;
  padding: 0 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
}

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

/* === 6. FOOTER === */
.footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 28px;
  padding: 56px var(--pad) 42px;
  background: #000;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: clamp(130px, 14vw, 170px);
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 340px;
  margin-bottom: 12px;
}

.footer-legal-note {
  color: rgba(247, 240, 223, 0.38);
  font-size: 12px;
  line-height: 1.5;
}

.footer-nav h4,
.footer-legal h4 {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-nav nav,
.footer-legal nav {
  display: grid;
  gap: 10px;
}

.footer-nav nav a,
.footer-legal nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: color 200ms ease;
}

.footer-nav nav a:hover,
.footer-legal nav a:hover { color: var(--cream); }

.footer-copyright {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright p {
  color: rgba(247, 240, 223, 0.38);
  font-size: 12px;
}

/* === 7. COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  width: min(calc(100vw - 32px), 680px);
  background: rgba(13, 13, 16, 0.94);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

/* Author display: flex overrides UA [hidden] { display: none } — must re-enforce it */
.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner img {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  opacity: 0.65;
}

.cookie-banner-text {
  flex: 1;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-banner-text a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner-actions button {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 150ms ease;
}

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

.js-accept {
  background: var(--green);
  color: var(--black);
  border: none;
}

.js-decline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
}

/* === 8. BUTTONS === */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  transition: transform 200ms ease, filter 200ms ease;
}

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

.button.primary {
  color: var(--black);
  background: var(--green);
}

.button.primary:hover { filter: saturate(1.2); }

.button.ghost {
  border: 1px solid var(--line);
  color: var(--cream);
  background: transparent;
}

.button.ghost:hover { border-color: rgba(247, 240, 223, 0.4); }

.button.pink {
  color: var(--black);
  background: var(--pink);
}

/* === 9. SECTION GRID + COMMON LAYOUT === */
.section-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding-inline: var(--pad);
}

.legal-note {
  margin: clamp(48px, 6vw, 80px) var(--pad);
  padding: 28px 32px;
  border: 1px solid rgba(241, 37, 169, 0.28);
  border-left: 3px solid var(--pink);
  border-radius: var(--radius);
  background: rgba(241, 37, 169, 0.04);
}

.legal-note p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.legal-note strong { color: var(--cream); }

/* === 10. HOME: HERO === */
.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: center;
  padding: 64px var(--pad) 72px;
}

.hero-copy {
  grid-column: 1 / 8;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 16px 0 0;
  max-width: 12ch;
  font-size: clamp(58px, 10vw, 158px);
  line-height: 0.84;
  letter-spacing: -0.095em;
  text-transform: uppercase;
}

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

.hero .lead { margin-top: 30px; max-width: 660px; }

.hero-media {
  grid-column: 7 / 13;
  align-self: stretch;
  min-height: 640px;
  border-radius: clamp(28px, 4vw, 58px);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,4,4,.88), transparent 42%),
    linear-gradient(0deg, rgba(4,4,4,.65), transparent 48%);
}

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

.media-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  right: 28px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  color: var(--cream);
}

.media-label span {
  font-size: clamp(52px, 7vw, 110px);
  line-height: 0.75;
  font-weight: 950;
  letter-spacing: -0.09em;
  color: var(--pink);
}

.media-label strong {
  max-width: 210px;
  text-align: right;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-note {
  grid-column: 1 / 6;
  max-width: 480px;
  color: rgba(247, 240, 223, 0.54);
  font-size: 13px;
  line-height: 1.45;
  border-left: 2px solid var(--pink);
  padding-left: 18px;
  margin-top: -64px;
}

/* === 11. HOME: MARQUEE === */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--cream);
  color: var(--black);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-move 26s linear infinite;
}

.marquee span {
  padding: 18px 34px 20px;
  font-size: clamp(28px, 5vw, 72px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.marquee span:nth-child(even) { color: var(--pink); }

@keyframes marquee-move { to { transform: translateX(-50%); } }

/* === 12. HOME: ABOUT === */
.about {
  padding-block: clamp(90px, 14vw, 180px);
}

.about .section-index { grid-column: 1 / 4; }

.about h2 {
  grid-column: 4 / 12;
  font-size: clamp(42px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.about-text {
  grid-column: 7 / 12;
  margin-top: 54px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
}

.about-text p + p { margin-top: 18px; }

/* === 13. HOME: EXPERIENCE MOSAIC === */
.experience {
  padding-block: clamp(70px, 10vw, 130px);
}

.experience-heading {
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.experience-heading .section-index { grid-column: 1 / 4; }

.experience-heading h2 {
  grid-column: 4 / 12;
  font-size: clamp(42px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 16px;
  padding: 48px var(--pad) 0;
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0;
  background: var(--panel);
  min-height: 260px;
}

.tile.tall { grid-row: span 2; }
.tile.wide { grid-column: span 2; }

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.tile:hover img { transform: scale(1.06); }

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.68), transparent 56%);
}

.tile figcaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  max-width: 260px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === 14. HOME: PACKAGES === */
.packages {
  padding: clamp(90px, 14vw, 180px) var(--pad);
}

.packages-intro {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.packages-intro .section-index { grid-column: 1 / 4; }

.packages-intro h2 {
  grid-column: 4 / 10;
  font-size: clamp(52px, 8vw, 126px);
  line-height: 0.85;
  letter-spacing: -0.09em;
}

.packages-intro > p:not(.section-index) {
  grid-column: 10 / 13;
  align-self: flex-end;
  color: var(--muted);
  line-height: 1.4;
  font-size: 15px;
}

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

.package-card {
  min-height: 430px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
  display: flex;
  flex-direction: column;
  transition: transform 250ms ease, border-color 250ms ease;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 229, 167, 0.6);
}

.package-card.is-featured {
  background:
    radial-gradient(circle at top right, rgba(27, 229, 167, 0.26), transparent 16rem),
    linear-gradient(180deg, rgba(241, 37, 169, 0.18), var(--panel));
  border-color: rgba(241, 37, 169, 0.55);
}

.package-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: auto;
}

.package-top span {
  color: var(--pink);
  font-size: 64px;
  line-height: 0.75;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.package-top p {
  max-width: 120px;
  text-align: right;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-card h3 {
  margin: 70px 0 16px;
  font-size: clamp(28px, 2.9vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.package-card > p {
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 24px;
  font-size: 15px;
}

.package-card a {
  margin-top: auto;
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: opacity 200ms ease;
}

.package-card a:hover { opacity: 0.75; }

/* === 15. HOME: STATEMENT === */
.statement {
  min-height: 82vh;
  margin: 0 var(--pad) clamp(90px, 12vw, 160px);
  border-radius: clamp(30px, 5vw, 70px);
  overflow: hidden;
  position: relative;
  display: grid;
  align-items: flex-end;
  padding: clamp(28px, 6vw, 72px);
}

.statement > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), transparent 62%),
    linear-gradient(0deg, rgba(0,0,0,.72), transparent 45%);
}

.statement-text {
  position: relative;
  z-index: 2;
}

.statement-text .kicker { margin-bottom: 18px; }

.statement h2 {
  max-width: 11ch;
  font-size: clamp(48px, 8vw, 130px);
  line-height: 0.85;
  letter-spacing: -0.09em;
}

/* === 16. HOME: GALLERY STRIP === */
.gallery {
  padding-block: clamp(70px, 10vw, 140px);
}

.gallery .section-index { grid-column: 1 / 4; }

.gallery h2 {
  grid-column: 4 / 12;
  font-size: clamp(42px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.gallery-strip {
  grid-column: 1 / -1;
  display: flex;
  gap: 16px;
  margin-top: 52px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-strip img {
  flex: 0 0 min(74vw, 520px);
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  scroll-snap-align: start;
  filter: saturate(0.96) contrast(1.04);
}

/* === 17. HOME: RULES === */
.rules {
  padding-block: clamp(80px, 12vw, 160px);
  background:
    radial-gradient(circle at 80% 30%, rgba(241, 37, 169, 0.12), transparent 24rem),
    #09090b;
}

.rules .section-index { grid-column: 1 / 4; }

.rules h2 {
  grid-column: 4 / 12;
  font-size: clamp(42px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.rules-grid {
  grid-column: 4 / 13;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.rule {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255,255,255,.03);
}

.rule-symbol {
  display: block;
  color: var(--green);
  font-size: 58px;
  line-height: 0.8;
  font-weight: 950;
  letter-spacing: -0.08em;
  margin-bottom: 56px;
}

.rule h3 { font-size: 28px; letter-spacing: -0.05em; margin-bottom: 10px; }
.rule p { color: var(--muted); line-height: 1.45; font-size: 15px; }

/* === 18. HOME: FAQ === */
.faq {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(28px, 6vw, 100px);
  padding: clamp(90px, 14vw, 180px) var(--pad);
}

.faq-heading .section-index { margin-bottom: 22px; }

.faq-heading h2 {
  font-size: clamp(44px, 7vw, 108px);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.accordion { border-top: 1px solid var(--line); }

.accordion-item {
  width: 100%;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.accordion-item span {
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 850;
}

.accordion-item strong {
  color: var(--pink);
  font-size: 30px;
  flex-shrink: 0;
  transition: transform 220ms ease;
}

.accordion-item.is-open strong { transform: rotate(45deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
  color: var(--muted);
}

.accordion-panel p {
  padding: 0 0 24px;
  max-width: 680px;
  line-height: 1.5;
  font-size: 16px;
}

/* === 19. HOME: CONTACT (cream flip) === */
.contact-section {
  padding-block: clamp(90px, 14vw, 190px);
  background: var(--cream);
  color: var(--black);
}

.contact-section .section-index {
  grid-column: 1 / 4;
  color: var(--pink);
}

.contact-section h2 {
  grid-column: 1 / 9;
  font-size: clamp(42px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.contact-card {
  grid-column: 9 / 13;
  align-self: flex-end;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--cream);
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.contact-card img {
  width: 144px;
  height: 144px;
  margin-bottom: 36px;
}

.contact-name {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-card a {
  display: block;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.05em;
  font-weight: 850;
  margin-top: 12px;
  transition: color 200ms ease;
}

.contact-card a:hover { color: var(--green); }

/* === 20. INNER PAGES: HERO === */
.inner-hero {
  min-height: 70vh;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(48px, 8vw, 100px) var(--pad) clamp(56px, 8vw, 100px);
}

.inner-hero-copy {
  grid-column: 1 / 8;
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  margin: 16px 0 0;
  font-size: clamp(52px, 9vw, 140px);
  line-height: 0.86;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.inner-hero .lead { margin-top: 28px; max-width: 580px; }

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

.inner-hero-media {
  grid-column: 7 / 13;
  align-self: stretch;
  min-height: 520px;
  border-radius: clamp(28px, 4vw, 58px);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}

.inner-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,4,4,.75), transparent 52%),
    linear-gradient(0deg, rgba(4,4,4,.55), transparent 52%);
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === 21. INNER PAGES: SPLIT SECTION === */
.split-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(70px, 10vw, 130px) var(--pad);
}

.split-text { grid-column: 1 / 7; }

.split-text h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

.split-text p {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
}

.split-text p + p { margin-top: 16px; }

.split-image { grid-column: 7 / 13; }

.split-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}

.split-section.reverse .split-text {
  grid-column: 7 / 13;
  grid-row: 1;
}

.split-section.reverse .split-image {
  grid-column: 1 / 7;
  grid-row: 1;
}

/* === 22. INNER PAGES: FEATURE CARDS === */
.feature-cards-section {
  padding: clamp(60px, 8vw, 100px) var(--pad);
  background: var(--panel);
}

.feature-cards-intro { margin-bottom: 40px; }

.feature-cards-intro .kicker { margin-bottom: 12px; }

.feature-cards-intro h2 {
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.feature-cards-intro p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.5;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  transition: border-color 250ms ease, transform 250ms ease;
}

.feature-card:hover {
  border-color: rgba(27, 229, 167, 0.35);
  transform: translateY(-4px);
}

.feature-card-icon {
  display: block;
  color: var(--green);
  font-size: 42px;
  line-height: 0.8;
  font-weight: 950;
  letter-spacing: -0.07em;
  margin-bottom: 32px;
}

.feature-card h3 {
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.feature-card p { color: var(--muted); font-size: 15px; line-height: 1.5; }

/* === 23. INNER PAGES: STAT ROW === */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: clamp(60px, 8vw, 100px) var(--pad);
}

.stat-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.stat-value {
  display: block;
  color: var(--pink);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 950;
  line-height: 0.85;
  letter-spacing: -0.08em;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === 24. INNER PAGES: STEPS SECTION === */
.steps-section {
  padding: clamp(70px, 10vw, 120px) var(--pad);
}

.steps-intro { margin-bottom: 48px; }
.steps-intro .kicker { margin-bottom: 14px; }

.steps-intro h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

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

.step-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
}

.step-number {
  display: block;
  color: var(--pink);
  font-size: 72px;
  line-height: 0.8;
  font-weight: 950;
  letter-spacing: -0.09em;
  margin-bottom: 28px;
}

.step-card h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.step-card p { color: var(--muted); font-size: 15px; line-height: 1.5; }

/* === 25. INNER PAGES: IDEAL FOR TILES === */
.ideal-for {
  padding: clamp(60px, 8vw, 100px) var(--pad);
  background: var(--panel);
}

.ideal-for .kicker { margin-bottom: 14px; }

.ideal-for h2 {
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  margin-bottom: 36px;
}

.ideal-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ideal-tile {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  transition: border-color 250ms ease;
}

.ideal-tile:hover { border-color: rgba(27, 229, 167, 0.35); }

.ideal-tile-mark {
  display: block;
  color: var(--green);
  font-size: 36px;
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.07em;
  margin-bottom: 20px;
}

.ideal-tile h3 { font-size: 22px; letter-spacing: -0.04em; margin-bottom: 10px; }
.ideal-tile p { color: var(--muted); font-size: 14px; line-height: 1.5; }

/* === 26. INNER PAGES: CTA SECTION === */
.cta-section {
  margin: 0 var(--pad) clamp(70px, 10vw, 130px);
  border-radius: clamp(24px, 4vw, 50px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.cta-content {
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.cta-content .kicker { margin-bottom: 0; }

.cta-content h2 {
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.cta-content p { color: var(--muted); font-size: 16px; line-height: 1.5; }

.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.cta-image { position: relative; overflow: hidden; }

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

.cta-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,16,.7), transparent 50%);
}

/* === 27. CONTACT PAGE === */
.contact-page {
  padding: clamp(70px, 10vw, 120px) var(--pad);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px 48px;
  align-items: start;
}

.contact-page-intro {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.contact-page-intro h1 {
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.86;
  letter-spacing: -0.09em;
  text-transform: uppercase;
  margin-top: 16px;
}

.contact-form-col { grid-column: 1 / 8; }
.contact-info-col { grid-column: 8 / 13; }

.contact-form { display: grid; gap: 20px; }

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-field label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--cream);
  font: inherit;
  font-size: 15px;
  transition: border-color 200ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(247,240,223,0.45)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-field select option { background: var(--panel); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  outline: none;
}

.form-field textarea { resize: vertical; min-height: 140px; }

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--pink);
}

.form-error-msg {
  font-size: 12px;
  color: var(--pink);
  font-weight: 700;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green);
}

.form-checkbox span { font-size: 13px; color: var(--muted); line-height: 1.45; }
.form-checkbox a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }

.form-success {
  padding: 24px 28px;
  background: rgba(27, 229, 167, 0.08);
  border: 1px solid rgba(27, 229, 167, 0.35);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 16px;
  line-height: 1.5;
}

.form-error-banner {
  padding: 24px 28px;
  background: rgba(241, 37, 169, 0.08);
  border: 1px solid rgba(241, 37, 169, 0.35);
  border-radius: var(--radius);
  color: var(--pink);
  font-size: 16px;
  line-height: 1.5;
}

.contact-info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.contact-info-card img.logo-symbol {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
}

.contact-info-name {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-card a {
  display: block;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 850;
  margin-top: 14px;
  transition: color 200ms ease;
}

.contact-info-card a:hover { color: var(--green); }

.contact-feature-img {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-feature-img img { width: 100%; height: 240px; object-fit: cover; }

/* === 28. LEGAL PAGES === */
.legal-page {
  padding: clamp(60px, 8vw, 100px) var(--pad) clamp(80px, 10vw, 140px);
}

.legal-content { max-width: 800px; margin-inline: auto; }

.legal-updated {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-content h1 {
  font-size: clamp(42px, 7vw, 90px);
  line-height: 0.88;
  letter-spacing: -0.07em;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.04em;
  margin: 48px 0 16px;
}

.legal-content h3 {
  font-size: 20px;
  letter-spacing: -0.03em;
  margin: 28px 0 10px;
}

.legal-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 8px;
  list-style: disc;
}

.legal-content ol li { list-style: decimal; }
.legal-content strong { color: var(--cream); font-weight: 700; }
.legal-content a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }

/* === 29. 404 PAGE === */
.page-404-wrap {
  min-height: calc(100vh - 82px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px var(--pad);
  gap: 20px;
}

.page-404-wrap img { width: 56px; height: 56px; opacity: 0.55; margin-bottom: 8px; }

.error-number {
  font-size: clamp(120px, 25vw, 320px);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.09em;
  color: var(--pink);
}

.page-404-wrap h1 {
  font-size: clamp(24px, 4vw, 52px);
  letter-spacing: -0.05em;
  max-width: 14ch;
  line-height: 1.1;
}

.page-404-wrap > p { color: var(--muted); max-width: 400px; line-height: 1.5; }

/* === 30. AGE GATE === */
.is-age-gate-open {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(241, 37, 169, 0.22), transparent 22rem),
    radial-gradient(circle at bottom right, rgba(27, 229, 167, 0.18), transparent 24rem),
    rgba(0, 0, 0, 0.92);
}

.age-gate__panel {
  width: min(100%, 480px);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(247, 240, 223, 0.28);
  border-radius: 24px;
  background: rgba(4, 4, 4, 0.97);
  backdrop-filter: blur(20px);
  text-align: center;
}

.age-gate__panel > p {
  margin: 0 0 32px;
  font-size: clamp(26px, 5vw, 40px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--cream);
}

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

.age-gate__button {
  min-height: 54px;
  border: 1px solid rgba(247, 240, 223, 0.38);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.age-gate__button:hover,
.age-gate__button:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: var(--black);
  outline: none;
  transform: translateY(-2px);
}

.age-gate__button--no:hover,
.age-gate__button--no:focus-visible {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--black);
}

@media (min-width: 520px) {
  .age-gate__actions {
    grid-template-columns: 1fr 1fr;
  }
}

/* === 31. RESPONSIVE: max-width 1080px === */
@media (max-width: 1080px) {
  .package-list { grid-template-columns: repeat(2, 1fr); }
  .hero-copy { grid-column: 1 / 9; }
  .hero-media { grid-column: 6 / 13; }
  .inner-hero-copy { grid-column: 1 / 9; }
  .inner-hero-media { grid-column: 6 / 13; }
}

/* === 31. RESPONSIVE: max-width 860px === */
@media (max-width: 860px) {
  .header { grid-template-columns: 1fr auto; }

  .menu-toggle { display: block; justify-self: end; }

  .nav, .header-action { display: none; }

  .nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    gap: 16px;
    padding: 16px 0 8px;
  }

  .nav.is-open .nav-dropdown-panel {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 8px 0 8px 16px;
    display: none;
    gap: 4px;
  }

  .nav.is-open .nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-panel {
    display: grid;
  }

  .nav.is-open .nav-dropdown-panel li a {
    padding: 6px 0;
    border-radius: 0;
    font-size: 0.8rem;
    min-height: 40px;
    display: flex;
    align-items: center;
  }

  /* Fix 5: larger mobile menu tap targets */
  .nav.is-open > a,
  .nav.is-open .nav-dropdown-trigger {
    min-height: 52px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    padding: 4px 0;
  }

  /* Fix 6: larger footer link tap targets on mobile */
  .footer-nav nav a,
  .footer-legal nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    padding: 2px 0;
  }

  .section-grid,
  .hero,
  .packages-intro,
  .inner-hero {
    grid-template-columns: repeat(6, 1fr);
  }

  .hero { min-height: auto; }

  .hero-copy,
  .hero-media,
  .hero-note,
  .about .section-index,
  .about h2,
  .about-text,
  .experience-heading .section-index,
  .experience-heading h2,
  .gallery .section-index,
  .gallery h2,
  .rules .section-index,
  .rules h2,
  .rules-grid,
  .contact-section .section-index,
  .contact-section h2,
  .contact-card,
  .packages-intro .section-index,
  .packages-intro h2,
  .packages-intro > p:not(.section-index),
  .inner-hero-copy,
  .inner-hero-media { grid-column: 1 / -1; }

  .hero-media { min-height: 460px; }
  .inner-hero-media { min-height: 380px; }
  .hero-note { margin-top: 0; }

  .image-mosaic { grid-template-columns: 1fr; grid-auto-rows: 320px; }
  .tile.tall, .tile.wide { grid-row: auto; grid-column: auto; }
  .rules-grid { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .contact-card { margin-top: 34px; }
  .footer { grid-template-columns: 1fr; }
  .footer-copyright { flex-direction: column; align-items: flex-start; }

  .split-section { grid-template-columns: 1fr; }
  .split-text, .split-image { grid-column: 1 / -1; }
  .split-section.reverse .split-text,
  .split-section.reverse .split-image { grid-column: 1 / -1; grid-row: auto; }
  .split-image img { height: 320px; }

  .feature-cards { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .ideal-tiles { grid-template-columns: 1fr; }

  .cta-section { grid-template-columns: 1fr; }
  .cta-image { min-height: 280px; }

  .contact-page { grid-template-columns: 1fr; }
  .contact-form-col,
  .contact-info-col,
  .contact-page-intro { grid-column: 1 / -1; }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions button { flex: 1; }
}

/* === 32. RESPONSIVE: max-width 560px === */
@media (max-width: 560px) {
  :root { --pad: 16px; --radius: 22px; }

  .brand img { width: 130px; height: auto; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: clamp(50px, 18vw, 84px); }
  .hero-media { min-height: 360px; }
  .inner-hero h1 { font-size: clamp(46px, 16vw, 80px); }
  .inner-hero-media { min-height: 300px; }
  .package-list { grid-template-columns: 1fr; }
  .gallery-strip img { height: 280px; flex-basis: 86vw; }
  .cursor { display: none; }
  .button { min-height: 56px; padding: 0 20px; }
}

/* === 33. REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .tile img { transition: none; }
  .package-card,
  .feature-card,
  .ideal-tile,
  .button,
  .header { transition: none; }
}
