/* ============================================================
   SQUADBAY — Team Rooms PC Club
   LAYOUT CONTAINER: E — asymmetric-12 (headings in cols 1-4,
   content in cols 5-12, boxed 1280px; grid breaks only in hero + form)
   SPACING SCALE: regular (96px section / 56px block; 48px mobile)
   ============================================================ */

:root {
  /* palette */
  --c-bg: #eef1ee;
  --c-bg-dark: #141a16;
  --c-ink: #141a16;
  --c-ink-inv: #eef1ee;
  --c-a1: #84cc16;   /* radar green */
  --c-a2: #f59e0b;   /* team marker amber */

  /* fonts */
  --f-display: "Sofia Sans Condensed", "Arial Narrow", sans-serif;
  --f-body: "Lexend", system-ui, sans-serif;

  /* radius */
  --r-card: 6px;

  /* spacing (8px step) */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 56px;
  --sec: 96px;      /* section vertical rhythm (regular) */

  /* container */
  --w-container: 1280px;

  --border: 2px solid currentColor;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--f-display);
  text-transform: uppercase;
  line-height: 0.98;
  margin: 0;
  letter-spacing: 0.01em;
}
p { margin: 0 0 var(--s-2); }
.u-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.ic { width: 24px; height: 24px; stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  vertical-align: middle; flex: none; }

/* ---------- container / asymmetric-12 grid ---------- */
.container { max-width: var(--w-container); margin-inline: auto; padding-inline: 40px; }

.section { padding-block: var(--sec); }
.section--dark {
  background: var(--c-bg-dark);
  color: var(--c-ink-inv);
  position: relative;
  overflow: hidden;
}
/* radar-circle background only on dark sections (motif) */
.section--dark .radar-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(circle, transparent 0 22%, rgba(132,204,22,0.06) 22.5% 23%, transparent 23.5%),
    radial-gradient(circle, transparent 0 40%, rgba(132,204,22,0.06) 40.5% 41%, transparent 41.5%),
    radial-gradient(circle, transparent 0 58%, rgba(132,204,22,0.05) 58.5% 59%, transparent 59.5%);
  background-repeat: no-repeat;
  background-position: 120% -40%;
  background-size: 900px 900px;
  opacity: 0.9;
}
.section--dark > .container { position: relative; z-index: 1; }

.a12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--s-4); align-items: start; }
.a12__head { grid-column: 1 / 5; }
.a12__body { grid-column: 5 / 13; }

/* ---------- headings ---------- */
h1 { font-size: clamp(44px, 7.5vw, 96px); font-weight: 800; }
.h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; display: flex; align-items: center; gap: var(--s-2); }
h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; }
.eyebrow {
  font-family: var(--f-body); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 12px; color: var(--c-a1); margin-bottom: var(--s-2);
}
.section--dark .eyebrow { color: var(--c-a1); }
.lead { font-size: clamp(17px, 1.4vw, 20px); }

/* chevron letter plate (motif) */
.chevron {
  font-family: var(--f-display); font-weight: 800; font-size: 0.62em;
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.5em; height: 1.6em; color: var(--c-bg-dark); background: var(--c-a1);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
  line-height: 1;
}
.section--dark .chevron { color: var(--c-bg-dark); background: var(--c-a1); }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--f-display); text-transform: uppercase; font-weight: 800;
  font-size: 18px; letter-spacing: 0.03em;
  display: inline-flex; align-items: center; gap: var(--s-1);
  padding: 14px 28px; cursor: pointer; text-decoration: none; border: var(--border);
  background: transparent; color: inherit; position: relative; overflow: hidden;
}
.btn--primary {
  background: var(--c-a1); color: var(--c-bg-dark); border-color: var(--c-a1);
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
}
/* radar dot runs across primary button on hover (motif) */
.btn--primary::after {
  content: ""; position: absolute; top: 50%; left: -12px; width: 10px; height: 10px;
  border-radius: 50%; background: var(--c-bg-dark); transform: translateY(-50%);
  opacity: 0; transition: none;
}
.btn--primary:hover::after { animation: dotrun 0.7s ease forwards; }
@keyframes dotrun {
  0% { left: -12px; opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% + 12px); opacity: 0; }
}
.btn--ghost:hover { background: var(--c-ink); color: var(--c-bg); }
.section--dark .btn--ghost:hover { background: var(--c-ink-inv); color: var(--c-bg-dark); }

/* ============================================================
   NAV — nav-vertical-rail
   ============================================================ */
.nav {
  position: fixed; left: 0; top: 0; height: 100vh; width: 76px; z-index: 50;
  background: var(--c-bg-dark); color: var(--c-ink-inv);
  display: flex; flex-direction: column; align-items: center;
  padding: var(--s-3) 0; border-right: 2px solid rgba(238,241,238,0.15);
  transition: width 0.2s ease;
}
.nav__logo {
  font-family: var(--f-display); font-weight: 800; font-size: 30px; text-decoration: none;
  color: var(--c-a1); width: 44px; height: 46px; display: flex; align-items: center; justify-content: center;
  background: rgba(132,204,22,0.12);
  clip-path: polygon(0 0, 100% 0, 100% 76%, 50% 100%, 0 76%); margin-bottom: var(--s-4);
}
.nav__rail-links { display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.nav__rail-links a {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase;
  font-size: 15px; letter-spacing: 0.12em; text-decoration: none; color: var(--c-ink-inv);
  opacity: 0.72; transition: opacity 0.2s, color 0.2s; padding: 4px 0;
}
.nav__rail-links a:hover, .nav__rail-links a.is-active { opacity: 1; color: var(--c-a1); }
.nav__cta {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: 14px;
  letter-spacing: 0.1em; text-decoration: none; color: var(--c-bg-dark); background: var(--c-a1);
  padding: var(--s-3) 6px; display: inline-flex; align-items: center; gap: 8px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 94%);
}
.nav.is-scrolled { border-right-color: var(--c-a1); }

.page { margin-left: 76px; }

/* mobile: rail -> bottom bar */
@media (max-width: 768px) {
  .nav {
    left: 0; bottom: 0; top: auto; height: 60px; width: 100%; flex-direction: row;
    padding: 0 var(--s-2); border-right: none; border-top: 2px solid var(--c-a1); justify-content: space-between;
  }
  .nav__logo { margin-bottom: 0; width: 40px; height: 40px; font-size: 24px; }
  .nav__rail-links { flex-direction: row; gap: var(--s-2); flex: 0; }
  .nav__rail-links a { writing-mode: horizontal-tb; transform: none; font-size: 12px; }
  .nav__cta { writing-mode: horizontal-tb; transform: none; padding: 8px 14px; font-size: 12px; }
  .page { margin-left: 0; padding-bottom: 60px; }
}
@media (max-width: 480px) {
  .nav__rail-links a { font-size: 11px; letter-spacing: 0.05em; }
}

/* ============================================================
   HERO — hero-ticker-embed
   ============================================================ */
.hero { position: relative; color: var(--c-ink-inv); background: var(--c-bg-dark); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.06) brightness(0.5) saturate(1.02); }
.hero__scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(20,26,22,0.94) 0%, rgba(20,26,22,0.72) 45%, rgba(20,26,22,0.4) 100%); }
/* radar sweep layer */
.hero__radar {
  position: absolute; z-index: 1; right: -120px; top: 50%; transform: translateY(-50%);
  width: 620px; height: 620px; pointer-events: none; opacity: 0.9;
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(96px, 16vh, 180px); }
.hero__eyebrow { color: var(--c-a1); }
.hero h1 { max-width: 15ch; }
.hero h1 em { color: var(--c-a1); font-style: normal; }
.hero__sub { max-width: 46ch; font-size: clamp(17px, 1.6vw, 21px); color: rgba(238,241,238,0.86); margin-top: var(--s-3); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-5); }
.hero__ticker {
  position: relative; z-index: 2; margin-top: var(--s-6); border-top: 2px solid rgba(132,204,22,0.4);
  border-bottom: 2px solid rgba(132,204,22,0.4); overflow: hidden; white-space: nowrap; padding: 12px 0;
}
.hero__ticker-track {
  display: inline-block; white-space: nowrap; will-change: transform;
  animation: marquee 22s linear infinite; font-family: var(--f-display); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 18px; color: var(--c-a1);
}
.hero__ticker-track span { padding: 0 22px; color: var(--c-ink-inv); }
.hero__ticker-track b { color: var(--c-a1); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   BAYS — feature cards
   ============================================================ */
.baygrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); margin-top: var(--s-4); }
.baycard {
  border: var(--border); border-radius: var(--r-card); background: var(--c-bg);
  display: flex; flex-direction: column; overflow: hidden; position: relative;
}
.baycard__plate {
  background: var(--c-a1); color: var(--c-bg-dark); font-family: var(--f-display); font-weight: 800;
  text-transform: uppercase; display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; letter-spacing: 0.04em;
}
.baycard__letters { display: inline-flex; gap: 6px; }
.baycard__letter {
  width: 1.5em; height: 1.6em; background: var(--c-bg-dark); color: var(--c-a1);
  display: inline-flex; align-items: center; justify-content: center; font-size: 15px;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
}
.baycard__media { aspect-ratio: 4 / 3; overflow: hidden; }
.baycard__media img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.06); }
.baycard__body { padding: var(--s-3); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; }
.baycard__body h3 { display: flex; align-items: center; gap: var(--s-1); }
.baycard__spec { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 15px; }
.baycard__spec li { position: relative; padding-left: 22px; }
.baycard__spec li::before {
  content: ""; position: absolute; left: 2px; top: 0.55em; width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-a2); box-shadow: 0 0 0 3px rgba(245,158,11,0.22);
}
/* five-seat horseshoe pictogram */
.seatplan { display: inline-block; }
.seatplan .seat { fill: var(--c-a2); opacity: 0; }

/* floor plan svg */
.floorplan { width: 100%; max-width: 420px; }
.floorplan .bay-shape { fill: rgba(132,204,22,0.1); stroke: var(--c-a1); stroke-width: 2; transition: fill 0.25s; }
.floorplan .bay-shape.is-lit { fill: var(--c-a1); }
.floorplan text { font-family: var(--f-display); font-weight: 800; fill: var(--c-ink-inv); }
.floorplan .core { fill: none; stroke: rgba(238,241,238,0.4); stroke-width: 2; stroke-dasharray: 5 5; }
.floorplan .core-label { fill: rgba(238,241,238,0.7); font-size: 13px; }

/* ============================================================
   SCRIM MODE — timer
   ============================================================ */
.scrim-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--s-6); align-items: center; }
.scrimboard {
  border: 2px solid var(--c-a1); border-radius: var(--r-card); padding: var(--s-4);
  background: rgba(132,204,22,0.05); text-align: center;
}
.scrimboard__label { font-family: var(--f-body); text-transform: uppercase; letter-spacing: 0.2em; font-size: 12px; color: var(--c-a1); }
.scrimboard__time {
  font-family: var(--f-display); font-weight: 800; font-size: clamp(56px, 12vw, 96px);
  font-variant-numeric: tabular-nums; color: var(--c-ink-inv); line-height: 1;
}
.scrimboard__rounds { font-variant-numeric: tabular-nums; letter-spacing: 0.05em; color: rgba(238,241,238,0.8); margin-top: var(--s-2); }
.protocol { list-style: none; margin: var(--s-3) 0 0; padding: 0; display: grid; gap: var(--s-2); }
.protocol li { display: flex; gap: var(--s-2); align-items: flex-start; }
.protocol .chevron { flex: none; }

/* ============================================================
   COMMON GROUND — band
   ============================================================ */
.band { position: relative; color: var(--c-ink-inv); overflow: hidden; }
.band__bg { position: absolute; inset: 0; z-index: 0; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.06) brightness(0.42); }
.band__inner { position: relative; z-index: 1; padding-block: var(--sec); }
.band__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); margin-top: var(--s-4); }
.mini { display: flex; flex-direction: column; gap: var(--s-1); }
.mini h3 { display: flex; align-items: center; gap: var(--s-1); }
.mini .ic { color: var(--c-a1); }

/* ============================================================
   RULES + STORIES
   ============================================================ */
.rules { list-style: none; margin: var(--s-3) 0 0; padding: 0; display: grid; gap: var(--s-3); counter-reset: r; }
.rules li {
  border-left: 3px solid var(--c-a1); padding: 4px 0 4px var(--s-3); position: relative; counter-increment: r;
}
.rules li strong { display: block; font-family: var(--f-display); text-transform: uppercase; font-size: 20px; }
.stories { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); margin-top: var(--s-4); }
.story { border: var(--border); border-radius: var(--r-card); padding: var(--s-4); background: var(--c-bg); color: var(--c-ink); }
.story__callsign { font-family: var(--f-display); font-weight: 800; color: var(--c-a2); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--s-1); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 190px; gap: var(--s-3); margin-top: var(--s-4); }
.gallery figure { position: relative; margin: 0; border: 2px solid rgba(238,241,238,0.2); border-radius: var(--r-card); overflow: hidden; background: #0e120f; }
.gallery figure:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; }
.gallery figure:nth-child(2) { grid-column: 8 / 13; grid-row: 1 / 2; }
.gallery figure:nth-child(3) { grid-column: 8 / 13; grid-row: 2 / 3; }
.gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: contrast(1.06); transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: center; gap: var(--s-1); padding: 30px 14px 12px; font-size: 14px; font-weight: 600; color: var(--c-ink-inv); background: linear-gradient(to top, rgba(10,14,11,0.88), rgba(10,14,11,0.35) 55%, transparent); }
.gallery figcaption .chevron { font-size: 14px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { margin-top: var(--s-4); border-top: var(--border); }
.faq__item { border-bottom: var(--border); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; color: inherit;
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: clamp(18px, 2.4vw, 24px);
  padding: var(--s-3) 0; display: flex; align-items: center; gap: var(--s-2); justify-content: space-between;
}
.faq__q .ic { color: var(--c-a1); transition: transform 0.25s; }
.faq__item.is-open .faq__q .ic { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq__a p { padding: 0 0 var(--s-3); margin: 0; max-width: 60ch; }

/* ============================================================
   FORM
   ============================================================ */
.formwrap { max-width: 720px; }
.bookform { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); margin-top: var(--s-4); }
.field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: 14px; letter-spacing: 0.06em; }
.field input, .field select {
  font-family: var(--f-body); font-size: 16px; padding: 12px 14px; color: inherit;
  background: rgba(238,241,238,0.04); border: 2px solid rgba(238,241,238,0.3); border-radius: var(--r-card);
}
.field input::placeholder { color: rgba(238,241,238,0.5); }
.field input:focus, .field select:focus { outline: none; border-color: var(--c-a1); }
.field select option { color: #141a16; }
/* focus chevron plate showing first char (JS) */
.field__plate {
  position: absolute; right: 8px; top: 30px; width: 1.4em; height: 1.5em; background: var(--c-a1); color: var(--c-bg-dark);
  display: none; align-items: center; justify-content: center; font-family: var(--f-display); font-weight: 800;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%); font-size: 14px;
}
.field.is-focused .field__plate { display: flex; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
#formStatus { grid-column: 1 / -1; font-weight: 600; margin: 0; }
#formStatus.success { color: var(--c-a1); }
#formStatus.error { color: var(--c-a2); }

/* ============================================================
   FOOTER — footer-cta-repeat
   ============================================================ */
.footer { background: var(--c-bg-dark); color: var(--c-ink-inv); }
.footer__cta-band {
  border-bottom: 2px solid rgba(132,204,22,0.4); padding-block: var(--s-6);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-4);
}
.footer__cta-band h2 { max-width: 18ch; }
.footer__main { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-5); padding-block: var(--s-6); }
.footer__brand-name { font-family: var(--f-display); font-weight: 800; font-size: 40px; color: var(--c-a1); }
.footer__slogan { font-style: italic; color: rgba(238,241,238,0.7); }
.footer h4 { font-size: 15px; letter-spacing: 0.12em; color: var(--c-a1); margin-bottom: var(--s-2); }
.footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-2); }
.footer__contact li { display: flex; gap: var(--s-2); align-items: flex-start; }
.footer__contact .ic { color: var(--c-a1); margin-top: 2px; }
.footer__contact a { text-decoration: none; }
.footer__contact a:hover { color: var(--c-a1); }
.footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-1); }
.footer__links a { text-decoration: none; }
.footer__links a:hover { color: var(--c-a1); }
.footer__bottom {
  border-top: 2px solid rgba(238,241,238,0.15); padding-block: var(--s-3);
  display: flex; flex-wrap: wrap; gap: var(--s-2); justify-content: space-between; font-size: 14px;
  color: rgba(238,241,238,0.7);
}
.footer__disclaimer {
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--c-a2); font-size: 15px;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie {
  position: fixed; left: 76px; right: 0; bottom: 0; z-index: 60; background: var(--c-bg-dark);
  color: var(--c-ink-inv); border-top: 2px solid var(--c-a1); padding: var(--s-3) var(--s-4);
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3); justify-content: space-between;
}
.cookie[hidden] { display: none; }
.cookie p { margin: 0; max-width: 70ch; font-size: 14px; }
.cookie a { color: var(--c-a1); }
.cookie__actions { display: flex; gap: var(--s-2); }
.cookie .btn { font-size: 14px; padding: 8px 18px; }
@media (max-width: 768px) { .cookie { left: 0; bottom: 60px; } }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal { max-width: 820px; margin-inline: auto; padding: 40px; }
.legal__mark {
  display: inline-flex; align-items: center; gap: var(--s-1); font-family: var(--f-display); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; color: var(--c-bg-dark);
  background: var(--c-a1); padding: 6px 12px; border-radius: var(--r-card); margin-bottom: var(--s-4);
}
.legal__logo { font-family: var(--f-display); font-weight: 800; font-size: 30px; color: var(--c-ink); text-decoration: none; }
.legal__header { display: flex; align-items: center; justify-content: space-between; padding-block: var(--s-3);
  border-bottom: var(--border); margin-bottom: var(--s-5); }
.legal h1 { font-size: clamp(36px, 6vw, 60px); color: var(--c-ink); }
.legal h2 { font-size: clamp(22px, 3vw, 30px); margin-top: var(--s-5); display: flex; align-items: center; gap: var(--s-1); }
.legal p, .legal li { font-size: 16px; }
.legal ul { padding-left: 0; list-style: none; display: grid; gap: var(--s-2); }
.legal ul li { position: relative; padding-left: 30px; }
.legal ul li .chevron { position: absolute; left: 0; top: 2px; font-size: 12px; }
.legal__nav { margin-top: var(--s-6); padding-top: var(--s-3); border-top: var(--border); display: flex; gap: var(--s-3); flex-wrap: wrap; }
.legal__nav a { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; text-decoration: none; }
.legal__nav a:hover { color: var(--c-a1); }
.legal__foot { margin-top: var(--s-5); padding-top: var(--s-3); border-top: var(--border); }
.legal__foot .footer__disclaimer { color: #b45309; }

/* ============================================================
   REVEAL / MOTION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .a12__head, .a12__body { grid-column: 1 / 13; }
  .a12 { gap: var(--s-3); }
  .scrim-grid { grid-template-columns: 1fr; gap: var(--s-4); }
  :root { --sec: 72px; }
}
@media (max-width: 768px) {
  .container { padding-inline: 24px; }
  .baygrid, .band__cols, .stories { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery figure:nth-child(1), .gallery figure:nth-child(2), .gallery figure:nth-child(3) { grid-column: 1 / -1; grid-row: auto; }
  .footer__main { grid-template-columns: 1fr; gap: var(--s-4); }
  .bookform { grid-template-columns: 1fr; }
  :root { --sec: 56px; }
  .legal { padding: 24px; }
}
@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .baygrid { gap: var(--s-3); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__ticker-track { animation: none; }
  .seatplan .seat { opacity: 1; }
}
