* { box-sizing: border-box; }

:root {
  --bg:#0c0908;
  --panel:rgba(24,19,16,.86);
  --line:rgba(255,236,214,.12);
  --text:#f5ebde;
  --muted:#c7b8a5;
  --soft:#9f8d79;
  --accent-strong:#dfb172;
  --danger:#8d443a;
  --ok:#688559;
  --shadow:0 20px 80px rgba(0,0,0,.35);
  --radius:24px;
  --header-h:76px;
}

html { scroll-behavior:smooth; }

body {
  margin:0;
  color:var(--text);
  background:radial-gradient(circle at top, rgba(183,144,98,.10), transparent 28%), linear-gradient(180deg,#0c0908 0%,#140f0d 33%,#0f0b0a 100%);
  font-family:var(--font-body, "Inter", system-ui, sans-serif);
}

body.home-page {
  position: relative;
  min-height: 100%;
  background: #090706;
  isolation: isolate;
}

body.home-page::before,
body.home-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body.home-page::before {
  z-index: 0;
  background-image: var(--home-bg-image, url('/assets/escape-room-schenna-sissi-websiteheader.jpg'));
  background-size: auto 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #030303;
}

body.home-page::after {
  display: none;
}

body.home-page.use-footer-bg {
  --home-bg-image: url('/assets/escape-room-schenna-sissi-websitefooter.jpg');
}

body.home-page > main {
  position: relative;
  z-index: 2;
}

body.home-page > .gate {
  z-index: 100;
}

button,input,select,textarea { font:inherit; }
a { color:inherit; text-decoration:none; }
.hidden { display:none !important; }

.cookie-banner { position:fixed; left:16px; right:16px; bottom:16px; z-index:120; }

.cookie-banner__inner {
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  padding:16px 18px;
  border-radius:20px;
  background:rgba(20,15,13,.96);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.cookie-banner p { margin:6px 0 0; }


.cookie-banner__actions {
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.site-header {
  position:sticky;
  top:0;
  z-index:40;
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 18px;
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(16px);
  background:rgba(11,8,7,.78);
}

.brand {
  display:flex;
  flex-direction:column;
  gap:4px;
}

.brand__eyebrow {
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.22em;
  color:var(--muted);
}

.brand__meta {
  font-size:.88rem;
  color:var(--text);
}

.header-actions {
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.header-link {
  padding:11px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
}

.pill-switch {
  display:inline-flex;
  gap:4px;
  padding:4px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
}

.pill-switch button {
  border:0;
  border-radius:999px;
  padding:8px 12px;
  color:var(--muted);
  background:transparent;
  cursor:pointer;
}

.pill-switch button.active {
  background:rgba(223,177,114,.18);
  color:var(--text);
}

.section {
  min-height:calc(100svh - var(--header-h));
  display:flex;
  align-items:center;
  padding:56px 0;
}

.container {
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

.narrow {
  width:min(860px, calc(100% - 32px));
}

.eyebrow {
  margin:0 0 10px;
  color:var(--accent-strong);
  letter-spacing:.20em;
  text-transform:uppercase;
  font-size:.78rem;
}

h1,h2,h3 {
  margin:0;
  font-family:var(--font-heading, "Cormorant Garamond", Georgia, serif);
  line-height:.98;
  letter-spacing:-.02em;
}

h2 {
  font-size:clamp(2.3rem, 5vw, 4.5rem);
  margin-bottom:18px;
}

p {
  color:var(--muted);
  line-height:1.65;
  margin:0 0 14px;
}

.hero__grid,
.contact-layout,
.booking-layout,
.footer-grid {
  display:grid;
  gap:22px;
}

.hero__grid {
  grid-template-columns:1.2fr .8fr;
  align-items:center;
}

.hero__lead {
  font-size:1.05rem;
  color:var(--text);
}

.hero__notes {
  display:grid;
  gap:12px;
  margin:22px 0 28px;
}

.note-card,
.panel,
.visual-card,
.footer-card {
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:var(--panel);
  box-shadow:var(--shadow);
}

.note-card {
  padding:14px 16px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.hero__actions,
.route-buttons,
.footer-links {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.btn {
  min-height:48px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid transparent;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
  cursor:pointer;
}

.btn:hover,
.header-link:hover,
.icon-btn:hover,
.slot-btn:hover,
.action-card:hover {
  transform:translateY(-1px);
}

.btn--primary {
  color:#140f0d;
  background:linear-gradient(180deg,#d1a571,#9f754e);
}

.btn--secondary {
  border-color:var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
}

.visual-card {
  min-height:460px;
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  position:relative;
  overflow:hidden;
  background:radial-gradient(circle at top right, rgba(223,177,114,.18), transparent 28%), linear-gradient(180deg, rgba(14,10,9,.75), rgba(24,17,14,.96));
}

.wood-mark {
  position:absolute;
  inset:0;
  background:linear-gradient(115deg, transparent 36%, rgba(183,144,98,.18) 42%, rgba(183,144,98,.05) 46%, transparent 52%), radial-gradient(circle at 20% 15%, rgba(255,255,255,.05), transparent 22%);
  opacity:.9;
}

.visual-logo {
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  gap:4px;
  margin-bottom:16px;
}

.visual-logo__line {
  font-family:var(--font-heading, "Cormorant Garamond", Georgia, serif);
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:clamp(1.4rem, 4vw, 2.4rem);
}

.visual-logo__line--big {
  font-size:clamp(2.8rem, 8vw, 5.4rem);
  letter-spacing:.04em;
}

.section-heading {
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:end;
  margin-bottom:20px;
}

.booking-layout {
  grid-template-columns:1fr 1fr 1.05fr;
  align-items:start;
}

.panel { padding:18px; }

.calendar-header,
.slot-header {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}

.icon-btn {
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
}

.calendar-weekdays,
.calendar-grid {
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:8px;
}

.calendar-weekdays { margin-bottom:12px; }

.calendar-weekdays span {
  text-align:center;
  color:var(--soft);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.day-btn {
  min-height:54px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
}

.day-btn.is-other-month {
  opacity:.35;
  pointer-events:none;
}

.day-btn.is-disabled {
  opacity:.32;
  pointer-events:none;
  background:rgba(255,255,255,.02);
}

.day-btn.is-available {
  border-color:rgba(104,133,89,.45);
  box-shadow:inset 0 0 0 1px rgba(104,133,89,.2);
}

.day-btn.is-selected,
.day-btn.is-locked {
  background:rgba(223,177,114,.16);
  border-color:rgba(223,177,114,.45);
}

.lock-timer {
  min-width:110px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(223,177,114,.25);
  background:rgba(223,177,114,.08);
  text-align:right;
}

.lock-timer strong {
  display:block;
  font-size:.8rem;
  color:var(--accent-strong);
  margin-bottom:2px;
}

.lock-timer span {
  color:var(--text);
  font-variant-numeric:tabular-nums;
}

.slot-list {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.slot-btn {
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  min-height:42px;
  border-radius:999px;
  padding:0 14px;
  cursor:pointer;
}

.slot-btn.active,
.slot-btn.locked {
  background:rgba(223,177,114,.16);
  border-color:rgba(223,177,114,.45);
}

.booking-form {
  display:flex;
  flex-direction:column;
  gap:18px;
}

.form-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

label {
  display:flex;
  flex-direction:column;
  gap:8px;
  color:var(--muted);
  font-size:.92rem;
}

.field--wide { grid-column:1 / -1; }

input,
select,
textarea {
  width:100%;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  border-radius:14px;
  padding:12px 14px;
  outline:none;
}

select,
select option {
  color:var(--text);
  background:#1d1512;
}

textarea { resize:vertical; }

.action-cards {
  display:grid;
  gap:12px;
}

.action-card {
  text-align:left;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:16px;
  border-radius:18px;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.action-card--static { cursor:default; }

.voucher-inline { margin-top:8px; }

.voucher-submit {
  align-self:flex-start;
  margin-top:4px;
}

.booking-feedback {
  min-height:24px;
  color:var(--accent-strong);
}


.prices-panel {
  display:flex;
  flex-direction:column;
  gap:18px;
}

.prices-intro,
.booking-intro {
  max-width:720px;
  color:var(--text);
}

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

.price-card {
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.04);
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.price-card__size {
  color:var(--muted);
  font-size:1rem;
}

.price-card__value {
  font-family:var(--font-heading, "Cormorant Garamond", Georgia, serif);
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:.95;
  color:var(--text);
}

.price-card__text {
  margin:0;
}

.price-card__actions {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:auto;
}

.booking-price-summary {
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(223,177,114,.22);
  background:rgba(223,177,114,.10);
  color:var(--text);
}

.booking-terms {
  display:grid;
  gap:12px;
}

.checkbox-field {
  flex-direction:row;
  align-items:flex-start;
  gap:12px;
  color:var(--text);
}

.checkbox-field input {
  width:18px;
  height:18px;
  margin-top:3px;
  flex:0 0 auto;
}

.booking-privacy-note {
  margin:0;
  font-size:.95rem;
}

.booking-feedback {
  min-height:24px;
  border-radius:14px;
  padding:0;
}

.booking-feedback.is-error,
.booking-feedback.is-success {
  padding:12px 14px;
  border:1px solid var(--line);
}

.booking-feedback.is-error {
  color:#ffd7d1;
  background:rgba(141,68,58,.18);
  border-color:rgba(141,68,58,.35);
}

.booking-feedback.is-success {
  color:#eef7e7;
  background:rgba(104,133,89,.18);
  border-color:rgba(104,133,89,.35);
}

.terms-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.term-item {
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  background:rgba(255,255,255,.03);
}

.term-item p {
  margin-top:8px;
  margin-bottom:0;
}

.voucher-page {
  min-height:100svh;
  padding:40px 0 72px;
}

.voucher-hero {
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:24px;
}

.voucher-layout {
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
}

.voucher-summary {
  display:grid;
  gap:12px;
}

.voucher-summary__row {
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
}

.voucher-note {
  font-size:.95rem;
}

.contact-layout { grid-template-columns:1.25fr .75fr; }

.map-stage,
.map-embed-wrap {
  position:relative;
  border-radius:20px;
  overflow:hidden;
}

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

.map-pins {
  position:absolute;
  inset:0;
  pointer-events:none;
}

.map-pin {
  position:absolute;
  transform:translate(-50%, -100%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}

.map-pin__dot {
  width:16px;
  height:16px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.9);
  box-shadow:0 0 0 6px rgba(0,0,0,.15);
}

.map-pin__dot--escape { background:#ff6b6b; }
.map-pin__dot--parking { background:#6ea8ff; }

.map-pin__label {
  padding:6px 10px;
  border-radius:999px;
  background:rgba(17,17,17,.72);
  color:#fff;
  font-size:.82rem;
  backdrop-filter:blur(8px);
  white-space:nowrap;
}

.map-help {
  margin-top:12px;
  color:var(--soft);
  font-size:.9rem;
}

.contact-lines {
  display:grid;
  gap:18px;
}

.contact-lines > div {
  display:flex;
  flex-direction:column;
  gap:6px;
}

.label {
  color:var(--accent-strong);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.74rem;
}

.warning-box {
  padding:14px 16px;
  border-radius:18px;
  background:rgba(141,68,58,.12);
  border:1px solid rgba(141,68,58,.28);
}

.contact-warning {
  margin-top:18px;
}

.route-buttons {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  margin-top:18px;
}

.site-footer { padding:0 0 56px; }

.footer-links {
  justify-content:center;
  padding:0 0 12px;
}

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

.gate {
  position:fixed;
  inset:0;
  z-index:100;
  display:none;
}

.gate.active { display:block; }

.gate-topbar {
  position:absolute;
  inset:0 0 auto 0;
  z-index:6;
  padding:14px 16px;
  display:flex;
  justify-content:flex-end;
  gap:12px;
  align-items:center;
}

.gate-scene {
  position:relative;
  min-height:100svh;
  overflow:hidden;
  cursor:none;
  background:#030303;
}

.gate-scene::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.44) 0%, rgba(0,0,0,.26) 40%, rgba(0,0,0,.42) 100%),
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.12) 48%, rgba(0,0,0,.06) 100%);
  transition:opacity .35s ease;
}

.gate-scene.is-lit::before {
  opacity:0;
}

.light-mask {
  position:absolute;
  width:920px;
  height:920px;
  border-radius:50%;
  pointer-events:none;
  z-index:4;
  background:radial-gradient(circle, rgba(255,245,214,.70) 0%, rgba(255,220,156,.36) 24%, rgba(255,188,101,.18) 44%, rgba(74,36,8,.08) 58%, rgba(0,0,0,0) 74%);
  mix-blend-mode:screen;
  transform:translate(-50%,-50%);
  opacity:0;
  filter:blur(2px);
  transition:opacity .22s ease;
}

.light-mask.is-on { opacity:1; }

.scene-bg {
  position:absolute;
  inset:0;
  z-index:0;
  background:url('/assets/raetsel-wald.jpg') 50% 100% / cover no-repeat;
  filter:brightness(.58) saturate(.92) contrast(1.02);
  transition:filter .35s ease;
}

.gate-scene.is-lit .scene-bg {
  filter:none;
}

.gate-logo {
  position:absolute;
  right:6.5vw;
  top:38%;
  z-index:6;
  width:min(320px, 22vw);
  max-height:34vh;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  transform:translateY(-50%);
  opacity:.62;
  filter:brightness(1.32) sepia(.64) contrast(1.08) drop-shadow(0 6px 22px rgba(0,0,0,.55));
}

.moon {
  position:absolute;
  right:16%;
  top:11%;
  width:88px;
  height:88px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 35%, rgba(255,248,226,.95), rgba(215,187,142,.62) 55%, rgba(0,0,0,0) 70%);
  opacity:.55;
}

.hill {
  position:absolute;
  bottom:-6%;
  border-radius:50%;
  background:linear-gradient(180deg, rgba(22,18,15,.98), rgba(9,8,8,1));
}

.hill-a { left:-8%; width:62%; height:38%; }
.hill-b { right:-10%; width:74%; height:42%; }

.house {
  position:absolute;
  right:15%;
  bottom:14%;
  width:270px;
  height:270px;
}

.roof {
  position:absolute;
  left:22px;
  top:22px;
  width:220px;
  height:80px;
  clip-path:polygon(50% 0, 100% 100%, 0 100%);
  background:linear-gradient(180deg, rgba(52,36,28,.95), rgba(28,19,14,.98));
}

.body {
  position:absolute;
  left:38px;
  top:90px;
  width:190px;
  height:144px;
  border-radius:8px 8px 4px 4px;
  background:linear-gradient(180deg, rgba(44,32,26,.95), rgba(20,16,14,.98));
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
}

.window {
  position:absolute;
  width:34px;
  height:44px;
  border-radius:6px;
  background:radial-gradient(circle at 50% 35%, rgba(247,205,128,.26), rgba(126,82,29,.1) 65%, rgba(0,0,0,0) 66%);
  border:1px solid rgba(255,255,255,.04);
}

.win-a { left:70px; top:116px; }
.win-b { left:160px; top:116px; }

.door {
  position:absolute;
  left:112px;
  top:138px;
  width:48px;
  height:98px;
  border:0;
  border-radius:8px 8px 4px 4px;
  background:linear-gradient(180deg, rgba(65,43,31,.92), rgba(28,18,12,.98));
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03), 0 8px 18px rgba(0,0,0,.22);
  opacity:.08;
  pointer-events:none;
  cursor:pointer;
  transition:opacity .18s ease, transform .18s ease, box-shadow .18s ease;
}

.door::after {
  content:"";
  position:absolute;
  right:8px;
  top:50%;
  width:6px;
  height:6px;
  border-radius:50%;
  background:rgba(199,166,109,.78);
  transform:translateY(-50%);
}

.door.nearby {
  opacity:.96;
  pointer-events:auto;
  transform:scale(1.02);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04), 0 0 28px rgba(255,198,122,.20), 0 8px 18px rgba(0,0,0,.22);
}

.gate-door {
  left:24.7vw;
  top:calc(100svh - 15.7vw);
  width:clamp(42px, 2.6vw, 58px);
  height:clamp(68px, 4.1vw, 90px);
  border-radius:12px 12px 4px 4px;
  background:rgba(255,196,112,.03);
  box-shadow:none;
}

.gate-door::after { content:none; }

.gate-door.nearby {
  opacity:.78;
  transform:scale(1.04);
  background:linear-gradient(180deg, rgba(255,222,154,.12), rgba(255,190,99,.06));
  box-shadow:0 0 32px rgba(255,206,126,.22);
}

.steps {
  position:absolute;
  left:101px;
  top:230px;
  width:70px;
  height:22px;
  border-radius:6px;
  background:linear-gradient(180deg, rgba(54,42,34,.7), rgba(21,17,14,.9));
}

.tree {
  position:absolute;
  bottom:18%;
  width:18px;
  background:linear-gradient(180deg, rgba(36,24,16,.95), rgba(14,10,8,.98));
  border-radius:999px;
}

.tree::before,
.tree::after {
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  border-radius:50%;
  background:radial-gradient(circle at 50% 40%, rgba(28,32,24,.9), rgba(10,12,10,.98));
}

.tree::before { bottom:32px; width:94px; height:94px; }
.tree::after { bottom:76px; width:70px; height:70px; }

.tree-a { left:14%; height:130px; }
.tree-b { left:26%; height:110px; }

.path {
  position:absolute;
  left:42%;
  bottom:-2%;
  width:320px;
  height:220px;
  transform:translateX(-50%);
  background:radial-gradient(ellipse at center, rgba(86,60,37,.32) 0%, rgba(70,48,30,.16) 36%, rgba(0,0,0,0) 70%);
}

.match-cursor {
  position:absolute;
  left:0;
  top:0;
  width:240px;
  height:44px;
  pointer-events:none;
  z-index:7;
  transform:translate(-30px,-22px) rotate(-4deg);
  transform-origin:28px 22px;
}

.matchstick {
  width:240px;
  height:44px;
  position:relative;
}

.matchstick::before { content:none; }

.matchstick-img {
  position:absolute;
  left:0;
  top:50%;
  width:240px;
  height:auto;
  display:block;
  transform:translateY(-50%);
  user-select:none;
  -webkit-user-drag:none;
  filter:drop-shadow(0 4px 8px rgba(0,0,0,.42));
}

.match-head { display:none; }

.flame {
  position:absolute;
  left:10px;
  top:-34px;
  width:24px;
  height:38px;
  opacity:0;
  transform-origin:center bottom;
  transition:opacity .2s ease;
}

.flame::before,
.flame::after {
  content:"";
  position:absolute;
  inset:0;
  border-radius:55% 45% 50% 50%;
  transform:rotate(8deg);
}

.flame::before {
  background:radial-gradient(circle at 50% 72%, rgba(255,255,255,.85), rgba(255,219,122,.82) 42%, rgba(241,119,44,.84) 72%, rgba(0,0,0,0) 73%);
  filter:blur(.4px);
}

.flame::after {
  inset:8px 7px 11px 7px;
  background:radial-gradient(circle at 50% 70%, rgba(255,255,255,.9), rgba(255,242,179,.82) 46%, rgba(0,0,0,0) 72%);
}

.gate-scene.is-lit .flame {
  opacity:1;
  animation:flicker .16s infinite alternate;
}

.match-area {
  position:absolute;
  left:50%;
  bottom:10%;
  transform:translateX(-50%);
  z-index:5;
  display:flex;
  flex-direction:column;
  gap:10px;
  width:min(700px, calc(100% - 28px));
  transition:opacity .2s ease;
}

.gate-scene.is-lit .match-area {
  opacity:0;
  pointer-events:none;
}

.strike-instruction { display:none; }

.strike-zone {
  height:58px;
  border-radius:18px;
  background:
    linear-gradient(90deg, rgba(56,9,9,.98), rgba(160,24,24,.98) 18%, rgba(210,54,42,.98) 46%, rgba(133,16,16,.98) 78%, rgba(50,8,8,.98)),
    repeating-linear-gradient(110deg, rgba(255,255,255,.12) 0 8px, rgba(255,255,255,0) 8px 18px);
  border:1px solid rgba(255,255,255,.09);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04), 0 0 24px rgba(128,18,18,.16);
}

.strike-progress {
  height:6px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  overflow:hidden;
  position:relative;
}

.strike-progress::after {
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:var(--progress, 0%);
  border-radius:inherit;
  background:linear-gradient(90deg,#e8b978,#f6d49f);
  transition:width .08s linear;
}

.gate-copy {
  position:absolute;
  left:16px;
  right:16px;
  bottom:33%;
  z-index:2;
  max-width:760px;
}

.gate-copy h1 {
  font-size:clamp(2.75rem, 6.1vw, 5.55rem);
  line-height:.95;
  margin-bottom:0;
  text-shadow:0 6px 18px rgba(0,0,0,.32);
}

.gate-copy p {
  font-size:clamp(1rem, 2vw, 1.12rem);
  max-width:620px;
  color:#eadcca;
}

.skip-btn {
  position:absolute;
  right:16px;
  bottom:16px;
  z-index:130;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  border-radius:999px;
  padding:10px 14px;
  cursor:pointer;
}

@keyframes flicker {
  from { transform:scale(.98) rotate(-2deg); }
  to { transform:scale(1.05) rotate(2deg); }
}

/* -------- LEGAL PAGES ONLY -------- */

body.legal-page .section {
  min-height:auto;
  align-items:flex-start;
  padding:56px 0;
}

body.legal-page .container.narrow {
  width:min(980px, calc(100% - 32px));
}

body.legal-page .panel {
  padding:28px;
}

body.legal-page h1 {
  font-size:clamp(2.2rem, 4vw, 3.4rem);
  line-height:1.02;
  margin-bottom:14px;
}

body.legal-page h2 {
  font-size:clamp(1.55rem, 2.2vw, 2.15rem);
  line-height:1.08;
  margin:28px 0 10px;
}

body.legal-page p {
  max-width:78ch;
}

body.legal-page .header-actions {
  align-items:center;
}

/* -------- RESPONSIVE -------- */

@media (max-width:1024px) {
  .hero__grid,
  .contact-layout,
  .booking-layout,
  .leaderboard-layout {
    grid-template-columns:1fr;
  }
}

@media (max-width:768px), (hover:none) and (pointer:coarse) {
  .gate.active { display:none; }
}

@media (max-width:720px) {
  :root { --header-h:96px; }

  .site-header,
  .gate-topbar,
  .cookie-banner__inner {
    align-items:flex-start;
    flex-direction:column;
  }

  .form-grid { grid-template-columns:1fr; }
  .match-area { bottom:9%; }
  .match-cursor { width:180px; }
  .map-iframe { min-height:320px; }
  .gate-copy { bottom:38%; }
  .house { right:8%; transform:scale(.86); transform-origin:right bottom; }

  body.legal-page h1 {
    font-size:clamp(1.9rem, 8vw, 2.6rem);
  }

  body.legal-page h2 {
    font-size:clamp(1.3rem, 6vw, 1.7rem);
  }
}

.map-canvas {
  width:100%;
  height:420px;
  border-radius:20px;
}


.map-consent-box {
  min-height:420px;
  border-radius:20px;
  border:1px solid var(--line);
  background:linear-gradient(135deg, rgba(24,19,16,.96), rgba(55,34,24,.9));
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:28px;
  text-align:center;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
}

.map-consent-box strong {
  font-family:var(--font-heading, "Cormorant Garamond", Georgia, serif);
  font-size:clamp(1.6rem, 4vw, 2.3rem);
}

.map-consent-box p {
  max-width:520px;
  margin:0;
  color:var(--muted);
}

.map-open-link {
  position:absolute;
  top:14px;
  left:14px;
  z-index:3;
  min-height:40px;
  padding:0 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(20,15,13,.92);
  color:var(--text);
  box-shadow:var(--shadow);
}

.ers-map-marker {
  display:flex;
  flex-direction:column;
  align-items:center;
  transform:translateY(-8px);
  pointer-events:auto;
}

.ers-map-marker__label {
  padding:6px 10px;
  border-radius:999px;
  background:rgba(17,17,17,.82);
  color:#fff;
  font-size:.82rem;
  line-height:1;
  white-space:nowrap;
  backdrop-filter:blur(8px);
  box-shadow:0 8px 18px rgba(0,0,0,.22);
  margin-bottom:8px;
}

.ers-map-marker__dot {
  width:16px;
  height:16px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.9);
  box-shadow:0 0 0 6px rgba(0,0,0,.15);
}

.ers-map-marker__dot--escape {
  background:#ff6b6b;
}

.ers-map-marker__dot--parking {
  background:#6ea8ff;
}

@media (max-width:768px), (hover:none) and (pointer:coarse) {
  .gate.active { display:none; }
}

@media (max-width:720px) {
  .map-canvas {
    height:320px;
  }

  .ers-map-marker__label {
    font-size:.76rem;
    padding:5px 8px;
  }
}

.story {
  background: transparent;
}

.leaderboard-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.leaderboard-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.leaderboard-intro {
  color: rgba(245, 235, 222, 0.78);
  line-height: 1.6;
}

.leaderboard-gate {
  display: flex;
  gap: 12px;
  align-items: end;
  flex-wrap: wrap;
}

.leaderboard-code-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
  flex: 1;
}

.leaderboard-code-field input {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
}

.leaderboard-table-wrap {
  overflow-x: auto;
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
}

.leaderboard-table th,
.leaderboard-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
}

.leaderboard-table th {
  font-weight: 700;
  color: var(--text);
}

.leaderboard-private-card,
.leaderboard-locked-hint {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.leaderboard-private-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}



.story {
  background: transparent;
}

.leaderboard {
  align-items: flex-start;
}

.leaderboard-panel {
  padding: 20px;
}

.leaderboard-panel + .leaderboard-panel {
  margin-top: 18px;
}

.leaderboard-head-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.leaderboard-filter-field,
.leaderboard-code-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.leaderboard-filter-field select,
.leaderboard-code-field input {
  min-height: 48px;
  min-width: 220px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,236,214,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
}

.leaderboard-intro {
  max-width: 780px;
}

.leaderboard-gate {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: end;
}

.leaderboard-table-wrap {
  overflow-x: auto;
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
}

.leaderboard-table th,
.leaderboard-table td {
  padding: 14px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(255,236,214,.10);
}

.leaderboard-table th {
  color: var(--text);
  font-weight: 600;
}

.leaderboard-private-card,
.leaderboard-locked-hint {
  margin-top: 10px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,236,214,.10);
  background: rgba(255,255,255,.03);
}

.leaderboard-private-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

@media (max-width: 720px) {
  .leaderboard-panel {
    padding: 16px;
  }

  .leaderboard-filter-field,
  .leaderboard-code-field,
  .leaderboard-filter-field select,
  .leaderboard-code-field input {
    width: 100%;
    min-width: 0;
  }
}

.leaderboard-filter-field--wide,
.leaderboard-filter-select--wide {
  width: 100%;
  min-width: 0;
}

.leaderboard-filter-select--wide {
  margin-top: 8px;
}

.leaderboard-team-label {
  cursor: default;
}

.leaderboard-empty {
  color: var(--muted);
}

.leaderboard-private-summary {
  margin: 14px 0 18px;
}

.leaderboard-private-note {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,236,214,.10);
  background: rgba(255,255,255,.03);
}

.leaderboard-visibility-box {
  display: grid;
  gap: 12px;
  margin: 16px 0 20px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,236,214,.10);
  background: rgba(255,255,255,.03);
}

.leaderboard-visibility-box h4 {
  margin: 0;
}

.leaderboard-visibility-options {
  display: grid;
  gap: 10px;
}

.leaderboard-visibility-options label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.leaderboard-private {
  display:flex;
  flex-direction:column;
  gap:18px;
}

.leaderboard-subsection {
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(255,236,214,.10);
  background:rgba(255,255,255,.03);
}

.leaderboard-private-summary-wrap {
  display:flex;
  flex-direction:column;
  gap:10px;
}

.leaderboard-summary-card {
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(255,236,214,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
}

.leaderboard-summary-card__title {
  font-size:1.3rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:10px;
}

.leaderboard-summary-card__meta {
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  color:var(--muted);
}

.leaderboard-summary-names {
  color:var(--muted);
  padding:0 4px;
}

.leaderboard-filter-field--compact {
  min-width:220px;
}

.leaderboard-visibility-box {
  gap:14px;
}

.leaderboard-visibility-box__head {
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
}

.leaderboard-visibility-row {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:flex-end;
}

.leaderboard-visibility-pill {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,236,214,.12);
  background:rgba(255,255,255,.035);
  color:var(--text);
}

.leaderboard-visibility-pill input {
  margin:0;
}

.leaderboard-inline-field {
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:220px;
  flex:1 1 220px;
}

.leaderboard-inline-field input,
.leaderboard-filter-field--compact select {
  min-height:46px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid rgba(255,236,214,.12);
  background:rgba(255,255,255,.04);
  color:var(--text);
}

.leaderboard-inline-save {
  white-space:nowrap;
}

@media (max-width: 860px) {
  .leaderboard-visibility-row {
    align-items:stretch;
  }

  .leaderboard-visibility-pill,
  .leaderboard-inline-field,
  .leaderboard-inline-save,
  .leaderboard-filter-field--compact {
    width:100%;
  }
}


.leaderboard-summary-card__meta {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  color:var(--muted);
}

.leaderboard-summary-card__meta span {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
}

.leaderboard-summary-card__meta strong {
  color:var(--text);
  font-weight:700;
}

.leaderboard-visibility-box {
  padding:20px 22px;
}

.leaderboard-visibility-inline {
  display:flex;
  flex-wrap:wrap;
  align-items:end;
  gap:12px;
}

.leaderboard-visibility-select,
.leaderboard-inline-field input,
#leaderboardPuzzleFilter,
#leaderboardFilter {
  min-height:46px;
  border-radius:14px;
}

.leaderboard-visibility-select {
  min-width:220px;
  padding:0 14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:var(--text);
}

.leaderboard-inline-field {
  min-width:220px;
  margin:0;
}

.leaderboard-inline-field span {
  display:block;
  margin:0 0 6px;
  color:var(--muted);
  font-size:.92rem;
}

.leaderboard-inline-save {
  min-height:46px;
  padding:0 18px;
  border-radius:14px;
}

@media (max-width: 820px) {
  .leaderboard-visibility-inline > * {
    width:100%;
  }
}


/* leaderboard v6 refinements */
.leaderboard-head-row--top { align-items: flex-end; }
.leaderboard-filter-field--inline,
.leaderboard-filter-field--compact { width: auto; min-width: 0; flex: 0 0 auto; }
.leaderboard-filter-field--inline select,
.leaderboard-filter-field--compact select,
#leaderboardFilter,
#leaderboardPuzzleFilter { width: auto; min-width: 0; max-width: 100%; }
.leaderboard-table--rankings { table-layout: fixed; width: 100%; }
.leaderboard-col-date { width: 140px; }
.leaderboard-col-players { width: 96px; }
.leaderboard-col-hints { width: 96px; }
.leaderboard-col-time { width: 130px; }
.leaderboard-table--rankings th:first-child,
.leaderboard-table--rankings td:first-child { width: auto; text-align: left; }
.leaderboard-table--rankings th:not(:first-child) { text-align: center; padding-right: 0; }
.leaderboard-table--rankings td:not(:first-child) { text-align: center; }
.leaderboard-cell-team { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.leaderboard-team-label[title] { text-decoration: underline dotted rgba(223,177,114,.45); text-underline-offset: 3px; }
.leaderboard-summary-card__top { display: flex; flex-direction: column; gap: 12px; margin-bottom: 10px; }
.leaderboard-name-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.leaderboard-name-tag { display: inline-flex; align-items: center; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,236,214,.08); color: var(--muted); }
.leaderboard-visibility-inline--single-row { display: grid; grid-template-columns: fit-content(24ch) minmax(180px, 1fr) minmax(220px, 1.15fr) fit-content(16ch); gap: 12px; align-items: end; width: 100%; }
.leaderboard-inline-feedback { color: var(--accent-strong); margin-top: 4px; }
@media (max-width: 980px) {
  .leaderboard-visibility-inline--single-row { grid-template-columns: 1fr; }
  .leaderboard-col-date { width: 120px; }
  .leaderboard-col-players, .leaderboard-col-hints { width: 82px; }
  .leaderboard-col-time { width: 110px; }
}

.leaderboard-filters-inline { display: flex; flex-wrap: wrap; gap: 12px; align-items: end; justify-content: flex-end; }
.leaderboard-visibility-inline--single-row .leaderboard-inline-save { white-space: nowrap; min-width: 0; }
.leaderboard-visibility-inline--single-row .leaderboard-inline-field { min-width: 0; }
.leaderboard-visibility-inline--single-row .leaderboard-inline-field input,
.leaderboard-visibility-inline--single-row .leaderboard-visibility-select { width: 100%; }


/* v9 visibility layout */
.leaderboard-visibility-toprow {
  display: grid;
  grid-template-columns: minmax(180px, 22ch) auto;
  gap: 12px;
  align-items: end;
}

.leaderboard-visibility-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.leaderboard-inline-field--select {
  min-width: 0;
}

.leaderboard-visibility-select--compact {
  width: 100%;
  min-width: 0;
}

.leaderboard-inline-save {
  justify-self: start;
}

@media (max-width: 820px) {
  .leaderboard-visibility-toprow,
  .leaderboard-visibility-inputs {
    grid-template-columns: 1fr;
  }
}

.leaderboard-col-rank { width: 82px; }
.leaderboard-cell-rank { text-align: center; font-weight: 700; }
.leaderboard-table--rankings th:first-child,
.leaderboard-table--rankings td:first-child { text-align: center; }
.leaderboard-table--rankings th:nth-child(2),
.leaderboard-table--rankings td:nth-child(2) { text-align: left; }
.leaderboard-table--rankings th:not(:first-child):not(:nth-child(2)),
.leaderboard-table--rankings td:not(:first-child):not(:nth-child(2)) { text-align: center; }

.leaderboard-code-field input {
  max-width: 12ch;
  text-align: center;
  letter-spacing: 0.45em;
  font-variant-numeric: tabular-nums;
  padding: 0 1.1em 0 1.45em;
}

.leaderboard-visibility-select,
.leaderboard-filter-select,
#leaderboardPuzzleFilter,
#leaderboardFilter,
.leaderboard-pagination__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 1.35rem) calc(50% - 2px), calc(100% - 0.95rem) calc(50% - 2px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}

.leaderboard-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.leaderboard-pagination__group {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.leaderboard-pagination__group--nav {
  margin-left: auto;
}

.leaderboard-pagination__select,
.leaderboard-pagination__input {
  min-height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,236,214,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  padding: 0 12px;
}

.leaderboard-pagination__select {
  min-width: 88px;
}

.leaderboard-pagination__input {
  width: 72px;
  text-align: center;
}

.leaderboard-pagination__btn {
  min-height: 40px;
}

@media (max-width: 820px) {
  .leaderboard-pagination {
    align-items: stretch;
  }
  .leaderboard-pagination__group {
    width: 100%;
    justify-content: space-between;
  }
  .leaderboard-pagination__group--nav {
    margin-left: 0;
  }
  .leaderboard-col-rank { width: 64px; }
}


.leaderboard-gate {
  justify-content: center;
  align-items: end;
}

.leaderboard-gate .leaderboard-code-field {
  flex: 0 1 auto;
  min-width: 0;
}

.leaderboard-gate #leaderboardCodeBtn {
  align-self: end;
}

.leaderboard-code-field input::placeholder {
  letter-spacing: normal;
  font-variant-numeric: normal;
}

.leaderboard-code-field input {
  width: 12ch;
}

.leaderboard-visibility-select,
.leaderboard-filter-select,
#leaderboardPuzzleFilter,
#leaderboardFilter,
.leaderboard-pagination__select {
  background-position: calc(100% - 1.7rem) calc(50% - 2px), calc(100% - 1.25rem) calc(50% - 2px);
}

.leaderboard-table tbody tr.is-current-team {
  background: rgba(223, 177, 114, 0.12);
}

.leaderboard-table tbody tr.is-current-team td {
  font-weight: 600;
}

.leaderboard-private-feedback--locked {
  color: var(--accent-strong);
}

.leaderboard-gate-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.leaderboard-gate-feedback {
  width: 100%;
  max-width: 32rem;
  text-align: center;
  margin: 0;
}

.leaderboard-private-feedback--locked {
  text-align: center;
}

@media (max-width: 980px) {
  .price-grid, .voucher-layout, .terms-grid { grid-template-columns:1fr; }
}

.booking-page-grid {
  display:grid;
  grid-template-columns:1.05fr 1fr .95fr;
  gap:22px;
  align-items:start;
}

.booking-date-stack {
  display:grid;
  gap:22px;
}

.booking-commit-panel .action-cards--commit {
  margin-top:18px;
}

.booking-terms--checks {
  margin-top:18px;
}

@media (max-width: 1100px) {
  .booking-page-grid {
    grid-template-columns:1fr;
  }
}

.hero-stage {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: transparent;
}

.hero-stage__bg,
.hero-stage__overlay {
  position: absolute;
  inset: 0;
}

.hero-stage__bg {
  background-image: url('/assets/escape-room-schenna-sissi-websiteheader.jpg');
  background-size: auto 100%;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #030303;
}

.hero-stage__bg::after {
  display: none;
}

.hero-stage__overlay {
  display: none;
}

.hero-topbar,
.hero--immersive {
  position: relative;
  z-index: 2;
}

.hero-topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  width: calc(100% - 88px);
  max-width: 1820px;
  margin: 0 auto;
  padding: 42px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  pointer-events: none;
}

.hero-logo-link {
  display: inline-flex;
  align-items: flex-start;
  pointer-events: auto;
}

.hero-logo {
  width: clamp(180px, 12vw, 235px);
  height: auto;
  display: block;
}

.hero-topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 38px;
  pointer-events: auto;
}

.hero-phone {
  font-size: .94rem;
  color: rgba(245,235,222,.96);
  letter-spacing: .06em;
  white-space: nowrap;
}

.hero-lang-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(5, 5, 5, .72);
  border: 1px solid rgba(255, 236, 214, .10);
  box-shadow: 0 10px 24px rgba(0,0,0,.24);
}

.hero-lang-inline .lang-btn {
  min-width: 36px;
  height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(245,235,222,.72);
  font-weight: 700;
  cursor: pointer;
}

.hero-lang-inline .lang-btn.active {
  background: rgba(83, 61, 44, .92);
  color: #f5ebde;
}

.hero-book-btn {
  min-height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  background: #ffe0ad;
  border-color: transparent;
  color: #120d0a;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.hero--immersive {
  min-height: 100svh;
  align-items: flex-end;
  padding: 160px 0 44px;
}

.hero-immersive__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(100svh - 204px);
}

.hero-copy {
  max-width: 980px;
}

.hero-immersive__eyebrow {
  margin-bottom: 8px;
  color: #d6bf9c;
}

.hero-copy h1 {
  max-width: 1040px;
  font-size: clamp(3.2rem, 5.25vw, 5.55rem);
  line-height: .9;
  color: #f6eee5;
  text-wrap: balance;
}

.hero-immersive__actions {
  margin-top: 24px;
}

.hero-facts {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.hero-fact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-fact-card__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 999px;
  border: 2px solid rgba(245,235,222,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: #fff;
}

.hero-fact-card strong,
.hero-fact-card span {
  display: block;
}

.hero-fact-card strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: .98rem;
}

.hero-fact-card span {
  color: rgba(245,235,222,.88);
  line-height: 1.5;
  font-size: .95rem;
}

@media (max-width: 980px) {
  .hero-topbar {
    width: min(100%, calc(100% - 32px));
    padding-top: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-topbar__actions {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 9vw, 4.4rem);
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .hero-stage__bg {
    background-position: center top;
  }

  .hero-topbar__actions {
    align-items: center;
  }

  .hero-phone {
    width: 100%;
  }

  .hero-book-btn {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .hero-fact-card strong,
  .hero-fact-card span {
    max-width: none;
  }
}


/* Sissi header/fixed-background refinements */
body.home-page .story,
body.home-page section.story {
  background: transparent !important;
}

body.home-page .hero-stage__overlay,
body.home-page .hero-stage__bg::after {
  display: none !important;
  background: none !important;
}

body.home-page .hero-immersive__actions .btn--primary {
  background: #ffe0ad;
  border-color: transparent;
  color: #120d0a;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

body.home-page .hero-immersive__actions .btn--secondary {
  background: rgba(5,5,5,.38);
  color: #fff7ea;
  border-color: rgba(255,248,235,.42);
}

@media (max-width: 980px) {
  .hero-topbar {
    width: calc(100% - 36px);
    padding-top: 20px;
    transform: translateX(-50%);
  }
  .hero-topbar__actions {
    margin-top: 14px;
    gap: 12px;
  }
  .hero-logo {
    width: clamp(145px, 34vw, 205px);
  }
}

@media (max-width: 640px) {
  body.home-page::before,
  .hero-stage__bg {
    background-size: auto 100%;
    background-position: center top;
  }
  .hero-topbar {
    width: calc(100% - 28px);
    padding-top: 14px;
  }
  .hero-topbar__actions {
    width: 100%;
    margin-top: 10px;
    justify-content: flex-start;
  }
  .hero-book-btn {
    width: auto;
    min-height: 48px;
    padding: 0 22px;
  }
  .hero--immersive {
    padding-top: 220px;
  }
}

/* 20260517 clean layout refinements */
body.home-page::before,
.hero-stage__bg {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

body.home-page .story,
body.home-page section.story,
body.home-page .info,
body.home-page .prices {
  background: transparent !important;
}

body.home-page .story::before,
body.home-page .story::after,
body.home-page .info::before,
body.home-page .info::after,
body.home-page .prices::before,
body.home-page .prices::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.hero-book-btn {
  min-height: 44px !important;
  height: 44px !important;
  padding: 0 26px !important;
  font-size: .95rem !important;
  line-height: 1 !important;
}

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

.prices-panel--simple {
  gap: 22px;
}

.price-card--simple {
  gap: 16px;
}

.price-card--simple .price-card__actions {
  margin-top: 4px;
}

.price-book-btn {
  min-height: 44px !important;
  height: 44px !important;
  padding: 0 26px !important;
  border-radius: 999px !important;
  background: #ffe0ad !important;
  border-color: transparent !important;
  color: #120d0a !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.22) !important;
  font-size: .95rem !important;
  line-height: 1 !important;
}

@media (max-width: 720px) {
  .price-grid--simple {
    grid-template-columns: 1fr;
  }
}


/* 20260517 clean3 refinements */
html {
  scrollbar-color: #d6b47d #070504;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #070504;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffe0ad, #9b6f42);
  border: 3px solid #070504;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #fff0cf, #c99455);
}

body.home-page::before,
.hero-stage__bg {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

body.home-page .section.info {
  align-items: flex-start;
  padding-top: clamp(94px, 16vh, 150px);
  padding-bottom: 64px;
}

body.home-page .info p:not(.eyebrow),
body.home-page .story p:not(.eyebrow),
body.home-page .prices p:not(.eyebrow),
body.home-page .leaderboard p:not(.eyebrow),
body.home-page .contact p:not(.eyebrow) {
  color: rgba(255, 248, 238, .92) !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}

body.home-page .info h2,
body.home-page .story h2,
body.home-page .prices h2,
body.home-page .leaderboard h2,
body.home-page .contact h2 {
  text-shadow: 0 4px 22px rgba(0,0,0,.65);
}

.hero-copy h1 {
  max-width: 1100px;
}

.hero-book-btn {
  min-height: 44px !important;
  height: 44px !important;
  padding: 0 26px !important;
  font-size: .95rem !important;
  line-height: 1 !important;
}

.prices-panel--simple {
  gap: 20px;
}

.prices-title {
  margin: -10px 0 2px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

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

.price-card--simple {
  gap: 16px;
}

.price-card--simple .price-card__actions {
  margin-top: 4px;
}

.price-book-btn,
.price-voucher-btn {
  min-height: 44px !important;
  height: 44px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  font-size: .95rem !important;
  line-height: 1 !important;
}

.price-book-btn {
  background: #ffe0ad !important;
  border-color: transparent !important;
  color: #120d0a !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.22) !important;
}

.price-voucher-btn {
  background: rgba(5,5,5,.38) !important;
  color: #fff7ea !important;
  border-color: rgba(255,248,235,.42) !important;
}

@media (max-width: 900px) {
  .price-grid--simple {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.home-page .section.info {
    padding-top: 120px;
  }
}

/* 20260518 hero vertical alignment + fixed two-line desktop headline */
.hero--immersive {
  align-items: center !important;
  padding: 0 !important;
}

.hero-immersive__content {
  min-height: 100svh !important;
  justify-content: center !important;
  padding-top: clamp(84px, 12vh, 132px);
  padding-bottom: clamp(82px, 11vh, 124px);
  transform: translateY(clamp(12px, 2.5vh, 28px));
}

.hero-copy h1 {
  white-space: pre-line;
  text-wrap: normal;
}

@media (max-width: 980px) {
  .hero-immersive__content {
    padding-top: clamp(162px, 24vh, 232px);
    padding-bottom: clamp(60px, 10vh, 108px);
  }
}

@media (max-width: 640px) {
  .hero--immersive {
    padding: 0 !important;
  }

  .hero-immersive__content {
    justify-content: flex-start !important;
    padding-top: clamp(210px, 34vh, 270px);
    padding-bottom: 64px;
    transform: none;
  }

  .hero-copy h1 {
    white-space: normal;
  }
}

/* 20260518 hero final: exact two-line desktop headline + 100px lower */
@media (min-width: 981px) {
  .hero-immersive__content {
    transform: translateY(100px) !important;
  }

  .hero-copy,
  .hero-copy h1 {
    max-width: 1180px !important;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 4.5vw, 4.55rem) !important;
    line-height: .92 !important;
    white-space: pre-wrap !important;
    text-wrap: normal !important;
  }
}

/* Booking page: match the public website topbar/background and keep the form focused. */
body.booking-body {
  min-height: 100svh;
  background: #030303;
}

body.booking-body .voucher-page {
  padding-top: clamp(210px, 24vh, 260px);
  padding-bottom: 72px;
  background: transparent;
}

body.booking-body .booking-hero {
  margin-bottom: 28px;
}

body.booking-body .booking-hero h2 {
  margin-bottom: 0;
  color: #f6eee5;
  text-shadow: 0 10px 36px rgba(0,0,0,.48);
}

body.booking-body .panel {
  background: rgba(24,19,16,.82);
  backdrop-filter: blur(12px);
}

body.booking-body .booking-back-btn {
  white-space: nowrap;
}

@media (max-width: 980px) {
  body.booking-body .voucher-page {
    padding-top: 250px;
  }
}

@media (max-width: 640px) {
  body.booking-body .voucher-page {
    padding-top: 285px;
  }
}

/* 20260518 booking compact layout + payment radio flow */
body.booking-body .voucher-page {
  padding-top: clamp(118px, 13vh, 150px);
  padding-bottom: 32px;
}

body.booking-body .booking-hero {
  margin-bottom: 18px;
}

body.booking-body .booking-hero h2 {
  font-size: clamp(3rem, 4.6vw, 5rem);
}

body.booking-body .booking-page-grid {
  gap: 16px;
}

body.booking-body .booking-date-stack {
  gap: 16px;
}

body.booking-body .panel {
  padding: 16px;
}

body.booking-body .calendar-header,
body.booking-body .slot-header {
  margin-bottom: 12px;
}

body.booking-body .calendar-weekdays,
body.booking-body .calendar-grid {
  gap: 7px;
}

body.booking-body .calendar-weekdays {
  margin-bottom: 10px;
}

body.booking-body .day-btn {
  min-height: 47px;
  border-radius: 13px;
}

body.booking-body .form-grid {
  gap: 12px;
}

body.booking-body .booking-form {
  gap: 14px;
}

body.booking-body input:not([type="checkbox"]):not([type="radio"]),
body.booking-body select,
body.booking-body textarea {
  padding: 10px 12px;
  border-radius: 13px;
}

body.booking-body textarea {
  min-height: 94px;
}

body.booking-body .booking-price-summary {
  padding: 12px 14px;
}

body.booking-body .booking-terms {
  gap: 10px;
}

body.booking-body .booking-terms--checks {
  margin-top: 14px;
}

body.booking-body .term-item {
  padding: 14px 16px;
}

.booking-payment-options {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.payment-radio {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.payment-radio:hover {
  transform: translateY(-1px);
  border-color: rgba(255,224,173,.35);
  background: rgba(255,255,255,.06);
}

.payment-radio input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.payment-radio__mark {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 999px;
  border: 2px solid rgba(255,224,173,.52);
  background: rgba(0,0,0,.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.payment-radio__mark::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffe0ad;
  transform: scale(0);
  transition: transform .16s ease;
}

.payment-radio:has(input:checked) {
  border-color: rgba(255,224,173,.58);
  background: rgba(223,177,114,.14);
}

.payment-radio input:checked + .payment-radio__mark::after {
  transform: scale(1);
}

.voucher-code-box {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(255,224,173,.22);
  border-radius: 16px;
  background: rgba(255,224,173,.07);
}

body.booking-body .booking-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

@media (min-width: 1101px) {
  body.booking-body .booking-page-grid {
    grid-template-columns: minmax(350px, 1.05fr) minmax(330px, 1fr) minmax(330px, .95fr);
  }
}

@media (max-width: 980px) {
  body.booking-body .voucher-page {
    padding-top: 220px;
  }
}

@media (max-width: 640px) {
  body.booking-body .voucher-page {
    padding-top: 260px;
  }
}

/* 20260518 booking layout refinement: legal links, custom checks, compact one-screen flow */
body.booking-body .voucher-page {
  padding-top: clamp(88px, 9vh, 115px);
  padding-bottom: 22px;
}

body.booking-body .booking-hero {
  margin-bottom: 10px;
}

body.booking-body .booking-hero h2 {
  font-size: clamp(2.65rem, 4.1vw, 4.35rem);
  line-height: .9;
}

body.booking-body .booking-page-grid {
  gap: 14px;
}

body.booking-body .booking-date-stack {
  gap: 14px;
}

body.booking-body .panel {
  padding: 15px;
}

body.booking-body .calendar-header,
body.booking-body .slot-header {
  margin-bottom: 10px;
}

body.booking-body .day-btn {
  min-height: 43px;
  border-radius: 12px;
}

body.booking-body .slot-list {
  gap: 9px;
}

body.booking-body .slot-btn {
  padding: 10px 14px;
}

.booking-details-header {
  align-items: flex-start;
  gap: 12px;
}

.booking-selected-slot {
  min-width: 0;
}

#selectedSlotLabel {
  white-space: pre-line;
}

body.booking-body .lock-timer {
  flex: 0 0 auto;
  min-width: 98px;
  padding: 9px 11px;
}

body.booking-body .form-grid {
  gap: 10px 12px;
}

body.booking-body .booking-form {
  gap: 0;
}

body.booking-body input:not([type="checkbox"]):not([type="radio"]),
body.booking-body select,
body.booking-body textarea {
  padding: 9px 12px;
}

body.booking-body textarea {
  min-height: 78px;
}

body.booking-body .booking-commit-panel {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

body.booking-body .booking-commit-panel .booking-price-summary {
  margin: 0;
  padding: 12px 14px;
  border-color: rgba(255,224,173,.34);
  background: rgba(223,177,114,.13);
  font-weight: 750;
}

body.booking-body .booking-payment-options {
  margin-top: 0;
  gap: 9px;
}

body.booking-body .payment-radio {
  padding: 12px 14px;
  border-radius: 15px;
}

body.booking-body .voucher-code-box {
  margin-top: 0;
  padding: 12px;
}

body.booking-body .booking-terms--checks {
  margin-top: 0;
  gap: 11px;
}

body.booking-body .checkbox-field {
  line-height: 1.2;
  font-weight: 760;
}

body.booking-body .checkbox-field input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  border-radius: 5px;
  border: 2px solid rgba(255,224,173,.56);
  background: rgba(0,0,0,.24);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

body.booking-body .checkbox-field input[type="checkbox"]::after {
  content: '';
  width: 5px;
  height: 10px;
  border-right: 2px solid #20140c;
  border-bottom: 2px solid #20140c;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform .14s ease;
}

body.booking-body .checkbox-field input[type="checkbox"]:checked {
  background: #ffe0ad;
  border-color: #ffe0ad;
  box-shadow: 0 0 0 3px rgba(255,224,173,.12);
}

body.booking-body .checkbox-field input[type="checkbox"]:checked::after {
  transform: rotate(45deg) scale(1);
}

body.booking-body .checkbox-field a {
  color: #ffe0ad;
  text-decoration: underline;
  text-decoration-color: rgba(255,224,173,.45);
  text-underline-offset: 3px;
}

body.booking-body .booking-submit-btn {
  margin-top: 0;
}

@media (min-width: 1101px) {
  body.booking-body .booking-page-grid {
    grid-template-columns: minmax(345px, 1.05fr) minmax(330px, 1fr) minmax(330px, .95fr);
  }
}

@media (max-width: 980px) {
  body.booking-body .voucher-page {
    padding-top: 210px;
  }
}

@media (max-width: 640px) {
  body.booking-body .voucher-page {
    padding-top: 250px;
  }
}


/* 20260518 booking final polish: centered booking flow, better checks, summary + status pages */
@media (min-width: 1101px) {
  body.booking-body .voucher-page > .container {
    min-height: calc(100svh - 112px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  body.booking-body .booking-page-grid {
    align-items: center;
  }
}

body.booking-body .booking-price-summary {
  display: grid;
  gap: 5px;
  line-height: 1.25;
}

body.booking-body .booking-price-summary__line {
  display: block;
  color: rgba(246,238,229,.94);
}

body.booking-body .booking-price-summary__total {
  display: block;
  color: #ffe0ad;
  font-weight: 800;
}

body.booking-body .booking-price-summary__total strong {
  display: block;
  color: #fff7ea;
  font-size: 1.28rem;
  line-height: 1.05;
}

body.booking-body .checkbox-field {
  align-items: flex-start;
  gap: 12px;
}

body.booking-body .checkbox-field input[type="checkbox"] {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  margin: 0;
  border-radius: 7px;
  border: 2px solid rgba(255,224,173,.62);
  background: rgba(0,0,0,.28);
  display: inline-grid;
  place-items: center;
}

body.booking-body .checkbox-field input[type="checkbox"]::after {
  content: '✓';
  width: auto;
  height: auto;
  border: 0;
  color: #1d130d;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  transform: scale(0);
  transition: transform .12s ease;
}

body.booking-body .checkbox-field input[type="checkbox"]:checked {
  background: #ffe0ad;
  border-color: #ffe0ad;
  box-shadow: 0 0 0 4px rgba(255,224,173,.13);
}

body.booking-body .checkbox-field input[type="checkbox"]:checked::after {
  transform: scale(1);
}

body.booking-status-body .voucher-page {
  padding-top: clamp(96px, 10vh, 132px);
  padding-bottom: 38px;
}

body.booking-status-body .voucher-page > .container {
  min-height: calc(100svh - 150px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-status-card {
  width: min(760px, 100%);
  padding: clamp(22px, 3.2vw, 34px) !important;
  background: rgba(24,19,16,.86) !important;
  backdrop-filter: blur(12px);
}

.booking-status-eyebrow {
  margin: 0 0 8px;
  color: #ffe0ad;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
}

.booking-status-card h1 {
  font-family: var(--font-heading, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2.6rem, 5.6vw, 4.5rem);
  line-height: .92;
  margin: 0 0 14px;
  color: #f6eee5;
}

.booking-status-lead {
  max-width: 62ch;
  color: rgba(246,238,229,.9);
  font-size: 1.05rem;
}

.booking-status-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.booking-status-details div,
.booking-status-note {
  border: 1px solid rgba(255,224,173,.22);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  padding: 14px 16px;
}

.booking-status-details span,
.booking-status-note strong {
  display: block;
  color: #ffe0ad;
  font-weight: 850;
  margin-bottom: 4px;
}

.booking-status-details strong {
  display: block;
  color: #fff7ea;
  overflow-wrap: anywhere;
}

.booking-status-note p {
  margin: 0;
  color: rgba(246,238,229,.88);
}

.booking-status-note.is-warning {
  border-color: rgba(255,203,143,.42);
  background: rgba(223,177,114,.12);
}

.booking-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.booking-status-actions .btn.disabled {
  opacity: .48;
  cursor: not-allowed;
  pointer-events: auto;
}

@media (max-width: 700px) {
  .booking-status-details {
    grid-template-columns: 1fr;
  }

  body.booking-status-body .voucher-page {
    padding-top: 250px;
  }
}


/* 20260518 booking polish after payment flow */
@media (min-width: 1101px) {
  body.booking-body .voucher-page > .container {
    justify-content: center;
  }

  body.booking-body .booking-page-grid {
    align-items: start;
  }
}

body.booking-body .booking-price-summary__mission,
body.booking-body .booking-price-summary__booking {
  display: block;
  color: #fff7ea;
  font-weight: 850;
  line-height: 1.22;
}

body.booking-body .booking-price-summary__mission {
  margin-bottom: 4px;
}

body.booking-body .checkbox-field {
  align-items: center;
}

body.booking-body .checkbox-field input[type="checkbox"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

body.booking-body .checkbox-field input[type="checkbox"]::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 46%;
  width: 8px;
  height: 15px;
  border: solid #1d130d;
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform .12s ease;
}

body.booking-body .checkbox-field input[type="checkbox"]:checked::after {
  transform: translate(-50%, -50%) rotate(45deg) scale(1);
}


/* 20260518 booking stability/autofill/check polish */
@media (min-width: 1101px) {
  body.booking-body:not(.booking-status-body) .voucher-page > .container {
    min-height: auto;
    display: block;
    justify-content: initial;
  }

  body.booking-body:not(.booking-status-body) .booking-page-grid {
    align-items: start;
  }
}

body.booking-body input:not([type="checkbox"]):not([type="radio"]):-webkit-autofill,
body.booking-body textarea:-webkit-autofill,
body.booking-body select:-webkit-autofill {
  -webkit-text-fill-color: #f6eee5;
  caret-color: #f6eee5;
  box-shadow: 0 0 0 1000px rgba(24, 19, 16, .94) inset;
  -webkit-box-shadow: 0 0 0 1000px rgba(24, 19, 16, .94) inset;
  border-color: rgba(255, 224, 173, .28);
  transition: background-color 9999s ease-in-out 0s;
}

body.booking-body .checkbox-field input[type="checkbox"]::after {
  left: 50%;
  top: 48%;
  width: 9px;
  height: 16px;
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
}

body.booking-body .checkbox-field input[type="checkbox"]:checked::after {
  transform: translate(-50%, -50%) rotate(45deg) scale(1);
}

.booking-status-notes {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}


/* 20260518 booking final requested alignment/check/button/status polish */
@media (min-width: 1101px) {
  body.booking-body:not(.booking-status-body) .voucher-page > .container {
    min-height: calc(100svh - 104px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  body.booking-body:not(.booking-status-body) .booking-page-grid {
    align-items: start;
    min-height: 560px;
  }

  body.booking-body:not(.booking-status-body) .booking-date-stack > .panel:last-child {
    min-height: 125px;
  }
}

body.booking-body .booking-commit-panel {
  gap: 11px;
}

body.booking-body .booking-submit-btn {
  margin-top: 14px;
}

body.booking-body .checkbox-field input[type="checkbox"] {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 8px;
}

body.booking-body .checkbox-field input[type="checkbox"]::after {
  left: 50%;
  top: 47%;
  width: 10px;
  height: 17px;
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
}

body.booking-body .checkbox-field input[type="checkbox"]:checked::after {
  transform: translate(-50%, -50%) rotate(45deg) scale(1);
}

.booking-status-notes {
  grid-template-columns: 1fr;
}

.booking-status-note a {
  color: #ffe0ad;
  text-decoration: underline;
  text-decoration-color: rgba(255,224,173,.45);
  text-underline-offset: 3px;
  font-weight: 850;
}


/* 20260518 final booking stability + status page one-screen polish */
@media (min-width: 1101px) {
  body.booking-body:not(.booking-status-body) .voucher-page > .container {
    min-height: calc(100svh - 96px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  body.booking-body:not(.booking-status-body) .booking-page-grid {
    height: 560px;
    min-height: 560px;
    align-items: start;
  }

  body.booking-body:not(.booking-status-body) .booking-date-stack {
    height: 100%;
    grid-template-rows: auto 174px;
  }

  body.booking-body:not(.booking-status-body) .booking-date-stack > .panel:last-child {
    height: 174px;
    min-height: 174px;
    overflow: hidden;
  }

  body.booking-body:not(.booking-status-body) .booking-date-stack > .panel:last-child .slot-list {
    max-height: 102px;
    overflow-y: auto;
    scrollbar-width: thin;
  }
}

body.booking-body .booking-submit-btn {
  margin-top: 20px;
}

body.booking-body .checkbox-field input[type="checkbox"]::after {
  left: 50%;
  top: 50%;
  width: 11px;
  height: 18px;
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -58%) rotate(45deg) scale(0);
}

body.booking-body .checkbox-field input[type="checkbox"]:checked::after {
  transform: translate(-50%, -58%) rotate(45deg) scale(1);
}

body.booking-status-body {
  overflow: hidden;
}

body.booking-status-body .voucher-page {
  min-height: 100svh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

body.booking-status-body .voucher-page > .container {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.booking-status-body .booking-status-card {
  max-height: calc(100svh - 32px);
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 28px) !important;
}

body.booking-status-body .booking-status-card h1 {
  font-size: clamp(2.35rem, 4.9vw, 4rem);
  margin-bottom: 10px;
}

body.booking-status-body .booking-status-lead {
  margin-bottom: 0;
}

body.booking-status-body .booking-status-details {
  gap: 10px;
  margin: 18px 0;
}

body.booking-status-body .booking-status-details div,
body.booking-status-body .booking-status-note,
body.booking-status-body .booking-status-note.is-warning {
  border: 1px solid rgba(255,224,173,.22);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  padding: 12px 16px;
}

body.booking-status-body .booking-status-notes {
  gap: 10px;
  margin-top: 18px;
}

body.booking-status-body .booking-status-note p {
  line-height: 1.42;
}

body.booking-status-body .booking-status-actions {
  margin-top: 18px;
}

@media (max-width: 700px) {
  body.booking-status-body {
    overflow: auto;
  }
  body.booking-status-body .voucher-page {
    padding-top: 250px;
    padding-bottom: 38px;
    display: block;
  }
  body.booking-status-body .voucher-page > .container {
    min-height: auto;
  }
  body.booking-status-body .booking-status-card {
    max-height: none;
    overflow: visible;
  }
}

/* 20260518 slot box flexible without moving the other booking columns */
@media (min-width: 1101px) {
  body.booking-body:not(.booking-status-body) .booking-page-grid {
    height: 560px;
    min-height: 560px;
    align-items: start;
  }

  body.booking-body:not(.booking-status-body) .booking-date-stack {
    height: auto;
    grid-template-rows: auto auto;
    align-content: start;
  }

  body.booking-body:not(.booking-status-body) .booking-date-stack > .panel:last-child {
    height: auto;
    min-height: 118px;
    overflow: visible;
  }

  body.booking-body:not(.booking-status-body) .booking-date-stack > .panel:last-child .slot-list {
    max-height: none;
    overflow: visible;
  }
}


/* 20260518 booking no-scroll desktop + keep flexible times panel */
@media (min-width: 1101px) {
  body.booking-body:not(.booking-status-body) {
    height: 100svh;
    overflow: hidden;
  }

  body.booking-body:not(.booking-status-body) .voucher-page {
    height: 100svh;
    min-height: 100svh;
    padding-top: clamp(72px, 7.4vh, 104px);
    padding-bottom: 16px;
    display: flex;
    align-items: center;
  }

  body.booking-body:not(.booking-status-body) .voucher-page > .container {
    min-height: 0;
    max-height: calc(100svh - 98px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  body.booking-body:not(.booking-status-body) .booking-hero {
    margin-bottom: 10px;
  }

  body.booking-body:not(.booking-status-body) .booking-hero h2 {
    margin-bottom: 0;
  }

  body.booking-body:not(.booking-status-body) .booking-page-grid {
    height: auto;
    min-height: 0;
    align-items: start;
  }

  body.booking-body:not(.booking-status-body) .booking-date-stack {
    height: auto;
    grid-template-rows: auto auto;
    align-content: start;
  }

  body.booking-body:not(.booking-status-body) .booking-date-stack > .panel:last-child {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  body.booking-body:not(.booking-status-body) .booking-date-stack > .panel:last-child .slot-list {
    max-height: none;
    overflow: visible;
  }
}

/* 20260518 voucher page rebuild: match booking page layout/background */
body.voucher-body:not(.booking-status-body) .voucher-checkout-page {
  background: transparent;
}

@media (min-width: 1101px) {
  body.voucher-body:not(.booking-status-body) {
    height: 100svh;
    overflow: hidden;
  }

  body.voucher-body:not(.booking-status-body) .voucher-checkout-page {
    height: 100svh;
    min-height: 100svh;
    padding-top: clamp(72px, 7.4vh, 104px);
    padding-bottom: 16px;
    display: flex;
    align-items: center;
  }

  body.voucher-body:not(.booking-status-body) .voucher-checkout-page > .container {
    min-height: 0;
    max-height: calc(100svh - 98px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

body.voucher-body .voucher-booking-grid {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(360px, 1fr) minmax(330px, .92fr);
  gap: 14px;
  align-items: start;
}

body.voucher-body .voucher-info-panel,
body.voucher-body .voucher-form-panel,
body.voucher-body .voucher-payment-panel {
  background: rgba(24,19,16,.84);
  backdrop-filter: blur(12px);
}

body.voucher-body .voucher-info-panel,
body.voucher-body .voucher-payment-panel {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

body.voucher-body .voucher-info-panel h3,
body.voucher-body .voucher-form-panel h3 {
  margin: 0;
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.15rem;
  color: #fff7ea;
}

body.voucher-body .voucher-info-panel p {
  margin: 0;
  color: rgba(246,238,229,.88);
  line-height: 1.5;
}

body.voucher-body .voucher-mission-card {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding: 14px 16px;
  border: 1px solid rgba(255,224,173,.26);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}

body.voucher-body .voucher-mission-card strong {
  color: #ffe0ad;
  font-weight: 850;
}

body.voucher-body .voucher-mission-card span {
  color: rgba(246,238,229,.88);
}

body.voucher-body .voucher-payment-panel .voucher-summary {
  gap: 10px;
}

body.voucher-body .voucher-payment-panel .voucher-summary__row {
  padding: 12px 14px;
  border-radius: 15px;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,224,173,.18);
}

body.voucher-body .voucher-main-summary {
  margin: 0;
  padding: 12px 14px;
  border-color: rgba(255,224,173,.34);
  background: rgba(223,177,114,.13);
  font-weight: 750;
}

body.voucher-body .voucher-note {
  margin: 0;
  color: rgba(246,238,229,.86);
  line-height: 1.45;
}

body.voucher-body .voucher-action-row {
  margin-top: auto;
  gap: 12px;
}

body.voucher-body .voucher-action-row .btn--secondary {
  min-height: 44px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
}

body.voucher-body .booking-feedback {
  min-height: 0;
}

body.voucher-body input:not([type="checkbox"]):not([type="radio"]):-webkit-autofill,
body.voucher-body textarea:-webkit-autofill,
body.voucher-body select:-webkit-autofill {
  -webkit-text-fill-color: #f6eee5;
  caret-color: #f6eee5;
  box-shadow: 0 0 0 1000px rgba(24, 19, 16, .94) inset;
  -webkit-box-shadow: 0 0 0 1000px rgba(24, 19, 16, .94) inset;
  border-color: rgba(255, 224, 173, .28);
  transition: background-color 9999s ease-in-out 0s;
}

@media (max-width: 1100px) {
  body.voucher-body .voucher-booking-grid {
    grid-template-columns: 1fr;
  }
}


/* 20260518 voucher compact two-column checkout */
body.voucher-body:not(.booking-status-body) .voucher-booking-grid--two {
  width: min(100%, 980px);
  margin: 0 auto;
  grid-template-columns: minmax(420px, 1.08fr) minmax(330px, .82fr);
  gap: 16px;
  align-items: stretch;
}

body.voucher-body:not(.booking-status-body) .voucher-info-panel {
  display: none;
}

body.voucher-body:not(.booking-status-body) .voucher-checkout-page > .container {
  width: min(100% - 32px, 1040px);
}

body.voucher-body:not(.booking-status-body) .voucher-hero {
  width: min(100%, 980px);
  margin: 0 auto 12px;
}

body.voucher-body:not(.booking-status-body) .voucher-hero h2 {
  font-size: clamp(2.6rem, 4.2vw, 4.35rem);
  line-height: .9;
}

body.voucher-body .voucher-form-panel,
body.voucher-body .voucher-payment-panel {
  min-height: 0;
  padding: 16px;
}

body.voucher-body .voucher-form-intro {
  margin: 4px 0 14px;
  color: rgba(246,238,229,.84);
  line-height: 1.35;
}

body.voucher-body .voucher-form-panel .booking-status-eyebrow {
  margin-bottom: 8px;
}

body.voucher-body .voucher-form-panel .form-grid {
  gap: 10px 12px;
}

body.voucher-body .voucher-form-panel .booking-form {
  gap: 10px;
}

body.voucher-body .voucher-form-panel textarea {
  min-height: 78px;
}

body.voucher-body .voucher-payment-panel {
  gap: 10px;
}

body.voucher-body .voucher-payment-panel .voucher-summary {
  display: grid;
  gap: 8px;
}

body.voucher-body .voucher-payment-panel .voucher-summary__row {
  padding: 10px 12px;
  min-height: 50px;
}

body.voucher-body .voucher-main-summary {
  padding: 11px 13px;
}

body.voucher-body .voucher-note {
  font-size: .95rem;
}

body.voucher-body .voucher-action-row {
  margin-top: 6px;
}

body.voucher-body .voucher-action-row .btn--primary {
  min-width: 210px;
  justify-content: center;
}

@media (min-width: 1101px) {
  body.voucher-body:not(.booking-status-body) .voucher-checkout-page {
    padding-top: clamp(86px, 10vh, 122px);
    align-items: center;
  }
}

@media (max-width: 1100px) {
  body.voucher-body:not(.booking-status-body) .voucher-booking-grid--two {
    width: 100%;
    grid-template-columns: 1fr;
  }
}


/* 20260518 voucher checkout polish */
body.voucher-body:not(.booking-status-body) .voucher-booking-grid--two {
  width: min(100%, 920px);
  grid-template-columns: minmax(360px, 1fr) minmax(300px, .72fr);
  align-items: stretch;
}

body.voucher-body .voucher-payment-panel {
  justify-content: center;
}

body.voucher-body .voucher-payment-panel .voucher-summary__row:first-child {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,224,173,.18);
}

body.voucher-body .voucher-action-row {
  justify-content: center;
  margin-top: 18px;
}

body.voucher-body .voucher-action-row .btn--primary {
  min-width: 230px;
  justify-content: center;
}

body.voucher-body .voucher-form-panel .form-grid {
  align-items: end;
}

@media (max-width: 1100px) {
  body.voucher-body:not(.booking-status-body) .voucher-booking-grid--two {
    width: 100%;
    grid-template-columns: 1fr;
  }
}


/* 20260518 voucher confirmation page */
body.voucher-status-body .voucher-code-detail strong {
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  letter-spacing: .06em;
}
body.voucher-status-body .booking-status-card {
  width: min(800px, 100%);
}
@media (max-width: 700px) {
  body.voucher-status-body .voucher-code-detail strong {
    font-size: 1.2rem;
  }
}


/* 20260518 voucher final summary and confirmation polish */
body.voucher-body .voucher-payment-panel .voucher-summary__row--package {
  min-height: 62px;
  align-items: center;
}
body.voucher-body .voucher-payment-panel .voucher-summary__row--package span,
body.voucher-body .voucher-payment-panel .voucher-summary__row--package strong {
  font-size: 1rem;
}
body.voucher-status-body .booking-status-actions {
  gap: 12px;
}
body.voucher-status-body .booking-status-actions .btn--primary {
  min-width: 210px;
  justify-content: center;
}

/* 20260518 voucher checkout final alignment */
body.voucher-body:not(.booking-status-body) .voucher-hero,
body.voucher-body:not(.booking-status-body) .voucher-booking-grid--two {
  width: min(100%, 920px);
  margin-left: auto;
  margin-right: auto;
}

body.voucher-body:not(.booking-status-body) .voucher-hero {
  margin-bottom: 12px;
}

body.voucher-body:not(.booking-status-body) .voucher-booking-grid--two {
  grid-template-columns: minmax(380px, 1fr) minmax(320px, .78fr);
  gap: 18px;
  align-items: start;
}

body.voucher-body .voucher-form-panel,
body.voucher-body .voucher-payment-panel {
  border-radius: 22px;
}

body.voucher-body .voucher-payment-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  padding: 18px;
}

body.voucher-body .voucher-payment-panel .voucher-summary {
  width: 100%;
  display: grid;
  gap: 10px;
}

body.voucher-body .voucher-payment-panel .voucher-summary__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,224,173,.24);
}

body.voucher-body .voucher-payment-panel .voucher-summary__row:first-child {
  border-color: rgba(255,224,173,.30);
}

body.voucher-body .voucher-payment-panel .voucher-summary__row--package {
  min-height: 62px;
  background: rgba(223,177,114,.10);
  border-color: rgba(255,224,173,.34);
}

body.voucher-body .voucher-payment-panel .voucher-summary__row span,
body.voucher-body .voucher-payment-panel .voucher-summary__row strong {
  line-height: 1.2;
}

body.voucher-body .voucher-payment-panel .voucher-summary__row strong {
  text-align: right;
  white-space: nowrap;
}

body.voucher-body .voucher-note {
  margin: 0;
  padding: 0 2px;
  line-height: 1.42;
}

body.voucher-body .voucher-action-row {
  margin-top: 18px;
  justify-content: center;
}

body.voucher-body .voucher-action-row .btn--primary {
  width: min(100%, 260px);
}

@media (min-width: 1101px) {
  body.voucher-body:not(.booking-status-body) .voucher-checkout-page > .container {
    width: min(100% - 64px, 920px);
  }
}

@media (max-width: 1100px) {
  body.voucher-body:not(.booking-status-body) .voucher-hero,
  body.voucher-body:not(.booking-status-body) .voucher-booking-grid--two {
    width: 100%;
  }
}


/* 20260518 voucher equal-height final polish */
body.voucher-body:not(.booking-status-body) .voucher-booking-grid--two {
  align-items: stretch;
}

body.voucher-body .voucher-form-panel,
body.voucher-body .voucher-payment-panel {
  height: 100%;
}

body.voucher-body .voucher-payment-panel {
  justify-content: space-between;
  min-height: 0;
}

body.voucher-body .voucher-payment-panel .voucher-summary {
  gap: 10px;
}

body.voucher-body .voucher-payment-panel .voucher-summary__row,
body.voucher-body .voucher-payment-panel .voucher-summary__row:first-child,
body.voucher-body .voucher-payment-panel .voucher-summary__row--package {
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(223,177,114,.10);
  border-color: rgba(255,224,173,.34);
}

body.voucher-body .voucher-payment-panel .voucher-summary__row span,
body.voucher-body .voucher-payment-panel .voucher-summary__row strong {
  font-weight: 500;
}

body.voucher-body .voucher-payment-panel .voucher-summary__row strong {
  font-weight: 500;
  letter-spacing: 0;
}

body.voucher-body .voucher-note {
  display: none !important;
}

body.voucher-body .voucher-action-row {
  margin-top: auto;
  padding-top: 20px;
}

@media (min-width: 901px) {
  body.voucher-body:not(.booking-status-body) .voucher-booking-grid--two {
    align-items: stretch;
  }
}

/* 20260519 voucher checkout: one merged card */
body.voucher-body:not(.booking-status-body) .voucher-booking-grid--merged {
  display: block;
  width: min(100%, 640px);
  margin-left: auto;
  margin-right: auto;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged {
  height: auto;
  min-height: 0;
  padding: 20px 22px 22px;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .booking-form {
  margin-bottom: 0;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .form-grid {
  gap: 12px 14px;
}

body.voucher-body:not(.booking-status-body) .voucher-checkout-summary {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,224,173,.18);
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary {
  width: 100%;
  display: grid;
  gap: 10px;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row,
body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row:first-child,
body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row--package {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  padding: 13px 16px;
  border-radius: 16px;
  background: rgba(223,177,114,.10);
  border: 1px solid rgba(255,224,173,.34);
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row span,
body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row strong {
  line-height: 1.2;
  font-weight: 600;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row strong {
  text-align: right;
  white-space: nowrap;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .booking-feedback {
  margin-top: 10px;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-action-row {
  margin-top: 16px;
  padding-top: 0;
  justify-content: center;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-action-row .btn--primary {
  width: min(100%, 260px);
  justify-content: center;
}

@media (min-width: 1101px) {
  body.voucher-body:not(.booking-status-body) .voucher-hero,
  body.voucher-body:not(.booking-status-body) .voucher-booking-grid--merged {
    width: min(100%, 640px);
  }
}

@media (max-width: 700px) {
  body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged {
    padding: 17px 15px 18px;
  }

  body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row,
  body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row:first-child,
  body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row--package {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row strong {
    text-align: left;
    white-space: normal;
  }
}

/* 20260519 voucher checkout: premium single-card polish */
body.voucher-body:not(.booking-status-body) .voucher-booking-grid--merged {
  width: min(100%, 740px);
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255, 224, 173, .24);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 224, 173, .13), transparent 34%),
    linear-gradient(145deg, rgba(27, 20, 15, .95), rgba(53, 34, 22, .9));
  box-shadow:
    0 26px 70px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 224, 173, .85), transparent);
  opacity: .62;
}

body.voucher-body:not(.booking-status-body) .voucher-panel-header {
  position: relative;
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

body.voucher-body:not(.booking-status-body) .voucher-panel-kicker,
body.voucher-body:not(.booking-status-body) .voucher-summary-label {
  color: #ffe0ad;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged h3 {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: .95;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-form-intro {
  max-width: 58ch;
  margin: 0;
  color: rgba(246, 238, 229, .82);
  line-height: 1.45;
}

body.voucher-body:not(.booking-status-body) .voucher-form-card {
  padding: 17px;
  border: 1px solid rgba(255, 224, 173, .14);
  border-radius: 20px;
  background: rgba(9, 7, 6, .22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-form-grid {
  gap: 14px 16px;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged label span {
  color: rgba(246, 238, 229, .82);
  font-size: .88rem;
  font-weight: 650;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged input:not([type="checkbox"]):not([type="radio"]),
body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged select {
  min-height: 48px;
  border-radius: 14px;
  border-color: rgba(255, 224, 173, .20);
  background: rgba(16, 12, 10, .54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045);
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged input:focus,
body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged select:focus {
  border-color: rgba(255, 224, 173, .58);
  box-shadow: 0 0 0 3px rgba(255, 224, 173, .11), inset 0 1px 0 rgba(255, 255, 255, .045);
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-checkout-summary {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 224, 173, .18);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 224, 173, .075), rgba(255, 255, 255, .025)),
    rgba(10, 8, 7, .22);
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary-label {
  display: block;
  margin-bottom: 10px;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 10px;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row,
body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row:first-child,
body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row--package {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 7px;
  min-height: 78px;
  padding: 15px 16px;
  border-radius: 17px;
  background: rgba(26, 19, 15, .72);
  border: 1px solid rgba(255, 224, 173, .24);
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row--package {
  background: linear-gradient(135deg, rgba(223, 177, 114, .18), rgba(26, 19, 15, .72));
  border-color: rgba(255, 224, 173, .38);
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row span {
  color: rgba(246, 238, 229, .78);
  font-size: .88rem;
  font-weight: 650;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row strong {
  color: #fff6e6;
  text-align: left;
  white-space: normal;
  line-height: 1.15;
  font-size: 1.08rem;
  font-weight: 850;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary-note {
  margin: 12px 2px 0;
  color: rgba(246, 238, 229, .72);
  line-height: 1.4;
  font-size: .93rem;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .booking-feedback {
  margin-top: 10px;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-action-row {
  margin-top: 16px;
  justify-content: center;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-action-row .btn--primary {
  width: min(100%, 320px);
  min-height: 50px;
  justify-content: center;
  box-shadow: 0 13px 28px rgba(0, 0, 0, .25);
}

@media (min-width: 1101px) {
  body.voucher-body:not(.booking-status-body) .voucher-hero,
  body.voucher-body:not(.booking-status-body) .voucher-booking-grid--merged {
    width: min(100%, 740px);
  }
}

@media (max-width: 700px) {
  body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged {
    padding: 22px 16px 18px;
    border-radius: 22px;
  }

  body.voucher-body:not(.booking-status-body) .voucher-form-card,
  body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-checkout-summary {
    padding: 14px;
  }

  body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary {
    grid-template-columns: 1fr;
  }
}


/* 20260519 voucher + booking final polish */
body.voucher-body:not(.booking-status-body) .voucher-panel-kicker {
  display: none !important;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row,
body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row:first-child,
body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary__row--package {
  background: rgba(26, 19, 15, .72) !important;
  border-color: rgba(255, 224, 173, .24) !important;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-panel-header {
  margin-bottom: 20px;
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-form-card,
body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-checkout-summary {
  background:
    linear-gradient(135deg, rgba(255, 224, 173, .055), rgba(255, 255, 255, .018)),
    rgba(8, 6, 5, .30);
  border-color: rgba(255, 224, 173, .18);
}

body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-action-row .btn--primary {
  width: min(100%, 360px);
  min-height: 52px;
  border-radius: 999px;
  font-weight: 850;
}

body.booking-body:not(.booking-status-body) .booking-page-grid > .panel,
body.booking-body:not(.booking-status-body) .booking-date-stack > .panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 224, 173, .22);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 224, 173, .11), transparent 36%),
    linear-gradient(145deg, rgba(27, 20, 15, .94), rgba(46, 31, 22, .88)) !important;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, .38),
    inset 0 1px 0 rgba(255, 255, 255, .055);
}

body.booking-body:not(.booking-status-body) .booking-page-grid > .panel::before,
body.booking-body:not(.booking-status-body) .booking-date-stack > .panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 224, 173, .76), transparent);
  opacity: .50;
  pointer-events: none;
}

body.booking-body:not(.booking-status-body) .calendar-header h3,
body.booking-body:not(.booking-status-body) .slot-header h3,
body.booking-body:not(.booking-status-body) .booking-selected-slot h3 {
  color: #fff6e6;
  font-weight: 850;
}

body.booking-body:not(.booking-status-body) .booking-details-panel .booking-form {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 224, 173, .15);
  border-radius: 20px;
  background: rgba(8, 6, 5, .25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

body.booking-body:not(.booking-status-body) .booking-details-panel label span,
body.booking-body:not(.booking-status-body) .booking-commit-panel label span {
  color: rgba(246, 238, 229, .82);
  font-weight: 700;
}

body.booking-body:not(.booking-status-body) input:not([type="checkbox"]):not([type="radio"]),
body.booking-body:not(.booking-status-body) select,
body.booking-body:not(.booking-status-body) textarea {
  border-color: rgba(255, 224, 173, .20);
  background: rgba(12, 9, 8, .58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

body.booking-body:not(.booking-status-body) input:focus,
body.booking-body:not(.booking-status-body) select:focus,
body.booking-body:not(.booking-status-body) textarea:focus {
  border-color: rgba(255, 224, 173, .58);
  box-shadow: 0 0 0 3px rgba(255, 224, 173, .11), inset 0 1px 0 rgba(255, 255, 255, .04);
}

body.booking-body:not(.booking-status-body) .booking-price-summary,
body.booking-body:not(.booking-status-body) .payment-radio,
body.booking-body:not(.booking-status-body) .voucher-code-box,
body.booking-body:not(.booking-status-body) .checkbox-field {
  border: 1px solid rgba(255, 224, 173, .22);
  background: rgba(26, 19, 15, .66);
  border-radius: 17px;
}

body.booking-body:not(.booking-status-body) .payment-radio:has(input:checked) {
  border-color: rgba(255, 224, 173, .45);
  background: rgba(223, 177, 114, .14);
}

body.booking-body:not(.booking-status-body) .day-btn,
body.booking-body:not(.booking-status-body) .slot-btn {
  border-color: rgba(255, 224, 173, .18);
  background: rgba(12, 9, 8, .42);
}

body.booking-body:not(.booking-status-body) .day-btn:hover,
body.booking-body:not(.booking-status-body) .slot-btn:hover,
body.booking-body:not(.booking-status-body) .day-btn.selected,
body.booking-body:not(.booking-status-body) .slot-btn.selected {
  border-color: rgba(255, 224, 173, .50);
  background: rgba(223, 177, 114, .14);
}

body.booking-body:not(.booking-status-body) .booking-submit-btn {
  min-height: 52px;
  border-radius: 999px;
  font-weight: 850;
  box-shadow: 0 13px 28px rgba(0, 0, 0, .25);
}


/* 20260519 final customer polish: cleaner booking checks + slightly narrower voucher card */
body.booking-body:not(.booking-status-body) .booking-terms--checks {
  gap: 12px;
  padding: 2px 2px 0;
}

body.booking-body:not(.booking-status-body) .booking-terms--checks .checkbox-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.booking-body:not(.booking-status-body) .booking-terms--checks .checkbox-field span {
  line-height: 1.28;
}

body.voucher-body:not(.booking-status-body) .voucher-booking-grid--merged {
  width: min(100%, 700px) !important;
}

/* 20260519 same-day approval flow */
.same-day-notice {
  border: 1px solid rgba(255, 224, 173, .42);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(223,177,114,.18), rgba(92,47,28,.20));
  padding: 14px 16px;
  color: rgba(246,238,229,.94);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.same-day-notice strong {
  display: block;
  color: #ffe0ad;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 6px;
}

.same-day-notice p {
  margin: 0;
  line-height: 1.45;
  font-size: .95rem;
}

body.booking-body .payment-radio.is-disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

body.booking-body .payment-radio.is-disabled:hover {
  transform: none;
  border-color: var(--line);
  background: rgba(255,255,255,.04);
}

body.booking-body .booking-payment-options.is-same-day .payment-radio:has(input:checked) {
  border-color: rgba(255,224,173,.46);
  background: rgba(255,224,173,.09);
}

/* Calendar blanks for leading weekdays. These keep alignment without showing dates from another month. */
.day-btn--empty {
  visibility: hidden;
  pointer-events: none;
}

/* 20260520 compact children pricing notice */
.field-note {
  display: block;
  margin-top: -2px;
  color: rgba(246, 238, 229, .66);
  font-size: .76rem;
  font-weight: 650;
  line-height: 1.25;
}

body.booking-body:not(.booking-status-body) label .field-note,
body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged label .field-note {
  color: rgba(255, 224, 173, .76) !important;
  font-size: .76rem !important;
  font-weight: 650 !important;
}


/* Compact player rule tooltip on booking/voucher forms */
.label-with-tooltip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.field-help {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 224, 173, .58);
  color: #ffdda8;
  font-family: Inter, Arial, sans-serif;
  font-size: .72rem;
  font-weight: 850;
  line-height: 1;
  cursor: help;
}

.field-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 25;
  width: min(300px, 78vw);
  transform: translate(-50%, 6px);
  padding: 11px 13px;
  border: 1px solid rgba(255, 224, 173, .38);
  border-radius: 14px;
  background: rgba(26, 11, 5, .96);
  color: #f6eee5;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .38);
  font-family: Inter, Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  text-transform: none;
  transition: opacity .16s ease, transform .16s ease;
}

.field-tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: rgba(26, 11, 5, .96);
}

.label-with-tooltip:hover .field-tooltip,
.label-with-tooltip:focus-within .field-tooltip,
.field-help:hover .field-tooltip,
.field-help:focus .field-tooltip,
.field-help:focus-visible .field-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}


/* 20260520 make player-rule tooltip sit above neighboring booking panels */
body.booking-body:not(.booking-status-body) .booking-page-grid > .panel,
body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged {
  overflow: visible !important;
}

body.booking-body:not(.booking-status-body) .booking-details-panel,
body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged {
  position: relative;
  z-index: 60;
}

body.booking-body:not(.booking-status-body) .booking-commit-panel,
body.booking-body:not(.booking-status-body) .booking-date-stack {
  position: relative;
  z-index: 10;
}

.label-with-tooltip,
.field-help {
  overflow: visible !important;
}

.field-help {
  z-index: 1000;
}

.field-tooltip {
  z-index: 99999 !important;
  white-space: pre-line;
  text-align: left;
}

/* 20260520 responsive + cross-browser compatibility pass */
body.booking-body .panel,
body.voucher-body .voucher-info-panel,
body.voucher-body .voucher-form-panel,
body.voucher-body .voucher-payment-panel {
  -webkit-backdrop-filter: blur(12px);
}

.payment-radio.is-selected {
  border-color: rgba(255,224,173,.58);
  background: rgba(223,177,114,.14);
}

body.booking-body:not(.booking-status-body) .payment-radio.is-selected {
  border-color: rgba(255, 224, 173, .45);
  background: rgba(223, 177, 114, .14);
}

body.booking-body .booking-payment-options.is-same-day .payment-radio.is-selected {
  border-color: rgba(255,224,173,.46);
  background: rgba(255,224,173,.09);
}

.payment-radio.is-selected .payment-radio__mark::after {
  transform: scale(1);
}

@supports not (height: 100svh) {
  body.booking-body:not(.booking-status-body),
  body.voucher-body:not(.booking-status-body),
  body.booking-body:not(.booking-status-body) .voucher-page,
  body.voucher-body:not(.booking-status-body) .voucher-checkout-page {
    height: 100vh;
    min-height: 100vh;
  }
}

@media (max-width: 1100px) {
  body.booking-body:not(.booking-status-body),
  body.voucher-body:not(.booking-status-body) {
    height: auto !important;
    min-height: 100vh !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  body.booking-body:not(.booking-status-body) .voucher-page,
  body.voucher-body:not(.booking-status-body) .voucher-checkout-page {
    height: auto !important;
    min-height: 100vh !important;
    padding-top: 122px !important;
    padding-bottom: 34px !important;
    display: block !important;
    align-items: initial !important;
  }

  body.booking-body:not(.booking-status-body) .voucher-page > .container,
  body.voucher-body:not(.booking-status-body) .voucher-checkout-page > .container {
    min-height: 0 !important;
    max-height: none !important;
    display: block !important;
  }

  body.booking-body:not(.booking-status-body) .booking-page-grid,
  body.voucher-body:not(.booking-status-body) .voucher-booking-grid,
  body.voucher-body:not(.booking-status-body) .voucher-booking-grid--merged {
    width: min(100%, 760px) !important;
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
  }

  body.booking-body:not(.booking-status-body) .booking-date-stack {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
  }

  body.booking-body:not(.booking-status-body) .booking-hero,
  body.voucher-body:not(.booking-status-body) .booking-hero {
    width: min(100%, 760px);
    margin-left: auto;
    margin-right: auto;
  }

  body.booking-body:not(.booking-status-body) .booking-date-stack > .panel:last-child,
  body.booking-body:not(.booking-status-body) .booking-date-stack > .panel:last-child .slot-list {
    max-height: none !important;
    overflow: visible !important;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .hero-topbar.booking-topbar {
    min-height: auto;
    padding: 10px 12px;
    gap: 10px;
  }

  .hero-topbar.booking-topbar .hero-logo {
    width: min(150px, 42vw);
    height: auto;
  }

  .hero-topbar.booking-topbar .hero-topbar__actions {
    gap: 7px;
  }

  .hero-topbar.booking-topbar .hero-phone {
    display: none;
  }

  .hero-topbar.booking-topbar .booking-back-btn {
    padding: 8px 10px;
    font-size: .78rem;
  }

  .hero-lang-inline {
    gap: 4px;
  }

  .lang-btn {
    min-width: 38px;
    min-height: 34px;
    padding: 6px 8px;
  }

  body.booking-body:not(.booking-status-body) .voucher-page,
  body.voucher-body:not(.booking-status-body) .voucher-checkout-page {
    padding-top: 98px !important;
  }

  body.booking-body .booking-hero h2,
  body.voucher-body .booking-hero h2 {
    font-size: clamp(3.1rem, 16vw, 4.8rem) !important;
    line-height: .88;
  }

  body.booking-body:not(.booking-status-body) .booking-page-grid,
  body.booking-body:not(.booking-status-body) .booking-date-stack,
  body.voucher-body:not(.booking-status-body) .voucher-booking-grid--merged {
    gap: 12px !important;
  }

  body.booking-body:not(.booking-status-body) .booking-page-grid > .panel,
  body.booking-body:not(.booking-status-body) .booking-date-stack > .panel,
  body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged {
    padding: 14px !important;
    border-radius: 22px !important;
  }

  body.booking-body .calendar-weekdays,
  body.booking-body .calendar-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px !important;
  }

  body.booking-body .calendar-weekdays span {
    font-size: .72rem;
    letter-spacing: .06em;
  }

  body.booking-body .day-btn {
    width: 100%;
    min-width: 0;
    min-height: 42px !important;
    padding: 0 !important;
    border-radius: 12px !important;
    font-size: .96rem;
  }

  body.booking-body .slot-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px !important;
  }

  body.booking-body .slot-btn {
    width: 100%;
    min-height: 42px;
    padding: 0 8px !important;
    justify-content: center;
  }

  body.booking-body .booking-details-header {
    flex-direction: column;
    align-items: stretch;
  }

  body.booking-body .lock-timer {
    width: fit-content;
    align-self: flex-start;
  }

  body.booking-body .form-grid,
  body.voucher-body .voucher-form-panel--merged .voucher-form-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body.booking-body textarea {
    min-height: 92px;
  }

  body.booking-body .booking-commit-panel {
    gap: 11px;
  }

  body.booking-body .booking-payment-options {
    gap: 8px;
  }

  body.booking-body .payment-radio {
    min-height: 46px;
    padding: 11px 12px !important;
  }

  body.booking-body .booking-terms--checks .checkbox-field {
    align-items: flex-start !important;
    gap: 10px !important;
  }

  body.booking-body .booking-submit-btn,
  body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-action-row .btn--primary {
    width: 100% !important;
    min-height: 50px;
  }

  body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-panel-header {
    margin-bottom: 14px;
  }

  body.voucher-body:not(.booking-status-body) .voucher-panel-header h3 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: .95;
  }

  body.voucher-body:not(.booking-status-body) .voucher-form-card,
  body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-checkout-summary {
    padding: 14px !important;
    border-radius: 18px !important;
  }

  body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged .voucher-summary {
    grid-template-columns: 1fr !important;
  }

  body.voucher-body:not(.booking-status-body) .voucher-summary__row {
    min-height: 70px;
  }

  .field-tooltip {
    left: auto !important;
    right: -8px !important;
    width: min(292px, calc(100vw - 36px)) !important;
    transform: translate(0, 6px) !important;
  }

  .label-with-tooltip:hover .field-tooltip,
  .label-with-tooltip:focus-within .field-tooltip,
  .field-help:hover .field-tooltip,
  .field-help:focus .field-tooltip,
  .field-help:focus-visible .field-tooltip {
    transform: translate(0, 0) !important;
  }

  .field-tooltip::after {
    left: auto !important;
    right: 12px !important;
    transform: none !important;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 16px, 1180px);
  }

  .hero-topbar.booking-topbar {
    padding: 8px;
  }

  .hero-topbar.booking-topbar .booking-back-btn {
    display: none;
  }

  body.booking-body:not(.booking-status-body) .voucher-page,
  body.voucher-body:not(.booking-status-body) .voucher-checkout-page {
    padding-top: 82px !important;
  }

  body.booking-body .booking-hero h2,
  body.voucher-body .booking-hero h2 {
    font-size: clamp(2.8rem, 17vw, 4.2rem) !important;
  }

  body.booking-body:not(.booking-status-body) .booking-page-grid > .panel,
  body.booking-body:not(.booking-status-body) .booking-date-stack > .panel,
  body.voucher-body:not(.booking-status-body) .voucher-form-panel--merged {
    padding: 12px !important;
    border-radius: 18px !important;
  }

  body.booking-body .calendar-weekdays,
  body.booking-body .calendar-grid {
    gap: 5px !important;
  }

  body.booking-body .day-btn {
    min-height: 39px !important;
    border-radius: 10px !important;
    font-size: .9rem;
  }

  body.booking-body .slot-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.booking-body input:not([type="checkbox"]):not([type="radio"]),
  body.booking-body select,
  body.booking-body textarea,
  body.voucher-body input,
  body.voucher-body select,
  body.voucher-body textarea {
    min-height: 44px;
    font-size: 16px;
  }
}

/* 20260520 mobile-first redesign and Safari/iOS hardening */
@supports (height: 100dvh) {
  .hero-stage,
  .hero--immersive,
  .hero-immersive__content,
  body.booking-body,
  body.voucher-body {
    min-height: 100dvh;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }

  body.home-page::before {
    display: none !important;
  }

  .gate.active {
    display: none !important;
  }

  .hero-stage {
    min-height: 100dvh !important;
    overflow: hidden;
    background: #070504;
  }

  .hero-stage__bg {
    position: absolute !important;
    inset: 0 !important;
    background-image:
      linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.08) 34%, rgba(0,0,0,.50) 68%, rgba(0,0,0,.92) 100%),
      url('/assets/escape-room-schenna-sissi-websiteheader.jpg') !important;
    background-size: cover !important;
    background-position: 54% center !important;
    background-attachment: scroll !important;
    filter: none !important;
  }

  .hero-stage__overlay {
    display: block !important;
    background:
      radial-gradient(circle at 18% 22%, rgba(255,224,173,.14), transparent 36%),
      linear-gradient(90deg, rgba(0,0,0,.22), rgba(0,0,0,.05) 54%, rgba(0,0,0,.25));
  }

  .hero-topbar {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    padding: max(18px, env(safe-area-inset-top)) 18px 0 !important;
    display: block !important;
    pointer-events: auto !important;
  }

  .hero-logo-link {
    display: inline-flex !important;
    width: auto;
  }

  .hero-logo {
    width: clamp(190px, 58vw, 245px) !important;
    max-width: 78vw;
    height: auto;
  }

  .hero-topbar__actions {
    width: 100% !important;
    margin-top: 26px !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px 14px !important;
    align-items: center !important;
    justify-content: stretch !important;
  }

  .hero-phone {
    grid-column: 1 / -1;
    width: auto !important;
    font-size: clamp(.92rem, 4.3vw, 1.08rem) !important;
    line-height: 1.15;
    letter-spacing: .14em;
    text-shadow: 0 3px 14px rgba(0,0,0,.66);
  }

  .hero-lang-inline {
    width: max-content;
    padding: 6px !important;
    border-radius: 999px;
    background: rgba(8, 6, 5, .74) !important;
    border: 1px solid rgba(255, 236, 214, .12) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .hero-lang-inline .lang-btn {
    min-width: 44px !important;
    height: 44px !important;
    padding: 0 12px !important;
    font-size: 1rem;
  }

  .hero-book-btn {
    justify-self: stretch;
    width: auto !important;
    min-width: 0;
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 18px !important;
    white-space: nowrap;
    font-size: 1rem !important;
    box-shadow: 0 14px 32px rgba(0,0,0,.34) !important;
  }

  .hero--immersive {
    min-height: auto !important;
    padding: 0 !important;
    display: block !important;
  }

  .hero-immersive__content {
    min-height: auto !important;
    padding: clamp(56px, 10vh, 86px) 18px max(86px, calc(env(safe-area-inset-bottom) + 64px)) !important;
    transform: none !important;
    justify-content: flex-start !important;
  }

  .hero-copy {
    max-width: 100% !important;
  }

  .hero-immersive__eyebrow {
    margin-bottom: 14px !important;
    font-size: .82rem !important;
    letter-spacing: .25em !important;
    line-height: 1.35;
  }

  .hero-copy h1 {
    max-width: 100% !important;
    font-size: clamp(2.75rem, 14.2vw, 4.18rem) !important;
    line-height: .94 !important;
    letter-spacing: -.035em;
    white-space: normal !important;
    overflow-wrap: normal;
    text-wrap: balance;
    text-shadow: 0 8px 34px rgba(0,0,0,.72);
  }

  .hero-immersive__actions {
    margin-top: 28px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px !important;
    width: 100%;
  }

  .hero-immersive__actions .btn {
    width: 100%;
    min-height: 56px !important;
    height: auto !important;
    padding: 0 14px !important;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    font-size: .98rem !important;
  }

  body.home-page .section {
    min-height: auto !important;
    padding: 76px 0 !important;
    background: linear-gradient(180deg, rgba(7,5,4,.92), rgba(16,12,10,.86)) !important;
  }

  body.home-page .section.info,
  body.home-page .section.story,
  body.home-page .section.leaderboard,
  body.home-page .section.contact {
    position: relative;
    z-index: 2;
  }

  body.home-page .section.info {
    padding-top: 86px !important;
  }

  .container,
  .container.narrow,
  .narrow {
    width: 100% !important;
    max-width: none !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .section h2,
  body.home-page .info h2,
  body.home-page .story h2,
  body.home-page .leaderboard h2,
  body.home-page .contact h2 {
    font-size: clamp(2.2rem, 11vw, 3.3rem) !important;
    line-height: .98 !important;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  body.home-page .info p:not(.eyebrow),
  body.home-page .story p:not(.eyebrow),
  body.home-page .leaderboard p:not(.eyebrow),
  body.home-page .contact p:not(.eyebrow) {
    font-size: 1.05rem !important;
    line-height: 1.72 !important;
    text-shadow: 0 2px 14px rgba(0,0,0,.55);
  }

  .panel,
  .leaderboard-panel,
  .contact-layout .panel {
    border-radius: 22px !important;
    background: rgba(21, 15, 12, .84) !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .contact-layout,
  .leaderboard-gate,
  .route-buttons {
    grid-template-columns: 1fr !important;
  }

  .map-stage {
    min-height: 320px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
  }

  .cookie-banner__inner,
  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 380px) {
  .hero-topbar__actions {
    grid-template-columns: 1fr;
  }

  .hero-book-btn,
  .hero-lang-inline {
    justify-self: start;
  }

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

  .hero-copy h1 {
    font-size: clamp(2.45rem, 13.5vw, 3.35rem) !important;
  }
}

@media (max-width: 760px) and (orientation: landscape) {
  .hero-stage {
    min-height: auto !important;
  }

  .hero-topbar {
    padding-top: 14px !important;
  }

  .hero-logo {
    width: 165px !important;
  }

  .hero-topbar__actions {
    margin-top: 12px !important;
  }

  .hero-immersive__content {
    padding-top: 34px !important;
    padding-bottom: 54px !important;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem) !important;
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* 20260520 mobile background + booking step flow fixes */
.booking-date-stack > .panel,
.booking-details-panel,
.booking-commit-panel {
  scroll-margin-top: 96px;
}

body.booking-body:not(.booking-status-body) #playersSelect,
body.booking-body:not(.booking-status-body) #languageSelect {
  min-height: 48px;
  height: 48px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  line-height: 48px;
}

body.booking-body:not(.booking-status-body) .booking-details-header {
  position: relative;
}

@media (max-width: 760px) {
  body.home-page::before {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 0 !important;
    background-image:
      linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.08) 32%, rgba(0,0,0,.52) 72%, rgba(0,0,0,.86) 100%),
      var(--home-bg-image, url('/assets/escape-room-schenna-sissi-websiteheader.jpg')) !important;
    background-size: cover !important;
    background-position: 54% center !important;
    background-repeat: no-repeat !important;
    background-color: #070504 !important;
    transform: translateZ(0);
  }

  .hero-stage {
    background: transparent !important;
  }

  .hero-stage__bg {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.08) 34%, rgba(0,0,0,.50) 68%, rgba(0,0,0,.88) 100%),
      var(--home-bg-image, url('/assets/escape-room-schenna-sissi-websiteheader.jpg')) !important;
    background-size: cover !important;
    background-position: 54% center !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
  }

  body.home-page .section {
    background:
      linear-gradient(180deg, rgba(7,5,4,.62), rgba(16,12,10,.76)) !important;
  }

  body.home-page .section.info,
  body.home-page .section.story,
  body.home-page .section.leaderboard,
  body.home-page .section.contact,
  body.home-page .section.prices {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.booking-body:not(.booking-status-body) .booking-details-header {
    display: block !important;
    min-height: 66px;
    padding-right: 112px;
  }

  body.booking-body:not(.booking-status-body) .booking-details-header .lock-timer {
    position: absolute;
    top: 0;
    right: 0;
    width: auto !important;
    min-width: 92px;
    align-self: auto !important;
    text-align: center;
  }
}

@media (max-width: 430px) {
  body.booking-body:not(.booking-status-body) .booking-details-header {
    padding-right: 100px;
  }

  body.booking-body:not(.booking-status-body) .booking-details-header .lock-timer {
    min-width: 86px;
    padding: 8px 9px;
  }
}



/* 20260520 mobile visual cleanup: clearer hero actions, real background image, no section veil, safe tooltip */
@media (max-width: 760px) {
  body.home-page::before {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 0 !important;
    background-image: var(--home-bg-image, url('/assets/escape-room-schenna-sissi-websiteheader.jpg')) !important;
    background-size: cover !important;
    background-position: 54% center !important;
    background-repeat: no-repeat !important;
    background-color: #070504 !important;
    opacity: 1 !important;
  }

  .hero-stage,
  body.home-page .section {
    background: transparent !important;
  }

  .hero-stage__bg {
    background-image: var(--home-bg-image, url('/assets/escape-room-schenna-sissi-websiteheader.jpg')) !important;
    background-size: cover !important;
    background-position: 54% center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    filter: none !important;
  }

  .hero-stage__overlay,
  .hero-stage__bg::after,
  body.home-page .section::before,
  body.home-page .section::after,
  body.home-page .info::before,
  body.home-page .info::after,
  body.home-page .story::before,
  body.home-page .story::after,
  body.home-page .prices::before,
  body.home-page .prices::after,
  body.home-page .leaderboard::before,
  body.home-page .leaderboard::after,
  body.home-page .contact::before,
  body.home-page .contact::after {
    display: none !important;
    content: none !important;
    background: none !important;
    box-shadow: none !important;
  }

  body.home-page .section.info,
  body.home-page .section.story,
  body.home-page .section.prices,
  body.home-page .section.leaderboard,
  body.home-page .section.contact {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero-topbar {
    padding: max(16px, env(safe-area-inset-top)) 18px 0 !important;
  }

  .hero-logo {
    width: clamp(176px, 52vw, 228px) !important;
    max-width: 74vw !important;
  }

  .hero-topbar__actions {
    margin-top: 18px !important;
    display: grid !important;
    grid-template-columns: minmax(126px, auto) minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: center !important;
    width: min(100%, 390px) !important;
    padding: 0 !important;
  }

  .hero-lang-inline {
    order: 1;
    justify-self: start;
    width: max-content !important;
    padding: 4px !important;
    border-radius: 999px !important;
    background: rgba(8, 6, 5, .72) !important;
    border: 1px solid rgba(255, 236, 214, .12) !important;
    box-shadow: 0 10px 28px rgba(0,0,0,.22) !important;
  }

  .hero-lang-inline .lang-btn {
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 10px !important;
    font-size: .92rem !important;
  }

  .hero-book-btn {
    order: 2;
    justify-self: stretch !important;
    height: 52px !important;
    min-height: 52px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    font-size: .98rem !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.28) !important;
  }

  .hero-phone {
    order: 3;
    grid-column: 1 / -1 !important;
    justify-self: start !important;
    width: auto !important;
    margin-top: 2px !important;
    padding: 6px 2px 0 !important;
    font-size: .92rem !important;
    line-height: 1.1 !important;
    letter-spacing: .10em !important;
    opacity: .92 !important;
    text-shadow: 0 3px 12px rgba(0,0,0,.72) !important;
  }

  .hero-immersive__content {
    padding-top: clamp(64px, 12vh, 96px) !important;
  }

  .hero-copy h1 {
    text-shadow: 0 6px 24px rgba(0,0,0,.78) !important;
  }

  body.home-page .info p:not(.eyebrow),
  body.home-page .story p:not(.eyebrow),
  body.home-page .prices p:not(.eyebrow),
  body.home-page .leaderboard p:not(.eyebrow),
  body.home-page .contact p:not(.eyebrow),
  body.home-page .info h2,
  body.home-page .story h2,
  body.home-page .prices h2,
  body.home-page .leaderboard h2,
  body.home-page .contact h2 {
    text-shadow: 0 4px 18px rgba(0,0,0,.82) !important;
  }

  .field-tooltip {
    position: fixed !important;
    left: 16px !important;
    right: 16px !important;
    bottom: calc(16px + env(safe-area-inset-bottom)) !important;
    top: auto !important;
    width: auto !important;
    max-width: none !important;
    transform: translateY(10px) !important;
    z-index: 2147483647 !important;
    padding: 13px 15px !important;
    border-radius: 16px !important;
    font-size: .86rem !important;
    line-height: 1.42 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .58) !important;
  }

  .label-with-tooltip:hover .field-tooltip,
  .label-with-tooltip:focus-within .field-tooltip,
  .field-help:hover .field-tooltip,
  .field-help:focus .field-tooltip,
  .field-help:focus-visible .field-tooltip {
    transform: translateY(0) !important;
  }

  .field-tooltip::after {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .hero-topbar__actions {
    grid-template-columns: 1fr !important;
    width: min(100%, 320px) !important;
  }

  .hero-book-btn,
  .hero-lang-inline {
    justify-self: stretch !important;
  }

  .hero-lang-inline {
    width: max-content !important;
  }
}

/* 20260520 legal links + homepage background de-duplication */
body.home-page .hero-stage__bg {
  display: none !important;
  background: none !important;
}

body.home-page::before {
  opacity: 1 !important;
  transition: none !important;
}

.page-legal-footer {
  position: relative;
  z-index: 3;
  padding: 14px 0 42px;
  background: transparent;
}

.page-legal-footer .footer-links {
  justify-content: center;
  gap: 18px;
}

.page-legal-footer .footer-links a {
  color: rgba(245, 235, 222, .72);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 224, 173, .28);
  padding-bottom: 2px;
}

.page-legal-footer .footer-links a:hover,
.page-legal-footer .footer-links a:focus-visible {
  color: #ffe0ad;
  border-bottom-color: rgba(255, 224, 173, .72);
}

@media (max-width: 760px) {
  body.home-page .hero-stage__bg {
    display: none !important;
  }

  .page-legal-footer {
    padding: 18px 0 calc(34px + env(safe-area-inset-bottom));
  }

  .page-legal-footer .footer-links {
    gap: 16px;
    font-size: .92rem;
  }
}



/* 20260520 status pages: desktop legal visibility + cleaner mobile confirmation layout */
body.booking-status-body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

@media (min-width: 701px) {
  body.booking-status-body .voucher-page {
    min-height: calc(100svh - 72px) !important;
    padding-top: clamp(124px, 13vh, 164px) !important;
    padding-bottom: 24px !important;
    display: flex !important;
    align-items: center !important;
  }

  body.booking-status-body .voucher-page > .container {
    min-height: auto !important;
  }

  body.booking-status-body .booking-status-card {
    max-height: none !important;
    overflow: visible !important;
  }

  body.booking-status-body .page-legal-footer {
    display: block !important;
    padding: 6px 0 28px !important;
  }
}

@media (max-width: 700px) {
  body.booking-status-body {
    min-height: 100dvh;
    background: #070504;
  }

  body.booking-status-body::before {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 0 !important;
    background-image:
      linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.18) 42%, rgba(0,0,0,.70) 100%),
      var(--home-bg-image, url('/assets/escape-room-schenna-sissi-websiteheader.jpg')) !important;
    background-size: cover !important;
    background-position: 54% center !important;
    background-repeat: no-repeat !important;
    background-color: #070504 !important;
    opacity: 1 !important;
  }

  body.booking-status-body .booking-topbar {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    z-index: 5 !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    padding: max(16px, env(safe-area-inset-top)) 18px 8px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    pointer-events: auto !important;
  }

  body.booking-status-body .booking-topbar .hero-logo-link {
    width: 100% !important;
    justify-content: center !important;
  }

  body.booking-status-body .booking-topbar .hero-logo {
    width: clamp(178px, 54vw, 235px) !important;
    max-width: 74vw !important;
  }

  body.booking-status-body .booking-topbar .hero-topbar__actions {
    width: 100% !important;
    max-width: 390px !important;
    margin-top: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 0 !important;
  }

  body.booking-status-body .booking-topbar .hero-phone {
    display: none !important;
  }

  body.booking-status-body .booking-topbar .hero-lang-inline {
    order: 1 !important;
    width: auto !important;
    justify-self: auto !important;
    padding: 4px !important;
  }

  body.booking-status-body .booking-topbar .hero-lang-inline .lang-btn {
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 10px !important;
    font-size: .92rem !important;
  }

  body.booking-status-body .booking-topbar .booking-back-btn {
    order: 2 !important;
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 40px !important;
    height: 40px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    font-size: .86rem !important;
    white-space: nowrap !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.26) !important;
  }

  body.booking-status-body .voucher-page {
    position: relative !important;
    z-index: 2 !important;
    min-height: auto !important;
    padding: 8px 0 18px !important;
    display: block !important;
  }

  body.booking-status-body .voucher-page > .container {
    min-height: auto !important;
    display: block !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body.booking-status-body .booking-status-card {
    width: min(100%, 480px) !important;
    max-height: none !important;
    overflow: visible !important;
    margin: 0 auto !important;
    padding: 18px !important;
    border-radius: 22px !important;
    background: rgba(22, 16, 13, .88) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  body.booking-status-body .booking-status-eyebrow {
    margin-bottom: 7px !important;
    font-size: .72rem !important;
    letter-spacing: .14em !important;
  }

  body.booking-status-body .booking-status-card h1 {
    font-size: clamp(2.15rem, 10vw, 3.15rem) !important;
    line-height: .96 !important;
    margin-bottom: 10px !important;
    text-wrap: balance;
  }

  body.booking-status-body .booking-status-lead {
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }

  body.booking-status-body .booking-status-details {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin: 16px 0 !important;
  }

  body.booking-status-body .booking-status-details div,
  body.booking-status-body .booking-status-note,
  body.booking-status-body .booking-status-note.is-warning {
    border-radius: 16px !important;
    padding: 12px 14px !important;
  }

  body.booking-status-body .booking-status-notes {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 14px !important;
  }

  body.booking-status-body .booking-status-note p {
    font-size: .95rem !important;
    line-height: 1.48 !important;
  }

  body.booking-status-body .booking-status-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  body.booking-status-body .booking-status-actions .btn {
    width: 100% !important;
    min-height: 48px !important;
    height: auto !important;
    white-space: normal !important;
    text-align: center !important;
  }

  body.booking-status-body .page-legal-footer {
    display: block !important;
    position: relative !important;
    z-index: 3 !important;
    padding: 10px 0 calc(24px + env(safe-area-inset-bottom)) !important;
  }

  body.booking-status-body .page-legal-footer .footer-links {
    justify-content: center !important;
    gap: 18px !important;
    font-size: .9rem !important;
  }
}

@media (max-width: 380px) {
  body.booking-status-body .booking-topbar .hero-topbar__actions {
    max-width: 310px !important;
  }

  body.booking-status-body .booking-topbar .booking-back-btn {
    min-height: 38px !important;
    height: 38px !important;
    padding: 0 14px !important;
    font-size: .82rem !important;
  }
}


/* 20260520 desktop legal footer visibility + email logo asset update */
@media (min-width: 701px) {
  body.booking-status-body .page-legal-footer {
    display: block !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 14px !important;
    z-index: 80 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    pointer-events: none !important;
  }

  body.booking-status-body .page-legal-footer .footer-links {
    display: flex !important;
    width: max-content !important;
    max-width: calc(100vw - 40px) !important;
    margin: 0 auto !important;
    padding: 8px 16px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 18px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 224, 173, .24) !important;
    background: rgba(12, 8, 6, .62) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    backdrop-filter: blur(10px) !important;
    pointer-events: auto !important;
  }

  body.booking-status-body .page-legal-footer .footer-links a {
    display: inline-flex !important;
    color: rgba(255, 238, 208, .88) !important;
  }

  body.booking-status-body .voucher-page,
  body.booking-status-body .booking-status-page {
    padding-bottom: 82px !important;
  }
}

@media (min-width: 761px) {
  body.booking-body:not(.booking-status-body) .page-legal-footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 22px 0 38px !important;
  }

  body.booking-body:not(.booking-status-body) .page-legal-footer .footer-links {
    display: flex !important;
    justify-content: center !important;
  }
}

/* 20260520 desktop legal footer: booking and voucher pages */
@media (min-width: 761px) {
  body.booking-body:not(.booking-status-body) .page-legal-footer,
  body.voucher-body:not(.booking-status-body) .page-legal-footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 16px !important;
    z-index: 90 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    pointer-events: none !important;
  }

  body.booking-body:not(.booking-status-body) .page-legal-footer .footer-links,
  body.voucher-body:not(.booking-status-body) .page-legal-footer .footer-links {
    display: flex !important;
    width: max-content !important;
    max-width: calc(100vw - 40px) !important;
    margin: 0 auto !important;
    padding: 8px 16px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 18px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 224, 173, .24) !important;
    background: rgba(12, 8, 6, .62) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    backdrop-filter: blur(10px) !important;
    pointer-events: auto !important;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .34) !important;
  }

  body.booking-body:not(.booking-status-body) .page-legal-footer .footer-links a,
  body.voucher-body:not(.booking-status-body) .page-legal-footer .footer-links a {
    display: inline-flex !important;
    align-items: center !important;
    color: rgba(255, 238, 208, .9) !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255, 224, 173, .32) !important;
    padding-bottom: 2px !important;
  }

  body.booking-body:not(.booking-status-body) .page-legal-footer .footer-links a:hover,
  body.booking-body:not(.booking-status-body) .page-legal-footer .footer-links a:focus-visible,
  body.voucher-body:not(.booking-status-body) .page-legal-footer .footer-links a:hover,
  body.voucher-body:not(.booking-status-body) .page-legal-footer .footer-links a:focus-visible {
    color: #ffe0ad !important;
    border-bottom-color: rgba(255, 224, 173, .8) !important;
  }

  body.booking-body:not(.booking-status-body) .voucher-page,
  body.voucher-body:not(.booking-status-body) .voucher-page {
    padding-bottom: 112px !important;
  }
}

/* 20260520 footer: subtle underline style everywhere */
.page-legal-footer,
body.booking-status-body .page-legal-footer,
body.booking-body:not(.booking-status-body) .page-legal-footer,
body.voucher-body:not(.booking-status-body) .page-legal-footer {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 90 !important;
  padding: 18px 0 calc(26px + env(safe-area-inset-bottom)) !important;
  margin: 0 !important;
  background: transparent !important;
}

.page-legal-footer .footer-links,
body.booking-status-body .page-legal-footer .footer-links,
body.booking-body:not(.booking-status-body) .page-legal-footer .footer-links,
body.voucher-body:not(.booking-status-body) .page-legal-footer .footer-links {
  display: flex !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 18px !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 18px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  pointer-events: auto !important;
}

.page-legal-footer .footer-links a,
body.booking-status-body .page-legal-footer .footer-links a,
body.booking-body:not(.booking-status-body) .page-legal-footer .footer-links a,
body.voucher-body:not(.booking-status-body) .page-legal-footer .footer-links a,
.coming-soon-legal-links a {
  display: inline-flex !important;
  align-items: center !important;
  color: rgba(245, 235, 222, .72) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 224, 173, .30) !important;
  padding: 0 0 2px !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .50) !important;
}

.page-legal-footer .footer-links a:hover,
.page-legal-footer .footer-links a:focus-visible,
body.booking-status-body .page-legal-footer .footer-links a:hover,
body.booking-status-body .page-legal-footer .footer-links a:focus-visible,
body.booking-body:not(.booking-status-body) .page-legal-footer .footer-links a:hover,
body.booking-body:not(.booking-status-body) .page-legal-footer .footer-links a:focus-visible,
body.voucher-body:not(.booking-status-body) .page-legal-footer .footer-links a:hover,
body.voucher-body:not(.booking-status-body) .page-legal-footer .footer-links a:focus-visible,
.coming-soon-legal-links a:hover,
.coming-soon-legal-links a:focus-visible {
  color: #ffe0ad !important;
  border-bottom-color: rgba(255, 224, 173, .78) !important;
}

@media (min-width: 761px) {
  .page-legal-footer,
  body.booking-status-body .page-legal-footer,
  body.booking-body:not(.booking-status-body) .page-legal-footer,
  body.voucher-body:not(.booking-status-body) .page-legal-footer {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 18px !important;
    padding: 0 !important;
    pointer-events: none !important;
  }

  .page-legal-footer .footer-links,
  body.booking-status-body .page-legal-footer .footer-links,
  body.booking-body:not(.booking-status-body) .page-legal-footer .footer-links,
  body.voucher-body:not(.booking-status-body) .page-legal-footer .footer-links {
    pointer-events: auto !important;
  }

  body.booking-status-body .voucher-page,
  body.booking-status-body .booking-status-page,
  body.booking-body:not(.booking-status-body) .voucher-page,
  body.voucher-body:not(.booking-status-body) .voucher-page {
    padding-bottom: 70px !important;
  }
}

@media (max-width: 760px) {
  .page-legal-footer,
  body.booking-status-body .page-legal-footer,
  body.booking-body:not(.booking-status-body) .page-legal-footer,
  body.voucher-body:not(.booking-status-body) .page-legal-footer {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
}
