﻿:root {
  --night: #070b13;
  --ink: #111827;
  --panel: #171f31;
  --paper: #fff7eb;
  --sand: #f3e3cf;
  --gold: #d0a13f;
  --gold-soft: #f3d68d;
  --coral: #ff7a45;
  --pink: #ff5d93;
  --teal: #1dd6c3;
  --sky: #77d7ff;
  --lime: #c9ff6e;
  --text: #f8f1e5;
  --muted: #cdbfae;
  --muted-dark: #586277;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --shadow-tight: 0 10px 24px rgba(0, 0, 0, 0.18);
  --max: 1180px;
  --header-height: 104px;
  --headline: "Special Elite", serif;
  --headline-inline: "Special Elite", serif;
  --marker: "Special Elite", serif;
  --body: "PT Serif", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 69, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(29, 214, 195, 0.16), transparent 28%),
    linear-gradient(180deg, #101626 0%, #0a0d15 58%, #070b13 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px);
  background-size: 18px 18px, 24px 24px;
  mix-blend-mode: soft-light;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.16;
  background:
    linear-gradient(transparent 0 97%, rgba(255, 255, 255, 0.03) 97% 100%),
    linear-gradient(90deg, transparent 0 97%, rgba(255, 255, 255, 0.025) 97% 100%);
  background-size: 100% 36px, 48px 100%;
}

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

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

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

main {
  position: relative;
}

.section-inner {
  width: min(var(--max), calc(100% - 1.5rem));
  margin: 0 auto;
  position: relative;
}

.section {
  position: relative;
  padding: 4.75rem 0;
}

.section-sand {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 247, 235, 0.98), rgba(243, 227, 207, 0.96)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 45%);
}

.section-dark {
  background:
    radial-gradient(circle at top, rgba(255, 93, 147, 0.12), transparent 36%),
    radial-gradient(circle at right, rgba(119, 215, 255, 0.1), transparent 32%),
    linear-gradient(180deg, #0f1524 0%, #0b1019 100%);
}

.section-cream {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.98), rgba(244, 230, 213, 0.97));
}

.section-tight {
  padding: 3.5rem 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: var(--gold);
  font-family: var(--marker);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.section-kicker::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--coral));
}

.display {
  margin: 0;
  font-family: var(--headline-inline);
  font-size: clamp(2.45rem, 9vw, 5.3rem);
  line-height: 1.05;
  letter-spacing: 0.015em;
  text-transform: none;
  color: var(--gold-soft);
  text-shadow: none;
}

.display-sm {
  font-size: clamp(2rem, 8vw, 4.2rem);
}

.display-outline {
  display: inline-block;
  font-family: var(--headline);
  color: var(--sky);
  letter-spacing: 0.015em;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.68;
  color: rgba(248, 241, 229, 0.82);
}

.section-cream .lead,
.section-sand .lead {
  color: rgba(17, 24, 39, 0.8);
}

.section-cream .display,
.section-sand .display {
  color: #9f5f1f;
  text-shadow: none;
}

.copy {
  margin: 0;
  font-size: 1rem;
  line-height: 1.66;
  color: rgba(248, 241, 229, 0.78);
}

.section-cream .copy,
.section-sand .copy {
  color: rgba(17, 24, 39, 0.76);
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(9, 13, 21, 0.56);
  color: var(--text);
  font-family: var(--headline);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: none;
  backdrop-filter: blur(14px);
}

.eyebrow.gold {
  background: rgba(208, 161, 63, 0.16);
  border-color: rgba(243, 214, 141, 0.42);
  color: var(--gold-soft);
}

.eyebrow.dark {
  background: rgba(17, 24, 39, 0.08);
  border-color: rgba(17, 24, 39, 0.12);
  color: var(--muted-dark);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.9rem 1.3rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--headline);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, filter 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px) rotate(-0.4deg);
  filter: saturate(1.12);
}

.btn-primary {
  color: var(--night);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 16px 30px rgba(208, 161, 63, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(17, 24, 39, 0.18);
}

.btn-accent {
  color: var(--night);
  background: linear-gradient(135deg, var(--teal), var(--sky));
  box-shadow: 0 16px 30px rgba(29, 214, 195, 0.22);
}

.has-sticky-cta {
  padding-bottom: 7rem;
}

.sticky-member-cta {
  position: fixed;
  left: 50%;
  bottom: calc(0.85rem + env(safe-area-inset-bottom));
  z-index: 470;
  width: min(calc(100% - 1.5rem), 700px);
  display: grid;
  gap: 0.36rem;
  padding: 0.9rem 1rem;
  overflow: hidden;
  isolation: isolate;
  border-radius: 24px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(7, 11, 19, 0.94), rgba(23, 31, 49, 0.92)),
    linear-gradient(90deg, rgba(208, 161, 63, 0.34), rgba(255, 93, 147, 0.24), rgba(29, 214, 195, 0.26));
  border: 1px solid rgba(243, 214, 141, 0.34);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(208, 161, 63, 0.18);
  transform: translateX(-50%);
  animation: sticky-cta-rise 840ms cubic-bezier(0.16, 1, 0.3, 1) both, sticky-cta-pulse 3.4s ease-in-out 1s infinite alternate;
}

.sticky-member-cta::before {
  content: "";
  position: absolute;
  inset: -70% -24%;
  z-index: -1;
  background:
    linear-gradient(110deg, transparent 34%, rgba(243, 214, 141, 0.24) 46%, transparent 58%),
    radial-gradient(circle at 18% 50%, rgba(255, 122, 69, 0.24), transparent 28%),
    radial-gradient(circle at 82% 50%, rgba(29, 214, 195, 0.2), transparent 30%);
  transform: translateX(-52%) rotate(7deg);
  animation: sticky-cta-sheen 4.8s ease-in-out infinite;
}

.sticky-member-cta::after {
  content: "";
  position: absolute;
  inset: auto 14px 10px 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-soft), var(--coral), var(--teal));
  opacity: 0.88;
}

.sticky-member-cta:hover,
.sticky-member-cta:focus-visible {
  outline: none;
  transform: translateX(-50%) translateY(-4px) rotate(-0.35deg);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.44),
    0 0 42px rgba(243, 214, 141, 0.25);
}

.sticky-member-cta__tag {
  width: fit-content;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  color: var(--night);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-family: var(--marker);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 18px rgba(208, 161, 63, 0.24);
}

.sticky-member-cta__main {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: none;
}

.membership-spotlight {
  padding: 1rem 0;
  background:
    linear-gradient(135deg, rgba(208, 161, 63, 0.18), rgba(255, 122, 69, 0.16), rgba(29, 214, 195, 0.12)),
    linear-gradient(180deg, rgba(12, 17, 28, 0.98), rgba(7, 11, 19, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.membership-spotlight-inner {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.membership-spotlight .btn {
  justify-self: start;
}

.membership-spotlight-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--headline);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--gold-soft);
}

.membership-spotlight h2 {
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(1.7rem, 5vw, 2.45rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.membership-spotlight p {
  margin: 0.5rem 0 0;
  max-width: 52ch;
  color: rgba(248, 241, 229, 0.78);
  line-height: 1.6;
}

.sticky-member-cta__action {
  width: fit-content;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  color: var(--night);
  background: linear-gradient(135deg, var(--teal), var(--sky));
  font-size: 0.72rem;
  font-family: var(--headline);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  box-shadow: 0 10px 20px rgba(29, 214, 195, 0.18);
}

@keyframes sticky-cta-rise {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(44px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes sticky-cta-sheen {
  0%,
  22% {
    transform: translateX(-58%) rotate(7deg);
  }

  56%,
  100% {
    transform: translateX(58%) rotate(7deg);
  }
}

@keyframes sticky-cta-pulse {
  from {
    border-color: rgba(243, 214, 141, 0.3);
  }

  to {
    border-color: rgba(29, 214, 195, 0.38);
  }
}

@media (min-width: 700px) {
  .has-sticky-cta {
    padding-bottom: 5.5rem;
  }

  .sticky-member-cta {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.78rem 0.95rem 0.9rem;
  }

  .sticky-member-cta__main {
    font-size: 0.92rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--header-height);
  background: rgba(7, 11, 19, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, height 180ms ease;
}

.site-header.scrolled {
  background: rgba(7, 11, 19, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

.header-inner {
  width: min(var(--max), calc(100% - 1.5rem));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.35rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: auto;
  height: auto;
  max-width: clamp(112px, 31vw, 164px);
  max-height: calc(var(--header-height) - 18px);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  padding: 0.85rem;
  display: grid;
  gap: 0.7rem;
  background: rgba(7, 11, 19, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-120%);
  transition: transform 180ms ease;
}

.site-nav.open {
  transform: translateY(0);
}

.site-nav a {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 241, 229, 0.86);
  background: rgba(255, 255, 255, 0.04);
}

.site-nav a.active {
  background: linear-gradient(135deg, rgba(208, 161, 63, 0.22), rgba(255, 93, 147, 0.18));
  color: var(--gold-soft);
}

.site-nav .nav-cta {
  color: var(--night);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

@media (max-width: 899px) {
  .site-header {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
  }

  .header-inner {
    padding-block: 0.5rem;
  }

  .site-nav {
    display: none;
    transform: none;
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav .nav-cta {
    display: none;
  }
}

.hero {
  position: relative;
  padding: 2rem 0 3.25rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 122, 69, 0.24), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(29, 214, 195, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 1.85rem;
}

.hero-copy {
  position: relative;
  padding-top: 0.4rem;
}

.hero-copy .display {
  max-width: 11ch;
}

.hero-copy .lead {
  max-width: 44ch;
  margin-top: 0.9rem;
}

.home-hero-clean {
  padding-top: 2.2rem;
}

.home-hero-grid {
  align-items: start;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-family: var(--headline);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--gold-soft);
  background: rgba(208, 161, 63, 0.12);
  border: 1px solid rgba(208, 161, 63, 0.24);
}

.hero-note::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(208, 161, 63, 0.14);
}

.hero-subline {
  margin: 1rem 0 0;
  font-family: var(--headline);
  color: var(--gold-soft);
  font-size: clamp(1rem, 3vw, 1.25rem);
  line-height: 1.45;
  max-width: 34ch;
}

.membership-points {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.membership-points span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(248, 241, 229, 0.82);
  font-size: 0.92rem;
  line-height: 1.3;
}

.hero-collage {
  position: relative;
  min-height: 440px;
}

.home-hero-stage {
  min-height: 0;
}

.accent-spray,
.accent-spray::before,
.accent-spray::after {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.accent-spray {
  width: 230px;
  height: 230px;
  background: radial-gradient(circle, rgba(255, 93, 147, 0.24) 0%, transparent 66%);
  top: -50px;
  right: -50px;
  animation: spray-pulse 4.8s ease-in-out infinite alternate;
}

.accent-spray::before,
.accent-spray::after {
  content: "";
}

.accent-spray::before {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(119, 215, 255, 0.18) 0%, transparent 66%);
  top: 62%;
  left: -50%;
}

.accent-spray::after {
  width: 86px;
  height: 86px;
  background: radial-gradient(circle, rgba(201, 255, 110, 0.18) 0%, transparent 66%);
  top: -12%;
  right: 38%;
}

.paint-swipe {
  position: absolute;
  width: 180px;
  height: 22px;
  background: linear-gradient(90deg, rgba(208, 161, 63, 0.9), rgba(255, 122, 69, 0.9));
  filter: blur(0.3px);
  opacity: 0.75;
  transform: rotate(-7deg);
  animation: paint-drift 4.2s ease-in-out infinite alternate;
  clip-path: polygon(0 43%, 4% 18%, 11% 34%, 21% 6%, 32% 28%, 44% 12%, 59% 35%, 74% 10%, 86% 30%, 100% 21%, 100% 73%, 84% 66%, 67% 90%, 49% 71%, 29% 94%, 11% 70%, 0 78%);
}

.poster-stack {
  position: relative;
  display: grid;
  gap: 1rem;
}

.poster-card,
.flyer-card,
.ticket-card,
.image-ph,
.info-card,
.perk-card,
.quote-card,
.inventory-card,
.note-card,
.membership-grid li,
.timeline-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-tight);
}

.poster-card,
.flyer-card,
.ticket-card,
.info-card,
.perk-card,
.inventory-card,
.note-card,
.timeline-card {
  background: linear-gradient(180deg, rgba(23, 31, 49, 0.98), rgba(12, 17, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  --card-tilt: 0deg;
}

.poster-card {
  padding: 1.25rem 1.2rem;
}

.poster-stack .poster-card:nth-child(2) {
  --card-tilt: -1.2deg;
}

.poster-card::before,
.flyer-card::before,
.ticket-card::before,
.inventory-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: linear-gradient(180deg, var(--gold), var(--coral), var(--pink));
}

.poster-card h2,
.poster-card h3,
.flyer-card h2,
.flyer-card h3,
.inventory-card h3,
.note-card h3,
.quote-card h3,
.timeline-card h3 {
  margin: 0;
  font-family: var(--headline);
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.18;
}

.poster-card p,
.flyer-card p,
.inventory-card p,
.note-card p,
.quote-card p,
.perk-card p,
.timeline-card p {
  margin: 0;
  line-height: 1.62;
  color: rgba(248, 241, 229, 0.74);
}

.poster-card .small,
.flyer-card .small,
.note-card .small,
.inventory-card .small,
.quote-card .small {
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(248, 241, 229, 0.58);
}

.poster-card .small,
.flyer-card .small {
  margin-bottom: 0.85rem;
}

.poster-card.gold {
  background:
    linear-gradient(180deg, rgba(208, 161, 63, 0.2), transparent 45%),
    linear-gradient(180deg, rgba(23, 31, 49, 0.98), rgba(12, 17, 28, 0.98));
}

.poster-card.cream {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.98), rgba(243, 227, 207, 0.97));
  border-color: rgba(17, 24, 39, 0.08);
}

.poster-card.cream p,
.poster-card.cream .small {
  color: rgba(17, 24, 39, 0.7);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.73rem;
  letter-spacing: 0.03em;
  text-transform: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 241, 229, 0.88);
}

.poster-card.cream .tag-list span {
  background: rgba(17, 24, 39, 0.08);
  color: rgba(17, 24, 39, 0.76);
}

.hero-visual-grid {
  display: grid;
  gap: 1rem;
}

.home-hero-visual-grid {
  grid-template-columns: 1fr;
}

.vibez-hero-visual-grid {
  grid-template-columns: 1fr;
}

.vibez-hero-layout {
  align-items: start;
}

.vibez-hero-layout .hero-collage {
  min-height: 0;
}

.vibez-hero-photo {
  aspect-ratio: 4 / 3;
  min-height: 360px;
  background: #05070b;
}

.vibez-hero-photo img {
  object-fit: cover;
  object-position: center center;
}

.vibez-hero-photo.image-ph.has-photo:hover img {
  transform: none;
  filter: none;
}

.vibez-hero-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.35rem 1.25rem;
}

.vibez-hero-card h2 {
  margin-bottom: 0.7rem;
}

.vibez-hero-card p {
  color: rgba(248, 241, 229, 0.82);
}

.vibez-hero-card .tag-list {
  margin-top: 1rem;
  padding-top: 0;
}

.image-ph {
  min-height: 240px;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 93, 147, 0.16), rgba(29, 214, 195, 0.12)),
    linear-gradient(180deg, rgba(16, 22, 38, 0.98), rgba(10, 13, 21, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.image-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.image-ph.has-photo:hover img {
  transform: scale(1.055) rotate(-0.35deg);
  filter: saturate(1.12) contrast(1.06);
}

.section-cream .image-ph,
.section-sand .image-ph {
  background:
    linear-gradient(135deg, rgba(255, 93, 147, 0.12), rgba(29, 214, 195, 0.08)),
    linear-gradient(180deg, rgba(255, 248, 239, 0.98), rgba(243, 227, 207, 0.97));
  border-color: rgba(17, 24, 39, 0.08);
}

.image-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0 38%, rgba(255, 255, 255, 0.1) 38% 41%, transparent 41% 100%),
    linear-gradient(150deg, transparent 0 62%, rgba(255, 255, 255, 0.08) 62% 66%, transparent 66% 100%);
  opacity: 0.8;
}

.image-ph::after {
  content: "";
  position: absolute;
  inset: -34% -70%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(120deg, transparent 34%, rgba(255, 255, 255, 0.18) 48%, transparent 62%);
  transform: translateX(-70%) rotate(8deg);
}

.image-ph.has-photo {
  background: #0a0d15;
}

.image-ph.has-photo::before {
  background:
    linear-gradient(180deg, rgba(7, 11, 19, 0.08) 0%, rgba(7, 11, 19, 0.14) 44%, rgba(7, 11, 19, 0.65) 100%);
  opacity: 1;
}

.image-ph.clean-photo {
  padding: 0;
}

.image-ph.clean-photo::before {
  display: none;
}

.image-ph.clean-photo::after {
  display: none;
}

.image-ph .label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(7, 11, 19, 0.75);
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  z-index: 2;
}

.section-cream .image-ph .label,
.section-sand .image-ph .label {
  background: rgba(17, 24, 39, 0.78);
}

.image-ph .meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 1rem;
  color: rgba(248, 241, 229, 0.7);
  font-family: var(--marker);
  font-size: 0.92rem;
  line-height: 1.4;
  z-index: 2;
}

.section-cream .image-ph .meta,
.section-sand .image-ph .meta {
  color: rgba(17, 24, 39, 0.72);
}

.image-ph.tall {
  min-height: 320px;
}

.image-ph.square {
  min-height: 220px;
}

.membership-bike-shot {
  aspect-ratio: 1988 / 1139;
  min-height: 0;
  margin-top: 1rem;
  padding: 0;
  background: transparent;
}

.membership-bike-shot img {
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.membership-bike-shot::before {
  display: none;
}

.membership-bike-shot.image-ph.has-photo:hover img {
  transform: none;
  filter: none;
}

.home-hero-photo {
  aspect-ratio: 16 / 10;
  min-height: 340px;
  padding: 0;
  background: #05070b;
}

.home-hero-photo img {
  object-fit: cover;
  object-position: center center;
}

.home-hero-photo.image-ph.has-photo:hover img {
  transform: none;
  filter: none;
}

.home-hero-photo-lg {
  min-height: 380px;
}

.home-photo-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  gap: 0.3rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(7, 11, 19, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.home-photo-badge .small {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  color: rgba(248, 241, 229, 0.62);
}

.home-photo-badge strong {
  font-family: var(--headline);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.shop-hero-photo img {
  object-fit: contain;
  object-position: center center;
  background: #0a0d15;
}

.shop-hero-stage {
  min-height: 0;
}

.shop-photo-showcase {
  display: grid;
  gap: 1rem;
}

.shop-attraction-photos {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.shop-attraction-photo {
  aspect-ratio: 4 / 3;
  min-height: 0;
  background: #05070b;
}

.shop-attraction-photo-main {
  min-height: 360px;
}

.shop-attraction-photo img {
  object-fit: contain;
  object-position: center center;
  background: #05070b;
}

.shop-attraction-photo.image-ph.has-photo:hover img {
  transform: none;
  filter: none;
}

.shop-photo-showcase > * {
  min-width: 0;
}

.shop-hero-photo,
.shop-floor-photo {
  aspect-ratio: 3 / 4;
  min-height: 0;
}

.shop-hero-photo {
  min-height: 420px;
}

.image-ph.tall.shop-hero-photo {
  min-height: 0;
}

.shop-floor-photo-main {
  min-height: 0;
}

.shop-floor-photo-feature {
  aspect-ratio: 4 / 3;
}

.shop-floor-photo img {
  object-fit: contain;
  object-position: center center;
  background: #0a0d15;
}

.shop-floor-photo-feature img {
  object-fit: cover;
  object-position: center center;
}

.shop-photo-note {
  grid-column: 1 / -1;
}

.shop-hero-photo.image-ph.has-photo:hover img,
.shop-floor-photo.image-ph.has-photo:hover img {
  transform: none;
  filter: none;
}

.shop-photo-note {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  background:
    radial-gradient(circle at 80% 10%, rgba(29, 214, 195, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(208, 161, 63, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(23, 31, 49, 0.98), rgba(12, 17, 28, 0.98));
}

.fresh-floor-stage {
  height: 100%;
}

.shop-floor-copy {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.2rem;
}

.shop-floor-copy .small {
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  color: rgba(248, 241, 229, 0.58);
}

.shop-floor-copy h3 {
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.shop-floor-copy p {
  margin: 0;
  color: rgba(248, 241, 229, 0.74);
  line-height: 1.62;
}

.shop-floor-photo-feature {
  min-height: 420px;
}

.vibez-crew-layout {
  gap: 1.6rem;
}

.vibez-crew-copy-block {
  display: grid;
  gap: 0.8rem;
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.vibez-crew-copy-block .copy {
  max-width: 34rem;
  margin: 0 auto;
}

.membership-vibe-gallery {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  margin-inline: auto;
}

.membership-vibe-lead {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius);
}

.membership-vibe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.membership-vibe-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}

.vibez-crew-gallery {
  min-width: 0;
}

.vibez-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vibez-photo-grid > * {
  min-width: 0;
}

.vibez-photo {
  min-height: 0;
}

.vibez-photo-crew {
  aspect-ratio: 4 / 5;
}

.vibez-photo-grid-crew {
  grid-template-columns: 1fr;
}

.vibez-photo-crew-feature {
  aspect-ratio: 16 / 10;
  min-height: 340px;
}

.vibez-photo-crew-portrait {
  aspect-ratio: 4 / 5;
}

.vibez-photo-crew-wide {
  aspect-ratio: 16 / 10;
}

.vibez-photo-wide {
  aspect-ratio: 4 / 3;
}

.vibez-photo-feature {
  min-height: 320px;
}

.vibez-photo-tall {
  aspect-ratio: 3 / 4;
}

.vibez-photo-tall-wide {
  min-height: 0;
}

.vibez-photo img {
  object-fit: contain;
  object-position: center center;
  background: #0a0d15;
}

.vibez-photo.image-ph.has-photo:hover img {
  transform: none;
  filter: none;
}

.vibez-crew-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.vibez-crew-list span {
  display: block;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 241, 229, 0.84);
  font-size: 0.92rem;
}

.vibez-photo-note {
  min-height: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 93, 147, 0.18), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(29, 214, 195, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(23, 31, 49, 0.98), rgba(10, 13, 21, 0.98));
}

.vibez-afterdark-grid {
  display: grid;
  gap: 1rem;
}

.vibez-afterdark-grid > * {
  min-width: 0;
}

.vibez-afterdark-photo {
  min-height: 0;
  padding: 0;
}

.vibez-afterdark-photo-lead,
.vibez-afterdark-photo-standard {
  aspect-ratio: 16 / 9;
}

.vibez-afterdark-photo-brand {
  aspect-ratio: 1462 / 1170;
  background: #05070b;
}

.vibez-afterdark-photo-logo-scene {
  aspect-ratio: 1463 / 1170;
  background: #05070b;
}

.vibez-afterdark-photo img {
  object-fit: cover;
  object-position: center center;
}

.vibez-afterdark-photo-brand img,
.vibez-afterdark-photo-logo-scene img {
  object-fit: contain;
}

.vibez-afterdark-photo.image-ph.has-photo:hover img {
  transform: none;
  filter: none;
}

.fresh-lineup-card img {
  object-position: center 58%;
}

.vintage-heat-card img {
  object-position: center 46%;
}

.late-night-card img {
  object-position: center 50%;
}

.stat-ribbon {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.7rem;
}

.stat-ribbon .strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.stat-chip {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-chip strong {
  display: block;
  font-family: var(--headline);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-chip span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 241, 229, 0.62);
}

.home-safety-grid,
.shop-safety-grid {
  align-items: start;
}

.home-safety-stage,
.shop-safety-stage {
  display: grid;
  gap: 1rem;
}

.home-safety-photo,
.home-gallery-photo-wide {
  aspect-ratio: 16 / 10;
  min-height: 0;
  background: #05070b;
}

.home-safety-photo img,
.home-gallery-photo-wide img {
  object-fit: cover;
  object-position: center center;
}

.home-safety-photo.image-ph.has-photo:hover img,
.home-gallery-photo.image-ph.has-photo:hover img,
.shop-safety-photo.image-ph.has-photo:hover img {
  transform: none;
  filter: none;
}

.home-safety-caption {
  display: grid;
  gap: 0.35rem;
}

.home-safety-caption strong {
  font-family: var(--headline);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.home-safety-caption p {
  margin: 0;
  color: rgba(17, 24, 39, 0.74);
  line-height: 1.6;
}

.home-gallery-shell {
  display: grid;
  justify-items: center;
}

.home-gallery-intro {
  margin: 0 auto 1.5rem;
  max-width: 58ch;
  text-align: center;
}

.home-gallery-intro-center {
  width: min(100%, 58ch);
  display: grid;
  justify-items: center;
  align-items: center;
}

.home-gallery-intro-center .section-kicker {
  margin-inline: auto;
  justify-content: center;
}

.home-gallery-intro-center .display {
  max-width: 16ch;
  margin-inline: auto;
  text-align: center;
}

.home-gallery-intro .copy {
  margin: 0.8rem auto 0;
  max-width: 52ch;
}

.home-gallery-grid {
  display: grid;
  gap: 1rem;
}

.home-gallery-grid-single {
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin: 0 auto;
}

.home-gallery-photo {
  background: #05070b;
  min-height: 320px;
}

.home-gallery-photo-tall,
.shop-safety-photo {
  aspect-ratio: 4 / 5;
  min-height: 0;
  background: #05070b;
}

.home-gallery-photo-tall img,
.shop-safety-photo img {
  object-fit: contain;
  object-position: center center;
  background: #05070b;
}

.home-membership-lockup {
  position: relative;
}

.home-membership-checklist {
  display: grid;
  gap: 0.9rem;
}

.home-membership-line {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.home-membership-line strong {
  font-family: var(--headline);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.home-membership-line span {
  color: rgba(17, 24, 39, 0.74);
  line-height: 1.55;
}

.shop-safety-note h3 {
  margin-bottom: 0.45rem;
}

.shop-safety-note p {
  margin: 0;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: ride-strip 22s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(248, 241, 229, 0.76);
}

.marquee-track span::after {
  content: "|";
  color: var(--gold);
}

@keyframes ride-strip {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.grid-cards {
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.25rem;
}

.info-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(255, 93, 147, 0.18), transparent 70%);
}

.info-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.45rem;
}

.info-card p {
  margin: 0;
  color: rgba(248, 241, 229, 0.75);
  line-height: 1.7;
}

.section-sand .info-card,
.section-cream .info-card {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.section-sand .info-card p,
.section-cream .info-card p {
  color: rgba(17, 24, 39, 0.75);
}

.number-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 0.9rem;
  border-radius: 16px;
  font-family: var(--headline);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--night);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.split-grid {
  display: grid;
  gap: 1.25rem;
}

.note-card,
.quote-card {
  padding: 1.3rem;
}

.quote-card {
  background:
    linear-gradient(180deg, rgba(255, 93, 147, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(23, 31, 49, 0.98), rgba(12, 17, 28, 0.98));
}

.shop-quote-pair {
  align-items: stretch;
}

.shop-quote-pair .quote-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.shop-quote-pair .quote-card blockquote {
  flex: 1;
}

.merch-vibes-card {
  background:
    linear-gradient(180deg, rgba(255, 93, 147, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(23, 31, 49, 0.98), rgba(12, 17, 28, 0.98));
}

.merch-vibes-card .small {
  display: block;
  margin-bottom: 0.85rem;
  color: rgba(248, 241, 229, 0.62);
}

.merch-vibes-card blockquote {
  color: var(--gold-soft);
}

.section-sand .note-card,
.section-cream .note-card {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.section-sand .note-card p,
.section-cream .note-card p {
  color: rgba(17, 24, 39, 0.75);
}

.quote-card blockquote {
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(1.15rem, 4vw, 1.55rem);
  line-height: 1.5;
  color: var(--gold-soft);
}

.quote-card cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  text-transform: none;
  font-style: normal;
  color: rgba(248, 241, 229, 0.62);
}

.section-cream .quote-card,
.section-sand .quote-card {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(208, 161, 63, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 248, 239, 0.98), rgba(243, 227, 207, 0.97));
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.section-cream .quote-card blockquote,
.section-sand .quote-card blockquote {
  color: #8f6020;
}

.section-cream .quote-card cite,
.section-sand .quote-card cite {
  color: rgba(17, 24, 39, 0.56);
}

.process-list,
.dash-list,
.check-list {
  display: grid;
  gap: 0.95rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.dash-list li,
.check-list li,
.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  line-height: 1.6;
}

.dash-list li::before,
.check-list li::before,
.process-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--sky));
  box-shadow: 0 0 0 6px rgba(29, 214, 195, 0.14);
}

.check-list li::before {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 0 6px rgba(208, 161, 63, 0.14);
}

.process-list li::before {
  background: linear-gradient(135deg, var(--coral), var(--pink));
  box-shadow: 0 0 0 6px rgba(255, 93, 147, 0.14);
}

.flyer-card {
  padding: 1.4rem;
}

.culture-photo-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(7, 11, 19, 0.28) 0%, rgba(7, 11, 19, 0.7) 44%, rgba(7, 11, 19, 0.94) 100%),
    linear-gradient(90deg, rgba(7, 11, 19, 0.74), rgba(7, 11, 19, 0.28) 54%, rgba(7, 11, 19, 0.74)),
    url("pull-up-logo-scene.jpeg") center / cover no-repeat;
  border-color: rgba(243, 214, 141, 0.34);
}

.culture-photo-card::before {
  width: 100%;
  background:
    radial-gradient(circle at 22% 12%, rgba(243, 214, 141, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(208, 161, 63, 0.88), rgba(255, 122, 69, 0.58), transparent 48%);
  opacity: 0.95;
}

.culture-photo-card .small,
.culture-photo-card h2,
.culture-photo-card p,
.culture-photo-card .list-grid {
  position: relative;
  z-index: 1;
}

.culture-photo-card .small,
.culture-photo-card p,
.culture-photo-card .list-grid span {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.culture-photo-card h2 {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.culture-photo-card .list-grid span {
  background: rgba(7, 11, 19, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.membership-crew-card {
  min-height: 0;
  display: grid;
  gap: 0;
  padding: 0;
  background: linear-gradient(180deg, rgba(23, 31, 49, 0.98), rgba(10, 13, 21, 0.98));
  border-color: rgba(243, 214, 141, 0.26);
}

.membership-crew-card::before {
  display: none;
}

.membership-crew-photo {
  aspect-ratio: 2068 / 1170;
  min-height: 0;
  background: #05070b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.membership-crew-photo img {
  object-fit: cover;
  object-position: center center;
}

.membership-crew-photo.image-ph.has-photo:hover img {
  transform: none;
  filter: none;
}

.membership-crew-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem 1.3rem 1.4rem;
  background:
    radial-gradient(circle at 84% 12%, rgba(243, 214, 141, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(23, 31, 49, 0.98), rgba(10, 13, 21, 0.98));
}

.membership-crew-card .small,
.membership-crew-card h2,
.membership-crew-card p,
.membership-crew-card .list-grid {
  position: static;
  z-index: auto;
}

.membership-crew-card .small {
  margin: 0;
  color: rgba(248, 241, 229, 0.64);
  text-shadow: none;
}

.membership-crew-card h2 {
  margin: 0;
  color: #ffffff;
  text-shadow: none;
}

.membership-crew-card p {
  margin: 0;
  color: rgba(248, 241, 229, 0.78);
  text-shadow: none;
}

.membership-crew-card .list-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.15rem;
}

.membership-crew-card .list-grid span {
  display: block;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(248, 241, 229, 0.88);
  text-shadow: none;
  backdrop-filter: none;
}

.flyer-card .list-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.flyer-card .list-grid span {
  display: block;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 241, 229, 0.82);
  font-size: 0.9rem;
}

.section-sand .flyer-card,
.section-cream .flyer-card {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.98), rgba(243, 227, 207, 0.97));
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.section-sand .flyer-card p,
.section-cream .flyer-card p,
.section-sand .flyer-card .small,
.section-cream .flyer-card .small {
  color: rgba(17, 24, 39, 0.7);
}

.section-sand .flyer-card .list-grid span,
.section-cream .flyer-card .list-grid span {
  background: rgba(17, 24, 39, 0.06);
  color: rgba(17, 24, 39, 0.78);
}

.route-band {
  position: relative;
  overflow: hidden;
  padding: 1.15rem 0;
  background:
    linear-gradient(90deg, rgba(255, 122, 69, 0.18), rgba(255, 93, 147, 0.18), rgba(29, 214, 195, 0.18));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.route-band .section-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  align-items: center;
}

.route-band strong {
  font-family: var(--marker);
  color: var(--gold-soft);
  font-size: 1rem;
  animation: route-glow 2.6s ease-in-out infinite alternate;
}

.route-band span {
  display: inline-flex;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(248, 241, 229, 0.78);
  animation: route-chip 5.4s ease-in-out infinite;
}

.route-band span:nth-child(3n) {
  animation-delay: 0.35s;
}

.route-band span:nth-child(3n + 1) {
  animation-delay: 0.7s;
}

.inventory-grid,
.mosaic-grid,
.benefit-columns,
.timeline-grid,
.vibe-grid {
  display: grid;
  gap: 1rem;
}

.inventory-card {
  padding: 1.25rem 1.15rem;
}

.inventory-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.55rem;
}

.inventory-card .price-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.65rem;
  margin-top: 0.95rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--gold-soft);
  background: rgba(208, 161, 63, 0.12);
}

.section-sand .inventory-card,
.section-cream .inventory-card {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.98), rgba(243, 227, 207, 0.97));
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.section-sand .inventory-card p,
.section-cream .inventory-card p {
  color: rgba(17, 24, 39, 0.72);
}

.section-sand .inventory-card .price-tag,
.section-cream .inventory-card .price-tag {
  color: #8f6020;
  background: rgba(208, 161, 63, 0.15);
}

.mosaic-grid .image-ph:nth-child(odd) {
  --card-tilt: -1.3deg;
  transform: rotate(var(--card-tilt));
}

.mosaic-grid .image-ph:nth-child(even) {
  --card-tilt: 1.1deg;
  transform: rotate(var(--card-tilt));
}

.ticket-card {
  padding: 1.35rem 1.2rem 1.25rem 1.35rem;
  border-radius: 24px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 18px) 100%, 0 100%, 0 82%, 14px 74%, 0 66%, 0 34%, 14px 26%, 0 18%);
}

.ticket-card .mini {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(248, 241, 229, 0.58);
}

.ticket-card .ticket-title {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--headline);
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1;
}

.ticket-card .ticket-note {
  margin: 0.85rem 0 1.05rem;
  line-height: 1.7;
  color: rgba(248, 241, 229, 0.75);
}

.ticket-card .perforation {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 72px;
  width: 2px;
  background:
    repeating-linear-gradient(180deg, rgba(248, 241, 229, 0.28) 0 8px, transparent 8px 18px);
}

.ticket-card .ticket-foot {
  display: grid;
  gap: 0.65rem;
}

.ticket-card .ticket-foot span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(248, 241, 229, 0.74);
}

.membership-grid {
  display: grid;
  gap: 0.8rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.membership-grid li {
  padding: 0.95rem 0.95rem 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.membership-grid li strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
}

.membership-grid li span {
  display: block;
  color: rgba(248, 241, 229, 0.78);
  line-height: 1.7;
}

.section-sand .membership-grid li,
.section-cream .membership-grid li {
  background: rgba(17, 24, 39, 0.04);
  border-color: rgba(17, 24, 39, 0.08);
}

.section-sand .membership-grid li span,
.section-cream .membership-grid li span {
  color: rgba(17, 24, 39, 0.78);
}

.section-sand .membership-grid li strong,
.section-cream .membership-grid li strong {
  color: #8f6020;
}

.perk-card {
  padding: 1.15rem;
}

.perk-card h3 {
  margin: 0 0 0.7rem;
  font-family: var(--headline);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.perk-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
}

.perk-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  color: rgba(248, 241, 229, 0.8);
  line-height: 1.6;
}

.perk-card li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 0 6px rgba(208, 161, 63, 0.14);
}

.section-sand .perk-card,
.section-cream .perk-card {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.98), rgba(243, 227, 207, 0.97));
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.section-sand .perk-card li,
.section-cream .perk-card li {
  color: rgba(17, 24, 39, 0.78);
}

.form-shell {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.98), rgba(243, 227, 207, 0.97));
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--ink);
  box-shadow: var(--shadow-tight);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  padding: 0.9rem 1rem;
}

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

.form-shell label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 0.62);
}

.form-shell .helper {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(17, 24, 39, 0.7);
}

.hidden-field {
  display: none;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
}

.contact-list strong {
  font-size: 0.74rem;
  font-family: var(--headline);
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(17, 24, 39, 0.55);
}

.contact-list span,
.contact-list a {
  color: rgba(17, 24, 39, 0.84);
  line-height: 1.55;
}

.section-dark .contact-list li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section-dark .contact-list strong {
  color: rgba(248, 241, 229, 0.56);
}

.section-dark .contact-list span,
.section-dark .contact-list a {
  color: rgba(248, 241, 229, 0.82);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.map-shell {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(7, 11, 19, 0.92);
  box-shadow: var(--shadow-tight);
}

.map-shell iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  height: 100%;
  border: 0;
}

.hero-map {
  min-height: 430px;
}

.pull-up-visual-stack {
  display: grid;
  gap: 1rem;
}

.pull-up-visual-stack .hero-map,
.pull-up-visual-stack .hero-map iframe {
  min-height: 320px;
}

.pull-up-scene-photo {
  aspect-ratio: 1463 / 1170;
  min-height: 0;
  padding: 0;
  background: #05070b;
}

.pull-up-scene-photo img {
  object-fit: cover;
  object-position: center center;
}

.pull-up-scene-photo.image-ph.has-photo:hover img {
  transform: none;
  filter: none;
}

.pull-up-map-note {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(7, 11, 19, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.pull-up-map-note .small {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 241, 229, 0.62);
}

.pull-up-map-note strong {
  font-family: var(--headline);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.pull-up-map-note .btn {
  justify-self: start;
}

.timeline-card {
  padding: 1.15rem;
}

.timeline-card h3 {
  color: #ffffff;
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.timeline-card p {
  margin-bottom: 0.9rem;
}

.timeline-card .time {
  display: inline-flex;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--gold-soft);
  background: rgba(208, 161, 63, 0.12);
}

.newsletter-shell {
  display: grid;
  gap: 0.8rem;
}

.newsletter-shell .row {
  display: grid;
  gap: 0.8rem;
}

.newsletter-shell input {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.footer {
  position: relative;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(208, 161, 63, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(7, 11, 19, 0.98), rgba(7, 11, 19, 1));
}

.footer-grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.footer-card {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-card h3 {
  margin: 0 0 0.6rem;
  font-family: var(--headline);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.footer-card p,
.footer-card li,
.footer-card a {
  margin: 0;
  color: rgba(248, 241, 229, 0.72);
  line-height: 1.62;
}

.footer-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: rgba(248, 241, 229, 0.52);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .display {
  animation: headline-slam 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal.is-visible .display-outline {
  animation: outline-pop 980ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal.is-visible .hero-subline,
.reveal.is-visible .section-kicker,
.reveal.is-visible .hero-note {
  animation: subtitle-swipe 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal.is-visible p:not(.section-kicker):not(.hero-subline):not(.hero-note),
.reveal.is-visible li,
.reveal.is-visible .tag-list span,
.reveal.is-visible .list-grid span,
.reveal.is-visible .ticket-foot span,
.reveal.is-visible .stat-chip {
  animation: body-drift 620ms ease both;
}

.reveal.is-visible:is(.poster-card, .flyer-card, .ticket-card, .image-ph, .info-card, .perk-card, .quote-card, .inventory-card, .note-card, .timeline-card),
.reveal.is-visible .poster-card,
.reveal.is-visible .flyer-card,
.reveal.is-visible .ticket-card,
.reveal.is-visible .image-ph,
.reveal.is-visible .info-card,
.reveal.is-visible .perk-card,
.reveal.is-visible .quote-card,
.reveal.is-visible .inventory-card,
.reveal.is-visible .note-card,
.reveal.is-visible .timeline-card {
  animation: card-kick 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal.is-visible .poster-card:nth-child(2),
.reveal.is-visible .image-ph:nth-child(2),
.reveal.is-visible .info-card:nth-child(2),
.reveal.is-visible .inventory-card:nth-child(2),
.reveal.is-visible .perk-card:nth-child(2),
.reveal.is-visible .timeline-card:nth-child(2) {
  animation-delay: 90ms;
}

.reveal.is-visible .image-ph:nth-child(3),
.reveal.is-visible .info-card:nth-child(3),
.reveal.is-visible .inventory-card:nth-child(3),
.reveal.is-visible .perk-card:nth-child(3),
.reveal.is-visible .timeline-card:nth-child(3) {
  animation-delay: 160ms;
}

.reveal.is-visible .image-ph:nth-child(4),
.reveal.is-visible .inventory-card:nth-child(4),
.reveal.is-visible .timeline-card:nth-child(4) {
  animation-delay: 230ms;
}

.reveal.is-visible .image-ph::after,
.reveal.is-visible.image-ph::after {
  animation: photo-flash 1.15s ease both;
}

.home-page .reveal {
  transition-duration: 760ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-property: opacity, transform, filter;
  filter: blur(5px);
}

.home-page .reveal.reveal-drop {
  transform: translateY(-94px) scale(0.94) rotate(-1.2deg);
}

.home-page .reveal.reveal-rise {
  transform: translateY(94px) scale(0.94) rotate(1deg);
}

.home-page .reveal.reveal-pop {
  transform: translateY(76px) scale(0.84);
}

.home-page .reveal.reveal-slide-left {
  transform: translateX(-104px) scale(0.96) rotate(-1.1deg);
}

.home-page .reveal.reveal-slide-right {
  transform: translateX(104px) scale(0.96) rotate(1.1deg);
}

.home-page .reveal.is-visible {
  filter: blur(0);
}

.home-page .reveal.is-visible.reveal-drop {
  animation: home-drop-in 880ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-page .reveal.is-visible.reveal-rise {
  animation: home-rise-pop 880ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-page .reveal.is-visible.reveal-pop {
  animation: home-pop-up 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-page .reveal.is-visible.reveal-slide-left {
  animation: home-slide-left 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-page .reveal.is-visible.reveal-slide-right {
  animation: home-slide-right 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-page .reveal.is-visible .eyebrow {
  animation: home-tag-drop 650ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-page .reveal.is-visible .eyebrow:nth-child(2) {
  animation-delay: 100ms;
}

.home-page .reveal.is-visible .eyebrow:nth-child(3) {
  animation-delay: 180ms;
}

.home-page .reveal.is-visible .cta-row .btn {
  animation: home-button-pop 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-page .reveal.is-visible .cta-row .btn:nth-child(2) {
  animation-delay: 100ms;
}

.home-page .reveal.is-visible .number-stamp {
  animation: home-stamp-slap 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes headline-slam {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.92) rotate(-1.5deg);
    filter: blur(6px);
  }

  58% {
    opacity: 1;
    transform: translateY(-5px) scale(1.025) rotate(0.45deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes headline-glow {
  from {
    text-shadow:
      0 2px 0 rgba(7, 11, 19, 0.55),
      0 6px 0 rgba(143, 96, 32, 0.6),
      0 14px 30px rgba(255, 122, 69, 0.18),
      0 0 24px rgba(208, 161, 63, 0.12);
  }

  to {
    text-shadow:
      0 2px 0 rgba(7, 11, 19, 0.7),
      0 7px 0 rgba(143, 96, 32, 0.66),
      0 18px 38px rgba(255, 122, 69, 0.28),
      0 0 34px rgba(243, 214, 141, 0.24);
  }
}

@keyframes outline-pop {
  0% {
    transform: translateX(-14px) skewX(-9deg) scale(0.94);
    opacity: 0;
    -webkit-text-stroke-color: rgba(119, 215, 255, 0.2);
  }

  62% {
    transform: translateX(5px) skewX(3deg) scale(1.04);
    opacity: 1;
    -webkit-text-stroke-color: rgba(29, 214, 195, 1);
  }

  100% {
    transform: translateX(0) skewX(0) scale(1);
    opacity: 1;
    -webkit-text-stroke-color: rgba(119, 215, 255, 0.95);
  }
}

@keyframes subtitle-swipe {
  0% {
    opacity: 0;
    transform: translateX(-24px) rotate(-1deg);
    clip-path: inset(0 100% 0 0);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes body-drift {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-kick {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.96) rotate(calc(var(--card-tilt, 0deg) - 1deg));
  }

  58% {
    opacity: 1;
    transform: translateY(-5px) scale(1.015) rotate(calc(var(--card-tilt, 0deg) + 0.45deg));
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--card-tilt, 0deg));
  }
}

@keyframes photo-flash {
  0% {
    opacity: 0;
    transform: translateX(-70%) rotate(8deg);
  }

  32% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translateX(70%) rotate(8deg);
  }
}

@keyframes route-glow {
  from {
    text-shadow: 0 0 0 rgba(243, 214, 141, 0);
  }

  to {
    text-shadow: 0 0 18px rgba(243, 214, 141, 0.55), 0 0 34px rgba(255, 122, 69, 0.18);
  }
}

@keyframes route-chip {
  0%,
  100% {
    transform: translateY(0);
    color: rgba(248, 241, 229, 0.78);
  }

  45% {
    transform: translateY(-2px) rotate(-0.4deg);
    color: rgba(255, 255, 255, 0.96);
  }
}

@keyframes home-drop-in {
  0% {
    opacity: 0;
    transform: translateY(-94px) scale(0.94) rotate(-1.2deg);
    filter: blur(7px);
  }

  62% {
    opacity: 1;
    transform: translateY(10px) scale(1.025) rotate(0.55deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes home-rise-pop {
  0% {
    opacity: 0;
    transform: translateY(94px) scale(0.94) rotate(1deg);
    filter: blur(7px);
  }

  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.025) rotate(-0.4deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes home-pop-up {
  0% {
    opacity: 0;
    transform: translateY(76px) scale(0.84);
    filter: blur(6px);
  }

  58% {
    opacity: 1;
    transform: translateY(-8px) scale(1.045);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes home-slide-left {
  0% {
    opacity: 0;
    transform: translateX(-104px) scale(0.96) rotate(-1.1deg);
    filter: blur(6px);
  }

  62% {
    opacity: 1;
    transform: translateX(12px) scale(1.02) rotate(0.45deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes home-slide-right {
  0% {
    opacity: 0;
    transform: translateX(104px) scale(0.96) rotate(1.1deg);
    filter: blur(6px);
  }

  62% {
    opacity: 1;
    transform: translateX(-12px) scale(1.02) rotate(-0.45deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes home-tag-drop {
  0% {
    opacity: 0;
    transform: translateY(-18px) rotate(-2deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes home-button-pop {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.9);
  }

  64% {
    opacity: 1;
    transform: translateY(-4px) scale(1.04);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes home-stamp-slap {
  0% {
    opacity: 0;
    transform: translateY(-16px) scale(1.2) rotate(-8deg);
  }

  65% {
    opacity: 1;
    transform: translateY(2px) scale(0.96) rotate(3deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

@keyframes spray-pulse {
  from {
    transform: scale(0.96);
    opacity: 0.72;
  }

  to {
    transform: scale(1.08) translate(-8px, 8px);
    opacity: 1;
  }
}

@keyframes paint-drift {
  from {
    transform: translateX(-5px) rotate(-8deg);
  }

  to {
    transform: translateX(8px) rotate(-5deg);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 700px) {
  .section {
    padding: 6rem 0;
  }

  .membership-spotlight-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
  }

  .cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .split-grid,
  .grid-cards,
  .inventory-grid,
  .benefit-columns,
  .timeline-grid,
  .vibe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .shop-photo-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .shop-attraction-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-attraction-photo-main {
    grid-column: 1 / -1;
    min-height: 560px;
  }

  .shop-floor-photo-feature {
    min-height: 500px;
  }

  .vibez-hero-card {
    min-height: 0;
  }

  .vibez-crew-layout {
    grid-template-columns: 1fr;
  }

  .vibez-photo-grid-crew {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .vibez-photo-crew-feature,
  .vibez-photo-crew-wide {
    grid-column: 1 / -1;
  }

  .vibez-photo-crew-feature {
    min-height: 440px;
  }

  .vibez-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

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

  .home-gallery-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: stretch;
  }

  .home-gallery-grid.home-gallery-grid-single {
    grid-template-columns: 1fr;
  }

  .home-gallery-photo-wide {
    min-height: 420px;
  }

  .home-gallery-photo-tall {
    min-height: 420px;
  }

  .shop-floor-photo-main {
    grid-row: auto;
    min-height: 0;
  }

  .vibez-photo-wide {
    grid-column: 1 / -1;
  }

  .vibez-photo-feature {
    min-height: 460px;
  }

  .vibez-photo-tall-wide {
    grid-column: 1 / -1;
  }

  .vibez-afterdark-photo-lead {
    grid-column: 1 / -1;
  }

  .membership-crew-card .list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-crew-card .list-grid span:last-child {
    grid-column: 1 / -1;
  }

  .newsletter-shell .row {
    grid-template-columns: 1fr auto;
  }

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

@media (min-width: 900px) {
  :root {
    --header-height: 96px;
  }

  .site-header {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    border: 0;
    background: transparent;
    transform: none;
  }

  .site-nav a {
    background: transparent;
    padding: 0.65rem 0.95rem;
  }

  .site-nav a:hover {
    color: var(--gold-soft);
  }

  .site-nav .nav-cta {
    margin-left: 0.5rem;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.95fr;
    gap: 2rem;
    align-items: center;
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.4rem;
  }

  .vibez-hero-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 2.3rem;
    align-items: start;
  }

  .hero-collage {
    min-height: 540px;
  }

  .vibez-hero-layout .hero-collage {
    min-height: 0;
  }

  .vibez-hero-photo {
    min-height: 520px;
  }

  .vibez-crew-copy-block {
    max-width: 48rem;
  }

  .vibez-photo-crew-feature {
    min-height: 500px;
  }

  .vibez-photo-crew-wide {
    min-height: 340px;
  }

  .home-hero-stage {
    min-height: 0;
  }

  .home-hero-photo-lg {
    min-height: 600px;
  }

  .hero-visual-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 1rem;
    align-items: start;
  }

  .home-hero-visual-grid {
    grid-template-columns: 1fr;
  }

  .vibez-hero-visual-grid {
    grid-template-columns: 1fr;
  }

  .vibez-hero-card {
    min-height: 0;
  }

  .pull-up-visual-stack .hero-map,
  .pull-up-visual-stack .hero-map iframe {
    min-height: 430px;
  }

  .hero-visual-grid .image-ph.tall {
    min-height: 540px;
  }

  .hero-visual-grid .image-ph.tall.shop-hero-photo {
    min-height: 0;
  }

  .shop-hero-photo {
    min-height: 620px;
  }

  .fresh-floor-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .shop-floor-photo-feature {
    min-height: 580px;
  }

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

  .split-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .home-safety-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
  }

  .shop-safety-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
  }

  .home-safety-photo {
    min-height: 520px;
  }

  .home-gallery-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
    gap: 1.25rem;
  }

  .home-gallery-grid.home-gallery-grid-single {
    grid-template-columns: 1fr;
  }

  .home-gallery-photo-wide {
    min-height: 540px;
  }

  .home-gallery-photo-tall {
    min-height: 540px;
  }

  .home-membership-checklist {
    align-self: stretch;
  }

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

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

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

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

  .vibe-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .marquee-track {
    animation: none !important;
  }
}

