/* ════════════════ Event Slider (replaces the static event banner) ════════════════ */
.event-slider {
  padding: var(--section-y) 0;
  background: var(--peach);
  position: relative;
  overflow: hidden;
}
.slider {
  position: relative;
  outline: none;
}
.slider:focus-visible {
  outline: 3px solid var(--uforea-yellow);
  outline-offset: 6px;
  border-radius: 22px;
}
.slider-viewport {
  overflow: hidden;
  border-radius: 18px;
}
.slider-track {
  display: flex;
  transition: transform .55s cubic-bezier(.7,0,.3,1);
  will-change: transform;
}
.slide {
  flex: 0 0 100%;
  min-width: 100%;
  background: var(--paper);
  border: 1px solid var(--uforea-yellow);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  box-shadow: 0 18px 40px rgba(63,63,63,.08);
}
.slide-ribbon {
  position: absolute;
  top: 18px; left: -8px;
  transform: rotate(-3deg);
  background: var(--blush); color: var(--ink-strong);
  padding: 6px 14px 6px 16px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(63,63,63,.10);
  z-index: 5;
}
.slide-ribbon::before, .slide-ribbon::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 8px;
  background: inherit; filter: brightness(.92);
}
.slide-ribbon::before { left: -8px; clip-path: polygon(100% 0, 0 50%, 100% 100%); }
.slide-ribbon::after  { right: -8px; clip-path: polygon(0 0, 100% 50%, 0 100%); }

.slide-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 36px;
  align-items: center;
}
.slide-photo {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--uforea-yellow);
  background: var(--cream);
}
.slide-photo[data-aspect="portrait"] {
  aspect-ratio: 3 / 4;
  background: var(--slide-bg, var(--lavender));
  display: grid; place-items: center;
  padding: 22px 14px;
  border: 1.5px solid var(--uforea-yellow);
  border-radius: 16px;
  position: relative;
}
.slide-photo[data-aspect="portrait"]::before {
  /* corner sparkle, low opacity, decorative */
  content: ""; position: absolute; top: 14px; left: 14px;
  width: 14px; height: 14px;
  background: radial-gradient(circle, var(--uforea-yellow) 0%, transparent 70%);
  opacity: .55; pointer-events: none;
}
.slide-photo[data-aspect="portrait"] picture {
  display: block;
  background: var(--paper);
  padding: 10px 10px 38px;
  border-radius: 4px;
  box-shadow: 0 16px 28px rgba(63,63,63,.18), 0 4px 8px rgba(63,63,63,.10);
  transform: rotate(-2deg);
  max-width: 78%;
  max-height: 100%;
  transition: transform .35s ease;
}
.slide-photo[data-aspect="portrait"] picture:hover { transform: rotate(-1deg) translateY(-2px); }
.slide-photo[data-aspect="portrait"] img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.slide-photo[data-aspect="landscape"] { aspect-ratio: 4 / 3; border-radius: 50%/55%; }
.slide-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.slide-meta {}
.slide-title { margin-top: 0; }
.slide-body {
  margin-top: 14px;
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--ink);
  line-height: 1.65;
}
.slide-details {
  display: grid; gap: 8px;
  margin: 18px 0 22px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid rgba(255,186,1,.5);
}
.slide-details > div { display: flex; gap: 10px; align-items: baseline; font-size: 14px; color: var(--ink); }
.slide-details dt { width: 80px; flex-shrink: 0; font-weight: 700; color: var(--ink-strong); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.slide-details dd { margin: 0; }

/* ── "What's on" event cards (compact, no-carousel — replaces the slider) ──
 * Flex-centre so 1, 2 or 3 featured events all balance; each card is one link. */
.event-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.event-card {
  display: flex; flex-direction: column; flex: 1 1 300px; max-width: 360px;
  background: var(--paper); border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(63,63,63,.08); box-shadow: var(--shadow-card);
  transition: transform .35s ease, box-shadow .35s ease; color: var(--ink);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.event-card:focus-visible { outline: 3px solid var(--uforea-yellow); outline-offset: 3px; }
.event-card-photo { position: relative; aspect-ratio: 4 / 3; background: var(--ec-bg, var(--lavender)); overflow: hidden; }
.event-card-photo.is-empty { display: grid; place-items: center; }
.event-card-mark { color: rgba(63,63,63,.22); }
.event-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.event-card:hover .event-card-photo img { transform: scale(1.05); }
.event-card-date {
  position: absolute; left: 12px; top: 12px;
  /* Background is driven inline from the editor's ribbon_bg_color (same source as
     .slide-ribbon on the detail hero) so the promo's colour is consistent across
     the homepage card and the detail page; --paper is only the fallback. */
  background: var(--paper); color: var(--ink-strong);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; box-shadow: 0 4px 10px rgba(63,63,63,.14);
}
.event-card-body { display: flex; flex-direction: column; gap: 8px; padding: 18px 20px 20px; flex: 1; }
.event-card-title { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 19px; color: var(--ink-strong); line-height: 1.2; margin: 0; }
.event-card-teaser {
  font-size: 14px; color: var(--mute); line-height: 1.55; margin: 0; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.event-card-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 4px;
  font-size: 13px; font-weight: 700; color: var(--ink-strong);
  text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 3px;
}
.event-card:hover .event-card-more svg { transform: translateX(3px); }
.event-card-more svg { transition: transform .3s ease; }
.event-cards-cta { text-align: center; margin-top: 34px; }
@media (max-width: 720px) { .event-cards { flex-direction: column; align-items: center; } .event-card { max-width: 440px; width: 100%; } }
.slide-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Arrows */
.slider-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--paper);
  border: 1.5px solid var(--uforea-yellow);
  color: var(--ink-strong);
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(63,63,63,.15);
  transition: transform .15s, background .15s;
}
.slider-arrow:hover { transform: translateY(-50%) scale(1.08); background: var(--yellow-soft); }
.slider-arrow:focus-visible { outline-offset: 4px; }
.slider-arrow:disabled { opacity: .4; cursor: not-allowed; }
.slider-prev { left: -22px; }
.slider-next { right: -22px; }

/* Dots */
.slider-dots {
  display: flex; gap: 10px;
  justify-content: center;
  margin-top: 28px;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(63,63,63,.18);
  border: 0;
  cursor: pointer;
  transition: background .2s, transform .2s, width .2s;
  padding: 0;
}
.slider-dot.is-active {
  background: var(--uforea-yellow);
  width: 28px;
  border-radius: 999px;
}
.slider-dot:focus-visible { outline-offset: 3px; }

/* Progress pip — 2px bar that animates while auto-rotation is running */
.slider-progress {
  width: 100%; max-width: 220px;
  height: 2px;
  background: rgba(63,63,63,.10);
  border-radius: 999px;
  overflow: hidden;
  margin: 24px auto 8px;
}
.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--uforea-yellow);
  transform-origin: left;
}
.slider-progress-bar.is-running {
  animation: slider-fill var(--dwell, 6500ms) linear forwards;
}
@keyframes slider-fill {
  from { width: 0%; }
  to { width: 100%; }
}
@media (prefers-reduced-motion: reduce) { .slider-progress { display: none; } }

/* Responsive */
@media (max-width: 900px) {
  .slide { padding: 22px; }
  .slide-grid { grid-template-columns: 1fr; gap: 22px; }
  .slide-photo[data-aspect="portrait"] { aspect-ratio: 4 / 5; max-height: 60vh; padding: 18px 12px; }
  .slide-photo[data-aspect="portrait"] picture { max-width: 80%; padding: 8px 8px 28px; }
  .slide-photo[data-aspect="landscape"] { aspect-ratio: 16 / 11; border-radius: 14px; }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
  .slider-arrow { width: 40px; height: 40px; }
}
@media (max-width: 540px) {
  .slide-ribbon { left: -6px; }
  .slide-ctas .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .slider-track { transition: none; }
}

/* ════════════════ Reusable bits ════════════════ */

.eyebrow-script {
  font-family: 'Italianno', cursive;
  color: var(--gold-text);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
  display: inline-block;
}
.eyebrow-script::after {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold-text);
  vertical-align: middle;
  margin-left: 10px;
  opacity: .7;
}

h1, h2, h3, h4 { color: var(--ink-strong); margin: 0; }

.h1 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(44px, 7.2vw, 84px); line-height: 1.02; letter-spacing: -0.02em; }
.h2 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.05; letter-spacing: -0.015em; }
.h3 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(22px, 2.2vw, 28px); line-height: 1.15; letter-spacing: -0.01em; }

.lede { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink); max-width: 56ch; line-height: 1.6; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 26px; border-radius: 999px; font-weight: 600; font-size: 16px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; min-height: 44px; }
.btn-yellow { background: var(--uforea-yellow); color: var(--ink-strong); box-shadow: 0 6px 0 var(--yellow-deep); }
.btn-yellow:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--yellow-deep); }
.btn-yellow:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--yellow-deep); }
.btn-outline { border: 1.5px solid var(--ink-strong); color: var(--ink-strong); background: transparent; }
.btn-outline:hover { background: var(--ink-strong); color: var(--paper); }
.btn-whatsapp { background: #0E7C3A; color: white; box-shadow: 0 6px 0 #075A2A; }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 0 #075A2A; }
.btn-cream { background: var(--cream); color: var(--ink-strong); border: 1.5px solid #EDE5D2; }

/* Yellow ornate rule */
.gold-rule { height: 1px; background: var(--uforea-yellow); width: 60px; opacity: .8; }

/* Frame variants */
.frame {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

/* ornate-rect frame */
.frame-rect {
  border-radius: 6px;
  outline: 1.5px solid var(--uforea-yellow);
  outline-offset: 6px;
  box-shadow: 0 18px 40px rgba(63,63,63,.10);
}
.frame-rect::before, .frame-rect::after {
  /* corner curls */
  content: "";
  position: absolute;
  width: 26px; height: 26px;
  border: 1.5px solid var(--uforea-yellow);
  z-index: 4;
}
.frame-rect::before {
  top: -10px; left: -10px;
  border-right: 0; border-bottom: 0;
  border-top-left-radius: 16px;
}
.frame-rect::after {
  bottom: -10px; right: -10px;
  border-left: 0; border-top: 0;
  border-bottom-right-radius: 16px;
}
/* scallop oval */
.frame-scallop {
  border-radius: 50%/55%;
  border: 1.5px solid var(--uforea-yellow);
  box-shadow: 0 18px 40px rgba(63,63,63,.10);
}
/* blob */
.frame-blob {
  border-radius: 58% 42% 56% 44% / 50% 60% 40% 50%;
  border: 1.5px solid var(--uforea-yellow);
  box-shadow: 0 18px 40px rgba(63,63,63,.10);
}
/* storybook page-curl */
.frame-storybook {
  border-radius: 4px;
  border: 1.5px solid var(--uforea-yellow);
  box-shadow:
    0 22px 30px -22px rgba(63,63,63,.35),
    0 2px 0 rgba(63,63,63,.05);
}
.frame-storybook::after {
  content: "";
  position: absolute;
  right: 0; bottom: 0;
  width: 36px; height: 36px;
  background:
    linear-gradient(135deg, transparent 49%, var(--uforea-yellow) 49% 50%, var(--cream) 50%);
  border-bottom-right-radius: 4px;
  box-shadow: -2px -2px 4px rgba(0,0,0,.06);
}

/* Ribbon banner */
.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 14px;
  background: var(--ribbon-bg, var(--blush));
  color: var(--ribbon-fg, var(--ink-strong));
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
  transform: rotate(-3deg);
  border: 1px solid rgba(63,63,63,.06);
}
.ribbon::before, .ribbon::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 8px;
  background: inherit;
  filter: brightness(.92);
}
.ribbon::before { left: -8px; clip-path: polygon(100% 0, 0 50%, 100% 100%); }
.ribbon::after  { right: -8px; clip-path: polygon(0 0, 100% 50%, 0 100%); }

/* Sticker */
.sticker {
  position: absolute;
  background: var(--paper);
  border: 1.5px solid var(--uforea-yellow);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 8px 18px rgba(63,63,63,.12);
  white-space: nowrap;
  z-index: 5;
}

/* Scalloped divider */
.scalloped {
  position: relative;
  height: 18px;
  width: 100%;
}
.scalloped svg { width: 100%; height: 100%; display: block; }

/* Sparkle */
.sparkle { position: absolute; pointer-events: none; }
@keyframes drift { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(8deg); } }
@keyframes drift2 { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(10px) rotate(-6deg); } }
@keyframes twinkle { 0%, 100% { opacity: .55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }
.float-a { animation: drift 7s ease-in-out infinite; }
.float-b { animation: drift2 9s ease-in-out infinite; }
.twinkle { animation: twinkle 4s ease-in-out infinite; }

/* ════════════════ NAV ════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 4%;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, padding .2s ease;
}
.nav.solid {
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(63,63,63,.05);
  padding: 10px 4%;
}
.brand { display: flex; align-items: center; gap: 10px; }
/* Logo weight raised 36px → 44px (client round 2026-07: logo felt too small) */
.brand img { height: 44px; width: auto; display: block; }
@media (max-width: 600px) { .brand img { height: 40px; } }
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
}
.wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 20px;
  color: var(--ink-strong);
}
/* Nav links sit left, right after the logo (client 2026-07: "center align >> left align") */
.nav-links { display: flex; gap: 24px; align-items: center; list-style: none; margin: 0 auto 0 34px; padding: 0; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink); }
.nav-links a:hover { color: var(--ink-strong); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

/* ── Desktop dropdowns (disclosure pattern; links are server-rendered) ── */
.nav-item { position: relative; }
.nav-drop {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 500; color: var(--ink);
  padding: 0;
}
.nav-drop:hover { color: var(--ink-strong); }
.nav-drop .chev { transition: transform .2s ease; }
.nav-item:hover .nav-drop .chev,
.nav-item:focus-within .nav-drop .chev,
.nav-drop[aria-expanded="true"] .chev { transform: rotate(180deg); }
.nav-sub {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  padding: 8px 0; margin: 0; list-style: none;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease;
  z-index: 120;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(74,69,66,.16), 0 0 0 1px var(--yellow-soft);
}
.nav-sub::before {
  /* invisible hover bridge across the 14px gap below the trigger */
  content: ""; position: absolute;
  top: -16px; left: -12px; right: -12px; height: 18px;
}
.nav-sub li { margin: 0; }
.nav-sub a {
  display: block;
  padding: 10px 18px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  border-radius: 10px;
  margin: 0 8px;
}
.nav-sub a:hover, .nav-sub a:focus-visible { background: var(--yellow-soft); color: var(--ink-strong); }
.nav-item:hover > .nav-sub,
.nav-item:focus-within > .nav-sub,
.nav-item[data-open] > .nav-sub {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.icon-btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: #0E7C3A;
  color: white;
}
.hamburger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1.5px solid var(--ink-strong); }
.hamburger svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: grid; place-items: center; }
  /* Hide the top-nav "Buy Tickets" on mobile (all pages): once the hamburger
     shows, the drawer already carries a Buy Tickets CTA, and the top button
     crowded the bar at ~375px (logo + WhatsApp + button + hamburger). */
  .nav-actions .btn { display: none; }
}

/* Drawer */
.drawer {
  position: fixed; inset: 0;
  z-index: 200;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.7,0,.3,1);
  display: flex; flex-direction: column;
  padding: 24px 6%;
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--uforea-yellow); }
/* Drawer links: sans-serif, grouped taxonomy (client round 2026-07 — script
   flourishes removed from functional nav; Poppins for menus). */
.drawer-links { display: flex; flex-direction: column; gap: 2px; padding: 18px 0; overflow-y: auto; }
/* Standalone top-level links (Tickets & Members, FAQ) use the SAME plain
   tappable row + divider as the grouped links, so every clickable drawer row
   is one consistent style (client 2026-07 — no odd bordered box). */
.drawer-links > a {
  display: block;
  padding: 11px 4px;
  font-size: 16.5px; font-weight: 500;
  color: var(--ink);
  /* Yellow rule matches .drawer-group so standalone rows read as peers of the groups (client 2026-07 R2) */
  border-bottom: 1px solid rgba(255,186,1,.4);
}
.drawer-sub-note { font-size: 12px; font-weight: 500; color: var(--mute); }
.drawer-links > a:hover, .drawer-links > a:active, .drawer-links > a:focus-visible { color: var(--ink-strong); }
.drawer-group { padding: 10px 0 12px; border-bottom: 1px solid rgba(255,186,1,.4); }
.drawer-group-label {
  display: block;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--mute);
  padding: 4px;
}
.drawer-group a {
  display: block;
  padding: 11px 4px;
  font-size: 16.5px; font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(63,63,63,.07);
}
.drawer-group a:last-child { border-bottom: 0; }
.drawer-group a:active, .drawer-group a:hover { color: var(--ink-strong); }
.drawer-cta { margin-top: auto; padding: 20px 0; display: flex; flex-direction: column; gap: 12px; }

/* ════════════════ HERO ════════════════ */
.hero {
  position: relative;
  padding: 130px 0 60px;
  background: linear-gradient(172deg, #FFFCF6 0%, #FFF4E6 100%); /* warm wash, per client design */
  overflow: hidden;
}
.hero::before {
  /* yellow-soft halo */
  content: ""; position: absolute;
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  top: 80px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(closest-side, var(--yellow-soft), transparent 70%);
  z-index: 0; opacity: .7;
}
.hero::after {
  /* corner blush wash */
  content: "";
  position: absolute;
  bottom: -120px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--blush), transparent 70%);
  opacity: .7;
  z-index: 0;
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-text { max-width: 580px; }
.hero h1 .flourish-word { font-style: italic; position: relative; display: inline-block; }
.hero h1 .flourish-word svg { position: absolute; left: -4%; right: -4%; bottom: -16px; width: 108%; height: 18px; }

.hero-sub { margin: 22px 0 28px; max-width: 56ch; color: var(--ink); font-size: clamp(15px, 1.15vw, 17px); line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.trust-strip {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 18px;
  margin-top: 36px;
  font-size: 12.5px;
  color: var(--mute);
  letter-spacing: .02em;
}
.trust-strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--mute); }
.trust-strip .stars { color: var(--uforea-yellow); }

/* Collage */
.collage {
  position: relative;
  width: 100%;
  height: 620px;
}
@media (max-width: 1000px) { .collage { height: 520px; width: 100%; max-width: 540px; margin: 0 auto; } }
@media (max-width: 600px)  { .collage { height: 460px; } }

.collage .frame { position: absolute; }
.c1 { top: 6%; left: 4%; width: 56%; height: 64%; transform: rotate(-2deg); --frame-tint: var(--yellow-soft); }
.c2 { bottom: 4%; left: 18%; width: 38%; height: 38%; --frame-tint: var(--blush); }
.c3 { top: 22%; right: 0%; width: 48%; height: 50%; --frame-tint: var(--mint); }

.s-rosette { top: -10px; right: 6%; transform: rotate(8deg); padding: 14px; border-radius: 50%; aspect-ratio: 1; display: grid; place-items: center; line-height: 1.1; }
.s-rosette span { display: block; text-align: center; }
.s-rosette .stars { color: var(--uforea-yellow); font-size: 12px; }
.s-rosette .num { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 20px; color: var(--ink-strong); }

.s-ribbon {
  bottom: 22%;
  right: -10px;
  background: var(--uforea-yellow);
  border: 0;
  color: var(--ink-strong);
  padding: 8px 16px;
  font-family: 'Italianno', cursive;
  font-size: 28px;
  border-radius: 4px;
  transform: rotate(4deg);
  font-weight: 400;
}
.s-ribbon::before, .s-ribbon::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 12px;
  background: var(--uforea-yellow); filter: brightness(.92);
}
.s-ribbon::before { left: -10px; clip-path: polygon(100% 0, 0 50%, 100% 100%); }
.s-ribbon::after  { right: -10px; clip-path: polygon(0 0, 100% 50%, 0 100%); }

.s-stamp {
  bottom: -10px; left: 14%;
  background: var(--mint);
  border-color: rgba(67,170,139,.5);
  color: #1f5d44;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

/* Stat row */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 60px;
  position: relative; z-index: 2;
}
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background: var(--paper);
  border: 1px solid var(--uforea-yellow);
  border-radius: 10px;
  padding: 18px 18px 16px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
}
.stat-card .ico {
  width: 36px; height: 36px;
  border-radius: 999px;
  display: grid; place-items: center;
  margin-bottom: 6px;
}
.stat-card .num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--ink-strong); line-height: 1; }
.stat-card .label { font-size: 12.5px; color: var(--mute); }

/* ════════════════ WHY UFOREA ════════════════ */
.why {
  padding: var(--section-y) 0;
  background: var(--paper);
  position: relative;
}
.section-head { text-align: center; margin-bottom: 50px; }
.section-head .eyebrow-script { display: inline-block; }
.section-head .h2 { margin-top: 8px; }
.section-head .lede { margin: 16px auto 0; }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--paper);
  border: var(--card-frame);
  border-radius: var(--r-card);
  padding: 28px 24px;
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
  position: relative;
}
.why-card:hover { transform: translateY(-6px); background: var(--card-tint, var(--yellow-soft)); box-shadow: var(--shadow-soft); }
.why-card .ring {
  width: 56px; height: 56px;
  border: 1px solid var(--uforea-yellow);
  border-radius: 999px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  background: var(--paper);
}
.why-card h3 { margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--ink); margin: 0; }

/* ════════════════ ZONES ════════════════ */
.zones {
  padding: var(--section-y) 0;
  background: var(--paper);
  position: relative;
}
.zones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 30px; }
@media (max-width: 1000px) { .zones-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .zones-grid { grid-template-columns: 1fr; } }

.zone-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
  position: relative;
  transition: background .3s ease, transform .3s ease;
  border: 1px solid var(--zone-frame, rgba(255,186,1,.3));
}
.zone-card:hover { background: var(--zone-tint, var(--yellow-soft)); transform: translateY(-4px); }
.zone-card .frame { width: 100%; aspect-ratio: 5 / 4; position: relative; }
.zone-card .frame.frame-blob { aspect-ratio: 1; margin: 0 auto; width: 90%; }
.zone-card .frame.frame-scallop { aspect-ratio: 5 / 4; }

.zone-meta { padding: 18px 8px 8px; }
.zone-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px;
  background: var(--zone-tag-bg, var(--blush));
  color: var(--zone-tag-fg, var(--passion-text));
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  border-radius: 4px;
  position: relative;
}
.zone-tag::before {
  content: ""; display: inline-block; width: 14px; height: 1px;
  background: var(--uforea-yellow);
}
.zone-card h3 { margin: 14px 0 8px; }
.zone-card p { font-size: 14px; color: var(--ink); line-height: 1.6; margin: 0 0 16px; font-style: italic; font-family: 'Playfair Display', serif; font-weight: 500; }
.zone-card p::before { content: "“"; color: var(--gold-text); font-size: 24px; line-height: 0; vertical-align: -4px; margin-right: 4px; }
.zone-card p::after  { content: "”"; color: var(--uforea-yellow); font-size: 24px; line-height: 0; vertical-align: -10px; margin-left: 2px; }
.zone-card .step-in {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--zone-tag-fg, var(--ink-strong));
}
.zone-card .step-in svg { transition: transform .2s ease; }
.zone-card:hover .step-in svg { transform: translateX(4px); }

/* Cozy Nook full-width on mobile + extra emphasis */
.zone-card.cozy {
  background: linear-gradient(180deg, var(--paper) 0%, var(--sky) 100%);
}
.zone-card.cozy .grown-up { font-family: 'Italianno', cursive; color: var(--uforea-yellow); font-size: 28px; line-height: 1; display: block; margin-bottom: 4px; }
@media (max-width: 600px) { .zone-card.cozy { grid-column: 1 / -1; } }

/* ════════════════ TICKETS ════════════════ */
.tickets { padding: var(--section-y) 0; background: var(--cream); position: relative; }
.tickets-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 1000px) { .tickets-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .tickets-grid { grid-template-columns: 1fr; } }

.ticket {
  background: var(--paper);
  border: 1px solid rgba(255,186,1,.45);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.ticket:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.ticket.featured { border-color: var(--uforea-yellow); border-width: 1.5px; box-shadow: 0 18px 40px -20px rgba(255,186,1,.6); }
.ticket .kind { display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px; font-size: 10.5px; font-weight: 700; color: var(--mute); letter-spacing: .14em; text-transform: uppercase; background: var(--cream); border-radius: 4px; position: relative; }
.ticket .kind::before { content: ""; display: inline-block; width: 14px; height: 1px; background: var(--uforea-yellow); }
.ticket h3 { margin: 8px 0 16px; font-size: 22px; }
.ticket .price-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed rgba(63,63,63,.12); font-size: 14px; }
.ticket .price-row:last-child { border-bottom: 0; }
.ticket .price-row span:last-child { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--ink-strong); font-variant-numeric: tabular-nums; }
.ticket .one-price { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 36px; color: var(--ink-strong); margin: 8px 0 4px; }
.ticket .one-price small { font-size: 14px; font-weight: 400; color: var(--mute); }
.ticket p.terms { font-size: 12.5px; color: var(--mute); margin: 14px 0 0; }
.ticket .cta { display: block; text-align: center; margin-top: 18px; }

.most-booked {
  position: absolute; top: -12px; right: -10px;
  transform: rotate(-6deg);
  background: var(--uforea-yellow);
  color: var(--ink-strong);
  border: 1.5px solid var(--yellow-deep);
  padding: 8px 16px;
  font-family: 'Italianno', cursive;
  font-size: 26px;
  line-height: 1;
  border-radius: 6px;
}

.voucher {
  margin-top: 36px;
  background: var(--paper);
  border: 1px solid rgba(255,186,1,.3);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
}
.voucher .left { font-weight: 500; }
.voucher .left small { color: var(--mute); display: block; font-weight: 400; font-size: 12.5px; }
.voucher form { display: flex; gap: 10px; flex: 1; max-width: 420px; min-width: 240px; }
.voucher input {
  flex: 1; min-height: 44px; padding: 0 16px;
  border: 1px solid rgba(63,63,63,.15);
  border-radius: 999px; font-family: inherit; font-size: 14px;
  background: var(--cream);
}
.voucher input:focus { outline: 2px solid var(--uforea-yellow); outline-offset: 2px; }

.reassurance {
  margin-top: 20px;
  font-size: 13px;
  color: var(--mute);
  text-align: center;
  border-top: 1px solid rgba(255,186,1,.3);
  padding-top: 18px;
}

/* ════════════════ BIRTHDAY ════════════════ */
/* Warm pastel-yellow + peach band (client round 2026-07: the blush/red tone
   read as "emergency"; birthdays should feel lively-warm, not urgent). */
.birthday {
  padding: var(--section-y) 0;
  background: linear-gradient(160deg, var(--yellow-soft) 0%, var(--peach) 100%);
  position: relative;
  overflow: hidden;
}
.birthday::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(255,186,1,.2) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 30%, rgba(255,186,1,.2) 0 2px, transparent 3px),
    radial-gradient(circle at 22% 80%, rgba(131,56,236,.15) 0 2px, transparent 3px);
  pointer-events: none;
}

.birthday-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 50px; align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 900px) { .birthday-grid { grid-template-columns: 1fr; gap: 36px; } }

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--cream);
  border: 1.5px solid var(--uforea-yellow);
  border-radius: 8px;
  box-shadow: 0 24px 50px -20px rgba(63,63,63,.25);
}
.video-frame::before, .video-frame::after {
  content: ""; position: absolute; width: 28px; height: 28px;
  border: 1.5px solid var(--uforea-yellow);
}
.video-frame::before { top: -10px; left: -10px; border-right: 0; border-bottom: 0; border-top-left-radius: 14px; }
.video-frame::after  { bottom: -10px; right: -10px; border-left: 0; border-top: 0; border-bottom-right-radius: 14px; }
.video-frame .ph {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 14px;
  font-family: ui-monospace, monospace; font-size: 11px; color: var(--mute);
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(255,186,1,.18), transparent 60%),
    var(--cream);
}
.play-btn {
  position: absolute; inset: 0; margin: auto;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--uforea-yellow);
  display: grid; place-items: center;
  cursor: pointer;
  animation: pulse 2.4s ease-in-out infinite;
  border: 0;
}
.play-btn svg { width: 30px; height: 30px; color: var(--ink-strong); }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,186,1,.6); } 50% { box-shadow: 0 0 0 22px rgba(255,186,1,0); } }

/* Birthday feature cards — client 2026-07: each perk now carries a real party
   photo beside it (the old standalone .party-gallery was removed as a repeat). */
.birthday-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 28px 0 24px; }
.bd-feat { background: var(--paper); border-radius: 16px; padding: 0; overflow: hidden; height: 128px; border-top: 1.5px solid var(--uforea-yellow); display: flex; gap: 0; align-items: center; box-shadow: 0 10px 26px -22px rgba(63,63,63,.5); }
/* Photo is a full-height strip flush to the box's left/top/bottom — no whitespace;
   the box's overflow:hidden + radius round its outer (left) corners. */
.bd-feat-photo { width: 96px; height: auto; align-self: stretch; flex-shrink: 0; border-radius: 0; object-fit: cover; display: block; }
.bd-feat-text { min-width: 0; padding: 12px 16px; }
.bd-feat-text strong { display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14.5px; line-height: 1.2; color: var(--ink-strong); }
.bd-feat-text small { display: block; color: var(--mute); font-size: 12.5px; margin-top: 4px; line-height: 1.35; }
.bd-ico { display: inline-grid; place-items: center; width: 16px; height: 16px; flex-shrink: 0; }
.birthday-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
/* Phone: each perk becomes a photo-on-top card in a 2-up grid (client mockup p.4) */
@media (max-width: 700px) {
  .bd-feat { flex-direction: column; align-items: stretch; height: auto; padding: 0; overflow: hidden; border-top: 0; border: 1px solid rgba(63,63,63,.08); }
  .bd-feat-photo { width: 100%; height: auto; aspect-ratio: 4 / 3; border-radius: 0; }
  .bd-feat-text { padding: 10px 12px 12px; }
}

/* ════════════════ PROMOTIONS ════════════════ */
.promos {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.promo-scroll {
  scroll-padding-left: 18px;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 24px 4% 28px;
  margin: 24px -4% 0;
  scrollbar-width: thin;
}
.promo-scroll::-webkit-scrollbar { height: 8px; }
.promo-scroll::-webkit-scrollbar-thumb { background: rgba(255,186,1,.5); border-radius: 4px; }

.invitation {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--inv-bg, var(--peach));
  border: 1.5px solid var(--uforea-yellow);
  border-radius: 8px;
  padding: 28px 26px;
  position: relative;
  box-shadow: 0 18px 40px -22px rgba(63,63,63,.25);
}
@media (max-width: 500px) { .invitation { flex: 0 0 86%; } }
.invitation .inv-ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--uforea-yellow);
  color: var(--ink-strong);
  padding: 6px 22px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
}
.invitation .inv-ribbon::before, .invitation .inv-ribbon::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 10px; background: inherit; filter: brightness(.92);
}
.invitation .inv-ribbon::before { left: -10px; clip-path: polygon(100% 0, 0 50%, 100% 100%); }
.invitation .inv-ribbon::after  { right: -10px; clip-path: polygon(0 0, 100% 50%, 0 100%); }
.invitation .name { font-family: 'Italianno', cursive; font-size: 36px; line-height: 1; color: var(--ink-strong); margin: 16px 0 10px; }
.invitation h3 { font-size: 22px; }
.invitation p { font-size: 14px; color: var(--ink); margin: 8px 0 18px; }
.invitation .terms { font-size: 11.5px; color: var(--ink); border-top: 1px dashed rgba(63,63,63,.15); padding-top: 12px; }

/* ════════════════ REVIEWS ════════════════ */
.reviews { padding: var(--section-y) 0; background: var(--sky); } /* client 2026-07: blue reads as more "trust" than the old lavender */
.reviews-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 50px; align-items: center; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; gap: 30px; } }
/* Mobile heading consistency: the birthday & reviews sections place their
   headings in a side column (left-aligned by layout). When those grids stack on
   mobile, centre their heading area so every section header matches the centered
   .section-head used elsewhere. Feature rows stay left for readability. */
@media (max-width: 900px) {
  .birthday-grid { text-align: center; }
  .birthday-grid .birthday-features { text-align: left; }
  .reviews-grid .review-score { text-align: center; }
}

.review-score .big { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(72px, 10vw, 120px); line-height: 1; color: var(--ink-strong); }
.review-score .stars { color: var(--uforea-yellow); font-size: 28px; letter-spacing: 4px; margin: 8px 0; }
.review-score .meta { color: var(--mute); font-size: 14px; }

.reviews-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 800px) { .reviews-cards { grid-template-columns: 1fr; } }
.letter-card {
  background: var(--cream);
  border-top: 1px solid var(--uforea-yellow);
  border-bottom: 1px solid var(--uforea-yellow);
  padding: 26px 22px;
  position: relative;
}
.letter-card.r1 { transform: rotate(-2deg); }
.letter-card.r2 { transform: rotate(1deg); }
.letter-card.r3 { transform: rotate(-1deg); }
.letter-card .top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--av-bg, var(--blush));
  border: 1.5px solid var(--uforea-yellow);
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 18px;
  color: var(--ink-strong);
}
.letter-card .name { font-weight: 600; font-size: 14px; }
.letter-card .when { font-size: 12px; color: var(--mute); }
.letter-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 18px;
  line-height: 1.45; color: var(--ink-strong);
  margin: 0; quotes: "“" "”";
}
.letter-card blockquote::before { content: open-quote; color: var(--uforea-yellow); font-size: 36px; line-height: 0; vertical-align: -10px; margin-right: 4px; }

.reviews .read-all { text-align: center; margin-top: 50px; }
.reviews .read-all .gold-rule { margin: 0 auto 18px; }

/* ════════════════ FAQ ════════════════ */
.faq { padding: var(--section-y) 0; background: var(--mint); }
.faq-list { max-width: 880px; margin: 36px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--paper);
  border: var(--card-frame);
  border-radius: var(--r-card);
  padding: 20px 24px;
  transition: background .25s ease;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px;
  /* Client round 2026-07: FAQ question text in sans (Poppins), not serif — easier to read */
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink-strong);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--uforea-yellow);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--ink-strong);
}
.faq-item[open] .plus { transform: rotate(45deg); }
/* While JS is easing the answer closed the item is still [open]; un-rotate the +
   immediately so the icon tracks the collapse instead of snapping at the end. */
.faq-item.faq-closing .plus { transform: rotate(0deg); }
.faq-item .answer { padding-top: 14px; font-size: 15px; line-height: 1.65; color: var(--ink); }
.faq-item .answer p { margin: 0 0 10px; }
.faq-item .answer p:last-child { margin: 0; }

/* ── FAQ de-emphasis on NON-FAQ pages (client round 2026-07) ──
   The client asked that FAQ stop "popping out" everywhere: full accordions
   belong on /faq/ only; on every other page it should read as a modest, quiet
   "common questions" block at the foot of the page. We KEEP the collapsed
   accordions and the FAQPage schema (SEO / CLAUDE.md rule 5) but shrink the
   section — smaller heading, narrower list, a quiet text link instead of the
   big yellow button. Scoped to `.faq:not(.faq-cat)` so the real /faq/ page
   (whose sections are all `.faq.faq-cat`) is left at full size. The element +
   two-class specificity intentionally beats the per-template `.single-zone .faq`
   / `.page-visit .faq` section rules regardless of stylesheet order. */
section.faq:not(.faq-cat) { padding-top: var(--section-y); padding-bottom: var(--section-y); }
section.faq:not(.faq-cat) .section-head { margin-bottom: 20px; }
section.faq:not(.faq-cat) .section-head .eyebrow-script { font-size: 19px; }
section.faq:not(.faq-cat) .section-head .h2 { font-size: clamp(21px, 3.2vw, 26px); }
section.faq:not(.faq-cat) .faq-list { max-width: 780px; margin-left: auto; margin-right: auto; }
/* (Removed the old FAQ-CTA text-link override so "View all FAQs" is a normal
   btn-outline pill — same design as every other section CTA, per client p.6.) */
@media (max-width: 600px) { section.faq:not(.faq-cat) { padding-top: var(--section-y); padding-bottom: var(--section-y); } }

/* ════════════════ VISIT ════════════════ */
.visit { padding: var(--section-y) 0; background: var(--sky); }
.visit-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: stretch; }
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } }

.map-frame {
  position: relative;
  border: 1.5px solid var(--uforea-yellow);
  border-radius: 10px;
  background: var(--cream);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
/* Desktop: in the 2-col grid the map sits beside the info stack. Let it fill the
   row height (set by the info cards) rather than letting aspect-ratio drive its
   WIDTH — stretching made the map ~87px too wide and it bled over the info column.
   min-width:0 lets the 1.2fr track shrink to its share. */
@media (min-width: 901px) {
  .visit-grid > * { min-width: 0; }
  .map-frame { aspect-ratio: auto; height: 100%; }
}
.map-frame svg { width: 100%; height: 100%; display: block; }
.map-pin {
  position: absolute;
  top: 42%; left: 56%;
  transform: translate(-50%, -100%);
}
.map-pin .pinhead {
  background: var(--uforea-yellow);
  color: var(--ink-strong);
  font-family: 'Italianno', cursive;
  font-size: 22px;
  padding: 4px 14px;
  border-radius: 4px;
  position: relative;
  white-space: nowrap;
  border: 1px solid var(--yellow-deep);
}
.map-pin .pintail {
  width: 0; height: 0;
  border-top: 12px solid var(--uforea-yellow);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  margin: 0 auto;
}

/* Map facade — click-to-load Google embed (keeps the homepage Lighthouse fast;
   the stylized SVG is the placeholder, the real iframe loads on interaction). */
.map-facade { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: pointer; display: block; }
.map-facade-svg { width: 100%; height: 100%; display: block; }
.map-facade-cta {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink-strong); color: #fff; font-weight: 600; font-size: 14px;
  padding: 9px 16px; border-radius: 999px; box-shadow: 0 8px 20px -8px rgba(63,63,63,.5);
  transition: background .15s ease, color .15s ease;
}
.map-facade:hover .map-facade-cta, .map-facade:focus-visible .map-facade-cta { background: var(--uforea-yellow); color: var(--ink-strong); }
.map-embed { width: 100%; height: 100%; border: 0; display: block; }

.info-stack { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  background: var(--paper);
  border: 1px solid rgba(255,186,1,.4);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex; gap: 16px;
}
.info-card .ring {
  width: 44px; height: 44px;
  border: 1px solid var(--uforea-yellow);
  border-radius: 999px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-card h3 { font-family: 'Playfair Display', serif; font-size: 16px; margin: 0 0 4px; }
/* :not(.btn) so this contact-link colour doesn't override button text colour
   (e.g. the white-on-green .btn-whatsapp inside the Visit info card). */
.info-card p, .info-card a:not(.btn) { font-size: 14px; color: var(--ink); margin: 2px 0; line-height: 1.5; display: block; }
.info-card a:not(.btn):hover { color: var(--ink-strong); text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 4px; }

.visit-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid rgba(255,186,1,.5);
  color: var(--ink-strong);
  transition: background .2s ease;
}
.socials a:hover { background: var(--uforea-yellow); }

/* ════════════════ NEWSLETTER + FOOTER ════════════════ */
.newsletter {
  background: var(--uforea-yellow);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before, .newsletter::after {
  content: ""; position: absolute;
  width: 220px; height: 220px;
  background: radial-gradient(closest-side, rgba(255,255,255,.4), transparent 70%);
  border-radius: 50%;
}
.newsletter::before { top: -80px; left: -60px; }
.newsletter::after  { bottom: -100px; right: -80px; }
.newsletter .container { position: relative; z-index: 1; max-width: 720px; text-align: center; }
.newsletter .eyebrow-script { color: var(--ink-strong); }
.newsletter .eyebrow-script::after { background: var(--ink-strong); }
.newsletter h2 { color: var(--ink-strong); margin: 12px 0 28px; }

.news-form { display: flex; gap: 10px; max-width: 540px; margin: 0 auto; flex-wrap: wrap; }
.news-form input {
  flex: 1; min-width: 220px;
  min-height: 52px;
  padding: 0 22px;
  border: 1.5px solid var(--ink-strong);
  border-radius: 999px;
  background: var(--paper);
  font: inherit;
}
.news-form input:focus { outline: 2px solid var(--ink-strong); outline-offset: 2px; }
.news-form button {
  background: var(--ink-strong); color: var(--paper);
  padding: 0 28px; min-height: 52px;
  border-radius: 999px;
  font-weight: 600;
}

footer {
  background: var(--paper);
  color: var(--ink);
  padding: 70px 0 28px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }
footer h3 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 15px; color: var(--ink-strong); margin: 0 0 16px; letter-spacing: .04em; }
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer ul a { font-size: 14px; color: var(--ink); }
footer ul a:hover { color: var(--ink-strong); text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 4px; }
.foot-tag { font-size: 14px; line-height: 1.6; color: var(--ink); margin-top: 14px; max-width: 28ch; }
.foot-bottom { margin-top: 50px; padding-top: 22px; border-top: 1px solid var(--uforea-yellow); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--mute); }

/* ════════════════ MOBILE STICKY BAR + WHATSAPP FAB ════════════════ */
.mobile-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--paper);
  border-top: 1px solid var(--uforea-yellow);
  padding: 12px 16px;
  z-index: 90;
}
.mobile-bar .btn { width: 100%; justify-content: center; }
.fab {
  position: fixed; right: 16px; bottom: 84px;
  z-index: 95;
  width: 54px; height: 54px;
  background: #0E7C3A;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(14,124,58,.4);
  color: white;
  transition: transform .28s ease, opacity .28s ease;
}
/* Auto-hide (main.js toggles .qa-tucked on scroll-down): the FAB slides away
   while reading forward so it never sits on content, and returns on scroll-up
   or near the page bottom (client round 2026-07 / UI audit). */
.quick-actions.qa-tucked .fab { transform: translateY(160%); opacity: 0; pointer-events: none; }
@media (max-width: 720px) {
  .mobile-bar { display: block; }
  /* The ticket bar now renders on the homepage only (client round 2026-07:
     WhatsApp is the primary sticky action elsewhere) — so only body.home
     reserves space for it. !important beats Blocksy's home body-spacing. */
  body.home { padding-bottom: 94px !important; }
  body.home .fab { bottom: 88px; }       /* lift the FAB clear of the bar */
  body:not(.home) .fab { bottom: 16px; } /* no bar elsewhere — FAB sits low */
}
@media (min-width: 721px) {
  .fab { bottom: 24px; }
}

/* Back-to-top: enhancement-only control (main.js toggles .show after a deep
   scroll); sits above the FAB in the same quick-actions stack. */
.to-top {
  position: fixed; right: 20px; bottom: 84px;
  z-index: 94;
  width: 46px; height: 46px;
  border-radius: 999px;
  background: var(--paper);
  border: 1.5px solid var(--uforea-yellow);
  color: var(--ink-strong);
  display: grid; place-items: center;
  box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
@media (max-width: 720px) {
  body.home .to-top { bottom: 152px; }
  body:not(.home) .to-top { bottom: 80px; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Section eyebrow centered helper */
.center { text-align: center; }

/* Real-photo support for frames */
.frame > img.ufp {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* ════════════════ Journal teaser responsive ════════════════ */
@media (max-width: 1000px) { .journal-grid { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 600px)  { .journal-grid { grid-template-columns: 1fr !important; } }

/* ════════════════ Neighbourhood strip (visit section) ════════════════ */
.neigh-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(63,63,63,.10); }
@media (max-width: 1000px) { .neigh-strip { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 540px)  { .neigh-strip { grid-template-columns: 1fr !important; } }

/* ════════════════ WP host overrides ════════════════ */
/* Blocksy emits an inline style block after our stylesheet that sets
   `body { background-color: var(--theme-palette-color-7); }` (a pale grey).
   Win the cascade with `html body` (higher specificity than `body`). */
html body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Poppins', system-ui, sans-serif;
}
/* WP `body_class()` adds `home` etc. Make sure they don't break our padding. */
html body.home,
html body.page-template-front-page {
  margin: 0;
  padding: 0;
}

/* ════════════════ UX / responsive polish (2026-06) ════════════════ */

/* P4 — Birthday block: a real party photo fills the frame (no video asset exists),
   and the play affordance opens an accessible <dialog> lightbox. */
.video-frame { overflow: hidden; }
.video-frame > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-photo); }
.video-frame .video-cap {
  position: absolute; left: 0; right: 0; bottom: 0; margin: 0;
  padding: 30px 16px 12px;
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 14px; color: #fff;
  background: linear-gradient(to top, rgba(31,31,31,.7), transparent);
  border-bottom-left-radius: 7px; border-bottom-right-radius: 7px;
  z-index: 1;
}
.play-btn { z-index: 2; }
.uforea-lightbox { border: 0; padding: 0; background: transparent; max-width: min(92vw, 820px); }
.uforea-lightbox::backdrop { background: rgba(31,31,31,.74); }
.uforea-lightbox .lb-inner { position: relative; background: var(--paper); border: 1.5px solid var(--uforea-yellow); border-radius: 16px; padding: 12px; box-shadow: 0 30px 70px -20px rgba(0,0,0,.55); }
.uforea-lightbox img { display: block; width: 100%; height: auto; border-radius: 10px; }
.uforea-lightbox .lb-cap { margin: 12px 4px 4px; font-family: 'Playfair Display', serif; font-style: italic; color: var(--ink); font-size: 15px; }
.uforea-lightbox .lb-close { position: absolute; top: -16px; right: -16px; width: 42px; height: 42px; border-radius: 999px; background: var(--uforea-yellow); border: 1.5px solid var(--ink-strong); color: var(--ink-strong); display: grid; place-items: center; cursor: pointer; font-size: 22px; line-height: 1; box-shadow: 0 6px 16px rgba(63,63,63,.3); }

/* P8 — Inner pages use a STICKY, opaque cream nav (in document flow) so the
   breadcrumb sits directly beneath it — consistent across EVERY non-home
   template (pages, zones, journal, promos, party, woo). The homepage keeps its
   fixed transparent nav over the hero (body.home is excluded). This single rule
   supersedes the per-template sticky overrides scattered in page/zone/birthday/
   promo.css, which had incomplete page lists (faq, tickets, about, etc. were
   missing and fell through to the fixed nav). Because the sticky nav is in flow,
   NO site-main top padding is needed — the old 64px was for the fixed-overlay
   nav and left a dead gap below the nav on sticky pages (e.g. /birthdays/*). */
body:not(.home) .nav {
  position: sticky; top: 0; left: auto; right: auto;
  padding: 12px 4%;
  background: rgba(255, 251, 243, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 186, 1, 0.2);
}
body:not(.home) .site-main { padding-top: 0; }
html { scroll-padding-top: 96px; } /* taller nav with the 44px logo */

/* P3 — Mobile hero: lead with the real venue photo so imagery lands in the
   first viewport, with the headline immediately below. Desktop layout unchanged. */
@media (max-width: 1000px) {
  .hero { padding-top: 88px; }
  .hero-grid { display: flex; flex-direction: column; gap: 26px; }
  .hero-photo { order: -1; }
}

/* P9 — Mobile events carousel: lift the prev/next arrows up over the photo so they
   never sit over the slide's detail table below. */
@media (max-width: 900px) {
  .slider-arrow { top: 60px; transform: none; box-shadow: 0 4px 12px rgba(63,63,63,.22); }
  .slider-arrow:hover { transform: scale(1.06); background: var(--yellow-soft); }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
}


/* ════════════════ GOOGLE REVIEWS CAROUSEL (in-house, Trustindex-style) ════════════════ */
.gr-block { max-width: 1100px; margin: 0 auto; }
.gr-head { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.gr-glogo { display: inline-grid; place-items: center; width: 48px; height: 48px; background: var(--paper); border: 1px solid var(--uforea-yellow); border-radius: 12px; flex: 0 0 auto; }
.gr-head-text { display: flex; flex-direction: column; gap: 2px; }
.gr-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 22px; color: var(--ink-strong); line-height: 1.1; }
.gr-rating { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 15px; color: var(--ink); }
.gr-rating strong { font-size: 20px; color: var(--ink-strong); }
.gr-stars { color: var(--uforea-yellow); letter-spacing: 2px; font-size: 17px; }
.gr-count { color: var(--mute); font-size: 13.5px; }
.gr-write { margin-left: auto; font-weight: 600; color: var(--ink-strong); text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 4px; white-space: nowrap; }
.gr-write:hover { color: var(--gold-text); }
.gr-carousel { position: relative; }
.gr-track { display: flex; gap: 18px; list-style: none; margin: 0; padding: 4px 2px 14px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.gr-track::-webkit-scrollbar { display: none; }
.gr-card { flex: 0 0 auto; width: min(330px, 82vw); scroll-snap-align: start; background: var(--paper); border: 1px solid rgba(63,63,63,.08); border-radius: 16px; padding: 22px 20px; display: flex; flex-direction: column; gap: 12px; box-shadow: 0 12px 28px -22px rgba(63,63,63,.5); }
.gr-card-top { display: flex; align-items: center; gap: 12px; }
.gr-avatar { width: 44px; height: 44px; border-radius: 999px; flex: 0 0 auto; object-fit: cover; }
.gr-avatar-initial { display: grid; place-items: center; background: var(--av-bg, var(--blush)); color: var(--ink-strong); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 19px; }
.gr-meta { min-width: 0; }
.gr-name { font-weight: 600; color: var(--ink-strong); font-size: 15px; line-height: 1.2; }
.gr-when { color: var(--mute); font-size: 12.5px; margin-top: 1px; }
.gr-gicon { margin-left: auto; flex: 0 0 auto; opacity: .9; }
.gr-card-stars { color: var(--uforea-yellow); letter-spacing: 2px; font-size: 16px; }
.gr-text { color: var(--ink); font-size: 14.5px; line-height: 1.6; margin: 0; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.gr-arrow { position: absolute; top: 40%; transform: translateY(-50%); z-index: 3; width: 42px; height: 42px; border-radius: 999px; background: var(--paper); border: 1px solid var(--uforea-yellow); color: var(--ink-strong); display: none; place-items: center; cursor: pointer; box-shadow: 0 8px 20px -10px rgba(63,63,63,.5); }
.gr-arrow:hover { background: var(--uforea-yellow); }
.gr-prev { left: -10px; }
.gr-next { right: -10px; }
/* Arrows show only when there's actually something to scroll (JS toggles
   .is-scrollable). When the pool is small the few cards centre instead of
   left-aligning against empty space. */
@media (min-width: 760px) { .gr-carousel.is-scrollable .gr-arrow { display: grid; } }
.gr-carousel:not(.is-scrollable) .gr-track { justify-content: center; }
.gr-carousel.is-scrollable .gr-track { cursor: grab; }
.gr-track.gr-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.gr-track.gr-dragging .gr-card { pointer-events: none; }
@media (max-width: 540px) { .gr-write { margin-left: 0; } }

/* ── Hero operating-hours pill (first fold, below the trust strip) ── */
.hero-hours {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  padding: 8px 16px;
  background: var(--yellow-soft, #FFF1C7);
  border: 1px solid var(--uforea-yellow, #FFBA01);
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.3;
  color: var(--ink-strong, #2F2A28);
}
.hero-hours svg { color: var(--yellow-deep, #E0A300); flex-shrink: 0; }
.hero-hours strong { font-weight: 700; }
@media (max-width: 560px) {
  .hero-hours { font-size: 12.5px; padding: 8px 13px; gap: 7px; align-items: flex-start; }
  .hero-hours svg { margin-top: 1px; }
}

/* ── Social section (replaces the newsletter; reuses the .newsletter yellow band) ── */
.social-cta .social-lede {
  max-width: 540px;
  margin: 0 auto 32px;
  color: var(--ink-strong, #2F2A28);
  opacity: .85;
  line-height: 1.65;
}
.social-row { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.social-ic {
  display: flex; flex-direction: column; align-items: center; gap: 11px;
  text-decoration: none; color: var(--ink-strong, #2F2A28);
  font-weight: 600; font-size: 14px;
}
.social-ring {
  width: 76px; height: 76px; border-radius: 50%;
  background: #fff; color: var(--ink-strong, #2F2A28);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -12px rgba(0,0,0,.5);
  transition: transform .15s ease, box-shadow .15s ease;
}
.social-ic:hover .social-ring { transform: translateY(-4px); box-shadow: 0 16px 30px -14px rgba(0,0,0,.55); }
.social-ic:focus-visible .social-ring { outline: 3px solid var(--ink-strong, #2F2A28); outline-offset: 3px; }
.social-handle { margin-top: 30px; font-size: 13.5px; color: var(--ink-strong, #2F2A28); opacity: .8; }
.social-handle a { color: var(--ink-strong, #2F2A28); text-decoration: underline; text-decoration-color: rgba(63,63,63,.5); }
@media (max-width: 560px) {
  .social-row { gap: 22px; }
  .social-ring { width: 66px; height: 66px; }
  .social-ic svg { width: 30px; height: 30px; }
}

/* ════════════════ Hero photo + Discovery grid (client round 2026-07) ════════════════ */
/* The hero's 9-photo mosaic felt like a directory; the hero now carries ONE
   large venue photo (the rainbow entrance) and the nine tiles moved to their
   own .discovery section right below as a discovery grid. */
.hero-photo { position: relative; align-self: center; width: 100%; }
.hero-photo-frame {
  position: relative; margin: 0;
  border-radius: var(--r-photo); overflow: hidden;
  outline: 1.5px solid var(--uforea-yellow); outline-offset: 6px;
  box-shadow: 0 34px 64px -34px rgba(74,69,66,.4);
}
.hero-photo-frame img { display: block; width: 100%; height: auto; }
.hero-photo .m-badge {
  position: absolute; top: -18px; right: -12px; z-index: 6;
  width: 82px; height: 82px; border-radius: 999px;
  background: var(--uforea-yellow); color: var(--ink-strong);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.4);
  border: 3px solid #fff;
  transform: rotate(8deg);
}
.hero-photo .m-badge b { font-family: 'Playfair Display', Georgia, serif; font-size: 32px; line-height: 1; }
.hero-photo .m-badge span { font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; margin-top: 2px; }
@media (max-width: 1000px) {
  .hero-photo .m-badge { width: 68px; height: 68px; top: -12px; right: -6px; }
  .hero-photo .m-badge b { font-size: 26px; }
}

.discovery { padding: var(--section-y) 0; background: var(--cream); }
.discovery-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  max-width: 880px; margin: 36px auto 0;
}
.discovery-grid .m-tile {
  position: relative; display: block;
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 14px 32px -22px rgba(0,0,0,.5);
}
.discovery-grid .m-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; }
.discovery-grid .m-tile:hover img { transform: scale(1.06); }
.discovery-grid .m-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 48%, rgba(0,0,0,.58)); }
.discovery-grid .m-name {
  position: absolute; left: 12px; bottom: 10px; right: 10px; z-index: 2;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif; font-weight: 700;
  font-size: clamp(12.5px, 1.6vw, 17px); line-height: 1.15;
  text-shadow: 0 1px 5px rgba(0,0,0,.6);
}

/* ════════════════ Mobile rhythm (client round 2026-07) ════════════════ */
/* Shorten perceived page length: desktop 80–100px section paddings compress
   to ~56px under 720px. (Per-template CSS files carry the same override.) */
@media (max-width: 720px) {
  .reviews, .event-slider, .birthday, .faq, .visit,
  .newsletter, .why, .zones, .tickets, .promos, .journal { padding-top: 56px; padding-bottom: 56px; }
  .discovery { padding: var(--section-y) 0; }
  .hero { padding-bottom: 44px; }
  footer { padding-top: 48px; }
  .section-head .h2 { font-size: clamp(30px, 8vw, 40px); }
}

/* Footer contact rows — icon-led, scannable (client round 2026-07) */
.foot-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.55; }
.foot-contact .fc-ico {
  flex: 0 0 auto; width: 28px; height: 28px; margin-top: 2px;
  border-radius: 999px;
  background: var(--yellow-soft); color: var(--ink-strong);
  display: grid; place-items: center;
}
.foot-contact strong { color: var(--ink-strong); font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase; }
.foot-contact a { text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 3px; }

/* Homepage journal teaser band (padding moved out of inline style so the
   mobile rhythm override above can compress it) */
.journal { padding: var(--section-y) 0; }

/* The 2026-07 H1 copy is longer than the original — cap the hero headline a
   step below the global .h1 clamp so the CTAs stay near the first viewport. */
.hero .h1 { font-size: clamp(38px, 5.6vw, 70px); }

/* FAQ accordion — visible keyboard focus on the native <summary> (site-wide) */
.faq-item summary:focus-visible {
  outline: 3px solid var(--uforea-yellow);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ════════════════ Hero rebuild — carousel band + 9-wonder grid beside the
   title (client 2026-07: "add carousel with gradient" + "remain the 9 preview
   beside the title"). Supersedes the single hero photo. ════════════════ */
.hero-carousel { position: relative; margin: 0 0 40px; z-index: 2; }
.hero-cslide-track {
  display: flex; gap: 0; list-style: none; margin: 0; padding: 0;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.hero-cslide-track::-webkit-scrollbar { display: none; }
/* Photos sit flush edge-to-edge as one band — no per-photo frame/shadow
   (client 2026-07: "make the photo not inside a frame, like their design"). */
.hero-cslide {
  position: relative; flex: 0 0 33.3333%; scroll-snap-align: start;
  overflow: hidden; aspect-ratio: 16 / 10;
}
.hero-cslide img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* "Half-transparent with gradient" (client 2026-07): a soft warm wash that fades
   the image down into the light page background instead of a dark scrim, so the
   carousel dissolves toward the headline — matches the Canva mockup. */
.hero-cslide::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(255,186,1,.10) 0%,
      rgba(255,255,255,0) 30%,
      rgba(255,252,246,.60) 80%,
      rgba(255,252,246,.95) 100%);
}
.hero-carousel-badge {
  position: absolute; top: -14px; right: 10px; z-index: 4;
  width: 74px; height: 74px; border-radius: 999px;
  background: var(--uforea-yellow); color: var(--ink-strong);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; border: 3px solid #fff;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.4); transform: rotate(8deg);
}
.hero-carousel-badge b { font-family: 'Playfair Display', Georgia, serif; font-size: 27px; line-height: 1; }
.hero-carousel-badge span { font-size: 8.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; margin-top: 1px; }

/* Hero grid → text (left) + nine wonder previews (right) */
.hero-grid { grid-template-columns: 1.12fr .88fr; }
.hero-wonders { position: relative; z-index: 2; align-self: center; }
.hero-wonders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hero-wonders-grid .m-tile {
  position: relative; display: block; border-radius: 14px; overflow: hidden;
  aspect-ratio: 1 / 1; box-shadow: 0 12px 28px -20px rgba(0,0,0,.5);
}
.hero-wonders-grid .m-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.hero-wonders-grid .m-tile:hover img { transform: scale(1.06); }
.hero-wonders-grid .m-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 46%, rgba(0,0,0,.6)); }
.hero-wonders-grid .m-name {
  position: absolute; left: 9px; right: 8px; bottom: 8px; z-index: 2; color: #fff;
  font-family: 'Playfair Display', Georgia, serif; font-weight: 700;
  font-size: clamp(11px, 1vw, 13.5px); line-height: 1.12; text-shadow: 0 1px 5px rgba(0,0,0,.6);
}
.hero-wonders-explore {
  display: flex; width: fit-content; margin: 14px auto 0; align-items: center; gap: 6px;
  font-weight: 600; font-size: 14px; color: var(--ink-strong);
  text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 4px;
}
.hero-wonders-explore:hover { color: var(--gold-text); }
/* Explicit carousel arrow on the phone wonder row (client p.2: "show carousel button") */
.hero-wonders-arrow { display: none; }
@media (max-width: 720px) {
  .hero-wonders-scroll { position: relative; }
  .hero-wonders-arrow {
    display: grid; place-items: center; position: absolute; top: 50%; right: 4px; transform: translateY(-50%);
    width: 40px; height: 40px; border: 0; border-radius: 999px;
    background: #F98E6E; color: #fff; cursor: pointer; z-index: 3;
    box-shadow: 0 8px 18px -8px rgba(249,142,110,.9);
  }
}

@media (max-width: 1000px) {
  .hero-carousel { margin-bottom: 28px; }
  .hero-cslide { flex: 0 0 86%; }
}
@media (max-width: 720px) {
  /* Phone: nine previews collapse to a swipe row — three fit, a fourth peeks so
     it's obvious there are more (client 2026-07). */
  .hero-cslide { flex: 0 0 100%; aspect-ratio: 4 / 3.3; }
  /* Client 2026-07: the headline OVERLAYS the faded lower image so the hero (and
     the whole mobile homepage) is shorter. A stronger fade keeps the dark
     headline legible where it sits over the photo. */
  .hero-cslide::after {
    background: linear-gradient(180deg,
      rgba(255,186,1,.06) 0%,
      rgba(255,255,255,0) 18%,
      rgba(255,252,246,.66) 50%,
      rgba(255,252,246,.96) 80%,
      #FFFCF6 100%);
  }
  .hero { padding-bottom: 24px; }
  .hero-carousel { margin-bottom: 0; }
  /* Full-bleed hero photo band on phones (client: "one picture as background") */
  .hero .hero-carousel, .t-hero .hero-carousel, .page-carousel .hero-carousel { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
  .hero .hero-grid { margin-top: -124px; }
  .hero .hero-text { position: relative; z-index: 3; }
  .hero .hero-text > .eyebrow-script { display: none; } /* no "welcome to" — headline leads, per mockup */
  .hero .hero-text .h1 { text-shadow: 0 1px 10px rgba(255,252,246,.92), 0 0 3px rgba(255,252,246,.7); } /* keep the headline legible where it overlaps the photo */
  .hero-wonders-grid {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 30%;
    gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px;
  }
  .hero-wonders-grid::-webkit-scrollbar { display: none; }
  .hero-wonders-grid .m-tile { scroll-snap-align: start; }
  .hero-wonders-explore { margin-top: 12px; }
}

/* ════════════════ Today's Hour & Rate widget (client 2026-07) ════════════════ */
.hour-rate { padding: var(--section-y) 0; background: #F3F3F2; } /* light grey band (client 2026-07) */
.hr-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px 24px; flex-wrap: wrap; margin-bottom: 24px; }
.hr-head .h2 { margin: 0; }
.hr-head-accent { color: inherit; } /* heading is uniformly dark, per client design */
.hr-check {
  font-weight: 600; color: var(--ink-strong); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 4px;
}
.hr-check:hover { color: var(--gold-text); }
/* On phones the "Check Tickets & Deals" link moves BELOW the rate card (client mockup p.2) */
.hr-check-below { display: none; }
@media (max-width: 720px) {
  .hr-head .hr-check { display: none; }
  /* Phones: centre the whole rate card and the link beneath it (client 2026-07).
     Scoped to .hour-rate — the house-rules cards share the .hr-card class and must stay left (client 2026-07 R2). */
  .hour-rate .hr-card { text-align: center; }
  .hour-rate .hr-row { align-items: center; }
  .hour-rate .hr-rate { align-items: center; }
  .hr-check-below { display: flex; width: fit-content; align-items: center; gap: 6px; margin: 18px auto 0; font-weight: 600; color: var(--ink-strong); text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 4px; }
}
.hr-widget { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hr-tabs { display: flex; gap: 12px; flex: 0 0 auto; }
/* Number sits in its own square box; the day name is a caption BELOW it, and only
   the "today" number box is coral (day name coral too) — matches the client's
   design exactly (client 2026-07). */
.hr-tab {
  flex: 0 0 auto; background: transparent; border: 0; padding: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
}
.hr-tab-num {
  width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 12px; border: 1.5px solid #E6E4E0; background: #fff;
  font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 18px; line-height: 1;
  color: var(--ink-strong);
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.hr-tab:hover .hr-tab-num { border-color: var(--uforea-yellow); transform: translateY(-2px); }
.hr-tab-dow { font-size: 12px; font-weight: 600; color: var(--mute); } /* Title case (Wed, Thu, Today…) per client design */
.hr-tab.is-active .hr-tab-num { background: #F98E6E; border-color: #F98E6E; color: #fff; box-shadow: 0 8px 16px -8px rgba(249,142,110,.85); }
.hr-tab.is-active .hr-tab-dow { color: #F98E6E; }
.hr-card {
  flex: 1 1 320px; min-width: 260px;
  border: 2px solid var(--uforea-yellow); border-radius: 18px; padding: 18px 22px;
  background: var(--paper); display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 16px 34px -26px rgba(63,63,63,.5);
}
.hr-card.is-peak { border-color: var(--uforea-yellow); background: var(--paper); } /* same white/gold card on every day, per client design */
.hr-card-label { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 700; font-size: 18px; color: var(--gold-text); }
.hr-card-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hr-row { display: flex; flex-direction: column; gap: 6px; }
.hr-row-key { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--mute); }
.hr-row-key svg { color: inherit; flex-shrink: 0; }
.hr-row-val { font-weight: 600; color: var(--ink-strong); font-size: 16px; }
.hr-rate { display: flex; flex-direction: column; gap: 2px; }
.hr-rate-line { font-size: 14.5px; font-weight: 500; color: var(--ink); }
.hr-rate-line strong { font-weight: 700; color: var(--ink-strong); }
@media (max-width: 720px) {
  .hour-rate { padding: var(--section-y) 0; }
  .hr-tabs { width: 100%; overflow-x: auto; scrollbar-width: none; }
  .hr-tabs::-webkit-scrollbar { display: none; }
  .hr-card { flex-basis: 100%; }
}
@media (max-width: 460px) { .hr-card-rows { grid-template-columns: 1fr; } }

/* ════════════════ Happenings — square thumbnails + swipe carousel on phone
   (client 2026-07: "show side by side, carousel; keep thumbnail square") ════════ */
.event-slider .event-card-photo { aspect-ratio: 1 / 1; }
@media (max-width: 720px) {
  .event-slider .event-cards {
    flex-direction: row; flex-wrap: nowrap; justify-content: flex-start; align-items: stretch;
    gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 6px;
  }
  .event-slider .event-cards::-webkit-scrollbar { display: none; }
  .event-slider .event-card { flex: 0 0 66%; max-width: 66%; width: 66%; scroll-snap-align: start; } /* ~1.5 cards — wider lead card + a half-peek of the next (client 2026-07) */
}

/* Page-top carousel band — main landing pages open with the carousel, breadcrumb after (client 2026-07 R2) */
.page-carousel { padding-top: 10px; overflow-x: hidden; overflow-x: clip; }
/* Crumb now sits ABOVE the carousel (client 2026-07: swap); on phones the hero
   that follows rides up over the carousel's gradient fade so the headline sits
   on the faded photo — heroes go transparent there (hero bg == body bg == paper,
   so nothing else changes visually). */
@media (max-width: 700px) {
  /* (.zone-hero excluded — the birthdays hero is photo-first; pulling a framed
     photo over the carousel reads as two stacked images, not a text overlay.) */
  /* about + birthdays (client 2026-07-17): flip their photo-first heroes on
     phones — text rides the carousel fade first, framed photo/video follows. */
  .page-carousel + .about-hero .hero-grid,
  .page-carousel + .zone-hero .zone-hero-grid { display: flex; flex-direction: column; gap: 28px; }
  .page-carousel + .about-hero .hero-photo,
  .page-carousel + .zone-hero .zone-photo-frame { order: 2; }
  /* Explicit stacking on BOTH siblings — older iOS Safari resolved the
     implicit order the other way and painted the carousel OVER the pulled-up
     headline (client iPhone 13 report, 2026-07-17). */
  .page-carousel { position: relative; z-index: 1; }
  .page-carousel + .t-hero,
  .page-carousel + .visit-hero,
  .page-carousel + .archive-hero,
  .page-carousel + .about-hero,
  .page-carousel + .zone-hero {
    background: transparent;
    margin-top: -112px;
    position: relative;
    z-index: 2;
  }
  .page-carousel + header .container { position: relative; z-index: 3; }
  .page-carousel + header h1,
  .page-carousel + header .h1,
  .page-carousel + header .eyebrow-script {
    text-shadow: 0 1px 10px rgba(255, 252, 246, .92), 0 0 3px rgba(255, 252, 246, .7);
  }
}
.page-carousel .hero-carousel { margin-top: 0; margin-bottom: 0; }

/* ── Visual-review round 2026-07 fixes ─────────────────────────────────── */
/* Happenings single hero: .slide-ribbon was absolute (slide-card design) and
   sailed over the H1. In the hero meta column it becomes a chip in flow. */
.zone-meta .slide-ribbon { position: static; align-self: flex-start; margin: 0 0 2px; transform: rotate(-2deg); }

/* Social panel: five icons (incl. 小红书 + YouTube) now wrap 4+1 at 390px —
   shrink rings/gap under 430px so all five sit on one line. */
@media (max-width: 430px) {
  .social-row { gap: 8px; }
  .social-ic { width: 62px; }
  .social-ring { width: 54px; height: 54px; margin: 0 auto; }
  .social-ring svg { width: 25px; height: 25px; }
  .social-label { font-size: 11px; }
}

/* Zone-style cards appear on the homepage, /wonders/, zone singles AND
   content pages (toddlers cornerstone) — the CTA-pinning rules must live
   here (site-wide), not in zone.css which only loads on zone templates. */
.zone-card { display: flex; flex-direction: column; }
.zone-card .body { display: flex; flex-direction: column; flex: 1; }
.zone-card .body .zlink, .zone-card .body .step-in, .zone-card .step-in { margin-top: auto; }

/* Decorative hero sparkles collide with copy on narrow phones (found on
   birthdays, wonders, promotions) — hide the whole class ≤600px. */
@media (max-width: 600px) {
  .sparkle { display: none !important; }
}

/* Pair-well cards (zone singles AND geo-landers — must live site-wide):
   pin "Step inside" to the card bottom so links align across a row. */
.pair-card { display: flex; flex-direction: column; }
.pair-card .pair-body { display: flex; flex-direction: column; flex: 1; }
.pair-card .pair-body .step-in { margin-top: auto; }

/* ── Search-results / fallback archive (index.php rebuilt 2026-07-17) ── */
.search-results-sec { padding: 26px 0 var(--section-y, 56px); }
.search-results { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.result-card {
  background: var(--paper); border: var(--card-frame, 1.5px solid rgba(63,63,63,.14));
  border-radius: var(--r-card, 18px); box-shadow: var(--shadow-card, 0 10px 24px -18px rgba(0,0,0,.35));
  padding: 18px 22px;
}
.result-type {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold-text, #8a6500);
  background: var(--yellow-soft, #FFF3D1); border-radius: 999px; padding: 3px 10px; margin-bottom: 8px;
}
.result-title { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; margin: 0 0 6px; line-height: 1.25; }
.result-title a { color: var(--ink-strong, #2F2A28); text-decoration: none; }
.result-title a:hover { text-decoration: underline; text-decoration-color: var(--uforea-yellow, #FFBA01); text-underline-offset: 4px; }
.result-excerpt { margin: 0; color: var(--mute, #6E6560); font-size: 14.5px; line-height: 1.65; }
.search-empty { text-align: center; padding: 30px 0 10px; }
.search-empty > p:first-child { font-size: 17px; color: var(--ink-strong, #2F2A28); margin-bottom: 22px; }
.search-results-sec .search-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.search-results-sec .search-form input { flex: 1; min-width: 200px; min-height: 50px; padding: 0 20px; border: 1.5px solid var(--ink-strong, #2F2A28); border-radius: 999px; background: var(--paper); font: inherit; }
.search-results-sec .search-form button { background: var(--ink-strong, #2F2A28); color: var(--paper, #fff); padding: 0 26px; min-height: 50px; border-radius: 999px; font-weight: 600; border: 0; }
.search-results-sec .search-helper { margin-top: 16px; font-size: 13.5px; color: var(--mute, #6E6560); }
.search-results-sec .nav-links { display: flex; gap: 14px; justify-content: center; margin-top: 30px; font-weight: 600; }

/* Homepage hero H1 at phone width: line-height 1.02 let the hand-drawn
   flourish under "Parents" strike the next line's ascenders. */
@media (max-width: 700px) {
  .hero h1 { line-height: 1.14; }
}

/* ── Header cart button (client 2026-07-17: there was no way to reach the
   cart from the nav). Count badge is a Woo cart fragment — cache-safe. ── */
.nav-cart { position: relative; }
.nav-cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--uforea-yellow);
  color: var(--ink-strong, #2F2A28);
  border: 1.5px solid var(--paper, #FFFCF6);
  font-size: 11px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
}
.nav-cart-count:empty,
.nav-cart-count[data-uforea-cart-count="0"] { display: none; }

/* Birthday video lightbox: portrait player sized to the viewport */
.uforea-lightbox--video .lb-inner { width: min(92vw, 440px); }
.uforea-lightbox--video video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 74vh;
  border-radius: 10px;
  background: #000;
  object-fit: contain;
}

/* ── Cart button recolour (client 2026-07-17 + 3-lens UX panel, unanimous) ──
   The cart leaves the WhatsApp-green fill and joins the neutral OUTLINED
   utility tier the hamburger established: filled colour = actions (green=talk,
   yellow=buy), outline = utilities. Hover inverts to filled ink — never yellow,
   which would swallow the yellow count badge. */
.icon-btn.nav-cart {
  background: var(--paper, #FFFCF6);
  color: var(--ink-strong, #2F2A28);
  border: 1.5px solid var(--ink-strong, #2F2A28);
  transition: background .18s ease, color .18s ease;
}
.icon-btn.nav-cart:hover,
.icon-btn.nav-cart:focus-visible {
  background: var(--ink-strong, #2F2A28);
  color: var(--paper, #FFFCF6);
}
.icon-btn.nav-cart:focus-visible { outline: 2px solid var(--ink-strong, #2F2A28); outline-offset: 2px; }
