/* ==========================================================================
   LAST MINUTE BOOKINGS / HOMEPAGE V2 / SHARED LAYER

   Loads AFTER style.css and adds only new classes. Nothing in V1 is edited or
   overridden here, so every existing page keeps rendering exactly as approved.
   Variant-specific rules live in v2-a.css and v2-b.css.

   WORDPRESS NOTE: these are the new components the V2 homepage needs beyond
   the V1 system. Each block is one Elementor widget or one custom HTML widget,
   marked in the section header.
   ========================================================================== */

/* --------------------------------------------------------------------------
   V2.1  ADDED TOKENS
   --------------------------------------------------------------------------
   --font-display is the single swap point. It resolves to the V1 system stack
   today, so nothing changes visually. When a licensed display face is bought,
   change this one line and every large heading on V2 picks it up.
   -------------------------------------------------------------------------- */
:root {
  --font-display: var(--font);
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Dark surfaces, matched to the brand panel gradient already in style.css */
  --dark-1: #140b06;
  --dark-2: #0d1218;
  --dark-3: #08131d;

  --ink-on-dark: rgba(255, 255, 255, 0.92);
  --ink-on-dark-soft: rgba(255, 255, 255, 0.66);
  --ink-on-dark-faint: rgba(255, 255, 255, 0.54);
  --line-on-dark: rgba(255, 255, 255, 0.14);

  --shadow-card: 0 20px 50px -26px rgba(20, 11, 6, 0.28);
  --shadow-lift: 0 34px 70px -30px rgba(20, 11, 6, 0.38);
  --shadow-device: 0 50px 90px -40px rgba(20, 11, 6, 0.45), 0 2px 6px rgba(0, 0, 0, 0.06);

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   V2.2  IMAGE PLATES                    → Elementor: Image widget in a Container
   --------------------------------------------------------------------------
   Every photograph on the page sits in a .plate. The wrapper owns the crop, so
   swapping the file never changes the layout. While the shoot is outstanding,
   .plate.is-placeholder shows the spec chip; deleting that one class hides the
   chip and the plate becomes a plain image frame.
   -------------------------------------------------------------------------- */
.plate {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  isolation: isolate;
}
.plate > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001); /* kills the 1px edge seam on scaled transforms */
  transition: transform 0.9s var(--ease-out);
}
.plate--21x9 { aspect-ratio: 21 / 9; }
.plate--16x9 { aspect-ratio: 16 / 9; }
.plate--3x2  { aspect-ratio: 3 / 2; }
.plate--4x3  { aspect-ratio: 4 / 3; }
.plate--1x1  { aspect-ratio: 1 / 1; }
.plate--4x5  { aspect-ratio: 4 / 5; }
.plate--fill { height: 100%; }
.plate--sq-corners { border-radius: 0; }

/* Scrim. Text only ever sits on a plate through one of these. */
.plate-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.plate-scrim--bottom {
  background: linear-gradient(to top,
    rgba(8, 12, 18, 0.88) 0%,
    rgba(8, 12, 18, 0.55) 34%,
    rgba(8, 12, 18, 0.10) 68%,
    rgba(8, 12, 18, 0) 100%);
}
.plate-scrim--left {
  background: linear-gradient(to right,
    rgba(8, 12, 18, 0.86) 0%,
    rgba(8, 12, 18, 0.62) 38%,
    rgba(8, 12, 18, 0.18) 72%,
    rgba(8, 12, 18, 0) 100%);
}
.plate-scrim--even { background: rgba(10, 14, 20, 0.42); }

/* Film grain. One 180px tile, overlaid, so flat gradients stop looking flat. */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("../img/v2/grain.png");
  background-repeat: repeat;
  background-size: 180px 180px;
  opacity: 0.30;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Placeholder spec chip */
.plate-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  display: none;
  max-width: calc(100% - 28px);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(8, 12, 18, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  padding: 6px 10px;
  border-radius: 8px;
}
.plate.is-placeholder .plate-tag { display: block; }
.plate-tag--ink {
  color: rgba(29, 29, 31, 0.78);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 0, 0, 0.10);
}

/* --------------------------------------------------------------------------
   V2.3  EYEBROWS, PROOF ROWS AND ICONS
   -------------------------------------------------------------------------- */
.eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
  padding: 7px 16px 7px 13px;
  margin-bottom: 26px;
}
.eyebrow-live .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: dot-ping 2.4s ease-out infinite;
  flex-shrink: 0;
}
@keyframes dot-ping {
  0%   { box-shadow: 0 0 0 0 rgba(254, 99, 13, 0.45); }
  70%  { box-shadow: 0 0 0 9px rgba(254, 99, 13, 0); }
  100% { box-shadow: 0 0 0 0 rgba(254, 99, 13, 0); }
}

/* Small icon plus label rows, used under the hero and inside cards */
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 30px;
}
.proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: -0.006em;
}
.proof .ico { color: var(--accent-text); flex-shrink: 0; }

.ico { width: 20px; height: 20px; display: block; flex-shrink: 0; }
.ico--sm { width: 16px; height: 16px; }
.ico--lg { width: 26px; height: 26px; }

/* --------------------------------------------------------------------------
   V2.4  THE LIVE BOARD                  → Elementor: custom HTML widget
   --------------------------------------------------------------------------
   The signature element of variant A, and the hero's whole argument. A day
   that changes while you look at it: a cancellation arrives, a slot gets
   booked, a countdown runs down. Illustrative, never live data.

   All motion is class driven from v2.js. Reduced motion gets the finished
   state with no transitions, so nothing is ever left invisible.
   -------------------------------------------------------------------------- */
.board {
  position: relative;
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-device);
  overflow: hidden;
}
.board-glow {
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 0%, rgba(254, 99, 13, 0.16), transparent 62%);
  pointer-events: none;
  z-index: 0;
}
.board-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 0.5px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}
.board-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: dot-ping 2.4s ease-out infinite;
  flex-shrink: 0;
}
.board-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.012em;
}
.board-sub {
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: -0.004em;
}
.board-clock {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.board-list {
  position: relative;
  z-index: 1;
  padding: 14px 18px 6px;
}
/* the hairline running down the hour column, so the rows read as one day */
.board-list::before {
  content: "";
  position: absolute;
  left: 46px;
  top: 26px;
  bottom: 22px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line-strong) 12%, var(--line-strong) 88%, transparent);
}

.board-slot {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px 14px 13px 0;
  border-radius: var(--radius-sm);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.board-hour {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  text-align: right;
  padding-right: 14px;
  position: relative;
}
/* the node on the rail */
.board-hour::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line-strong);
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.board-slot.is-open .board-hour::after { border-color: var(--accent); background: var(--accent); }
.board-slot.is-filled .board-hour::after { border-color: var(--filled-ink); background: var(--filled-ink); }

.board-main { min-width: 0; padding-left: 8px; }
.board-name {
  display: block;
  font-size: 14.5px;
  font-weight: 550;
  letter-spacing: -0.014em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.board-meta {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
  letter-spacing: -0.004em;
}
.board-side { display: flex; align-items: center; gap: 10px; }
.board-price {
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.012em;
}
.board-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.b-live     { background: var(--live-bg);     color: var(--live-ink); }
.b-filled   { background: var(--filled-bg);   color: var(--filled-ink); }
.b-discount { background: var(--discount-bg); color: var(--discount-ink); }

/* Which badge shows is a class on the row, not a text swap, so the markup can
   be rebuilt in Elementor without touching the script. */
.board-slot [data-state="filled"] { display: none; }
.board-slot.is-filled [data-state="open"] { display: none; }
.board-slot.is-filled [data-state="filled"] { display: inline-block; }
.board-slot.is-filled .board-name { color: var(--ink-soft); }

/* The incoming cancellation. Space is reserved from the start so the rows
   never jump; only opacity and a small lift animate. */
.board-slot.is-incoming { opacity: 0; transform: translateY(-8px); }
.board-slot.is-incoming,
.board-slot.is-arrived {
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out),
              background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.board-slot.is-arrived {
  opacity: 1;
  transform: translateY(0);
  background: rgba(254, 99, 13, 0.05);
  box-shadow: inset 0 0 0 1px rgba(254, 99, 13, 0.22);
}
.board-slot.is-settled { background: transparent; box-shadow: inset 0 0 0 1px transparent; }
.board-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-top: 0.5px solid var(--line);
  background: var(--bg-soft);
}
.board-foot-label { font-size: 12.5px; color: var(--ink-soft); letter-spacing: -0.006em; }
.board-count {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-text);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* Booking confirmation, slides up over the board */
.board-toast {
  position: absolute;
  left: 50%;
  bottom: 68px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(20, 11, 6, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.008em;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 14px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  pointer-events: none;
}
.board-toast.is-up { opacity: 1; transform: translate(-50%, 0); }
.board-toast .ico { color: #6ee7a0; }

.board-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: -0.004em;
}

/* --------------------------------------------------------------------------
   V2.5  OPENINGS MARQUEE                → Elementor: custom HTML widget
   --------------------------------------------------------------------------
   Two rows drifting in opposite directions under the hero. Pure CSS, no JS.
   The track is duplicated in the markup and the copy is aria-hidden, so screen
   readers hear the list once.
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: marquee-left 46s linear infinite;
}
.marquee--rtl .marquee-track { animation-name: marquee-right; animation-duration: 54s; }
.marquee + .marquee { margin-top: 10px; }
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }

@keyframes marquee-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 9px 16px;
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  letter-spacing: -0.008em;
  white-space: nowrap;
}
.mq-time {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.mq-name { color: var(--ink-soft); }
.mq-price { font-weight: 600; font-variant-numeric: tabular-nums; }
.mq-item .board-badge { font-size: 9.5px; padding: 3px 8px; }
.mq-caption {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 18px;
  letter-spacing: -0.004em;
}

/* --------------------------------------------------------------------------
   V2.6  CATEGORY TILES                  → Elementor: Loop Grid or Image Box x8
   --------------------------------------------------------------------------
   Replaces the V1 text chips. Each tile is one photograph, one icon, one word.
   -------------------------------------------------------------------------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cat-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1 / 1;
  isolation: isolate;
  background: var(--dark-2);
}
.cat-tile > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(8, 12, 18, 0.82) 0%, rgba(8, 12, 18, 0.20) 55%, rgba(8, 12, 18, 0.05) 100%);
}
.cat-tile:hover > img,
.cat-tile:focus-visible > img { transform: scale(1.06); }
.cat-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 16px 16px 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
}
.cat-body .ico { color: rgba(255, 255, 255, 0.82); }
.cat-name {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.014em;
  line-height: 1.2;
}
.cat-roadmap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}
.cat-roadmap .category { font-size: 14px; padding: 9px 18px; }

/* --------------------------------------------------------------------------
   V2.7  VIDEO SLOT AND LIGHTBOX         → Elementor: Video widget, lightbox on
   --------------------------------------------------------------------------
   The poster is a real file. The <source> tags are commented out in the markup
   until the edit exists, which keeps the console clean and leaves the poster
   showing. Uncomment them and delete .video-pending when the file lands.
   -------------------------------------------------------------------------- */
.videoslot {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--dark-2);
  isolation: isolate;
  cursor: pointer;
  border: none;
  padding: 0;
  width: 100%;
  text-align: left;
}
.videoslot > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.videoslot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(8, 12, 18, 0.70), rgba(8, 12, 18, 0.10) 60%, rgba(8, 12, 18, 0.28));
  transition: opacity 0.5s var(--ease-out);
}
.videoslot:hover::after { opacity: 0.82; }

.videoslot-play {
  position: absolute;
  z-index: 2;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.55);
  transition: transform 0.4s var(--ease-out);
}
.videoslot:hover .videoslot-play { transform: translate(-50%, -50%) scale(1.07); }
.videoslot-play::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  animation: play-ring 3s ease-out infinite;
}
@keyframes play-ring {
  0%   { transform: scale(1);    opacity: 0.9; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.videoslot-play .ico { width: 24px; height: 24px; margin-left: 3px; }

.videoslot-foot {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 0;
  padding: 24px 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}
.videoslot-label {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.018em;
}
.videoslot-sub {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  font-weight: 400;
  letter-spacing: -0.006em;
}
.videoslot-dur {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.16);
  border: 0.5px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  background: rgba(8, 10, 14, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.lightbox[hidden] { display: none; }
.lightbox-inner {
  width: 100%;
  max-width: 980px;
  position: relative;
}
.lightbox video,
.lightbox .video-pending {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  background: #000;
  display: block;
}
.video-pending {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 32px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.72);
}
.video-pending strong { font-size: 16px; font-weight: 600; color: #fff; letter-spacing: -0.014em; }
.video-pending span { font-size: 13.5px; line-height: 1.55; max-width: 460px; }
.video-pending code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.10);
  padding: 3px 7px;
  border-radius: 5px;
}
.lightbox-close {
  position: absolute;
  top: -46px; right: 0;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
}
.lightbox-close:hover { color: #fff; }

/* --------------------------------------------------------------------------
   V2.8  STEP CARDS WITH GLYPHS
   -------------------------------------------------------------------------- */
.steps-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step-card {
  position: relative;
  padding: 30px 28px 32px;
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--brand-grad);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.step-card:hover::before { opacity: 1; }
.step-glyph {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
  color: var(--ink);
  margin-bottom: 20px;
}
.step-card:nth-child(1) .step-glyph { background: var(--live-bg);     color: var(--live-ink); }
.step-card:nth-child(2) .step-glyph { background: var(--discount-bg); color: var(--discount-ink); }
.step-card:nth-child(3) .step-glyph { background: var(--filled-bg);   color: var(--filled-ink); }
.step-order {
  position: absolute;
  top: 26px; right: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   V2.9  STAGGERED REVEAL
   --------------------------------------------------------------------------
   Rides on the existing .fade-up observer in main.js. The parent gets .in and
   the children inherit a delay, so no extra script is needed.
   -------------------------------------------------------------------------- */
.fade-up--stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up--stagger.in > * { opacity: 1; transform: translateY(0); }
.fade-up--stagger.in > *:nth-child(2) { transition-delay: 0.09s; }
.fade-up--stagger.in > *:nth-child(3) { transition-delay: 0.18s; }
.fade-up--stagger.in > *:nth-child(4) { transition-delay: 0.27s; }
.fade-up--stagger.in > *:nth-child(5) { transition-delay: 0.36s; }
.fade-up--stagger.in > *:nth-child(6) { transition-delay: 0.45s; }
.fade-up--stagger.in > *:nth-child(7) { transition-delay: 0.54s; }
.fade-up--stagger.in > *:nth-child(8) { transition-delay: 0.63s; }

/* --------------------------------------------------------------------------
   V2.10  MOTION AND MEDIA PREFERENCES
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; transform: none; }
  .marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .board-dot,
  .eyebrow-live .dot,
  .videoslot-play::before { animation: none; }
  .board-slot.is-incoming { opacity: 1; transform: none; }
  .plate > img,
  .cat-tile > img { transition: none; }
  .fade-up--stagger > * { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   V2.11  RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-v2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .board-list { padding: 10px 12px 4px; }
  .board-list::before { left: 40px; }
  .board-slot { grid-template-columns: 40px 1fr auto; gap: 10px; }
  .board-meta { display: none; }
  .board-toast { white-space: normal; text-align: left; max-width: calc(100% - 32px); }
  .videoslot-play { width: 58px; height: 58px; }
  .videoslot-play .ico { width: 19px; height: 19px; }
  .videoslot-foot { padding: 18px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .lightbox-close { top: -40px; }
  .proof-row { gap: 10px 18px; }
}

@media (max-width: 420px) {
  .board-side { flex-direction: column-reverse; align-items: flex-end; gap: 4px; }
}
