/* PELAGIA — Singapore's open-ocean aquarium.
   Abyss blue and ice-cyan light, photography full-bleed, glass panels over
   it. Display face is Funnel Display; body is Rethink Sans. The one motion is
   a reveal on entry, plus the live water on the home hero, which follows the
   pointer. Everything else responds to a click. */

:root {
  --abyss: #050B18;
  --deep: #0A1730;
  --ocean: #10254A;
  --shelf: #16325F;
  --glass: rgba(120, 170, 255, .08);
  --glass-2: rgba(120, 170, 255, .14);
  --edge: rgba(160, 200, 255, .18);
  --edge-2: rgba(160, 200, 255, .32);
  --text: #EAF2FF;
  --muted: #9FB3D1;
  --dim: #64789A;
  --cyan: #5EE7FF;
  --cyan-2: #1CB8D6;
  --ink-on-cyan: #05202A;
  --ok: #55D6A0;
  --warn: #FFC96B;
  --font-display: 'Funnel Display', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Rethink Sans', 'Segoe UI', system-ui, sans-serif;
  --max: 1240px;
  --gutter: clamp(16px, 4vw, 48px);
  --r: 22px;
  --r-sm: 12px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--abyss); color: var(--text);
  font-family: var(--font-body); font-size: 16px; line-height: 1.6; font-weight: 400;
  -webkit-font-smoothing: antialiased; overflow-x: clip;
}
body.is-locked { overflow: hidden; }
img, video { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--cyan); color: var(--ink-on-cyan); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--cyan); color: var(--ink-on-cyan); padding: 10px 14px; border-radius: 8px; }
.skip:focus { top: 16px; }
.wrap { width: min(100% - var(--gutter) * 2, var(--max)); margin-inline: auto; }

/* ---------- type ---------- */
.display, .h1, .h2, .h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.02; letter-spacing: -.02em; }
.h1 { font-size: clamp(38px, 6.4vw, 84px); }
.h2 { font-size: clamp(30px, 4vw, 52px); }
.h3 { font-size: clamp(20px, 2vw, 26px); }
.kicker { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); font-weight: 600; }
.lede { font-size: clamp(17px, 1.35vw, 19px); color: var(--muted); max-width: 58ch; }
.muted { color: var(--muted); }
.num { font-variant-numeric: tabular-nums; }

/* ---------- glass ---------- */
.glass {
  background: linear-gradient(160deg, var(--glass-2), var(--glass));
  border: 1px solid var(--edge);
  border-radius: var(--r);
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .10);
}
.glass--soft { background: linear-gradient(160deg, rgba(120, 170, 255, .10), rgba(120, 170, 255, .03)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 700; letter-spacing: .01em; white-space: nowrap;
  background: var(--cyan); color: var(--ink-on-cyan);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  box-shadow: 0 10px 30px rgba(94, 231, 255, .22);
}
.btn:hover { background: #8AF0FF; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: rgba(120, 170, 255, .10); color: var(--text); box-shadow: inset 0 0 0 1px var(--edge-2); }
.btn--ghost:hover { background: rgba(120, 170, 255, .18); }
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn svg { width: 16px; height: 16px; }
.more { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--cyan); }
.more svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.more:hover svg { transform: translateX(3px); }

/* ---------- reveal (the one motion) ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- header ---------- */
.top {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 76px; padding-inline: var(--gutter);
  background: linear-gradient(to bottom, rgba(5, 11, 24, .72), rgba(5, 11, 24, .35));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(160, 200, 255, .08);
}
.mark { display: inline-flex; align-items: center; gap: 12px; justify-self: start; font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.mark__ring { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--edge-2); display: grid; place-items: center; background: rgba(120, 170, 255, .08); }
.mark__ring svg { width: 22px; height: 22px; color: var(--cyan); }
.mark small { font-family: var(--font-body); font-size: 10px; letter-spacing: .16em; color: var(--muted); font-weight: 600; }
.nav { display: flex; gap: clamp(16px, 2.2vw, 30px); }
.nav a { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--muted); padding: 8px 0; position: relative; transition: color .2s; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav a[aria-current="page"]::after { content: ''; position: absolute; left: 50%; bottom: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); transform: translateX(-50%); box-shadow: 0 0 12px var(--cyan); }
.top__actions { display: flex; gap: 8px; justify-self: end; align-items: center; }
.top__book { display: inline-flex; }
.icon-btn { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: var(--text); transition: background .2s; }
.icon-btn:hover { background: rgba(120, 170, 255, .12); }
.icon-btn svg { width: 20px; height: 20px; }
.burger { display: none; }
.burger span, .burger span::before, .burger span::after { display: block; width: 22px; height: 2px; background: currentColor; position: relative; transition: transform .25s var(--ease), opacity .2s; }
.burger span::before, .burger span::after { content: ''; position: absolute; left: 0; }
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.drawer { position: fixed; inset: 0; z-index: 48; background: rgba(5, 11, 24, .96); padding: 100px var(--gutter) 40px; display: none; flex-direction: column; gap: 6px; }
.drawer[data-open="true"] { display: flex; }
.drawer a { font-family: var(--font-display); font-size: clamp(30px, 8.5vw, 48px); font-weight: 600; letter-spacing: -.02em; padding: 8px 0; border-bottom: 1px solid var(--edge); display: flex; justify-content: space-between; align-items: center; }
.drawer a[aria-current="page"] { color: var(--cyan); }
.drawer a span { font-family: var(--font-body); font-size: 12px; letter-spacing: .12em; color: var(--muted); }
.drawer__foot { margin-top: auto; color: var(--muted); font-size: 14px; display: grid; gap: 6px; }
.drawer__foot strong { color: var(--text); }

/* ---------- home hero ---------- */
.hero { position: relative; height: 100svh; min-height: 640px; max-height: 1080px; overflow: hidden; isolation: isolate; }
.hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; transform: scale(1.05); will-change: transform; }
.hero__water { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; pointer-events: none; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to right, rgba(5, 11, 24, .55) 0%, rgba(5, 11, 24, .15) 50%, rgba(5, 11, 24, .05) 100%),
    linear-gradient(to top, rgba(5, 11, 24, 1) 0%, rgba(5, 11, 24, .96) 5%, rgba(5, 11, 24, .82) 12%, rgba(5, 11, 24, .55) 22%, rgba(5, 11, 24, .25) 34%, rgba(5, 11, 24, .12) 50%, rgba(5, 11, 24, .2) 100%);
}
.hero__copy { position: absolute; z-index: 2; left: 0; right: 0; bottom: clamp(150px, 20vh, 220px); }
.hero__copy .wrap { display: grid; gap: 18px; max-width: 720px; margin-left: max(var(--gutter), calc((100% - var(--max)) / 2)); }
.hero__copy .h1 { text-shadow: 0 10px 40px rgba(0, 0, 0, .5); }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* the plan strip overlapping the hero foot */
.plan { position: relative; z-index: 3; margin-top: -96px; }
.plan__grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 6px; }
.plan__cell { padding: 20px 22px; border-right: 1px solid var(--edge); display: grid; gap: 4px; align-content: start; }
.plan__cell:last-child { border-right: 0; display: grid; place-items: center; }
.plan__cell span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.plan__cell b { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -.01em; }
.plan__cell b small { font-family: var(--font-body); font-size: 13px; color: var(--muted); font-weight: 500; letter-spacing: 0; margin-left: 6px; }
.plan__cell p { font-size: 13px; color: var(--muted); }
.pulse { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); margin-right: 8px; box-shadow: 0 0 10px var(--ok); vertical-align: 1px; }
.pulse--off { background: var(--dim); box-shadow: none; }

/* ---------- sections ---------- */
.section { padding-block: clamp(64px, 8vw, 112px); }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }
.section__head { margin-bottom: clamp(28px, 4vw, 44px); display: grid; gap: 10px; }
.section__head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.section__head--center { text-align: center; justify-items: center; }

/* the dashboard panel: the glass deck from the reference */
.deck { padding: clamp(24px, 3.5vw, 44px); display: grid; grid-template-columns: 380px 1fr; gap: clamp(28px, 4vw, 56px); }
.deck__photo { position: relative; border-radius: var(--r-sm); overflow: hidden; min-height: 520px; margin: 0; }
.deck__photo img { width: 100%; height: 100%; object-fit: cover; }
.deck__photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 16px; font-size: 13px; color: var(--muted); background: linear-gradient(to top, rgba(5, 11, 24, .85), transparent); }
.deck__photo figcaption strong { color: var(--text); display: block; font-size: 15px; }
.deck__main { display: grid; gap: clamp(24px, 3vw, 36px); align-content: start; }
.deck__main h2 { font-size: clamp(26px, 3vw, 38px); }
.rings { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.ring { display: grid; justify-items: center; text-align: center; gap: 10px; padding: 8px 4px; border-radius: var(--r-sm); transition: background .2s; }
.ring:hover { background: rgba(120, 170, 255, .08); }
.ring__o { width: 68px; height: 68px; border-radius: 50%; border: 1.5px solid var(--edge-2); display: grid; place-items: center; color: var(--cyan); background: rgba(120, 170, 255, .06); transition: box-shadow .25s, border-color .25s; }
.ring:hover .ring__o { border-color: var(--cyan); box-shadow: 0 0 24px rgba(94, 231, 255, .3); }
.ring__o svg { width: 30px; height: 30px; }
.ring b { font-size: 14px; font-weight: 700; }
.ring small { font-size: 12px; color: var(--muted); display: block; }
.rings--4 { grid-template-columns: repeat(4, 1fr); }
.deck__row { display: grid; grid-template-columns: 120px 1fr; gap: 18px; align-items: center; padding: 18px; border: 1px solid var(--edge); border-radius: var(--r-sm); background: rgba(5, 11, 24, .35); }
.deck__row img { width: 120px; height: 120px; object-fit: cover; border-radius: 10px; }
.deck__row h3 { font-size: 20px; margin-bottom: 6px; }
.deck__row p { color: var(--muted); font-size: 15px; }
.deck__foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.stars { display: inline-flex; gap: 3px; color: var(--cyan); }
.stars svg { width: 14px; height: 14px; }
.rating { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.rating b { color: var(--text); font-family: var(--font-display); font-size: 22px; }

/* today's schedule strip */
.today { padding: 6px; }
.today__list { display: grid; }
.slot { display: grid; grid-template-columns: 90px 1fr auto auto; gap: 16px; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--edge); }
.slot:last-child { border-bottom: 0; }
.slot__time { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -.01em; }
.slot__what b { display: block; font-size: 16px; }
.slot__what span { color: var(--muted); font-size: 13px; }
.slot__hall { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--cyan); font-weight: 700; padding: 6px 10px; border: 1px solid var(--edge); border-radius: 999px; white-space: nowrap; }
.slot__dur { font-size: 13px; color: var(--muted); white-space: nowrap; }
.slot--past { opacity: .45; }
.slot--next .slot__time { color: var(--cyan); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-size: 12px; font-weight: 700; letter-spacing: .04em; padding: 8px 14px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--edge-2); color: var(--muted); transition: color .2s, background .2s; }
.chip:hover { color: var(--text); }
.chip[aria-pressed="true"] { background: var(--cyan); box-shadow: none; color: var(--ink-on-cyan); }

/* halls strip */
.halls { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.hall { position: relative; display: block; aspect-ratio: 3 / 4; border-radius: var(--r-sm); overflow: hidden; background: var(--deep); }
.hall img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.hall:hover img { transform: scale(1.04); }
.hall::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5, 11, 24, .9) 0%, rgba(5, 11, 24, .2) 50%, transparent 100%); }
.hall__body { position: absolute; z-index: 1; left: 16px; right: 16px; bottom: 16px; display: grid; gap: 4px; }
.hall__body b { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -.01em; }
.hall__body span { font-size: 12px; color: var(--muted); }
.hall__o { position: absolute; z-index: 1; top: 14px; left: 14px; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--edge-2); display: grid; place-items: center; color: var(--cyan); background: rgba(5, 11, 24, .5); }
.hall__o svg { width: 20px; height: 20px; }

/* video band (after dark / hall header) */
.band { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.band video, .band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.band::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, var(--abyss) 0%, rgba(5, 11, 24, .92) 7%, rgba(5, 11, 24, .7) 16%, rgba(5, 11, 24, .4) 30%, rgba(5, 11, 24, .3) 55%, rgba(5, 11, 24, .6) 76%, rgba(5, 11, 24, .92) 92%, var(--abyss) 100%);
}
.band__card { max-width: 520px; padding: clamp(24px, 3vw, 36px); display: grid; gap: 14px; margin-block: clamp(90px, 14vw, 180px); }
.band__card .h2 { font-size: clamp(30px, 3.6vw, 46px); }
.band__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; padding-top: 10px; border-top: 1px solid var(--edge); }
.band__facts span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; display: block; }
.band__facts b { font-family: var(--font-display); font-size: 22px; font-weight: 600; }

/* experiences */
.xgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.xcard { display: grid; grid-template-rows: auto 1fr; overflow: hidden; }
.xcard__media { aspect-ratio: 3 / 4; overflow: hidden; position: relative; }
.xcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.xcard:hover .xcard__media img { transform: scale(1.04); }
.xcard__price { position: absolute; top: 12px; right: 12px; font-family: var(--font-display); font-size: 18px; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: rgba(5, 11, 24, .7); border: 1px solid var(--edge-2); }
.xcard__body { padding: 18px 18px 20px; display: grid; gap: 8px; align-content: start; }
.xcard__body h3 { font-size: 21px; }
.xcard__body p { color: var(--muted); font-size: 14px; }
.xcard__meta { font-size: 12px; color: var(--cyan); letter-spacing: .04em; font-weight: 700; }
.xcard__body .more { margin-top: 6px; }

/* tickets */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tcard { padding: 26px; display: grid; gap: 12px; align-content: start; position: relative; }
.tcard--hi { border-color: rgba(94, 231, 255, .5); box-shadow: 0 30px 80px rgba(0, 0, 0, .45), 0 0 0 1px rgba(94, 231, 255, .25), inset 0 1px 0 rgba(255, 255, 255, .10); }
.tcard__tag { position: absolute; top: -12px; left: 22px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; background: var(--cyan); color: var(--ink-on-cyan); padding: 5px 10px; border-radius: 999px; }
.tcard h3 { font-size: 22px; }
.price { font-family: var(--font-display); font-size: 44px; font-weight: 600; letter-spacing: -.02em; line-height: 1; }
.price small { font-family: var(--font-body); font-size: 13px; color: var(--muted); font-weight: 500; letter-spacing: 0; margin-left: 6px; }
.tcard ul { display: grid; gap: 8px; color: var(--muted); font-size: 14px; }
.tcard li { display: grid; grid-template-columns: 16px 1fr; gap: 10px; }
.tcard li svg { width: 16px; height: 16px; color: var(--cyan); margin-top: 3px; }
.tcard .btn { justify-content: center; }

/* reviews */
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.review { padding: 26px; display: grid; gap: 12px; }
.review blockquote { margin: 0; font-size: 17px; line-height: 1.55; }
.review cite { font-style: normal; color: var(--muted); font-size: 13px; }
.review cite strong { color: var(--text); display: block; font-size: 14px; }

/* visit info */
.visit { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.info { display: grid; gap: 24px; }
.info h3 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; font-weight: 700; }
.info p, .info li { font-size: 16px; }
.info a { border-bottom: 1px solid var(--edge-2); }
.info a:hover { border-color: var(--cyan); }
.hours li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--edge); font-size: 15px; }
.hours li span:last-child { color: var(--muted); }
.hours li.is-today { color: var(--cyan); }
.hours li.is-today span:last-child { color: var(--cyan); }

/* ---------- footer ---------- */
.foot { padding: clamp(44px, 6vw, 72px) 0 32px; border-top: 1px solid var(--edge); }
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.foot h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-weight: 700; }
.foot li { margin-bottom: 8px; font-size: 14px; }
.foot li a:hover { color: var(--cyan); }
.foot__brand p { color: var(--muted); font-size: 14px; max-width: 34ch; margin-top: 12px; }
.foot__legal { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--edge); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--dim); font-size: 12px; }

/* ---------- inner pages ---------- */
.phero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.phero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.phero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, var(--abyss) 0%, rgba(5, 11, 24, .96) 7%, rgba(5, 11, 24, .86) 15%, rgba(5, 11, 24, .7) 25%, rgba(5, 11, 24, .5) 40%, rgba(5, 11, 24, .35) 60%, rgba(5, 11, 24, .3) 100%);
}
.phero__inner { padding: 150px 0 56px; display: grid; gap: 14px; }

/* filters */
.filters { display: flex; flex-wrap: wrap; gap: 12px; align-items: end; padding: 16px; margin-bottom: 28px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.field select, .field input, .field textarea {
  background: rgba(5, 11, 24, .6); border: 1px solid var(--edge-2); border-radius: 10px; padding: 11px 12px; color: var(--text); min-width: 0; width: 100%;
}
.field select { appearance: none; -webkit-appearance: none; padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%239FB3D1' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; }
.field textarea { min-height: 120px; resize: vertical; }
.filters .field { min-width: 160px; }
.results { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.results strong { color: var(--text); }

/* ticket builder */
.builder { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.builder__form { padding: clamp(20px, 3vw, 32px); display: grid; gap: 22px; }
.builder__form h2 { font-size: 24px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.slots { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.slotbtn { padding: 10px 6px; border-radius: 10px; box-shadow: inset 0 0 0 1px var(--edge-2); font-size: 14px; font-weight: 700; text-align: center; transition: background .2s; }
.slotbtn:hover { background: rgba(120, 170, 255, .12); }
.slotbtn[aria-pressed="true"] { background: var(--cyan); color: var(--ink-on-cyan); box-shadow: none; }
.slotbtn[disabled] { opacity: .35; cursor: not-allowed; }
.slotbtn small { display: block; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: inherit; opacity: .8; }
.qty { display: grid; gap: 10px; }
.qty__row { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; padding: 12px 0; border-top: 1px solid var(--edge); }
.qty__row:last-child { border-bottom: 1px solid var(--edge); }
.qty__row b { display: block; font-size: 15px; }
.qty__row span { color: var(--muted); font-size: 13px; }
.qty__price { font-family: var(--font-display); font-size: 20px; font-weight: 600; min-width: 64px; text-align: right; }
.stepper { display: inline-grid; grid-template-columns: 36px 40px 36px; align-items: center; box-shadow: inset 0 0 0 1px var(--edge-2); border-radius: 999px; overflow: hidden; }
.stepper button { height: 36px; font-size: 18px; color: var(--cyan); }
.stepper button:hover { background: rgba(120, 170, 255, .12); }
.stepper output { text-align: center; font-weight: 700; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; padding: 12px 0; border-top: 1px solid var(--edge); }
.check:last-child { border-bottom: 1px solid var(--edge); }
.check input { margin: 5px 0 0; accent-color: var(--cyan); }
.check small { display: block; color: var(--muted); }
.check .qty__price { margin-left: auto; }
.summary { padding: clamp(20px, 3vw, 28px); display: grid; gap: 12px; }
.summary h2 { font-size: 22px; }
.summary__line { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; color: var(--muted); }
.summary__line b { color: var(--text); font-weight: 600; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 12px; border-top: 1px solid var(--edge); }
.summary__total b { font-family: var(--font-display); font-size: 40px; font-weight: 600; letter-spacing: -.02em; }
.summary__total span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.summary .btn { justify-content: center; }
.summary__note { font-size: 12px; color: var(--muted); line-height: 1.5; }
.summary__done { display: grid; gap: 10px; }
.summary__done .ref { font-family: var(--font-display); font-size: 28px; color: var(--cyan); font-weight: 600; }
.saving { color: var(--ok); font-weight: 700; }

/* halls page */
.hallsec { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; padding-block: clamp(40px, 6vw, 80px); border-top: 1px solid var(--edge); }
.hallsec:first-of-type { border-top: 0; }
.hallsec--flip .hallsec__media { order: 2; }
.hallsec__media { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 3 / 2; }
.hallsec__media img, .hallsec__media video { width: 100%; height: 100%; object-fit: cover; }
.hallsec__media .hall__o { width: 48px; height: 48px; }
.hallsec__media .hall__o svg { width: 24px; height: 24px; }
.hallsec__body { display: grid; gap: 16px; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.facts li { padding: 12px 14px; border: 1px solid var(--edge); border-radius: 10px; font-size: 14px; background: rgba(120, 170, 255, .05); }
.ggrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ggrid figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--r-sm); background: var(--deep); }
.ggrid button { display: block; width: 100%; }
.ggrid img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .6s var(--ease); }
.ggrid figure:hover img { transform: scale(1.04); }
.ggrid figcaption { padding: 10px 4px 4px; font-size: 13px; color: var(--muted); }
.ggrid figcaption strong { color: var(--text); display: block; }
dialog { border: 0; padding: 0; background: transparent; color: var(--text); max-width: none; max-height: none; }
dialog::backdrop { background: rgba(2, 6, 14, .92); }
.lightbox { width: min(96vw, 1200px); margin: auto; }
.lightbox img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--r-sm); }
.lightbox__bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 2px; flex-wrap: wrap; }
.lightbox__bar p { font-size: 14px; color: var(--muted); }
.lightbox__bar p strong { color: var(--text); }
.lightbox__nav { display: flex; gap: 6px; }
.lightbox__nav .icon-btn { box-shadow: inset 0 0 0 1px var(--edge-2); }

/* what's on */
.dayrow { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.xdetail { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(24px, 4vw, 48px); align-items: start; padding: clamp(20px, 3vw, 32px); }
.xdetail__media { border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 4 / 5; }
.xdetail__media img { width: 100%; height: 100%; object-fit: cover; }
.xdetail__body { display: grid; gap: 14px; }
.xdetail__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.xdetail__meta div { padding: 10px 12px; border: 1px solid var(--edge); border-radius: 10px; font-size: 14px; }
.xdetail__meta span { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.incl { display: grid; gap: 8px; }
.incl li { display: grid; grid-template-columns: 16px 1fr; gap: 10px; font-size: 15px; color: var(--muted); }
.incl li svg { width: 16px; height: 16px; color: var(--cyan); margin-top: 4px; }
.dates { display: flex; gap: 8px; flex-wrap: wrap; }
.date { font-size: 13px; font-weight: 700; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--edge-2); }
.date--few { border-color: rgba(255, 201, 107, .6); color: var(--warn); }

/* contact form */
.form { padding: clamp(20px, 3vw, 32px); display: grid; gap: 16px; }
.form .row2 { gap: 14px; }
.form .btn { justify-self: start; }
.form__done { display: grid; gap: 8px; }
.faq details { border-top: 1px solid var(--edge); }
.faq details:last-child { border-bottom: 1px solid var(--edge); }
.faq summary { cursor: pointer; padding: 18px 0; font-weight: 700; font-size: 17px; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--cyan); font-family: var(--font-display); font-size: 26px; line-height: 1; font-weight: 500; }
.faq details[open] summary::after { content: '–'; }
.faq details p { color: var(--muted); padding-bottom: 18px; max-width: 70ch; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .deck { grid-template-columns: 1fr; }
  .deck__photo { aspect-ratio: 16 / 9; min-height: 0; }
  .rings { grid-template-columns: repeat(3, 1fr); }
  .rings--4 { grid-template-columns: repeat(2, 1fr); }
  .halls { grid-template-columns: repeat(3, 1fr); }
  .xgrid { grid-template-columns: repeat(2, 1fr); }
  .builder { grid-template-columns: 1fr; }
  .hallsec, .hallsec--flip { grid-template-columns: 1fr; }
  .hallsec--flip .hallsec__media { order: 0; }
  .visit { grid-template-columns: 1fr; }
  .xdetail { grid-template-columns: 1fr; }
  .xdetail__media { aspect-ratio: 16 / 10; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: grid; }
  .top { grid-template-columns: auto 1fr auto; }
  .top__book { display: none; }
  .hero__copy { bottom: clamp(190px, 26vh, 260px); }
  .plan { margin-top: -140px; }
  .plan__grid { grid-template-columns: 1fr 1fr; }
  .plan__cell { border-right: 0; border-bottom: 1px solid var(--edge); }
  .plan__cell:nth-child(odd) { border-right: 1px solid var(--edge); }
  .plan__cell:nth-child(n+3) { border-bottom: 0; }
  .plan__cell:last-child { place-items: start; }
  .slot { grid-template-columns: 70px 1fr; gap: 6px 14px; }
  .slot__hall, .slot__dur { grid-column: 2; justify-self: start; }
  .reviews { grid-template-columns: 1fr; }
  .tgrid { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .ggrid { grid-template-columns: repeat(2, 1fr); }
  .slots { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .hero { min-height: 600px; }
  .plan__cell b { font-size: 20px; }
  .plan__cell b small { display: block; margin: 2px 0 0; }
  .h1 br, .h2 br { display: none; }
  .halls { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hall__body b { font-size: 18px; }
  .xgrid { grid-template-columns: 1fr; }
  .rings { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .ring__o { width: 56px; height: 56px; }
  .ring__o svg { width: 24px; height: 24px; }
  .deck__row { grid-template-columns: 80px 1fr; }
  .deck__row img { width: 80px; height: 80px; }
  .foot__grid { grid-template-columns: 1fr; }
  .ggrid { grid-template-columns: 1fr; }
  .row2 { grid-template-columns: 1fr; }
  .slots { grid-template-columns: repeat(3, 1fr); }
  .facts { grid-template-columns: 1fr; }
  .xdetail__meta { grid-template-columns: 1fr; }
  .band__facts { grid-template-columns: 1fr; }
  .filters .field { min-width: 100%; }
}
