/**
 * Shared CSS for native WP pages (visit, about, legal, geo-landers).
 *
 * Loaded conditionally per-page via uforea_child_enqueue_page_assets() in
 * inc/template-pages.php — depends on tokens.css + components.css.
 *
 * Sources:
 *   /design-v2/visit/index.html
 *   /design-v2/visit/from-*/index.html
 *   /design-v2/about/index.html
 *   /design-v2/{privacy,terms,refund-policy,health-safety}/index.html
 *
 * Inner-page rules are scoped to body classes added by WP (.page-visit,
 * .page-about, .page-from-*, .page-privacy, .page-terms, .page-sales-policy,
 * .page-health-safety) so they never bleed into the homepage's transparent
 * fixed nav. The breadcrumb (.crumb) is also defined in zone.css; declaring
 * it again here makes the page templates self-sufficient when zone.css is
 * not loaded — values match.
 */

/* ─────────── Inner-page nav override: sticky cream, not fixed transparent ─────────── */
.page-visit .nav,
.page-about .nav,
.page-from-george-town .nav,
.page-from-bayan-lepas .nav,
.page-from-batu-ferringhi .nav,
.page-from-butterworth .nav,
.page-privacy .nav,
.page-terms .nav,
.page-sales-policy .nav,
.page-health-safety .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);
}

/* ─────────── Breadcrumb (matches zone.css; safe to repeat for page-only loads) ─────────── */
.crumb {
  padding: 18px 0 0;
  font-size: 13px;
  color: var(--mute);
}
.crumb a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 3px; text-decoration-thickness: 2px; }
.crumb a:hover { color: var(--gold-text); text-decoration-color: var(--gold-text); }
.crumb .sep { font-family: 'Italianno', cursive; color: var(--uforea-yellow); font-size: 22px; line-height: 1; vertical-align: middle; margin: 0 6px; display: inline-block; transform: translateY(-2px); }
.crumb .here { color: var(--ink-strong); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════════
   VISIT LANDING (page-visit)
   Source: /design-v2/visit/index.html lines 132-417
   ═══════════════════════════════════════════════════════════════════════ */

/* Headline clamps match visit prototype (tighter than homepage) */
.page-visit .h1 { font-size: clamp(40px, 6.4vw, 72px); line-height: 1.04; }
.page-visit .h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.05; }
.page-visit .h3 { font-size: clamp(20px, 2.2vw, 26px); line-height: 1.15; font-weight: 700; }

/* Hero */
.visit-hero {
  position: relative;
  padding: var(--hero-top) 0 var(--hero-bottom);
  background: var(--paper);
  overflow: hidden;
}
.visit-hero::before {
  content: ""; position: absolute;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  top: -120px; right: -160px;
  background: radial-gradient(closest-side, var(--yellow-soft), transparent 70%);
  z-index: 0; opacity: .75;
}
.visit-hero::after {
  content: ""; position: absolute;
  bottom: -120px; left: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--sky), transparent 70%);
  opacity: .7; z-index: 0;
}
.visit-hero .container { position: relative; z-index: 1; }
.visit-hero h1 { margin-top: 8px; }
.visit-hero .lede { margin-top: 22px; }
.visit-hero .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* Hero info grid (3 cards) */
.hero-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
@media (max-width: 900px) { .hero-info { grid-template-columns: 1fr; } }
.hero-info .info-card {
  background: var(--paper);
  border: var(--card-frame);
  border-radius: var(--r-card);
  padding: 22px 22px;
  display: flex; gap: 16px;
  box-shadow: 0 8px 22px rgba(63,63,63,.05);
}
.hero-info .info-card .ring {
  width: 46px; height: 46px;
  border: 1.5px solid var(--uforea-yellow);
  border-radius: 999px;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: var(--paper);
}
.hero-info .info-card h2,
.hero-info .info-card h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 17px; margin: 0 0 6px; color: var(--ink-strong); }
.hero-info .info-card p,
.hero-info .info-card a:not(.btn) { font-size: 14px; color: var(--ink); margin: 2px 0; line-height: 1.55; display: block; }
.hero-info .info-card a:not(.btn):hover { color: var(--ink-strong); text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 4px; }
.hero-info .info-card .mute-line { color: var(--mute); font-size: 12.5px; }

/* Map section */
.map-section {
  padding: var(--section-y) 0;
  background: var(--sky);
}
.map-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 900px) { .map-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;
  box-shadow: 0 18px 40px rgba(63,63,63,.08);
}
.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-aside { display: flex; flex-direction: column; gap: 14px; }
.map-aside .info-card {
  background: var(--paper);
  border: var(--card-frame);
  border-radius: var(--r-card);
  padding: 20px 22px;
  display: flex; gap: 16px;
  box-shadow: 0 8px 22px rgba(63,63,63,.05);
}
.map-aside .info-card .ring {
  width: 44px; height: 44px;
  border: 1px solid var(--uforea-yellow);
  border-radius: 999px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.map-aside h3 { font-family: 'Playfair Display', serif; font-size: 16px; margin: 0 0 4px; color: var(--ink-strong); }
.map-aside p, .map-aside a:not(.btn) { font-size: 14px; color: var(--ink); margin: 2px 0; line-height: 1.5; display: block; }
.map-aside a:not(.btn):hover { color: var(--ink-strong); text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 4px; }
.map-aside .visit-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.map-aside .socials { display: flex; gap: 10px; margin-top: 4px; }
.map-aside .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;
}
.map-aside .socials a:hover { background: var(--uforea-yellow); }

/* Transport section */
.transport {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.transport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
@media (max-width: 900px) { .transport-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .transport-grid { grid-template-columns: 1fr; } }
.transport-card {
  background: var(--cream);
  border: 1px solid var(--uforea-yellow);
  border-radius: 14px;
  padding: 22px 22px 24px;
}
.transport-card .icon {
  width: 44px; height: 44px;
  border: 1px solid var(--uforea-yellow);
  border-radius: 999px;
  display: grid; place-items: center;
  margin-bottom: 14px;
  background: var(--paper);
}
.transport-card h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 17px; margin: 0 0 8px; color: var(--ink-strong); }
.transport-card p { font-size: 14px; color: var(--ink); line-height: 1.6; margin: 0; }

/* Neighborhoods strip */
.neigh {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.neigh-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 900px) { .neigh-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .neigh-strip { grid-template-columns: 1fr; } }

.neigh-card {
  background: var(--paper);
  border: var(--card-frame);
  border-radius: var(--r-card);
  padding: 22px 20px;
  text-decoration: none;
  display: block;
  transition: transform .15s ease, box-shadow .15s ease;
}
.neigh-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(63,63,63,.10); }
.neigh-card .row { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.neigh-card .from { font-family: 'Italianno', cursive; font-size: 26px; color: var(--uforea-yellow); line-height: 1; }
.neigh-card .city { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 22px; margin-top: 2px; color: var(--ink-strong); }
.neigh-card .meta { color: var(--mute); font-size: 13px; margin-top: 6px; }
.neigh-card .arrow { flex-shrink: 0; margin-top: 4px; }
.neigh-card .blurb { color: var(--ink); font-size: 14px; line-height: 1.55; margin: 12px 0 0; }

/* FAQ — visit page keeps only its section background; the accordion inherits
   the single canonical .faq-item component from components.css (2026-07). */
.page-visit .faq { background: var(--mint); }

/* CTA module (shared with about, geo-landers) */
.cta-module {
  padding: var(--section-y) 0;
  background: var(--blush);
}
.cta-card {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
}
.cta-card h2 { margin-bottom: 14px; }
.cta-card p { color: var(--ink); font-size: 16px; line-height: 1.65; margin: 0 0 28px; }
.cta-card .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════════
   GEO-LANDERS (from-george-town, from-bayan-lepas, etc.)
   Source: /design-v2/visit/from-*/index.html
   ═══════════════════════════════════════════════════════════════════════ */

.page-from-george-town .container,
.page-from-bayan-lepas .container,
.page-from-batu-ferringhi .container,
.page-from-butterworth .container {
  width: min(1100px, 92%);
}

/* Lander hero */
.lander-hero {
  position: relative;
  padding: var(--hero-top) 0 var(--hero-bottom);
  background: var(--paper);
  overflow: hidden;
}
.lander-hero::before {
  content: ""; position: absolute;
  width: 60vw; height: 60vw; max-width: 680px; max-height: 680px;
  top: -100px; right: -140px;
  background: radial-gradient(closest-side, var(--yellow-soft), transparent 70%);
  z-index: 0; opacity: .7;
}
.lander-hero::after {
  content: ""; position: absolute;
  bottom: -120px; left: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--peach), transparent 70%);
  opacity: .6; z-index: 0;
}
.lander-hero .container { position: relative; z-index: 1; }
.lander-hero h1 { margin-top: 6px; }
.lander-hero .lede { margin-top: 22px; }
.lander-hero .hero-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; color: var(--mute); font-size: 14px; align-items: center; }
.lander-hero .hero-meta .pill { background: var(--paper); border: 1px solid var(--uforea-yellow); border-radius: 999px; padding: 8px 16px; color: var(--ink-strong); font-weight: 600; font-size: 13px; }
.lander-hero .hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--mute); }
.lander-hero .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Lander headline scaling */
.page-from-george-town .h1,
.page-from-bayan-lepas .h1,
.page-from-batu-ferringhi .h1,
.page-from-butterworth .h1 {
  font-size: clamp(36px, 5.6vw, 64px); line-height: 1.05;
}
.page-from-george-town .h2,
.page-from-bayan-lepas .h2,
.page-from-batu-ferringhi .h2,
.page-from-butterworth .h2 {
  font-size: clamp(28px, 3.6vw, 42px); line-height: 1.1;
}
.page-from-george-town .h3,
.page-from-bayan-lepas .h3,
.page-from-batu-ferringhi .h3,
.page-from-butterworth .h3 {
  font-size: clamp(19px, 2vw, 24px); line-height: 1.2; font-weight: 700;
}

/* Lander map (16:9, centred) */
.lander-map {
  padding: var(--section-y) 0;
  background: var(--sky);
}
.lander-map .map-frame {
  aspect-ratio: 16 / 9;
  max-width: 920px;
  margin: 0 auto;
}
.map-caption {
  text-align: center;
  color: var(--mute);
  font-size: 13.5px;
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Lander prose body */
.lander-body {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.prose { max-width: 720px; margin: 0 auto; }
.prose .section { margin-bottom: 48px; }
.prose .section:last-child { margin-bottom: 0; }
.prose h2 { margin-bottom: 16px; }
.prose h3 { margin: 22px 0 10px; font-size: 19px; }
.prose p { color: var(--ink); font-size: 16.5px; line-height: 1.75; margin: 0 0 14px; }
.prose p strong { color: var(--ink-strong); font-weight: 700; }
.prose ol { margin: 14px 0 14px 24px; padding: 0; }
.prose ol li { color: var(--ink); font-size: 16px; line-height: 1.7; margin-bottom: 10px; padding-left: 6px; }
.prose ol li strong { color: var(--ink-strong); }
.prose ol li::marker { color: var(--uforea-yellow); font-weight: 700; }
.prose .callout {
  background: var(--cream);
  border: 1px solid var(--uforea-yellow);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 22px 0;
}
.prose .callout p { margin: 0; font-size: 15.5px; }
.prose .callout strong { display: block; font-family: 'Playfair Display', serif; font-size: 17px; color: var(--ink-strong); margin-bottom: 6px; }

/* Pairs-well-with (geo-landers + visit) */
.pairs {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.pairs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
@media (max-width: 900px) { .pairs-grid { grid-template-columns: 1fr; } }

.pair-card {
  background: var(--paper);
  border: var(--card-frame);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease;
}
.pair-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(63,63,63,.10); }
.pair-card .pic { aspect-ratio: 16/10; overflow: hidden; }
.pair-card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.pair-card:hover .pic img { transform: scale(1.04); }
.pair-card .pair-body { padding: 20px 22px 22px; }
.pair-card .zone-tag { margin-bottom: 12px; } /* inherit canonical .zone-tag (600 weight, inline-flex, yellow dash) */
.pair-card h3 { margin-bottom: 8px; }
.pair-card p { color: var(--mute); font-size: 14px; line-height: 1.6; margin: 0 0 12px; }
.pair-card .step-in { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-strong); font-size: 13px; font-weight: 600; }

/* Address callout band (geo-landers) */
.address-band {
  padding: var(--section-y) 0;
  background: var(--mint);
}
.address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 720px) { .address-grid { grid-template-columns: 1fr; } }

/* ── Mobile heading consistency (matches the homepage + zone fix) ──
   Sections whose headings sit in a side column or a single-column content block
   read left-aligned; when they stack on mobile, centre the heading area so every
   section header matches the centred .section-head used across the site. Body
   prose and info cards stay left for readability. */
@media (max-width: 900px) {
  .lander-body .eyebrow-script,
  .lander-body .h2,
  .address-band .address-grid > .reveal:first-child,
  .panel-card > .eyebrow-script,
  .panel-card > .h2,
  .panel-card > .lede,
  .about-body .eyebrow-script,
  .about-body .h2 { text-align: center; }
}
.address-card {
  background: var(--paper);
  border: 1px solid var(--uforea-yellow);
  border-radius: 14px;
  padding: 24px 26px;
}
.address-card h2 { font-family: 'Playfair Display', serif; font-size: 20px; margin: 0 0 10px; color: var(--ink-strong); }
.address-card p { color: var(--ink); font-size: 15px; line-height: 1.6; margin: 4px 0; }
.address-card .mute-line { color: var(--mute); font-size: 12.5px; }
.address-card .ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

/* ═══════════════════════════════════════════════════════════════════════
   ABOUT PAGE (page-about)
   Source: /design-v2/about/index.html lines 121-369
   ═══════════════════════════════════════════════════════════════════════ */

.page-about .h1 { font-size: clamp(40px, 6.2vw, 68px); line-height: 1.06; }
.page-about .h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.08; }
.page-about .h3 { font-size: clamp(20px, 2.2vw, 26px); line-height: 1.18; font-weight: 700; }

/* About hero */
.about-hero {
  position: relative;
  padding: var(--hero-top) 0 var(--hero-bottom);
  background: var(--paper);
  overflow: hidden;
}
.about-hero::before {
  content: ""; position: absolute;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  top: -120px; right: -120px;
  background: radial-gradient(closest-side, var(--yellow-soft), transparent 70%);
  z-index: 0; opacity: .7;
}
.about-hero::after {
  content: ""; position: absolute;
  bottom: -160px; left: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--blush), transparent 70%);
  opacity: .55; z-index: 0;
}
.about-hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.hero-text { display: flex; flex-direction: column; gap: 16px; }
.hero-text h1 { margin-top: 4px; }
.hero-text .lede { margin-top: 4px; }

.hero-photo {
  position: relative;
  border-radius: 6px;
  outline: 1.5px solid var(--uforea-yellow);
  outline-offset: 8px;
  box-shadow: 0 24px 60px rgba(63,63,63,.12);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo::before, .hero-photo::after {
  content: ""; position: absolute; width: 28px; height: 28px;
  border: 1.5px solid var(--uforea-yellow); z-index: 4;
}
.hero-photo::before { top: -12px; left: -12px; border-right: 0; border-bottom: 0; border-top-left-radius: 16px; }
.hero-photo::after  { bottom: -12px; right: -12px; border-left: 0; border-top: 0; border-bottom-right-radius: 16px; }

.hero-sticker {
  position: absolute; top: 16px; right: -10px; z-index: 5;
  background: var(--blush); color: var(--passion-text);
  padding: 8px 14px; border-radius: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  transform: rotate(3deg);
  box-shadow: 0 6px 14px rgba(63,63,63,.10);
}
.hero-sticker::before, .hero-sticker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 8px; background: inherit; filter: brightness(.92);
}
.hero-sticker::before { left: -8px; clip-path: polygon(100% 0, 0 50%, 100% 100%); }
.hero-sticker::after  { right: -8px; clip-path: polygon(0 0, 100% 50%, 0 100%); }

/* About article body */
.about-body {
  background: var(--paper);
  padding: 50px 0 30px;
}
.about-body .container { max-width: 760px; }
.about-body section { margin-bottom: 54px; }
.about-body h2 { margin: 8px 0 18px; }
.about-body p,
.about-body ul,
.about-body ol {
  font-size: 17px; line-height: 1.75; color: var(--ink);
  margin: 0 0 22px;
}
.about-body p strong { color: var(--ink-strong); font-weight: 700; }
.about-body p em { font-style: italic; }
.about-body a.inline-link {
  color: var(--ink-strong);
  text-decoration: underline;
  text-decoration-color: var(--uforea-yellow);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  font-weight: 500;
}
.about-body a.inline-link:hover { text-decoration-color: var(--gold-text); }

.script-flourish {
  font-family: 'Italianno', cursive;
  color: var(--uforea-yellow);
  font-size: 1.05em;
  line-height: 1;
}

/* Day-narrative pull section */
.day-narrative {
  background: var(--cream);
  border: 1px solid var(--uforea-yellow);
  border-radius: 16px;
  padding: 36px 32px;
  margin: 28px 0 34px;
}
.day-narrative .day-eyebrow {
  font-family: 'Italianno', cursive;
  color: var(--gold-text);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
  display: inline-block;
  margin-bottom: 8px;
}
.day-narrative h2 { margin-top: 0; margin-bottom: 14px; }
.day-narrative p { color: var(--ink); }
.day-narrative p:last-child { margin-bottom: 0; }

/* Photo strip (about gallery) */
.photo-strip {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--peach) 100%);
}
.photo-strip .section-head { text-align: center; margin-bottom: 50px; }
.photo-strip h2 { margin-top: 6px; }

.strip-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
@media (max-width: 900px) {
  .strip-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
.strip-item {
  position: relative;
  border: 1.5px solid var(--uforea-yellow);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(63,63,63,.08);
}
.strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.strip-item.feature { grid-column: span 6; grid-row: span 2; }
.strip-item.std { grid-column: span 3; }
.strip-item.tall { grid-column: span 3; grid-row: span 2; }
@media (max-width: 900px) {
  .strip-item,
  .strip-item.feature,
  .strip-item.tall,
  .strip-item.std { grid-column: span 1; grid-row: auto; }
}

/* Values cards */
.values {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.values .section-head { text-align: center; margin-bottom: 50px; }
.values h2 { margin-top: 6px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1000px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--card-tint, var(--yellow-soft));
  border: 1px solid var(--uforea-yellow);
  border-radius: 16px;
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.value-card .ring {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--uforea-yellow);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink-strong);
  margin: 0;
}
.value-card p { color: var(--ink); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ═══════════════════════════════════════════════════════════════════════
   LEGAL PAGES (page-privacy, page-terms, page-sales-policy, page-health-safety)
   Source: /design-v2/{privacy,terms,refund-policy,health-safety}/index.html
   ═══════════════════════════════════════════════════════════════════════ */

.page-privacy,
.page-terms,
.page-sales-policy,
.page-health-safety {
  --rule:          #EDE5D2;
  --draft-bg:      #FFF8DC;
  --draft-border:  #E0A300;
}

.page-privacy body,
.page-terms body,
.page-sales-policy body,
.page-health-safety body { line-height: 1.7; }

/* Legal pages run on a narrower container; the homepage's .container at 1240px
   stays for nav/footer rows. A .container-wide wraps nav/breadcrumb to match
   the prototype, and the doc body uses .doc-narrow at 720px. */
.page-privacy .container-wide,
.page-terms .container-wide,
.page-sales-policy .container-wide,
.page-health-safety .container-wide {
  width: min(1240px, 92%);
  margin: 0 auto;
}
.page-privacy .doc-narrow,
.page-terms .doc-narrow,
.page-sales-policy .doc-narrow,
.page-health-safety .doc-narrow {
  width: min(720px, 92%);
  /* left/right only — the shorthand was wiping .toc's 44px bottom margin,
     gluing the first section heading to the TOC card (visual review 2026-07). */
  margin-left: auto;
  margin-right: auto;
}

/* Legal h1/h2/h3 typography (tighter, sans-serif H2/H3) */
.page-privacy .h1,
.page-terms .h1,
.page-sales-policy .h1,
.page-health-safety .h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.page-privacy .doc-body h2,
.page-terms .doc-body h2,
.page-sales-policy .doc-body h2,
.page-health-safety .doc-body h2 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin-top: 0;
}
.page-privacy .doc-body h3,
.page-terms .doc-body h3,
.page-sales-policy .doc-body h3,
.page-health-safety .doc-body h3 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.35;
  margin-top: 0;
}

/* Document head */
.doc-head { padding: var(--hero-top) 0 12px; }
.doc-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-text);
  font-weight: 700;
  margin-bottom: 14px;
}
.doc-head h1 { margin-bottom: 16px; }
.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13.5px;
  color: var(--mute);
  margin-top: 12px;
}
.doc-meta strong { color: var(--ink-strong); font-weight: 600; }

/* Social proof (health-safety only) */
.social-proof {
  background: var(--mint);
  border: 1px solid #BFE2C8;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 16px 0 0;
  font-size: 14.5px;
  color: var(--generous-text);
  line-height: 1.55;
}
.social-proof strong { font-weight: 700; color: var(--generous-text); }

/* Visual cleanliness proof (health-safety only) */
.page-health-safety .safety-proof {
  padding: 12px 20px 28px;
}
.page-health-safety .safety-proof .proof-head {
  max-width: 720px;
  margin: 0 auto 22px;
}
.page-health-safety .safety-proof .proof-head .eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 8px;
}
.page-health-safety .safety-proof h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.04;
  color: var(--ink-strong);
  margin: 0 0 10px;
}
.page-health-safety .safety-proof p {
  color: var(--mute);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0;
}
.page-health-safety .proof-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.page-health-safety .proof-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 186, 1, .45);
  background: var(--paper);
  box-shadow: var(--shadow-card);
}
.page-health-safety .proof-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}
.page-health-safety .proof-grid figcaption {
  padding: 10px 12px 12px;
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 760px) {
  .page-health-safety .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Draft disclaimer */
.draft-card {
  background: var(--draft-bg);
  border: 1.5px solid var(--draft-border);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 22px 0 36px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.draft-card .draft-icon {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--uforea-yellow);
  color: var(--ink-strong);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 16px;
}
.draft-card .draft-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-strong);
}
.draft-card .draft-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

/* Table of contents */
.toc {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 0 0 44px;
}
.toc h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 12px;
}
.toc ol {
  margin: 0; padding: 0;
  list-style: none;
  counter-reset: toc;
  display: grid;
  gap: 6px;
}
.toc li {
  counter-increment: toc;
  font-size: 14.5px;
  line-height: 1.5;
}
.toc li::before {
  content: counter(toc, decimal-leading-zero) ".";
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--uforea-yellow);
  margin-right: 10px;
}
.toc a {
  color: var(--ink-strong);
  text-decoration: underline;
  text-decoration-color: rgba(255, 186, 1, 0.5);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  font-weight: 500;
}
.toc a:hover { text-decoration-color: var(--gold-text); color: var(--gold-text); }

/* Document body */
.doc-body { padding: 0 0 80px; }
.doc-body section {
  margin: 0 0 44px;
  scroll-margin-top: 80px;
}
.doc-body section h2 {
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.doc-body section h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--ink-strong);
}
.doc-body p {
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink);
}
.doc-body p strong { color: var(--ink-strong); font-weight: 600; }
.doc-body ul, .doc-body ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.doc-body li {
  margin-bottom: 8px;
  font-size: 15.5px;
  line-height: 1.7;
}
.doc-body li::marker { color: var(--uforea-yellow); }
.doc-body a {
  color: var(--ink-strong);
  text-decoration: underline;
  text-decoration-color: var(--uforea-yellow);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  font-weight: 500;
}
.doc-body a:hover { color: var(--gold-text); text-decoration-color: var(--gold-text); }

.contact-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 20px 22px;
  margin-top: 14px;
}
.contact-card p { margin-bottom: 6px; font-size: 14.5px; }
.contact-card p:last-child { margin-bottom: 0; }

/* Refund-policy summary table */
.summary-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 22px;
  font-size: 14.5px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.summary-table th, .summary-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--rule);
  line-height: 1.55;
}
.summary-table th {
  background: var(--cream);
  font-weight: 600;
  color: var(--ink-strong);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.summary-table tr:last-child td { border-bottom: 0; }

.doc-footer {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-size: 13.5px;
  color: var(--mute);
}

/* Visible breadcrumb sits in a wide container on legal pages */
.page-privacy .crumb,
.page-terms .crumb,
.page-sales-policy .crumb,
.page-health-safety .crumb { padding: 18px 0 0; }

/* ════════════ UI-consistency sweep (2026-06-28) ════════════
 * Styles ported classes that had no CSS rule, bringing faq / tickets /
 * school-trips / photo-tour / toddlers / legal heroes up to the homepage
 * spacing standard. page.css loads only on the native WP pages, so nothing
 * here touches the homepage. */

/* Simple single-column inner hero (faq, tickets, toddlers, school-trips, photo-tour, plan-your-day) */
.t-hero { position: relative; padding: var(--hero-top) 0 var(--hero-bottom); text-align: center; overflow: hidden; }
.t-hero .container { position: relative; z-index: 2; }
.t-hero h1 { margin-top: 8px; }
/* Inner-hero H1: match the other inner heroes' size (was inheriting the 84px/1.02 homepage
   marquee, whose tight leading made wrapped headings like /tickets nearly overlap) and use a
   looser line-height since these headings wrap to 2+ lines. */
.t-hero .h1 { font-size: clamp(40px, 6.4vw, 72px); line-height: 1.1; }
.t-hero .lede { margin: 22px auto 0; max-width: 60ch; }
.t-hero .reassure-strip,
.t-hero .hero-ctas { justify-content: center; }
/* Framed hero photo on the otherwise text-only Tickets & FAQ heroes (client
   round 2026-07: these pages felt too text-heavy — add a warm visual). */
.t-hero-photo { max-width: 860px; margin: 34px auto 0; }
.t-hero-photo img { display: block; width: 100%; height: auto; }
@media (max-width: 600px) { .t-hero-photo { margin-top: 26px; } }
/* Tickets hero on phones: the full-bleed photo fades to background at the bottom,
   so pull the heading up to overlay that faded band — saves vertical space, same
   pattern as the homepage hero (client 2026-07). */
@media (max-width: 720px) {
  /* ONLY heroes that actually contain a photo carousel (tickets) — text-first
     .t-hero pages (faq, house-rules, plan-your-day, …) have no image to overlay,
     so they keep normal flow and are NOT pulled up under the breadcrumb.
     display:block so the negative top-margin pulls the line up (inline-block ignores it). */
  .t-hero:has(.hero-carousel) .eyebrow-script { display: block; margin-top: -150px; }
  .t-hero:has(.hero-carousel) .eyebrow-script,
  .t-hero:has(.hero-carousel) .h1,
  .t-hero:has(.hero-carousel) .lede { position: relative; z-index: 3; }
  .t-hero:has(.hero-carousel) .h1 { text-shadow: 0 1px 10px rgba(255, 252, 246, .92), 0 0 3px rgba(255, 252, 246, .7); }
}

/* Reassure fact-strip in faq + tickets heroes */
.reassure-strip { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; font-size: 14px; color: var(--mute); }
.reassure-strip span { display: inline-flex; align-items: center; gap: 8px; }
.reassure-strip svg { color: var(--generous, #43AA8B); flex-shrink: 0; }

/* FAQ page — topic jump nav (pill chips) */
.jump-sec { padding: 10px 0 34px; }
.jump-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 8px; }
.jump-nav a { display: inline-flex; align-items: center; min-height: 36px; padding: 8px 16px; border-radius: 999px; background: var(--paper); border: 1.5px solid var(--uforea-yellow); font-size: 14px; font-weight: 600; color: var(--ink-strong); }
.jump-nav a:hover { background: var(--yellow-soft); }
.jump-nav a:focus-visible { outline: 3px solid var(--uforea-yellow); outline-offset: 2px; }

/* FAQ page — six stacked category sections alternate wash so they read as bands */
.faq-cat:nth-of-type(even) { background: var(--sky); }

/* ── Tickets page (scoped to body.page-tickets) ── */
body.page-tickets .pricing     { padding: var(--section-y) 0; background: var(--paper); }
body.page-tickets .included    { padding: var(--section-y) 0; background: var(--cream); }
body.page-tickets .membership  { padding: var(--section-y) 0; background: var(--blush); }
body.page-tickets .voucher-sec { padding: var(--section-y) 0; background: var(--paper); }
body.page-tickets .tickets-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 40px auto 0; align-items: stretch; }
@media (max-width: 560px) { body.page-tickets .tickets-grid { grid-template-columns: 1fr; } }
/* Day-vs-Family comparison cards: flex column so CTAs bottom-align across the pair */
body.page-tickets .pass-card { display: flex; flex-direction: column; }
body.page-tickets .pass-card p.terms { flex: 1 1 auto; }
body.page-tickets .pass-ctas { display: grid; gap: 10px; margin-top: 18px; }
body.page-tickets .pass-ctas .cta { margin-top: 0; }
/* Specificity must beat `.ticket .price-row span:last-child` (which colours the
   price ink-black + serif) — the chip is the last element child of its span. */
body.page-tickets .ticket .price-row .save-chip { display: inline-block; background: var(--generous-text, #1F6B53); color: #fff; font-family: 'Poppins', system-ui, sans-serif; font-weight: 700; font-size: 10.5px; letter-spacing: .02em; line-height: 1.5; padding: 3px 10px; border-radius: 999px; margin-right: 7px; vertical-align: middle; }
body.page-tickets .price-row small { color: var(--mute); font-weight: 400; }
/* What's-included card */
body.page-tickets .included-card { max-width: 900px; margin: 0 auto; background: var(--paper); border: var(--card-frame); border-radius: var(--r-card); padding: 30px 32px; }
body.page-tickets .included-card > .h3 { margin: 0 0 18px; text-align: center; }
body.page-tickets .inc-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px dashed rgba(63,63,63,.1); }
body.page-tickets .inc-item:last-child { border-bottom: 0; }
body.page-tickets .inc-item svg { color: var(--generous, #43AA8B); flex-shrink: 0; margin-top: 2px; }
body.page-tickets .inc-item strong { display: block; color: var(--ink-strong); }
body.page-tickets .inc-item span { color: var(--mute); font-size: 14px; }
/* Membership cards */
body.page-tickets .member-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 880px; margin: 40px auto 0; }
@media (max-width: 760px) { body.page-tickets .member-grid { grid-template-columns: 1fr; } }
body.page-tickets .member-card { display: flex; flex-direction: column; background: var(--paper); border: var(--card-frame); border-radius: var(--r-card); padding: 28px 26px; box-shadow: var(--shadow-card); }
body.page-tickets .member-card .tier { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px; font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-text); background: var(--cream); border-radius: 4px; position: relative; }
body.page-tickets .member-card .tier::before { content: ""; display: inline-block; width: 14px; height: 1px; background: var(--uforea-yellow); }
body.page-tickets .member-card .h3 { margin: 6px 0 4px; }
body.page-tickets .big-price { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 36px; color: var(--ink-strong); margin: 6px 0 16px; }
body.page-tickets .big-price small { font-size: 13px; font-weight: 400; color: var(--mute); }
body.page-tickets .member-card ul { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; display: grid; gap: 10px; }
body.page-tickets .member-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
body.page-tickets .member-card li svg { color: var(--generous, #43AA8B); flex-shrink: 0; margin-top: 2px; }
body.page-tickets .member-card .cta { width: 100%; justify-content: center; margin-top: auto; }
body.page-tickets .payback { max-width: 760px; margin: 26px auto 0; text-align: center; color: var(--mute); font-size: 14px; line-height: 1.65; }
/* Voucher */
body.page-tickets .voucher-card { max-width: 640px; margin: 0 auto; text-align: center; }
body.page-tickets .voucher-form { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 22px; }
body.page-tickets .voucher-form input { flex: 1; min-width: 220px; padding: 14px 18px; border: 1.5px solid rgba(63,63,63,.2); border-radius: 999px; font: inherit; letter-spacing: .1em; text-transform: uppercase; }
body.page-tickets .voucher-form input:focus-visible { outline: 3px solid var(--uforea-yellow); outline-offset: 2px; border-color: var(--uforea-yellow); }

/* Refund-policy summary table — horizontal scroll on small screens instead of edge overflow */
@media (max-width: 600px) { .summary-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; } }

/* ════════════ Ported page-component CSS (2026-06-29) ════════════
 * design-v2 had these component styles in per-page <style> blocks that were
 * dropped during the PHP port, leaving the markup unstyled. Ported here from
 * design-v2 source, scoped to each page body class. */
body.page-plan-your-day .section--paper { background: var(--paper); }
body.page-plan-your-day .section--cream { background: var(--cream); }
body.page-plan-your-day .section--sky { background: var(--sky); }
body.page-plan-your-day .section--lav { background: var(--lavender); }
body.page-plan-your-day .hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
body.page-plan-your-day .hours-card { background: var(--paper); border: var(--card-frame); border-radius: var(--r-card); padding: 26px 24px; }
body.page-plan-your-day .hours-card .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--yellow-soft); color: var(--gold-text); display: grid; place-items: center; margin-bottom: 14px; }
body.page-plan-your-day .hours-card h3 { font-size: 19px; margin-bottom: 8px; }
body.page-plan-your-day .hours-card p { color: var(--ink); font-size: 14.5px; line-height: 1.6; margin: 0; }
body.page-plan-your-day .hours-card .big { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 26px; color: var(--ink-strong); display: block; margin-bottom: 4px; }
body.page-plan-your-day .split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: start; margin-top: 36px; }
body.page-plan-your-day .split img { border-radius: 18px; width: 100%; height: auto; }
body.page-plan-your-day .travel-box { background: var(--paper); border: var(--card-frame); border-radius: var(--r-card); padding: 24px 26px; }
body.page-plan-your-day .travel-box h3 { font-size: 18px; margin-bottom: 6px; }
body.page-plan-your-day .travel-box .addr { font-size: 14.5px; color: var(--ink); line-height: 1.6; margin: 0 0 16px; }
body.page-plan-your-day .travel-box .addr strong { color: var(--ink-strong); }
body.page-plan-your-day .drive-list { list-style: none; padding: 0; margin: 0; }
body.page-plan-your-day .drive-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 11px 0; border-bottom: 1px dashed rgba(63,63,63,.14); font-size: 14.5px; }
body.page-plan-your-day .drive-list li:last-child { border-bottom: 0; }
body.page-plan-your-day .drive-list a { font-weight: 600; color: var(--ink-strong); text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 3px; }
body.page-plan-your-day .drive-list .mins { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--gold-text); white-space: nowrap; }
body.page-plan-your-day .checklist { background: var(--paper); border: var(--card-frame); border-radius: var(--r-card); padding: 30px 32px; margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 36px; }
body.page-plan-your-day .check-item { display: flex; gap: 13px; align-items: flex-start; padding: 11px 0; border-bottom: 1px dashed rgba(63,63,63,.12); }
body.page-plan-your-day .check-item:last-child, body.page-plan-your-day .checklist .check-item:nth-last-child(2):nth-child(odd) { border-bottom: 1px dashed rgba(63,63,63,.12); }
body.page-plan-your-day .check-box { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; background: var(--mint); color: var(--generous); display: grid; place-items: center; margin-top: 1px; }
body.page-plan-your-day .check-item strong { display: block; color: var(--ink-strong); font-size: 15px; }
body.page-plan-your-day .check-item span { color: var(--mute); font-size: 13.5px; line-height: 1.5; }
body.page-plan-your-day .facility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
body.page-plan-your-day .facility { background: var(--paper); border: var(--card-frame); border-radius: var(--r-card); padding: 22px 22px; }
body.page-plan-your-day .facility .ico { width: 40px; height: 40px; border-radius: 11px; background: var(--sky); color: var(--trustworthy-text); display: grid; place-items: center; margin-bottom: 12px; }
body.page-plan-your-day .facility h3 { font-size: 16.5px; margin-bottom: 6px; }
body.page-plan-your-day .facility p { color: var(--mute); font-size: 13.5px; line-height: 1.6; margin: 0; }
body.page-plan-your-day .steps { display: grid; gap: 16px; margin-top: 36px; max-width: 920px; margin-left: auto; margin-right: auto; }
body.page-plan-your-day .step { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; background: var(--paper); border: var(--card-frame); border-radius: var(--r-card); padding: 24px 26px; }
body.page-plan-your-day .step .num { width: 46px; height: 46px; border-radius: 999px; background: var(--uforea-yellow); color: var(--ink-strong); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 20px; display: grid; place-items: center; box-shadow: 0 5px 0 var(--yellow-deep); }
body.page-plan-your-day .step .when { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-text); display: block; margin-bottom: 4px; }
body.page-plan-your-day .step h3 { font-size: 19px; margin-bottom: 7px; }
body.page-plan-your-day .step p { color: var(--ink); font-size: 14.5px; line-height: 1.65; margin: 0; }
body.page-plan-your-day .step p a { font-weight: 600; color: var(--ink-strong); text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 3px; }
body.page-plan-your-day .rules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 36px; margin-top: 32px; background: var(--paper); border: var(--card-frame); border-radius: var(--r-card); padding: 30px 32px; }
body.page-plan-your-day .rule { display: flex; gap: 12px; align-items: flex-start; }
body.page-plan-your-day .rule svg { flex: 0 0 auto; color: var(--passion-text); margin-top: 2px; }
body.page-plan-your-day .rule strong { display: block; color: var(--ink-strong); font-size: 15px; }
body.page-plan-your-day .rule span { color: var(--mute); font-size: 13.5px; line-height: 1.55; }
body.page-plan-your-day .rule a { color: var(--ink-strong); font-weight: 600; text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 3px; }
body.page-best-indoor-playground-for-toddlers-penang .need-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; }
body.page-best-indoor-playground-for-toddlers-penang .need-item { display: flex; gap: 14px; align-items: flex-start; background: var(--paper); border: var(--card-frame); border-radius: var(--r-card); padding: 20px 22px; }
body.page-best-indoor-playground-for-toddlers-penang .prose.alt .need-item { background: var(--paper); }
body.page-best-indoor-playground-for-toddlers-penang .need-item .tick { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 999px; background: var(--mint); color: var(--generous-text); display: grid; place-items: center; margin-top: 2px; }
body.page-best-indoor-playground-for-toddlers-penang .need-item strong { display: block; color: var(--ink-strong); font-family: 'Playfair Display', serif; font-size: 17px; margin-bottom: 4px; }
body.page-best-indoor-playground-for-toddlers-penang .need-item span { color: var(--ink); font-size: 14.5px; line-height: 1.6; }
body.page-best-indoor-playground-for-toddlers-penang .zone-card .age { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-text); }
body.page-best-indoor-playground-for-toddlers-penang .zone-card .zlink { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: var(--ink-strong); text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 3px; text-decoration-thickness: 2px; }
body.page-best-indoor-playground-for-toddlers-penang .zone-card .zlink:hover { color: var(--gold-text); }
body.page-best-indoor-playground-for-toddlers-penang .panel { padding: var(--section-y) 0; }
body.page-best-indoor-playground-for-toddlers-penang .panel.quiet { background: var(--sky); }
body.page-best-indoor-playground-for-toddlers-penang .panel.clean { background: var(--paper); }
body.page-best-indoor-playground-for-toddlers-penang .panel.cost { background: var(--peach); }
body.page-best-indoor-playground-for-toddlers-penang .panel-card { max-width: 880px; margin: 0 auto; background: var(--paper); border: var(--card-frame); border-radius: var(--r-card); padding: 38px 40px; }
body.page-best-indoor-playground-for-toddlers-penang .panel.quiet .panel-card { background: var(--paper); }
body.page-best-indoor-playground-for-toddlers-penang .panel-card .lede { max-width: 64ch; }
body.page-best-indoor-playground-for-toddlers-penang .panel-card p { font-size: 16px; line-height: 1.72; color: var(--ink); margin: 0 0 16px; }
body.page-best-indoor-playground-for-toddlers-penang .panel-card p a { font-weight: 600; color: var(--ink-strong); text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 3px; text-decoration-thickness: 2px; }
body.page-best-indoor-playground-for-toddlers-penang .panel-card p a:hover { color: var(--gold-text); }
body.page-best-indoor-playground-for-toddlers-penang .fact-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 4px; }
body.page-best-indoor-playground-for-toddlers-penang .fact-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--cream); border: 1px solid var(--uforea-yellow); border-radius: 999px; padding: 8px 16px; font-size: 13.5px; font-weight: 600; color: var(--ink-strong); }
body.page-best-indoor-playground-for-toddlers-penang .fact-chip svg { color: var(--generous); flex: 0 0 auto; }
body.page-best-indoor-playground-for-toddlers-penang .price-mini { width: 100%; border-collapse: collapse; margin: 8px 0 22px; }
body.page-best-indoor-playground-for-toddlers-penang .price-mini th, body.page-best-indoor-playground-for-toddlers-penang .price-mini td { text-align: left; padding: 12px 14px; border-bottom: 1px dashed rgba(63,63,63,.16); font-size: 15px; }
body.page-best-indoor-playground-for-toddlers-penang .price-mini th { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--mute); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; }
body.page-best-indoor-playground-for-toddlers-penang .price-mini td:last-child { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--ink-strong); }
body.page-best-indoor-playground-for-toddlers-penang .price-mini .free td:last-child { color: var(--generous-text); }
body.page-best-indoor-playground-for-toddlers-penang .tips-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; max-width: 760px; }
body.page-best-indoor-playground-for-toddlers-penang .tips-list li { display: flex; gap: 14px; align-items: flex-start; background: var(--paper); border: var(--card-frame); border-radius: var(--r-card); padding: 18px 20px; font-size: 15px; line-height: 1.6; color: var(--ink); }
body.page-best-indoor-playground-for-toddlers-penang .tips-list .n { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 999px; background: var(--uforea-yellow); color: var(--ink-strong); display: grid; place-items: center; font-weight: 700; font-family: 'Playfair Display', serif; font-size: 15px; }
body.page-best-indoor-playground-for-toddlers-penang .tips-list strong { color: var(--ink-strong); }
/* Mobile: collapse the ported multi-column grids to 1 column (design-v2's
   responsive rules weren't carried over — these overflowed at <=760px). */
@media (max-width: 760px) {
  body.page-plan-your-day .hours-grid,
  body.page-plan-your-day .facility-grid,
  body.page-plan-your-day .checklist,
  body.page-plan-your-day .rules-grid,
  body.page-plan-your-day .split,
  body.page-best-indoor-playground-for-toddlers-penang .need-grid { grid-template-columns: 1fr; }
}

/* ════════════ Visit/FAQ refinement round (2026-07) ════════════ */

/* FAQ page — sans-serif small-caps category label (replaces the Italianno
   .eyebrow-script in category heads; client: no script fonts in FAQ category UI). */
.faq-cat-label {
  display: block;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-text);
}

/* Keyboard focus ring on FAQ accordion summaries (all pages loading page.css) */
.faq-item summary:focus-visible {
  outline: 3px solid var(--uforea-yellow);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Mobile rhythm — compress this file's 80–100px section bands to ~56px.
   (Tickets-scoped bands are handled in the tickets block below.) */
@media (max-width: 720px) {
  .map-section,
  .transport,
  .neigh,
  .page-visit .faq,
  .cta-module,
  .values { padding: var(--section-y) 0; }
  .lander-body,
  .pairs { padding: var(--section-y) 0; }
  body.page-best-indoor-playground-for-toddlers-penang .panel { padding: var(--section-y) 0; }
  body.page-school-trips-kindergarten-visits-penang .st-band { padding: var(--section-y) 0; }
  body.page-school-trips-kindergarten-visits-penang .st-worlds { padding: var(--section-y) 0; }
  .doc-body { padding: 0 0 56px; }
}

/* ── Tickets 2026-07 ── */
/* Important-notes band (after hero, before pricing) */
body.page-tickets .ticket-notes { padding: var(--section-y) 0; background: var(--paper); }
/* The "important bits" strip leads straight into pricing — tighten the gap between
   them on phones so they read as one booking flow (client 2026-07). */
@media (max-width: 700px) { body.page-tickets .ticket-notes { padding-bottom: 6px; } }

/* ─── Tickets page: soft pastel gradient wash behind the whole page (client mockup
   2026-07 — "the background has some color"). Warm pink/peach on the left, cool
   blue/mint on the right. Section BANDS go transparent so it reads as one continuous
   background; the cards (table, day-pass, notes, membership) keep their own fills. ─── */
body.page-tickets { background-color: var(--paper); }
/* Fixed pseudo-element (not background-attachment:fixed, which is unreliable on iOS)
   holds the wash steady behind the scrolling content. */
body.page-tickets::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(62vw 48vh at 0% 3%,    var(--blush),    transparent 52%),
    radial-gradient(58vw 46vh at 100% 12%, var(--sky),      transparent 52%),
    radial-gradient(54vw 44vh at 100% 64%, var(--mint),     transparent 56%),
    radial-gradient(56vw 46vh at 0% 84%,   var(--lavender), transparent 55%);
}
body.page-tickets .ticket-notes,
body.page-tickets .pricing,
body.page-tickets .included,
body.page-tickets .membership,
body.page-tickets .voucher-sec,
body.page-tickets .tickets-explore,
body.page-tickets .tickets-deals,
body.page-tickets section.faq,
body.page-tickets .cta-module { background: transparent; }
body.page-tickets .notes-card { max-width: 900px; margin: 0 auto; background: var(--yellow-soft); border: var(--card-frame); border-radius: var(--r-card); padding: 24px 28px; }
body.page-tickets .notes-card .h3 { margin: 0 0 14px; text-align: center; font-size: 20px; }
body.page-tickets .notes-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px 28px; }
body.page-tickets .notes-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--ink); }
body.page-tickets .notes-list li svg { color: var(--generous-text, #1F6B53); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 640px) { body.page-tickets .notes-list { grid-template-columns: 1fr; } }

/* Age/price chart — 3 columns, no horizontal scroll needed at 375px */
/* Regular Day-Pass Rate table — 4 cols (Guest · Age · Weekday · Weekend), client 2026-07 */
body.page-tickets .price-table-wrap { max-width: 760px; margin: 36px auto 0; background: var(--paper); border: var(--card-frame); border-radius: var(--r-card); box-shadow: var(--shadow-card); overflow: hidden; }
body.page-tickets .price-table { width: 100%; border-collapse: collapse; font-size: 15px; }
body.page-tickets .price-table caption { caption-side: top; padding: 18px 18px 12px; font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 19px; color: var(--ink-strong); text-align: center; }
body.page-tickets .price-table th,
body.page-tickets .price-table td { padding: 12px 16px; text-align: left; vertical-align: middle; }
body.page-tickets .price-table thead th { background: var(--yellow-soft); font-family: 'Poppins', system-ui, sans-serif; font-weight: 600; font-size: 12px; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-strong); line-height: 1.25; vertical-align: bottom; }
body.page-tickets .price-table thead th:nth-child(3),
body.page-tickets .price-table thead th:nth-child(4),
body.page-tickets .price-table tbody td:nth-child(3),
body.page-tickets .price-table tbody td:nth-child(4) { text-align: right; white-space: nowrap; }
body.page-tickets .price-table thead th:nth-child(2),
body.page-tickets .price-table tbody td:nth-child(2) { text-align: center; color: var(--mute); font-weight: 500; white-space: nowrap; }
body.page-tickets .price-table tbody th { font-weight: 600; color: var(--ink-strong); }
body.page-tickets .price-table tbody td:nth-child(3),
body.page-tickets .price-table tbody td:nth-child(4) { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
body.page-tickets .price-table tbody tr:nth-child(even) { background: var(--cream); }
body.page-tickets .price-table tbody tr { border-top: 1px dashed rgba(63,63,63,.12); }
/* Narrow screens: let the 4-col table scroll inside its rounded frame rather
   than clip the last column, and tighten cells so it usually fits without scroll. */
@media (max-width: 560px) { body.page-tickets .price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; } }
@media (max-width: 480px) { body.page-tickets .price-table { font-size: 12.5px; } body.page-tickets .price-table th, body.page-tickets .price-table td { padding: 9px 8px; } body.page-tickets .price-table caption { font-size: 16px; } body.page-tickets .price-table thead th { font-size: 10.5px; letter-spacing: 0; } }

/* Checkout date note under the pass cards */
body.page-tickets .date-note { max-width: 640px; margin: 20px auto 0; text-align: center; font-size: 14px; color: var(--mute); }

/* ════════════════ Tickets page — 2026-07 amendment additions ════════════════ */
body.page-tickets .t-hero .hero-carousel { margin: 6px 0 28px; }

/* Before-you-book: House Rules link */
body.page-tickets .notes-houserules { margin: 16px 0 0; text-align: center; }
body.page-tickets .notes-houserules a { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ink-strong); text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 4px; }
body.page-tickets .notes-houserules a:hover { color: var(--gold-text); }

/* Single Day-Pass buy card (replaces the old 2-up Day/Family grid) */
body.page-tickets .daypass-buy { max-width: 540px; margin: 30px auto 0; }
body.page-tickets .daypass-buy .pass-card { text-align: center; align-items: center; }
body.page-tickets .daypass-buy .pass-ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
@media (max-width: 480px) { body.page-tickets .daypass-buy .pass-ctas { grid-template-columns: 1fr; } }
body.page-tickets .daypass-vip { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; color: var(--ink-strong); text-decoration: underline; text-decoration-color: var(--uforea-yellow); text-underline-offset: 4px; }
body.page-tickets .daypass-vip:hover { color: var(--gold-text); }
body.page-tickets .daypass-vip-row { text-align: center; margin: 22px auto 0; }
body.page-tickets .daypass-vip-row .daypass-vip { margin-top: 0; }

/* Every ticket includes — collapsible accordion */
body.page-tickets .included-acc { max-width: 900px; margin: 0 auto; background: var(--yellow-soft); border: var(--card-frame); border-radius: var(--r-card); padding: 4px 26px; box-shadow: var(--shadow-card); }
body.page-tickets .included-acc > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 4px; }
body.page-tickets .included-acc > summary::-webkit-details-marker { display: none; }
body.page-tickets .included-acc > summary:focus-visible { outline: 3px solid var(--uforea-yellow); outline-offset: 2px; border-radius: 8px; }
body.page-tickets .included-acc > summary .h3 { margin: 0; }
body.page-tickets .included-acc > summary .plus { width: 32px; height: 32px; border-radius: 999px; background: var(--uforea-yellow); color: var(--ink-strong); display: grid; place-items: center; flex-shrink: 0; transition: transform .3s ease; }
body.page-tickets .included-acc[open] > summary .plus { transform: rotate(45deg); }
/* While JS eases it closed the panel is still [open]; un-rotate the + immediately so
   the icon tracks the collapse (shared `.faq-closing` hook, same as the FAQ items). */
body.page-tickets .included-acc.faq-closing[open] > summary .plus { transform: rotate(0deg); }
body.page-tickets .included-acc .included-body { padding: 2px 4px 16px; }

/* Membership %OFF ribbons + featured tier */
body.page-tickets .member-card { position: relative; overflow: hidden; }
body.page-tickets .member-card.featured { border: 1.5px solid #F2A93B; box-shadow: 0 22px 44px -26px rgba(242,169,59,.9); }
body.page-tickets .save-ribbon { position: absolute; top: 16px; right: 16px; transform: none; width: auto; background: #B67A2E; color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .03em; padding: 5px 13px; border-radius: 8px; box-shadow: 0 6px 14px -8px rgba(0,0,0,.35); z-index: 2; }
body.page-tickets .save-ribbon--gold { background: #EE7B2E; color: #fff; }
body.page-tickets .member-best { display: inline-flex; align-self: flex-start; gap: 4px; background: var(--ink-strong); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; margin-bottom: 8px; }

/* Explore + Deals sections reuse .hero-wonders-grid and .event-slider */
body.page-tickets .tickets-wonders-grid { max-width: 900px; margin: 34px auto 0; }
body.page-tickets .tickets-explore, body.page-tickets .tickets-deals { padding: var(--section-y) 0; }

/* ── Client fidelity pass 2026-07 ── */
/* Rate table (left) + Day Pass buy card (right), side by side — client PC design */
body.page-tickets .pricing-cols { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: start; max-width: 980px; margin: 36px auto 0; }
body.page-tickets .pricing-cols .price-table-wrap { max-width: none; margin: 0; }
body.page-tickets .pricing-cols .daypass-buy { max-width: none; margin: 0; }
@media (max-width: 820px) { body.page-tickets .pricing-cols { grid-template-columns: 1fr; gap: 20px; } }

/* Day Pass CTAs stacked vertically (Purchase Now over Buy as a gift) */
body.page-tickets .daypass-buy .pass-ctas { grid-template-columns: 1fr; }

/* Wonders & Facilities → horizontal carousel (3 visible + a peeking 4th), not a 3×3 grid */
body.page-tickets .tickets-wonders-grid {
  display: flex; grid-template-columns: none; gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 6px;
}
body.page-tickets .tickets-wonders-grid::-webkit-scrollbar { display: none; }
body.page-tickets .tickets-wonders-grid .m-tile { flex: 0 0 31%; scroll-snap-align: start; }
@media (max-width: 700px) { body.page-tickets .tickets-wonders-grid .m-tile { flex: 0 0 62%; } }

/* "Follow us for the latest" CTA card in Updates & Deals */
body.page-tickets .follow-card {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; gap: 10px; padding: 26px 22px;
  background: var(--yellow-soft); border: 1px solid var(--uforea-yellow);
}
body.page-tickets .follow-card .follow-card-ico { width: 58px; height: 58px; border-radius: 999px; background: var(--uforea-yellow); color: var(--ink-strong); display: grid; place-items: center; }
body.page-tickets .follow-card .follow-card-body { display: flex; flex-direction: column; gap: 6px; align-items: center; padding: 0; }
body.page-tickets .follow-card .event-card-title { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 19px; color: var(--ink-strong); }
body.page-tickets .follow-card .event-card-teaser { color: var(--ink); font-size: 14px; max-width: 24ch; }
body.page-tickets .follow-card .event-card-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ink-strong); }

/* Mobile rhythm — compress this page's 80–100px section bands to ~56px */
@media (max-width: 720px) {
  body.page-tickets .pricing,
  body.page-tickets .membership { padding: var(--section-y) 0; }
  body.page-tickets .included,
  body.page-tickets .voucher-sec { padding: var(--section-y) 0; }
}

/* ── Visual-review round 3 fixes ───────────────────────────────────────── */
/* Geo-lander hero meta: hide the dot separators when the pills wrap on
   phones — orphaned dots were dangling at line edges. */
@media (max-width: 600px) {
  .hero-meta .dot { display: none; }
  .hero-meta { row-gap: 6px; }
}
/* Reassure strip: pin the check to the first text line when copy wraps. */
.reassure-strip span { align-items: flex-start; }
.reassure-strip svg { margin-top: 3px; }
/* 404 "where to" grid: five cards balanced instead of a 4+1 orphan row. */
.where-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important; }
/* Sketch-map pin: smaller bubble on phones so it stops covering the
   hand-drawn place labels or bleeding off the panel. */
@media (max-width: 600px) {
  .map-pin .pinhead { font-size: 10px; padding: 4px 8px; }
}

/* Toddler-page zone cards: pin "Explore …" links level across the row
   (2-line titles staggered them; visual review r3). */
.zcard, .zone-pick-card { display: flex; flex-direction: column; }
.zcard .zlink, .zone-pick-card .zlink { margin-top: auto; }

/* Reassure-strip items read left-aligned when the copy wraps. */
.reassure-strip span { text-align: left; }

/* ── Staging review 2026-07-17 fixes ── */
/* plan-your-day: colour-band sections had zero own padding — last line touched
   the band edge and eyebrows glued to the preceding cards. */
body.page-plan-your-day section.section { padding: 42px 0 46px; }

/* tickets: "★ Best value"/"★ Merdeka special" chips stay IN-FLOW (absolute
   corner placement collided with the 20% OFF ribbon and then the card title —
   client screenshot 2026-07-17). Row alignment is preserved instead by giving
   chip-less cards the same head start (rule below). */
body.page-tickets .member-card { position: relative; }
body.page-tickets .member-card:not(:has(.member-best)) .tier { margin-top: 32px; } /* .tier is inline-flex — vertical margin works; never override its display (kills the dash gap) */

/* geo-lander hero: stacked CTA pills nearly touched (drop-shadow ate the gap) */
@media (max-width: 600px) {
  .lander-hero .visit-ctas { gap: 16px; }
}


