/* ============================================================
   components.css — reusable UI. Brand standards pulled from the
   booking widget: pill buttons, rounded glass cards, the same
   hover-lift + active-scale feedback, single accent.
   ============================================================ */

/* ============== BUTTONS ============== */
/* Same shape/feedback as the widget .btn: pill, lift on hover,
   scale on press, disabled dimming. Hover gated to fine pointers. */
.btn {
  --btn-bg: var(--surface-2);
  --btn-fg: var(--ink);
  font-weight: 700; font-size: 16px;
  border-radius: var(--r-pill);
  padding: 14px 28px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent;
  touch-action: manipulation;
  min-height: 48px;          /* touch-target-size */
  transition: transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out),
              opacity var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out);
}
.btn svg { flex: 0 0 auto; }
.btn-lg { padding: 17px 38px; font-size: 17px; min-height: 56px; }
.btn-sm { padding: 10px 18px; font-size: 14px; min-height: 40px; }
.btn-block { width: 100%; }
/* Canonical "Book now" button — identical font, height, padding and a
   shared minimum width wherever it appears (header, page, sticky bar). */
.btn-book {
  font-size: 16px; font-weight: 700;
  min-height: 48px; padding: 0 28px;
  min-width: 150px;
}

.btn-accent  { --btn-bg: var(--accent-strong); --btn-fg: var(--accent-ink); }
.btn-primary { --btn-bg: #fff; --btn-fg: #111018; }
.btn-ghost   { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line-strong); }
.btn-glass {
  background: var(--glass-bg); color: var(--ink);
  border-color: var(--glass-brd);
  -webkit-backdrop-filter: blur(var(--glass-blur)); backdrop-filter: blur(var(--glass-blur));
}

@media (hover: hover) and (pointer: fine) {
  .btn-accent:hover  { transform: translateY(-2px); box-shadow: var(--glow); background: var(--accent); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: var(--e-2); }
  .btn-ghost:hover   { transform: translateY(-2px); border-color: var(--accent); color: #fff; }
  .btn-glass:hover   { transform: translateY(-2px); border-color: var(--accent-line); }
}
.btn:active { transform: scale(0.97); }
.btn:disabled, .btn[aria-disabled="true"] {
  opacity: 0.45; cursor: not-allowed; transform: none !important; box-shadow: none !important;
}
.btn.is-loading { color: transparent; position: relative; pointer-events: none; }
.btn.is-loading::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff;
  animation: spin 0.7s linear infinite;
}
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; color: var(--accent-soft);
  transition: gap var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.link-arrow svg { transition: transform var(--t-fast) var(--ease-out); }
.link-arrow:hover { color: #fff; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============== BADGES / CHIPS ============== */
.badge {
  font-size: 11px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-pill); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
}
.badge.accent  { background: var(--accent-tint); color: var(--accent-soft); }
.badge.spaced  { margin-bottom: var(--sp-03); }
.badge.ok      { background: rgba(52,209,126,0.15); color: var(--ok); }
.badge.warn    { background: rgba(240,179,65,0.15); color: var(--warn); }
.badge.glass   { background: var(--glass-bg); color: var(--ink); border: 1px solid var(--glass-brd);
                 -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.chip {
  font-size: var(--fs-meta); font-weight: 700; color: var(--ink-soft);
  background: var(--surface-2); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ============== CARDS (glass, rounded — widget DNA) ============== */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out);
}
.card-body { padding: clamp(1.25rem, 2vw, 1.75rem); }
.card-body h3 { margin-bottom: var(--sp-02); }
@media (hover: hover) and (pointer: fine) {
  .card.interactive:hover {
    transform: translateY(-4px);
    box-shadow: var(--e-3);
    border-color: var(--accent-line);
  }
}
.card.interactive:active { transform: scale(0.995); }

/* Blog index cards: self-contained image box + body, so cards do not
   depend on the .poster parent rules. */
.blog-card { display: flex; flex-direction: column; color: inherit; text-decoration: none; }
.blog-card:hover { text-decoration: none; }
.blog-card-media { position: relative; aspect-ratio: 16 / 10; width: 100%; overflow: hidden; }
.blog-card-media .ph { position: absolute; inset: 0; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--t-base) var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .blog-card:hover .blog-card-media img { transform: scale(1.04); }
}
.blog-card .card-body { display: flex; flex-direction: column; align-items: flex-start; }
.blog-card h3 { color: var(--ink); }

.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: blur(var(--glass-blur)); backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--r-lg);
  box-shadow: var(--glass-shadow);
}

/* Experience / game poster card — image with scrim + content overlaid */
.poster {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}
.poster .poster-media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--grad-violet);
  overflow: hidden;
}
.poster .poster-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.poster .poster-media::after {
  content: ""; position: absolute; inset: 0; background: var(--grad-scrim); z-index: 1;
}
.poster .poster-content {
  position: absolute; inset-inline: 0; bottom: 0; z-index: 2;
  padding: clamp(16px, 2vw, 22px);
}
.poster .poster-tag { margin-bottom: var(--sp-02); color: #fff; }
.poster .poster-content h3 { color: #fff; }
.poster.compact .poster-content h3 { font-size: 18px; }
.poster .poster-content .meta { color: rgba(255,255,255,0.78); margin-top: 4px; }
.poster .poster-badges { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; gap: 6px; }
@media (hover: hover) and (pointer: fine) {
  .poster:hover { transform: translateY(-5px); box-shadow: var(--e-3); border-color: var(--accent-line); }
  .poster:hover .poster-media img { transform: scale(1.06); }
}
.poster:active { transform: scale(0.99); }

/* wide landscape feature card */
.feature-tall .poster-media { aspect-ratio: 4 / 5; }
.feature-wide .poster-media { aspect-ratio: 16 / 10; }

/* ============== STAT ROW ============== */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 2vw, 28px); }
.stat { text-align: center; }
.stat .num { font-size: clamp(30px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.stat .num .grad-text { display: inline; }
.stat .lbl { font-size: var(--fs-meta); color: var(--ink-faint); font-weight: 600; margin-top: 8px; }
@media (max-width: 640px) { .stat-row { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* ============== POSTER CAROUSEL (Book your next adventure) ==============
   Reference layout: tall poster image on top, dark info panel below
   (title, subtitle, centred blurb, badge, Get tickets). Centre cards
   full strength; neighbours peek and fade at the edges. Brand kept:
   rounded cards, glass arrows, magenta accent, Carbon 4px spacing. */
.pcar-wrap { position: relative; }
.pcar {
  overflow: hidden;                /* viewport: track is transformed inside */
  padding: var(--sp-02) 0 var(--sp-05);
  cursor: grab;
  touch-action: pan-y;             /* let vertical page scroll through; we handle horizontal */
}
.pcar.is-dragging { cursor: grabbing; }
.pcar-track {
  display: flex; gap: var(--sp-05);
  width: max-content;              /* size to its children so transforms wrap cleanly */
  will-change: transform;
  /* The marquee owns this transform via JS. Never let a scroll-reveal
     animation clamp a transform onto it (that would freeze the loop). */
  animation: none !important;
}
.pcar-track .pcar-card * { user-select: none; }
.pcar-track img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }
.pcar-card {
  /* Wider than the old portrait cards so the 16:9 media reads properly
     and the body below it does not look squashed. */
  flex: 0 0 clamp(300px, 34vw, 420px);
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              opacity var(--t-base) var(--ease-out);
}
/* Landscape media. Source art arrives at mixed ratios (16:9 for the arena
   games, wider still for the escape rooms), so lock the frame and let
   object-fit do the cropping. Keeps every card identical whatever the
   source file measures. */
.pcar-media {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--grad-violet); line-height: 0;
}
.pcar-media img { width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
  transition: transform 600ms var(--ease-out); }
.pcar-media .ph { position: absolute; inset: 0; }   /* placeholder fills the same frame */
.pcar-badges { position: absolute; top: var(--sp-03); left: var(--sp-03); z-index: 2;
  display: flex; gap: var(--sp-02); }
.pcar-body {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--sp-03);
  padding: var(--sp-05) var(--sp-04);
  flex: 1 1 auto;                 /* fill card height so footers align */
  justify-content: space-between; /* push the foot (button) to the bottom */
}
/* On phones a single card no longer needs to match siblings' height, so
   don't stretch it or space-between — that was creating big vertical gaps
   between the title, description and button. Let it sit content-tight. */
@media (max-width: 640px) {
  .pcar-track { align-items: flex-start; }
  .pcar-body { flex: 0 0 auto; justify-content: flex-start; gap: var(--sp-04); }
  .pcar-card { flex-basis: min(86vw, 400px); }
}
.pcar-body h3 { color: var(--ink); font-size: 20px; line-height: 1.15; }
.pcar-sub {
  font-size: var(--fs-meta); font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-soft);
}
.pcar-desc { color: var(--ink-soft); line-height: 1.55;
  width: min(100%, 34ch); margin: 0; }
.pcar-foot { display: flex; flex-direction: column; align-items: center; gap: var(--sp-03);
  margin-top: var(--sp-02); width: 100%; }
.pcar-meta { font-size: var(--fs-meta); color: var(--ink-faint); font-weight: 600; }
.pcar-card .btn { width: 100%; max-width: 240px; }

@media (hover: hover) and (pointer: fine) {
  .pcar-card:hover { transform: translateY(-4px); box-shadow: var(--e-3);
    border-color: var(--accent-line); }
  .pcar-card:hover .pcar-media img { transform: scale(1.05); }
}
.pcar-card:active { transform: scale(0.995); }

/* Edge fade — neighbours quietly recede so the centre reads as the focus
   (information scent / one moment). Pure CSS, no JS. */
.pcar-wrap::before, .pcar-wrap::after {
  content: ""; position: absolute; top: 0; bottom: var(--sp-05);
  width: clamp(24px, 6vw, 90px); z-index: 3; pointer-events: none;
}
.pcar-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg) 0%, transparent 100%); }
.pcar-wrap::after  { right: 0; background: linear-gradient(270deg, var(--bg) 0%, transparent 100%); }
.section-alt .pcar-wrap::before { background: linear-gradient(90deg, var(--bg-1) 0%, transparent 100%); }
.section-alt .pcar-wrap::after  { background: linear-gradient(270deg, var(--bg-1) 0%, transparent 100%); }

.pcar-nav {
  position: absolute; top: calc(50% - var(--sp-05)); transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--glass-bg); border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  display: grid; place-items: center; z-index: 4; color: var(--ink);
  box-shadow: var(--e-2);
  transition: transform var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out), opacity var(--t-fast) var(--ease-out);
}
.pcar-nav:hover { transform: translateY(-50%) scale(1.08); background: var(--accent-strong); color: var(--accent-ink); border-color: transparent; }
.pcar-nav:active { transform: translateY(-50%) scale(0.95); }
.pcar-nav.prev { left: calc(var(--gutter) * -0.2); }
.pcar-nav.next { right: calc(var(--gutter) * -0.2); }
.pcar-nav[disabled] { opacity: 0; pointer-events: none; }
@media (max-width: 760px) { .pcar-nav { display: none; } }

/* Screenshot marquee: same engine as the poster carousels, but the tiles
   are landscape and image-only (no title, sub, description or buttons).
   Used on the individual game/room template. */
.pcar-wrap--shots .pcar-card {
  flex: 0 0 clamp(280px, 42vw, 460px);
  background: var(--surface-2);
}
.pcar-wrap--shots .pcar-media {
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
}
.pcar-wrap--shots .pcar-media img {
  width: 100%; height: 100%;
  object-fit: cover;                 /* fill the 16:9 frame, crop overflow */
}
.pcar-wrap--shots .pcar-media .ph {
  aspect-ratio: 16 / 9;              /* keep the landscape shape when empty */
}

/* ---------- Stacked mode (phone, <=760px) ----------
   Below the breakpoint where the arrows disappear, dragging an endless
   loop finds nobody a game — carousel.js swaps to a plain vertical list
   here instead, revealed two cards at a time via .pcar-more. Restoring
   stretch/space-between (relaxed for the old single-card marquee case
   above) plus a 2-line clamp on the blurb keeps every card the same
   height regardless of how long its tagline runs. */
.pcar-wrap.stacked::before, .pcar-wrap.stacked::after { display: none; }
.pcar-wrap.stacked .pcar-nav { display: none; }
.pcar-wrap.stacked .pcar { overflow: visible; cursor: default; touch-action: auto; padding: var(--sp-02) 0 0; }
.pcar-wrap.stacked .pcar-track {
  flex-direction: column; align-items: stretch; width: auto;
}
.pcar-wrap.stacked .pcar-card { width: 100%; flex: 1 1 auto; }
.pcar-wrap.stacked .pcar-card.pcar-card--hidden { display: none; }
.pcar-wrap.stacked .pcar-body { flex: 1 1 auto; justify-content: space-between; }
.pcar-wrap.stacked .pcar-desc {
  width: auto; max-width: none;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pcar-more {
  display: none; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: var(--sp-04); font-family: inherit;
  padding: 13px 20px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line); color: var(--ink);
  font-weight: 700; font-size: 15px; cursor: pointer;
  transition: border-color var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.pcar-more:hover { border-color: var(--accent-line); }
.pcar-more:active { transform: scale(0.98); }
.pcar-more svg { flex: 0 0 auto; transition: transform var(--t-fast) var(--ease-out); }
.pcar-more[aria-expanded="true"] svg { transform: rotate(180deg); }
.pcar-wrap.stacked .pcar-more:not([hidden]) { display: flex; }
/* ============== POSTER CAROUSEL END ============== */

/* ============== HORIZONTAL SCROLLER (Sandbox-style, above fold) ============== */
.scroller-wrap { position: relative; }
.scroller {
  display: flex; gap: clamp(12px, 1.6vw, 20px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 0 18px; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: var(--gutter);
}
.scroller::-webkit-scrollbar { display: none; }
.scroller > * {
  flex: 0 0 clamp(260px, 26vw, 340px);
  scroll-snap-align: start;
}
.scroller-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--glass-bg); border: 1px solid var(--glass-brd);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  display: grid; place-items: center; z-index: 4; color: #fff;
  box-shadow: var(--e-2);
  transition: transform var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out), opacity var(--t-fast) var(--ease-out);
}
.scroller-nav:hover { transform: translateY(-50%) scale(1.08); background: var(--accent-strong); }
.scroller-nav:active { transform: translateY(-50%) scale(0.95); }
.scroller-nav.prev { left: -8px; }
.scroller-nav.next { right: -8px; }
.scroller-nav[disabled] { opacity: 0; pointer-events: none; }
@media (max-width: 760px) { .scroller-nav { display: none; } }

/* ============== FORMS ============== */
.form { max-width: 520px; }
.field { margin-bottom: 16px; }
.field label {
  font-size: var(--fs-meta); font-weight: 700; color: var(--ink-soft);
  display: block; margin-bottom: 7px;
}
.field .req { color: var(--accent-soft); }
.field input, .field select, .field textarea {
  width: 100%; font-size: 16px; padding: 14px 16px;
  border-radius: var(--r-sm); background: var(--surface-3);
  border: 1.5px solid var(--line); color: var(--ink);
  min-height: 48px;
  transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint); background: var(--surface-2);
}
.field .helper { font-size: var(--fs-meta); color: var(--ink-faint); margin-top: 6px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--bad); }
.field .error {
  font-size: var(--fs-meta); color: var(--bad); margin-top: 6px;
  display: none; align-items: center; gap: 6px;
}
.field.invalid .error { display: flex; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* password field with show/hide */
.field.pw { position: relative; }
.field.pw .toggle-pw {
  position: absolute; right: 10px; top: 35px; height: 38px; width: 40px;
  display: grid; place-items: center; color: var(--ink-faint); border-radius: 8px;
}
.field.pw .toggle-pw:hover { color: var(--ink); }

/* checkbox / consent rows */
.check {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: var(--fs-meta); color: var(--ink-soft); line-height: 1.5;
  cursor: pointer; padding: 4px 0;
}
.check input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px; flex: 0 0 auto; margin-top: 1px;
  border: 1.5px solid var(--line-strong); border-radius: 7px; background: var(--surface-3);
  display: grid; place-items: center;
  transition: background var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.check input[type="checkbox"]:checked { background: var(--accent-strong); border-color: var(--accent-strong); }
.check input[type="checkbox"]:checked::after {
  content: ""; width: 6px; height: 11px; border: solid #fff; border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) translateY(-1px);
}
.check a { color: var(--accent-soft); text-decoration: underline; }

/* form-level feedback */
.form-flash {
  padding: 13px 16px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600;
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.form-flash.ok  { background: rgba(52,209,126,0.12); color: var(--ok); border: 1px solid rgba(52,209,126,0.3); }
.form-flash.bad { background: rgba(255,95,86,0.10); color: var(--bad); border: 1px solid rgba(255,95,86,0.3); }

/* ============== FAQ / accordion ============== */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 0; padding-right: 40px;
  font-weight: 700; font-size: 17px; position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; font-size: 24px; font-weight: 400;
  color: var(--accent-soft); transition: transform var(--t-base) var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding-bottom: var(--sp-05); color: var(--ink-soft); line-height: 1.75; }
.faq-item .faq-body p { width: min(100%, var(--measure)); }

/* ============== PRICE CARDS ============== */
.price-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(22px, 2.5vw, 30px);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.price-card.featured {
  border-color: var(--accent-line);
  background: linear-gradient(180deg, var(--accent-tint), var(--surface) 40%);
  box-shadow: var(--glow);
}
.price-card .price { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; }
.price-card .price small { font-size: 14px; font-weight: 600; color: var(--ink-faint); }
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-size: var(--fs-body); line-height: 1.55; }
.feature-list li::before {
  content: ""; flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%;
  background: var(--accent-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ff85ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.price-card .btn { margin-top: auto; }

/* ============== TESTIMONIAL ============== */
.quote-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.quote-card .stars { color: var(--warn); letter-spacing: 2px; font-size: 15px; margin-bottom: 12px; }
.quote-card blockquote { color: var(--ink); line-height: 1.6; }
.quote-card .cite { margin-top: 14px; font-size: var(--fs-meta); color: var(--ink-faint); font-weight: 700; }
.quote-card .cite .src { color: var(--accent-soft); }

/* ============== PROSE (blog / policy bodies) ============== */
.prose { width: min(100%, var(--measure)); color: var(--ink-soft); }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { color: var(--ink); margin-top: 1.7em; font-size: clamp(1.5rem, 3vw, 1.9rem); line-height: 1.25; }
.prose h3 { color: var(--ink); margin-top: 1.45em; font-size: clamp(1.2rem, 2.4vw, 1.4rem); line-height: 1.3; }
.prose p, .prose li { line-height: 1.8; }
.prose ul { list-style: disc; padding-left: 1.3em; }
.prose ul li { margin-top: 0.5em; }
.prose a { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }

/* ============== REVIEW PLATFORM CARDS (Google / Facebook / Tripadvisor) ==============
   Social proof up front: each platform's logo, five gold stars, the
   score, and a button through to that platform's review page. */
.rating-platforms {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-04);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.rplat {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--sp-03);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--sp-05) var(--sp-04);
  transition: border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .rplat:hover { border-color: var(--accent-line); transform: translateY(-3px); }
}
.rplat-logo { height: 34px; width: auto; display: block; }
.rplat-stars { display: inline-flex; gap: 3px; color: #ffb400; font-size: 22px; line-height: 1; }
.rplat-score { font-size: var(--fs-meta); color: var(--ink-faint); font-weight: 600; }
.rplat-score strong { color: var(--ink); }
.rplat .btn { margin-top: var(--sp-02); }
@media (max-width: 760px) { .rating-platforms { grid-template-columns: 1fr; } }

/* ============== CONTACT CARD (repeat of where + when, above footer) ==============
   So a visitor ready to come never has to hunt for address or hours. */
.contact-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}
.contact-card .cc-block + .cc-block { margin-top: var(--sp-05); }
.contact-card h3 { color: var(--ink); margin-bottom: var(--sp-03); }
.cc-line { display: flex; gap: var(--sp-03); align-items: flex-start;
  color: var(--ink-soft); font-size: var(--fs-body); line-height: 1.5; }
.cc-line + .cc-line { margin-top: var(--sp-03); }
.cc-line svg { flex: 0 0 auto; color: var(--accent-soft); margin-top: 2px; }
.cc-line a { color: var(--ink-soft); }
.cc-line a:hover { color: var(--accent-soft); }
.cc-hours { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-02) var(--sp-05);
  font-size: var(--fs-body); }
.cc-hours dt { color: var(--ink-soft); font-weight: 600; }
.cc-hours dd { color: var(--ink-faint); margin: 0; text-align: right; font-variant-numeric: tabular-nums; }
.cc-hours .today dt, .cc-hours .today dd { color: var(--ink); }
.cc-hours .closed { color: var(--ink-dim); }
.contact-card .btn-row { margin-top: var(--sp-05); }
@media (max-width: 760px) { .contact-card { grid-template-columns: 1fr; } }
/* Pre-booking alert in "Plan your visit": amber callout that stresses the
   venue is booking-only. Sits above the map. */
.cc-alert { display: flex; gap: 12px; padding: 16px 18px; border-radius: var(--r-lg);
  background: rgba(255,176,75,0.12); border: 1px solid rgba(255,176,75,0.45); margin-top: 20px; }
.cc-alert svg { flex: 0 0 auto; color: #ffb04b; margin-top: 2px; }
.cc-alert strong { display: block; color: var(--ink); font-size: 16px; margin-bottom: 4px; }
.cc-alert p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
/* Reassurance note on single game pages: calm, friendly callout that VR
   motion sickness is minimal. */
.comfort-note { display: flex; gap: 14px; padding: 20px 22px; border-radius: var(--r-lg);
  background: rgba(52,224,161,0.10); border: 1px solid rgba(52,224,161,0.38); }
.comfort-note svg { flex: 0 0 auto; color: #34e0a1; margin-top: 2px; }
.comfort-note h3 { color: var(--ink); font-size: 18px; margin-bottom: 6px; }
.comfort-note p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

/* ============== VIDEO BAND (autoplay showreel) ==============
   16:9 responsive frame, rounded to match the brand, glassy border. */
.video-band { position: relative; }
.video-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--e-3);
  background: #000;
}
.video-frame iframe, .video-frame video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ============== GIFT VOUCHER SECTION — GOLDEN TICKET ==============
   A dimmed-gold "golden ticket": warm gradient wash, gold glow and border,
   a dashed perforation frame (::before) and a slow gold shine sweep (::after).
   The wash stays dark enough that the light copy keeps AA contrast. */
.gift-panel {
  position: relative; overflow: hidden; z-index: 0;
  border-radius: var(--r-2xl); border: 1px solid rgba(255,205,90,0.55);
  background:
    radial-gradient(620px 340px at 85% -18%, rgba(255,193,74,0.24), transparent 60%),
    radial-gradient(520px 300px at 0% 120%, rgba(214,158,44,0.18), transparent 55%),
    linear-gradient(135deg, #241a06 0%, #17130a 55%, #120f0c 100%);
  padding: clamp(1.75rem, 4vw, 3.5rem);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  box-shadow: var(--e-3), 0 0 0 1px rgba(255,205,90,0.12), 0 14px 50px rgba(255,178,48,0.20);
}
.gift-panel > * { position: relative; z-index: 1; }
/* Perforated ticket frame */
.gift-panel::before {
  content: ""; position: absolute; inset: 14px; z-index: 3; pointer-events: none;
  border: 2px dashed rgba(255,210,110,0.42); border-radius: calc(var(--r-2xl) - 10px);
}
/* Slow gold shine sweeping across the ticket */
.gift-panel::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 60%; z-index: 2; pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255,231,170,0.16) 45%, rgba(255,231,170,0.05) 60%, transparent 100%);
  transform: translateX(-120%); animation: giftShine 7s ease-in-out infinite;
}
@keyframes giftShine { 0%, 55% { transform: translateX(-120%); } 88%, 100% { transform: translateX(230%); } }
@media (prefers-reduced-motion: reduce) { .gift-panel::after { animation: none; } }
.gift-panel h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: var(--sp-04); }
.gift-panel p { color: var(--ink-soft); width: min(100%, var(--measure-lead)); }
.gift-panel .btn-row { margin-top: var(--sp-06); }
/* Gold accents inside the ticket */
.gift-panel .eyebrow { color: #ffd97a; }
.gift-panel .gift-steps .gift-num {
  background: linear-gradient(135deg, #ffe08a 0%, #e0a52a 100%);
  color: #3a2600; box-shadow: 0 6px 18px rgba(255,190,60,0.35);
}
.gift-panel .btn-accent {
  --btn-bg: transparent; --btn-fg: #2a1c00;
  background: linear-gradient(135deg, #ffd264 0%, #e6a827 100%);
  box-shadow: 0 10px 30px rgba(255,190,60,0.42);
}
@media (hover: hover) and (pointer: fine) {
  .gift-panel .btn-accent:hover { background: linear-gradient(135deg, #ffe08a 0%, #f0b83a 100%); box-shadow: 0 14px 38px rgba(255,200,70,0.5); }
}
.gift-steps { list-style: none; display: flex; flex-direction: column; gap: var(--sp-04); }
.gift-steps li {
  display: flex; gap: var(--sp-04); align-items: flex-start;
  color: var(--ink-soft); font-size: var(--fs-body); line-height: 1.5;
}
.gift-steps .gift-num {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: 15px;
  background: var(--accent-strong); color: var(--accent-ink);
}
@media (max-width: 860px) { .gift-panel { grid-template-columns: 1fr; } }

/* ============== ESCAPE ROOMS GRID (native image ratio) ==============
   Images show at their own aspect ratio (no crop), text panel below. */
.er-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.er-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}
.er-card .er-media { background: var(--grad-violet); line-height: 0; }
.er-card .er-media img { width: 100%; height: auto; display: block;
  transition: transform 600ms var(--ease-out); }
.er-card .er-body { padding: var(--sp-04); display: flex; flex-direction: column; gap: var(--sp-02);
  flex: 1 1 auto; justify-content: space-between; }
.er-card .er-body h3 { color: var(--ink); font-size: 18px; }
.er-card .er-desc { color: var(--ink-soft); line-height: 1.5; }
.er-card .er-meta { font-size: var(--fs-meta); color: var(--ink-faint); font-weight: 600; }
.er-card .er-foot { display: flex; flex-direction: column; gap: var(--sp-03); margin-top: var(--sp-02); }
@media (hover: hover) and (pointer: fine) {
  .er-card:hover { transform: translateY(-4px); box-shadow: var(--e-3); border-color: var(--accent-line); }
  .er-card:hover .er-media img { transform: scale(1.04); }
}
@media (max-width: 1024px) { .er-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .er-grid { grid-template-columns: 1fr; } }

/* ============== DIVIDER ============== */
.divider { display: flex; align-items: center; gap: 14px; color: var(--ink-faint); font-size: var(--fs-meta); margin: 18px 0; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* Party add-on cards: equal height with the price aligned to the bottom, so
   cards with longer notes do not push their price out of line. */
.extras-cards .card { height: 100%; }
.extras-cards .card-body { display: flex; flex-direction: column; height: 100%; }
.extras-cards .card-body .price { margin-top: auto; }

/* Poster carousel: Book + Explore actions under each card, and the
   coming-soon badge on the media. Used by includes/game-carousel.php. */
.pcar-actions { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 100%; }
.pcar-explore { font-size: 14px; font-weight: 700; color: var(--ink-soft); text-decoration: none; }
.pcar-explore:hover { color: var(--ink); text-decoration: underline; }
/* Explore-only carousel button (arena "Our VR games"): white outline, no
   fill, same padding as the Book now button, fills on hover. */
.btn-explore { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,0.7); }
@media (hover: hover) and (pointer: fine) {
  .btn-explore:hover { transform: translateY(-2px); background: #fff; color: #111018; border-color: #fff; }
}
.pcar-badge { position: absolute; top: var(--sp-03); left: var(--sp-03); z-index: 2; font-size: 12px; }

/* ============== ABOUT US BAND ============== */
/* Same card format as .gift-panel (dark fill, rounded, generous padding,
   two-column grid), but with a thin pink border instead of gold, no
   ticket/shine effects, and Garry's photo filling the left column instead
   of a second text column. Used on the homepage, parties, console-corner,
   team-building, gift-cards, every blog post (short bio) and the about
   page (full bio). */
.about-us-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-2xl); border: 1px solid var(--accent-line);
  background: linear-gradient(135deg, #1c0d1c 0%, #150a14 55%, #100810 100%);
  padding: clamp(1.75rem, 4vw, 3.5rem);
  display: grid; grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  box-shadow: var(--e-3), 0 0 0 1px rgba(252,0,252,0.10);
}
.about-us-media {
  border-radius: calc(var(--r-2xl) - 14px);
  overflow: hidden;
  aspect-ratio: 372 / 574;
}
.about-us-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-us-body .eyebrow { color: var(--accent); }
.about-us-body h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: var(--sp-04); color: #fff; }
.about-us-body p { margin: 0 0 14px; color: var(--ink-soft); line-height: 1.6; width: min(100%, var(--measure-lead)); }
.about-us-body p:last-of-type { margin-bottom: 0; }
.about-us-body .btn-row { margin-top: var(--sp-06); }
@media (max-width: 860px) {
  .about-us-card { grid-template-columns: 1fr; }
  .about-us-media { max-width: 220px; margin-inline: auto; }
}
