/* ═══════════════════════════════════════════════════════════════════
   BUCKLEY'S FAMILY ADVENTURE — design system
   Brand palette preserved: forest / grove / orange / cream.
   Elevated with display typography, layered gradients, glow accents,
   polished cards, and motion (all reduced-motion aware).
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Brand */
  --forest: #182d09;
  --forest-deep: #0c1a04;
  --grove: #177302;
  --grove-bright: #2eae12;
  --orange: #c34f07;
  --orange-dk: #a33e05;
  --ember: #f36e3c;
  --gold: #ffc07a;
  --cream: #faf7f0;
  --cream-dk: #f0ead9;
  --parchment: #e8dfc8;
  --sage: #eef3e8;
  --ink: #141a0c;
  --white: #ffffff;
  --line: rgba(23, 115, 2, 0.15);

  /* Type */
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  /* Surfaces & depth */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-card:
    0 1px 2px rgba(18, 38, 6, 0.05),
    0 10px 30px rgba(18, 38, 6, 0.08);
  --shadow-lift:
    0 6px 14px rgba(18, 38, 6, 0.1),
    0 28px 60px rgba(18, 38, 6, 0.18);
  --glow-ember:
    0 10px 24px rgba(195, 79, 7, 0.32),
    0 0 44px rgba(243, 110, 60, 0.22);
  --gradient-ember: linear-gradient(135deg, var(--ember) 0%, var(--orange) 78%);
  --gradient-brand: linear-gradient(
    100deg,
    var(--grove) 0%,
    var(--ember) 55%,
    var(--gold) 100%
  );
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--grove);
  color: var(--cream);
}

img {
  max-width: 100%;
}

/* Accessible focus ring everywhere (form fields define their own below) */
:focus-visible {
  outline: 3px solid rgba(46, 174, 18, 0.55);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── SCROLL REVEAL (classes added by JS; page fully visible without JS) ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── HEADER ── */
.site-header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 56px);
  /* Logo is 185px wide → ~173px tall (228:213 aspect), plus breathing room */
  height: 205px;
  background: rgba(250, 247, 240, 0.97);
  /* border-bottom: 1px solid var(--line); */
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--forest);
  flex-shrink: 0;
  border-radius: 8px;
}

.logo-horizontal {
  width: 185px;
  height: auto;
  display: block;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand:hover .logo-horizontal {
  transform: scale(1.04) rotate(-1deg);
}

/* "Coming Soon / Woodland Hills, CA" — hidden on desktop;
   the mobile breakpoint below shows it under the big logo. */
.site-status {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 0;
}
.site-status-main {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--forest);
  line-height: 1.1;
}
.site-status-loc {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(20, 26, 12, 0.7);
  line-height: 1.1;
}

@media (min-width: 1200px) {
  .site-status {
    display: flex;
    align-items: flex-start;
    margin-right: auto;
  }
  .site-status-main,
  .site-status-loc {
    white-space: nowrap;
  }
  .site-status-main {
    font-size: 18px;
  }
  .site-status-loc {
    font-size: 13px;
  }
}

nav[aria-label="Primary navigation"] {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

nav[aria-label="Primary navigation"] a {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(20, 26, 12, 0.6);
  text-decoration: none;
  padding: 6px 2px;
  transition: color 0.25s;
}

/* Animated gradient underline */
nav[aria-label="Primary navigation"] a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--grove), var(--ember));
  transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

nav[aria-label="Primary navigation"] a:hover {
  color: var(--forest);
}

nav[aria-label="Primary navigation"] a:hover::after {
  right: 2px;
}

/* Active nav state */
nav[aria-label="Primary navigation"] a.is-active {
  color: var(--cream);
  background: var(--grove);
  padding: 7px 16px;
  border-radius: 999px;
}
nav[aria-label="Primary navigation"] a.is-active::after {
  display: none;
}

/* ── HAMBURGER BUTTON ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.2s;
}

.nav-toggle.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── EYEBROW ── */
.eyebrow {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--grove);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Glowing dot + gradient dash */
.eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--grove), var(--ember));
  box-shadow: 0 0 12px rgba(46, 174, 18, 0.45);
  flex-shrink: 0;
}

/* ── TYPOGRAPHY ── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(53px, 7.8vw, 100px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--forest);
  margin-bottom: 24px;
  font-weight: 800;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  font-weight: 800;
  /* Subtle forest→grove gradient ink */
  color: var(--forest);
  background: linear-gradient(115deg, var(--forest) 35%, var(--grove) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--forest);
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.7;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 44px;
  padding: clamp(56px, 8vw, 120px) clamp(20px, 5vw, 56px);
  background: var(--forest-deep);
}

/* Cinematic overlay: deep vignette + warm ember cast for readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      760px 520px at 80% 12%,
      rgba(243, 110, 60, 0.22),
      transparent 62%
    ),
    linear-gradient(
      115deg,
      rgba(8, 20, 2, 0.8) 0%,
      rgba(10, 26, 3, 0.5) 52%,
      rgba(10, 26, 3, 0.3) 100%
    );
}

/* Glow orbs — arcade-light atmosphere in brand colors */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      380px 380px at 10% 90%,
      rgba(46, 174, 18, 0.24),
      transparent 70%
    ),
    radial-gradient(
      300px 300px at 94% 78%,
      rgba(255, 192, 122, 0.18),
      transparent 70%
    );
  mix-blend-mode: screen;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
  transform: scale(1.04);
  animation: hero-drift 24s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translateX(0);
  }
  to {
    transform: scale(1.09) translateX(-14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    animation: none;
    transform: none;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

/* Override text colors for photo background */
.hero h1 {
  color: var(--cream);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(17px, 3vw, 25px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.45;
  margin-bottom: 14px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.hero-body {
  font-size: 16px;
  font-weight: 400;
  color: rgba(250, 247, 240, 0.8);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 520px;
}

/* ── SIGNUP CARD ── */
.signup-card {
  /* Gradient border: white card in a brand-color frame */
  border: 1px solid transparent;
  background:
    linear-gradient(#fffdf9, #fffdf9) padding-box,
    linear-gradient(
        165deg,
        rgba(255, 192, 122, 0.95),
        rgba(23, 115, 2, 0.45) 45%,
        rgba(243, 110, 60, 0.9)
      )
      border-box;
  border-radius: 26px;
  padding: 130px 36px 34px;
  align-self: center;
  box-shadow:
    0 18px 44px rgba(18, 38, 6, 0.32),
    0 0 60px rgba(46, 174, 18, 0.12);
  position: relative;
  z-index: 2;
  overflow: visible;
}

/* Centered ribbon image that pokes above the card */
.card-ribbon {
  position: absolute;
  left: 50%;
  top: clamp(-67px, -8vw, -76px);
  transform: translateX(-50%) rotate(-4deg);
  z-index: 4;
  line-height: 0;
  animation: ribbon-bob 4.5s ease-in-out infinite;
}

@keyframes ribbon-bob {
  0%,
  100% {
    transform: translateX(-50%) rotate(-4deg) translateY(0);
  }
  50% {
    transform: translateX(-50%) rotate(-3deg) translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-ribbon {
    animation: none;
  }
}

.ribbon-svg {
  height: clamp(110px, 14.6vw, 169px);
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
}

.perk-list {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  margin-bottom: 0;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--parchment);
}

.perk-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.1px;
}

.perk-icon {
  flex: 0 0 auto;
  color: var(--orange);
  filter: drop-shadow(0 2px 6px rgba(243, 110, 60, 0.35));
}

/* ── FORM ── */
form {
  display: grid;
  gap: 12px;
}

label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(20, 26, 12, 0.5);
  display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--parchment);
  font: inherit;
  font-size: 14px;
  background: var(--cream);
  color: var(--ink);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  display: block;
  box-sizing: border-box;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
select:hover {
  border-color: rgba(23, 115, 2, 0.4);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
  color: var(--ink);
  opacity: 1;
}

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

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
  outline: none;
  border-color: var(--grove);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46, 174, 18, 0.14);
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(20, 26, 12, 0.78);
  letter-spacing: 0.1px;
  text-transform: none;
}

.checkbox-row input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--grove);
}

/* ── BUTTONS ── */
button,
.button-light {
  border: 0;
  border-radius: 12px;
  padding: 15px 28px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s,
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s;
}

button {
  background: var(--grove);
  color: var(--cream);
}

button:hover {
  background: var(--forest);
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

/* Form submit button — glowing ember gradient */
.signup-card button {
  background: var(--gradient-ember);
  color: var(--white);
  font-size: clamp(15px, 2.5vw, 18.7px);
  font-weight: 800;
  box-shadow: var(--glow-ember);
}

.signup-card button:hover {
  background: linear-gradient(135deg, #ff7f4d 0%, var(--orange) 78%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(195, 79, 7, 0.42),
    0 0 54px rgba(243, 110, 60, 0.3);
}

.signup-card button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.button-light {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 247, 240, 0.35);
  position: relative;
  z-index: 1;
}

.button-light:hover {
  background: rgba(250, 247, 240, 0.1);
  border-color: var(--cream);
}

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  background: var(--gradient-ember);
  color: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(20, 26, 12, 0.28);
  animation: cta-pulse 2.8s ease-out infinite;
  transition:
    background 0.25s,
    transform 0.25s,
    opacity 0.3s,
    visibility 0.3s;
}

@keyframes cta-pulse {
  0% {
    box-shadow:
      0 10px 30px rgba(20, 26, 12, 0.28),
      0 0 0 0 rgba(243, 110, 60, 0.45);
  }
  70%,
  100% {
    box-shadow:
      0 10px 30px rgba(20, 26, 12, 0.28),
      0 0 0 16px rgba(243, 110, 60, 0);
  }
}

.sticky-cta:hover {
  background: linear-gradient(135deg, #ff7f4d 0%, var(--orange) 78%);
  transform: translateY(-2px);
}

.sticky-cta:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 2px;
}

.sticky-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  animation: none;
}

@media (max-width: 640px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 15px 20px;
    font-size: 12px;
    letter-spacing: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta {
    animation: none;
    transition:
      opacity 0.2s,
      visibility 0.2s;
  }
  .sticky-cta:hover {
    transform: none;
  }
}

/* ── LOCATION SECTION ── */
.location-section {
  background: var(--cream-dk);
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 56px);
}

.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  overflow: hidden;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.venue-photo {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.location-card:hover .venue-photo {
  transform: scale(1.025);
}

.location-copy p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 16px;
}

/* Address as a soft sage pill */
.location-address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(20, 26, 12, 0.72);
  margin-top: 24px;
  padding: 12px 18px;
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.location-address a {
  color: var(--grove);
  text-decoration: none;
  border-bottom: 1px solid rgba(23, 115, 2, 0.25);
  transition:
    color 0.2s,
    border-color 0.2s;
}

.location-address a:hover {
  color: var(--forest);
  border-color: var(--forest);
}

/* ── ATTRACTIONS SECTION ── */
.section {
  padding: clamp(48px, 6vw, 96px) clamp(20px, 5vw, 56px);
}

.section-heading {
  max-width: 640px;
  margin-bottom: 40px;
}

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

.attraction-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--forest);
  border: none;
  box-shadow: var(--shadow-card);
  height: 288px;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s;
}

.attraction-card:hover {
  transform: translateY(-8px);
  box-shadow:
    var(--shadow-lift),
    0 0 44px rgba(46, 174, 18, 0.2);
}

.tile-image {
  position: absolute;
  inset: 0;
  border-radius: 0;
  min-height: unset;
  background: linear-gradient(155deg, #1e3d0e 0%, var(--forest-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.12);
  font-weight: 700;
  overflow: hidden;
}

/* Card photos (inline styles removed from markup) */
.tile-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.attraction-card:hover .tile-image img {
  transform: scale(1.07);
}

/* Legibility gradient + warm glow that intensifies on hover */
.attraction-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(12, 26, 4, 0) 42%,
    rgba(12, 26, 4, 0.82) 100%
  );
  transition: opacity 0.4s;
}

.attraction-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      320px 200px at 50% 108%,
      rgba(243, 110, 60, 0.35),
      transparent 70%
    );
  mix-blend-mode: screen;
  transition: opacity 0.4s;
}

.attraction-card:hover::after {
  opacity: 1;
}

.attraction-lounge-label {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: var(--forest);
  padding-top: 48px;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.attraction-lounge-body {
  grid-column: 1 / -1;
  font-size: 16px;
  font-weight: 400;
  color: rgba(20, 26, 12, 0.62);
  line-height: 1.8;
  white-space: nowrap;
  margin-top: -4px;
  margin-bottom: 8px;
}

.attraction-card h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 22px;
  color: var(--cream);
  font-size: 20px;
  font-weight: 800;
  z-index: 2;
  letter-spacing: -0.2px;
  line-height: 1.15;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.attraction-card:hover h3 {
  transform: translateY(-4px);
}

/* ── MEET BUCKLEY ── */
.meet-section {
  display: grid;
  grid-template-columns: clamp(180px, 25vw, 300px) 1fr;
  gap: 56px;
  align-items: center;
  padding: clamp(48px, 6vw, 96px) clamp(20px, 5vw, 56px);
  background: var(--sage);
  border-top: 1px solid rgba(23, 115, 2, 0.12);
  border-bottom: 1px solid rgba(23, 115, 2, 0.12);
}

.mascot-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

.meet-section p:not(.eyebrow) {
  font-size: 16px;
  font-weight: 400;
  color: rgba(20, 26, 12, 0.62);
  line-height: 1.8;
}

.meet-section p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 16px;
}

/* ── FAQ ── */
.faq-section {
  background: var(--cream-dk);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

details {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-left: 4px solid transparent;
  border-radius: var(--radius-md);
  padding: 22px 26px;
  transition:
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}

details:hover {
  background: #fdfaf5;
  border-left-color: rgba(23, 115, 2, 0.35);
}

details[open] {
  border-left-color: var(--grove);
  box-shadow: var(--shadow-card);
}

summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.2px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--grove);
  flex-shrink: 0;
  transition:
    transform 0.25s,
    color 0.25s;
}

details[open] summary::after {
  content: "−";
  color: var(--ember);
}

details p {
  margin: 14px 0 0;
  font-size: 16px;
  color: rgba(20, 26, 12, 0.62);
  line-height: 1.8;
}

/* ── CONNECT ROW (Stay Connected + Media Inquiries) ── */
.connect-band {
  background: var(--cream);
}

.connect-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 56px) clamp(32px, 4vw, 48px);
}

.connect-tile {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius-md);
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.connect-tile h3 {
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--forest);
  letter-spacing: -0.03em;
  margin: 0;
}

.connect-tile p:not(.eyebrow) {
  font-size: 16px;
  color: rgba(20, 26, 12, 0.62);
  line-height: 1.8;
  margin: 0;
}

.connect-cta {
  display: inline-block;
  margin-top: 8px;
  background: var(--orange);
  color: var(--cream);
  border-radius: var(--radius-sm);
  padding: 15px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
  align-self: flex-start;
}

.connect-cta:hover {
  background: var(--orange-dk);
}

/* ── DON'T MISS CTA ── */
.dont-miss {
  margin: 0 clamp(20px, 5vw, 56px) clamp(48px, 6vw, 80px);
  padding: clamp(48px, 6vw, 80px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      680px 420px at 82% 0%,
      rgba(46, 174, 18, 0.3),
      transparent 62%
    ),
    radial-gradient(
      560px 400px at 8% 100%,
      rgba(243, 110, 60, 0.22),
      transparent 60%
    ),
    linear-gradient(160deg, #2c5f34 0%, #1c3f14 80%);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 60px rgba(18, 38, 6, 0.25);
}

/* Subtle dot texture */
.dont-miss::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(243, 110, 60, 0.09) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

/* Gold rule above eyebrow */
.dont-miss::after {
  content: "";
  position: absolute;
  top: clamp(36px, 5vw, 60px);
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.dont-miss .eyebrow {
  color: var(--gold);
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 16px;
}

.dont-miss .eyebrow::before {
  display: none;
}

.dont-miss h2 {
  position: relative;
  z-index: 1;
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.dont-miss p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 auto 36px;
  color: rgba(250, 247, 240, 0.72);
  font-size: 16px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

/* Prominent, glowing final CTA */
.dont-miss .button-light {
  font-size: clamp(15px, 2.5vw, 18.7px);
  font-weight: 800;
  color: var(--white);
  background: var(--gradient-ember);
  border: 0;
  box-shadow: var(--glow-ember);
}

.dont-miss .button-light:hover {
  background: linear-gradient(135deg, #ff7f4d 0%, var(--orange) 78%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(195, 79, 7, 0.42),
    0 0 54px rgba(243, 110, 60, 0.3);
}

/* ── FOOTER ── */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: clamp(32px, 5vw, 56px) clamp(20px, 5vw, 56px);
  background:
    radial-gradient(
      600px 240px at 50% 0%,
      rgba(46, 174, 18, 0.08),
      transparent 70%
    ),
    #0a150c;
  border-top: 1px solid rgba(243, 110, 60, 0.2);
}

.footer-logo {
  height: clamp(40px, 6vw, 60px);
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.site-footer p {
  font-size: 12px;
  color: rgba(250, 247, 240, 0.65);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.65);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ── WHY SIGN UP EARLY ── */
.why-signup {
  background:
    radial-gradient(
      900px 520px at 88% 0%,
      rgba(46, 174, 18, 0.28),
      transparent 60%
    ),
    radial-gradient(
      640px 420px at 4% 100%,
      rgba(243, 110, 60, 0.16),
      transparent 60%
    ),
    linear-gradient(160deg, #2c5f34 0%, #1e4517 85%);
  position: relative;
  overflow: hidden;
}

.why-signup::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(243, 110, 60, 0.08) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  pointer-events: none;
}

.why-signup .section-heading {
  position: relative;
  max-width: none;
}

.why-signup .eyebrow {
  color: var(--gold);
}
.why-signup .eyebrow::before {
  background: linear-gradient(90deg, var(--gold), var(--ember));
  box-shadow: 0 0 12px rgba(255, 192, 122, 0.45);
}
.why-signup h2 {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--cream);
  white-space: nowrap;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.why-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(250, 247, 240, 0.14);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 192, 122, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  box-shadow:
    0 0 0 5px rgba(255, 192, 122, 0.22),
    0 8px 20px rgba(0, 0, 0, 0.25);
}

.why-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-card h3 {
  color: var(--cream);
  font-size: 19px;
}

.why-card p {
  color: rgba(250, 247, 240, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

/* ── CELEBRATIONS / PARTIES ── */
.celebrations-section {
  position: relative;
  overflow: hidden;
}

.celebration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.celebration-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  overflow: hidden; /* clip the full-bleed photo to the card's rounded corners */
  position: relative;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s;
}

.celebration-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

/* Brand-gradient top accent bar */
.celebration-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-brand);
}

.celebration-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.celebration-icon {
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(150deg, var(--sage), var(--white));
  border: 1px solid var(--line);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.6),
    0 6px 16px rgba(23, 115, 2, 0.14);
}

.celebration-header h3 {
  font-size: 22px;
  color: var(--forest);
  margin: 0;
}

.celebration-copy p {
  color: rgba(20, 26, 12, 0.62);
  font-size: 16px;
}

.celebration-photo {
  width: calc(100% + 72px); /* break out of the 36px left/right card padding */
  max-width: none; /* override the global img cap so the bleed works */
  margin: auto -36px -40px; /* full-bleed to the sides + bottom */
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.celebration-card:hover .celebration-photo {
  transform: scale(1.035);
}

/* ── FAQ + CHARACTER (two column) ── */
.faq-social-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: stretch;
}

/* Character image column — transparent container */
.faq-character-col {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
}

.faq-character-img {
  width: 100%;
  max-width: 568px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(18, 38, 6, 0.2));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-character-img:hover {
  transform: translateY(-6px) rotate(-1deg);
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icon-card {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex: 1 1 0;
  max-width: 72px;
  transition:
    transform 0.22s,
    box-shadow 0.22s;
}

.social-icon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.social-icon-card svg {
  width: 30px;
  height: 30px;
}
.social-icon-card span {
  display: none;
}
.social-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.social-icon-card.tiktok,
.social-icon-card.instagram,
.social-icon-card.youtube,
.social-icon-card.facebook {
  background: transparent;
}

/* ── RESPONSIVE ── */
@media (max-width: 1049px) {
  .hide-mobile {
    display: none;
  }

  /* Mobile: logo only, no nav — and the header scrolls away with the page */
  .nav-toggle {
    display: none;
  }

  .site-header {
    position: static;
    height: auto;
    padding: 20px clamp(16px, 4vw, 32px) 16px;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  html {
    scroll-padding-top: 0;
  }
  main {
    padding-top: 0;
  }

  /* Big, centered logo on mobile (brand splash) */
  .brand {
    justify-content: center;
    width: 100%;
  }
  .brand:hover .logo-horizontal {
    transform: none;
  }
  .logo-horizontal {
    width: auto;
    height: clamp(260px, 74vw, 400px);
  }

  /* Coming Soon / Woodland Hills, CA under the logo */
  .site-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    order: 2;
    margin-top: 6px;
  }
  .site-status-main {
    font-size: clamp(20px, 6vw, 28px);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--forest);
    line-height: 1;
  }
  .site-status-loc {
    font-size: clamp(12px, 3.4vw, 15px);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(20, 26, 12, 0.72);
    line-height: 1;
  }

  nav[aria-label="Primary navigation"] {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 6px 0 12px;
    order: 3;
  }

  nav[aria-label="Primary navigation"].is-open {
    display: flex;
  }

  nav[aria-label="Primary navigation"] a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    width: 100%;
    font-size: 11px;
  }
  nav[aria-label="Primary navigation"] a::after {
    display: none;
  }

  nav[aria-label="Primary navigation"] a.is-active {
    padding: 10px 14px;
    border-radius: 6px;
    border-bottom-color: transparent;
  }

  .hero,
  .location-card,
  .meet-section {
    grid-template-columns: 1fr;
  }

  .mascot-image {
    max-width: 390px;
    margin: 0 auto;
  }

  .hero-copy {
    padding-bottom: 20px;
  }
  .hero-tagline {
    font-size: 22px;
  }

  .signup-card {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    align-self: auto;
  }

  .attraction-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .faq-social-grid {
    grid-template-columns: 1fr;
  }
  .faq-character-col {
    display: none;
  }
  .venue-photo {
    min-height: 220px;
  }
  .site-footer {
    flex-direction: column;
  }
  .footer-logo {
    height: 60px;
  }
}

@media (max-width: 700px) {
  .celebration-grid {
    grid-template-columns: 1fr;
  }
  .attraction-lounge-body {
    white-space: normal;
  }
  .why-signup h2 {
    white-space: normal;
  }
  .connect-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .attraction-grid {
    grid-template-columns: 1fr;
  }
  .signup-card {
    border-radius: 18px;
    padding: 75px 18px 24px;
  }
  .dont-miss {
    border-radius: var(--radius-md);
  }
  .connect-row {
    padding-left: 16px;
    padding-right: 16px;
  }
  .connect-tile {
    padding: 24px 20px;
  }
}

/* Lead-capture form status message */
.form-status {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  padding: 10px 14px;
  border-radius: 10px;
}

/* Honeypot: keep in the DOM (so bots fill it) but off-screen for real users. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status.success {
  color: #14683d;
  background: rgba(26, 127, 75, 0.1);
  border: 1px solid rgba(26, 127, 75, 0.25);
}
.form-status.error {
  color: #a32f20;
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.25);
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
  /* 16px inputs prevent iOS Safari from auto-zooming on focus */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select {
    font-size: 16px;
  }

  .signup-card {
    padding: 66px 14px 22px;
  }
  .signup-card button {
    width: 100%;
  }

  .hero-tagline {
    font-size: 19px;
  }

  /* Social row: let the four icons shrink so they never overflow */
  .social-icons {
    gap: 10px;
    justify-content: center;
  }
  .social-icon-card {
    width: 58px;
    height: 58px;
    max-width: 58px;
  }

  /* Footer links stack cleanly */
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .connect-tile {
    padding: 20px 16px;
  }
}

/* ── LEGAL MODALS (Privacy Policy / Terms) ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 21, 12, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal.is-open .modal-backdrop {
  opacity: 1;
}

.modal-dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(760px, 100%);
  max-height: min(84vh, 900px);
  background: var(--cream);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(10, 21, 12, 0.35);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.modal.is-open .modal-dialog {
  opacity: 1;
  transform: none;
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(20px, 3vw, 30px) clamp(20px, 4vw, 40px)
    clamp(10px, 1.6vw, 16px);
  background: var(--cream);
}

.modal-head h2 {
  font-size: clamp(18px, 2.4vw, 25px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.4px;
  margin-bottom: 0;
}

.modal-close {
  flex-shrink: 0;
  display: block;
  margin: -4px -4px 0 0;
  padding: 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  font-family: inherit;
  color: var(--forest);
  background: none;
  border: 0;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.modal-close:hover,
.modal-close:focus-visible {
  opacity: 1;
  background-color: transparent !important;
  transform: none;
}

.modal-body {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: clamp(6px, 1vw, 10px) clamp(20px, 4vw, 40px) clamp(28px, 4vw, 44px);
}

.modal-body h3 {
  margin: 26px 0 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--grove);
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p,
.modal-body li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(20, 26, 12, 0.85);
}

.modal-body p + p {
  margin-top: 12px;
}

.modal-body ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.modal-body li {
  margin-bottom: 7px;
}

.modal-body li::marker {
  color: var(--orange);
}

/* Prevent the page behind the modal from scrolling. */
body.modal-open {
  overflow: hidden;
}

@media (max-width: 620px) {
  .modal {
    padding: 0;
  }
  .modal-dialog {
    width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .modal-backdrop,
  .modal-dialog {
    transition: none;
  }
  .hero-image,
  .card-ribbon,
  .sticky-cta {
    animation: none;
  }
  .attraction-card,
  .celebration-card,
  .why-card,
  .venue-photo,
  .tile-image img,
  .celebration-photo,
  .faq-character-img,
  button,
  .button-light {
    transition: none;
  }
  .attraction-card:hover,
  .celebration-card:hover,
  .why-card:hover {
    transform: none;
  }
}

/* At this width the sticky CTA goes full-bleed across the bottom of the
   viewport — give the footer clearance so it can't sit over the legal links. */
@media (max-width: 640px) {
  .site-footer {
    padding-bottom: 72px;
  }
}
