  :root {
    --burgundy-deep: #6e0821;
    --burgundy: #9c0f30;
    --burgundy-bright: #c41639;
    --burgundy-soft: rgba(156,15,48,0.07);
    --gold: #c9a24a;
    --gold-deep: #a9812f;
    --gold-tint: rgba(201,162,74,0.14);
    --paper: #ffffff;
    --paper-dim: #f7f6f4;
    --ink: #201a17;
    --ink-soft: #635a52;
    --line: rgba(156,15,48,0.13);
    --white: #ffffff;
  }
  * { box-sizing: border-box; }
  html, body {
    margin: 0; padding: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  .sans { font-family: system-ui, -apple-system, 'Segoe UI', sans-serif; }
  .display {
    font-family: system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  /* ---------- NAV ---------- */
  .nav {
    position: sticky; top: 0; z-index: 50;
    display: flex; align-items: center; justify-content: flex-start; gap: 48px;
    padding: 14px 56px;
    background: rgba(251,248,243,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
  }
  .nav__brand { display: flex; align-items: center; gap: 12px; }
  .nav__logo { height: 46px; width: auto; }
  .nav__links { display: flex; gap: 34px; list-style: none; margin: 0; padding: 0; }
  .nav__links a {
    font-family: system-ui, sans-serif; font-size: 12.5px; letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--ink-soft); padding-bottom: 4px; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
  }
  .nav__links a.is-active, .nav__links a:hover { color: var(--burgundy); border-color: var(--gold); }
  .nav__status { display: flex; align-items: center; gap: 8px; margin-left: auto; font-family: system-ui, sans-serif; font-size: 12px; color: var(--ink-soft); white-space: nowrap; }
  .nav__status-dot { width: 8px; height: 8px; border-radius: 50%; background: #9c8a72; flex-shrink: 0; }
  .nav__status-dot.is-open { background: #2e9e4f; box-shadow: 0 0 0 3px rgba(46,158,79,0.18); }
  .nav__status-dot.is-closed { background: #b3413a; }
  .nav__status-text { letter-spacing: .3px; }
  .nav__whatsapp {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--burgundy-bright) 100%);
    margin-left: auto;
    box-shadow: 0 4px 12px -4px rgba(156,15,48,0.5);
    transition: filter .15s;
  }
  .nav__whatsapp:hover { filter: brightness(0.94); }
  .nav__whatsapp-icon { color: #fff; }
  @media (max-width: 960px) { .nav__links { display: none; } .nav__status { display: none; } }

  /* ---------- HERO (full-bleed blurred slider) ---------- */
  .hero {
    position: relative;
    min-height: 660px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero__slides { position: absolute; inset: 0; z-index: 0; }
  .hero__slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 3s ease;
  }
  .hero__slide.is-active { opacity: 1; }
  .hero__slide img {
    width: 100%; height: 100%; object-fit: cover;
    filter: blur(4.0px) saturate(1.06) brightness(1.1);
    transform: scale(1.06);
  }
  .hero__scrim {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(100deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.42) 32%, rgba(255,255,255,0.28) 62%, rgba(255,255,255,0.15) 100%);
  }
  /* .hero--home overrides the scrim to a dark vignette and switches text to white — dark
     burgundy text has no reliable contrast against a live photo, no matter how the scrim's
     opacity/direction is tuned. White text plus a text-shadow reads correctly against any
     photo brightness, so the photo itself is free to stay vivid. */
  .hero--home .hero__scrim {
    background: linear-gradient(100deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.22) 70%, rgba(0,0,0,0.12) 100%);
  }
  .hero__content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 110px 56px; width: 100%; }
  .hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: system-ui, sans-serif; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold-deep); margin-bottom: 22px;
  }
  .hero__eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
  .hero--home .hero__eyebrow { color: var(--gold); text-shadow: 0 1px 5px rgba(0,0,0,0.55); }
  .hero--home .hero__eyebrow::before { background: var(--gold); }
  .hero h1 {
    font-size: clamp(36px, 4.6vw, 60px);
    line-height: 1.12;
    margin: 0 0 10px;
    color: var(--burgundy-deep);
    text-wrap: balance;
    max-width: 640px;
  }
  .hero h1 em { font-style: italic; color: var(--gold-deep); }
  .hero__brand-name { font-family: 'Cinzel', serif; color: var(--gold-deep); letter-spacing: 0.02em; }
  .hero--home .hero__brand-name {
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  }
  .hero__subheadline {
    font-family: system-ui, sans-serif; font-style: italic; font-weight: 600;
    font-size: 22px; color: var(--burgundy-deep); max-width: 460px; margin: 0 0 22px;
  }
  .hero__subheadline::before { content: '"'; }
  .hero__subheadline::after { content: '"'; }
  .hero--home .hero__subheadline { color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.55); }
  .hero p.lede {
    font-family: system-ui, sans-serif; font-size: 16px; line-height: 1.75; color: var(--ink-soft);
    max-width: 460px; margin-bottom: 34px;
  }
  .hero--home p.lede { color: rgba(255,255,255,0.94); text-shadow: 0 1px 5px rgba(0,0,0,0.5); }
  .hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-solid, .btn-line {
    font-family: system-ui, sans-serif; font-size: 12.5px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 600;
    padding: 15px 30px; border-radius: 3px; display: inline-block;
  }
  .btn-solid { background: var(--burgundy); color: var(--white); }
  .btn-line { border: 1px solid var(--burgundy); color: var(--burgundy); background: rgba(255,255,255,0.6); backdrop-filter: blur(2px); }
  @media (max-width: 960px) { .hero { min-height: 520px; } .hero__content { padding: 60px 24px; } }

  /* ---------- STAT STRIP ---------- */
  .stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--burgundy-deep); color: var(--paper);
  }
  .stats__item { padding: 28px 20px; text-align: center; border-right: 1px solid rgba(184,147,90,0.25); }
  .stats__item:last-child { border-right: none; }
  .stats__num { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; display: block; color: var(--gold); font-family: system-ui, sans-serif; }
  .stats__lbl { font-family: system-ui, sans-serif; font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(251,248,243,0.75); }
  @media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } .stats__item:nth-child(2) { border-right: none; } }

  /* ---------- SECTION SHELL ---------- */
  section.block { padding: 88px 56px; }
  .block--dim { background: var(--paper-dim); }
  .section-head { max-width: 620px; margin: 0 auto 54px; text-align: center; }
  .section-head .eyebrow {
    font-family: system-ui, sans-serif; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-deep);
  }
  .section-head h1, .section-head h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 10px 0 0; color: var(--burgundy-deep); text-wrap: balance; }
  .section-head p { font-family: system-ui, sans-serif; font-size: 15px; color: var(--ink-soft); margin-top: 14px; line-height: 1.6; }

  /* ---------- GAMES ---------- */
  .games-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: 1200px; margin: 0 auto; }
  .game-card {
    background: var(--white); border-radius: 8px; padding: 30px 24px;
    border: 1px solid var(--line); border-top: 3px solid var(--gold);
    box-shadow: 0 12px 30px -18px rgba(74,15,26,0.25);
  }
  .game-card__icon { font-size: 26px; color: var(--burgundy); margin-bottom: 16px; }
  .game-card h3 { font-size: 17px; margin: 0 0 8px; color: var(--burgundy-deep); }
  .game-card p { font-family: system-ui, sans-serif; font-size: 13px; color: var(--ink-soft); margin: 0; line-height: 1.55; }
  @media (max-width: 900px) { .games-grid { grid-template-columns: repeat(2, 1fr); } }

  /* ---------- JACKPOT SHOWCASE (Games page) ---------- */
  .jackpot-rows { display: flex; flex-direction: column; gap: 36px; max-width: 1100px; margin: 0 auto; }
  .jackpot-row {
    display: grid; grid-template-columns: 340px 1fr; gap: 36px; align-items: center;
    background: var(--white); border-radius: 10px; padding: 26px;
    border: 1px solid var(--line); box-shadow: 0 14px 34px -24px rgba(74,15,26,0.28);
  }
  .jackpot-row__media {
    position: relative;
    border-radius: 8px; overflow: hidden; flex-shrink: 0; height: 210px;
    background: #000;
    display: flex; align-items: center; justify-content: center;
  }
  .jackpot-row__media img { width: 100%; height: 100%; object-fit: contain; display: block; filter: brightness(0.88); }
  .jackpot-row__media::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 78%, #000 100%);
  }
  .jackpot-row__body h3 { font-size: 21px; margin: 0 0 10px; color: var(--burgundy-deep); }
  .jackpot-row__body p { font-family: system-ui, sans-serif; font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; margin: 0; }
  @media (max-width: 800px) {
    .jackpot-row { grid-template-columns: 1fr; padding: 20px; }
    .jackpot-row__media { height: 200px; }
  }

  /* ---------- HOMEPAGE LIVE JACKPOTS ----------
     Groups come from data/jackpot-screens.json (synced from an external
     EGM screen-capture process, refreshed every few minutes — same
     one-way file pattern as tiers.json/menu.json). The track renders the
     group list twice back-to-back and animates -50% for a seamless loop;
     the second copy is aria-hidden so screen readers see it once. The
     marquee viewport is intentionally narrow (~2 cards wide) to keep the
     section compact rather than spreading every group across the page. */
  .jackpots-updated {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: system-ui, sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
    color: var(--ink-soft); margin-top: 14px;
    padding: 6px 14px; border-radius: 20px; background: var(--paper-dim); border: 1px solid var(--line);
  }
  .jackpots-updated__dot {
    width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
    background: #2e9e4f; box-shadow: 0 0 0 3px rgba(46,158,79,0.18);
    animation: jackpots-pulse 1.8s ease-in-out infinite;
  }
  @keyframes jackpots-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
  .jackpots-marquee {
    max-width: 640px; margin: 0 auto; overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }
  .jackpots-marquee__track {
    display: flex; gap: 24px; width: max-content;
    animation: jackpots-scroll 60s linear infinite;
  }
  .jackpots-marquee:hover .jackpots-marquee__track { animation-play-state: paused; }
  @keyframes jackpots-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .jackpots-card {
    flex: 0 0 auto; width: 300px; background: var(--white); border-radius: 10px; overflow: hidden;
    border: 1px solid var(--line); box-shadow: 0 14px 34px -24px rgba(74,15,26,0.28);
  }
  .jackpots-card__media {
    /* Live capture screenshots are cabinet-vertical (~9:16); the tall
       media box keeps them close to native ratio so contain barely letterboxes. */
    position: relative; height: 536px; background: #000;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .jackpots-card__media img { width: 100%; height: 100%; object-fit: contain; display: block; filter: brightness(0.9); }
  .jackpots-card__media::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0) 12%, rgba(0,0,0,0) 88%, #000 100%);
  }
  .jackpots-card__body { padding: 18px 20px 22px; font-family: system-ui, sans-serif; }
  .jackpots-card__body h3 { font-size: 16px; margin: 0 0 6px; color: var(--burgundy-deep); }
  .jackpots-card__body p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
  @media (max-width: 640px) {
    .jackpots-marquee { max-width: 250px; }
    .jackpots-card { width: 230px; }
    .jackpots-card__media { height: 410px; }
  }

  /* ---------- PROMOTIONS / NEWS ---------- */
  .promo-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; max-width: 1200px; margin: 0 auto; align-items: stretch; }
  .promo-card {
    background: var(--white); border-radius: 8px; overflow: hidden; border: 1px solid var(--line);
    box-shadow: 0 14px 34px -22px rgba(156,15,48,0.3);
    display: flex; flex-direction: column;
  }
  .promo-card__media { height: 190px; flex-shrink: 0; }
  .promo-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .promo-card__body { padding: 22px; font-family: system-ui, sans-serif; display: flex; flex-direction: column; flex: 1; }
  .promo-card__body .btn-line { align-self: flex-start; }
  .promo-tag { display: inline-block; font-size: 10px; letter-spacing: 1.3px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; margin-bottom: 12px; align-self: flex-start; }
  .tag-promo { background: var(--gold-tint); color: var(--gold-deep); border: 1px solid var(--gold); }
  .tag-news { background: var(--burgundy-soft); color: var(--burgundy); border: 1px solid var(--burgundy); }
  .promo-card h3 { font-family: system-ui, sans-serif; font-weight: 800; letter-spacing: -0.01em; font-size: 19px; margin: 0 0 8px; color: var(--burgundy-deep); }
  .promo-card--feature h3 { font-size: 23px; }
  .promo-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin: 0 0 12px; }
  .promo-card__meta { font-size: 11px; color: #9c8a72; letter-spacing: .4px; margin-top: auto; }
  @media (max-width: 980px) { .promo-grid { grid-template-columns: 1fr; } }

  /* ---------- BAR & RESTAURANT ---------- */
  .venue-split { display: grid; grid-template-columns: 1fr 1fr; max-width: 1200px; margin: 0 auto; gap: 46px; align-items: center; }
  .venue-split__media { border-radius: 8px; overflow: hidden; box-shadow: 0 24px 60px -24px rgba(74,15,26,0.35); }
  .venue-split__media img { width: 100%; height: 400px; object-fit: cover; }
  .venue-split__media--contain { background: #000; }
  .venue-split__media--contain img { object-fit: contain; }
  .venue-split__media-stack { display: flex; flex-direction: column; gap: 16px; }
  .venue-split__media-stack img {
    width: 100%; height: 192px; object-fit: cover; border-radius: 8px;
    box-shadow: 0 20px 50px -24px rgba(74,15,26,0.35);
  }
  .venue-split h1, .venue-split h2 { color: var(--burgundy-deep); font-size: 32px; margin: 6px 0 16px; }
  .venue-split p { font-family: system-ui, sans-serif; color: var(--ink-soft); line-height: 1.7; font-size: 15px; margin-bottom: 24px; }
  .venue-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
  .venue-tags span {
    font-family: system-ui, sans-serif; font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
    padding: 7px 14px; border: 1px solid var(--gold); border-radius: 20px; color: var(--gold-deep); background: var(--gold-tint);
  }
  @media (max-width: 900px) { .venue-split { grid-template-columns: 1fr; } .venue-split__media img { height: 280px; } .venue-split__media-stack img { height: 220px; } }

  /* ---------- FOOD & DRINKS MENU (Bar page) ---------- */
  .menu-categories { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 1100px; margin: 0 auto; }
  .menu-category h3 {
    font-size: 19px; margin: 0 0 16px; color: var(--burgundy-deep);
    padding-bottom: 10px; border-bottom: 1px solid var(--gold);
  }
  .menu-items { display: flex; flex-direction: column; gap: 12px; }
  .menu-item { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
  .menu-item__info { display: flex; flex-direction: column; gap: 2px; }
  .menu-item__name { font-family: system-ui, sans-serif; font-weight: 600; font-size: 14.5px; color: var(--ink); }
  .menu-item__desc { font-family: system-ui, sans-serif; font-size: 12.5px; color: var(--ink-soft); line-height: 1.4; }
  .menu-item__price { font-family: system-ui, sans-serif; font-weight: 700; font-size: 14px; color: var(--gold-deep); white-space: nowrap; flex-shrink: 0; }
  @media (max-width: 800px) { .menu-categories { grid-template-columns: 1fr; } }

  /* ---------- HOW TO GET HERE (map) ---------- */
  .visit-map {
    max-width: 1000px; margin: 0 auto; border-radius: 10px; overflow: hidden;
    box-shadow: 0 24px 60px -24px rgba(74,15,26,0.35); border: 1px solid var(--line);
  }
  .visit-map iframe { width: 100%; height: 380px; border: 0; display: block; }
  .visit-cta { max-width: 1000px; margin: 22px auto 0; text-align: center; }
  @media (max-width: 700px) { .visit-map iframe { height: 280px; } }

  /* ---------- FOOTER ---------- */
  footer { background: var(--burgundy-deep); color: rgba(251,248,243,0.78); padding: 66px 56px 28px; font-family: system-ui, sans-serif; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 46px; align-items: start; }
  .footer-grid h4 { color: var(--gold); font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 16px; }
  .footer-grid p, .footer-grid a { font-size: 13px; line-height: 2; color: rgba(251,248,243,0.72); display: block; }
  .footer-grid a:hover { color: var(--gold); }
  .footer-logo { height: 56px; width: auto; margin-bottom: 14px; filter: brightness(1.4); }
  .responsible-bar {
    max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(184,147,90,0.25); padding-top: 22px;
    display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 12px;
  }
  .responsible-bar strong { color: var(--gold); }
  .social-row { display: flex; gap: 14px; }
  .social-row span { width: 32px; height: 32px; border: 1px solid rgba(184,147,90,0.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }

  /* ---------- MOBILE NAV ---------- */
  .nav__burger {
    display: none; margin-left: auto; background: none; border: none; font-size: 22px; line-height: 1; color: var(--burgundy);
    cursor: pointer; padding: 6px 4px;
  }
  @media (max-width: 960px) {
    .nav { padding: 14px 20px; position: relative; }
    .nav__burger { display: block; }
    .nav__links {
      display: none;
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; gap: 0;
      background: var(--paper); border-bottom: 1px solid var(--line);
      box-shadow: 0 16px 30px -18px rgba(74,15,26,0.3);
      padding: 6px 0;
      z-index: 60;
    }
    .nav__links.is-open { display: flex; }
    .nav__links a {
      padding: 15px 24px; border-bottom: 1px solid var(--paper-dim); font-size: 13px;
    }
    .nav__links a.nav__mobile-cta { color: var(--burgundy); font-weight: 700; }
  }

  /* ---------- RESPONSIVE FOOTER / SECTIONS ---------- */
  @media (max-width: 780px) {
    section.block { padding: 60px 22px; }
    .hero__content { padding: 60px 22px !important; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: left; }
    footer { padding: 50px 22px 24px; }
    .responsible-bar { flex-direction: column; align-items: flex-start; text-align: left; }
  }
  @media (max-width: 420px) {
    .hero h1 { font-size: 30px !important; }
    .games-grid { grid-template-columns: 1fr !important; }
    .stats { grid-template-columns: 1fr 1fr !important; }
  }

  /* ================================================================
     LOYALTY PAGE (loyalty.php) — rules below are additive only.
     Everything the loyalty concept shares with the homepage (:root,
     .nav, .btn-*, section.block, .section-head, footer, mobile nav)
     is already defined above and is intentionally NOT repeated here.
     ================================================================ */

  /* ---------- LOYALTY HERO (two-column: copy + rewards card) ----------
     The shared .hero above is the homepage's full-bleed blurred slider;
     this modifier re-lays it out as a centred two-column grid. */
  .hero--loyalty {
    display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 60px;
    max-width: 1240px; margin: 0 auto; padding: 78px 56px 90px;
    min-height: 0; overflow: visible;
  }
  .hero--loyalty h1 { font-size: clamp(34px, 4.4vw, 54px); margin: 0 0 20px; max-width: none; }
  .hero--loyalty p.lede { max-width: 470px; margin-bottom: 30px; }
  .hero__card-wrap { position: relative; display: flex; justify-content: center; }
  .hero__card-wrap::before {
    content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,162,74,0.18), transparent 68%);
    top: 50%; left: 50%; transform: translate(-50%,-50%);
  }
  .hero__card {
    position: relative; width: 380px; max-width: 100%;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 40px 80px -24px rgba(110,8,33,0.4);
    transform: rotate(-4deg);
  }
  @media (max-width: 960px) {
    .hero--loyalty { grid-template-columns: 1fr; padding: 50px 24px; }
    .hero__card { width: 300px; transform: none; margin: 0 auto; }
  }

  /* ---------- HOW IT WORKS ---------- */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1080px; margin: 0 auto; }
  .step { text-align: center; padding: 0 12px; }
  .step__num {
    width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-bright));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800;
  }
  .step h3 { font-size: 18px; margin: 0 0 10px; color: var(--burgundy-deep); }
  .step p { font-family: system-ui, sans-serif; font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
  .step__arrow { display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 22px; }
  @media (max-width: 800px) { .steps { grid-template-columns: 1fr; gap: 40px; } .step__arrow { transform: rotate(90deg); } }

  /* ---------- POINT TYPES ---------- */
  .points-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
  .points-card { background: var(--white); border-radius: 10px; padding: 34px 30px; border: 1px solid var(--line); box-shadow: 0 14px 34px -22px rgba(74,15,26,0.28); }
  .points-card__icon { font-size: 26px; margin-bottom: 14px; }
  .points-card--tier .points-card__icon { color: var(--gold-deep); }
  .points-card--redeem .points-card__icon { color: var(--burgundy); }
  .points-card h3 { font-size: 20px; margin: 0 0 10px; color: var(--burgundy-deep); }
  .points-card p { font-family: system-ui, sans-serif; font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin: 0; }
  .points-card__tag {
    display: inline-block; font-family: system-ui, sans-serif; font-size: 10.5px; letter-spacing: 1.3px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 20px; margin-bottom: 14px;
  }
  .points-card--tier .points-card__tag { background: var(--gold-tint); color: var(--gold-deep); border: 1px solid var(--gold); }
  .points-card--redeem .points-card__tag { background: var(--burgundy-soft); color: var(--burgundy); border: 1px solid var(--burgundy); }
  @media (max-width: 800px) { .points-grid { grid-template-columns: 1fr; } }

  /* ---------- TIER LADDER (rendered from data/tiers.json) ----------
     Names only, no rate/perks columns. Three cards, colour-coded to their
     metal via a `tier-card--{bronze,silver,gold}` modifier class derived
     from the tier name in templates/promotions.php. No side/edge stripes
     by design — the metal reads through the badge and name colour only. */
  .tier-ladder { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .tier-card {
    position: relative; text-align: center; background: var(--white);
    border: 1px solid var(--line); border-radius: 16px; padding: 46px 30px 40px;
    box-shadow: 0 18px 40px -26px rgba(74,15,26,0.3);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .tier-card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px -26px rgba(74,15,26,0.4); }
  .tier-card__badge {
    width: 62px; height: 62px; margin: 0 auto 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: system-ui, sans-serif; font-weight: 800; font-size: 21px; color: var(--white);
    box-shadow: 0 12px 24px -10px rgba(0,0,0,0.35);
  }
  .tier-card__eyebrow {
    font-family: system-ui, sans-serif; font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--ink-soft); margin-bottom: 10px;
  }
  .tier-card__name { margin: 0; font-size: 26px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
  .tier-card__flag {
    position: absolute; top: 18px; right: 18px;
    font-family: system-ui, sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 5px 10px; border-radius: 20px; background: rgba(255,255,255,0.16); color: var(--gold);
    border: 1px solid rgba(201,162,74,0.5);
  }

  .tier-card--bronze .tier-card__badge { background: linear-gradient(135deg, #d68f4e, #8a5325); }
  .tier-card--bronze .tier-card__name { color: #8a5325; }

  .tier-card--silver .tier-card__badge { background: linear-gradient(135deg, #dde1e4, #8b9096); }
  .tier-card--silver .tier-card__name { color: #6d747a; }

  .tier-card--gold {
    background: linear-gradient(165deg, var(--burgundy-deep), var(--burgundy));
    border-color: transparent;
    transform: scale(1.05);
  }
  .tier-card--gold:hover { transform: scale(1.05) translateY(-6px); }
  .tier-card--gold .tier-card__badge { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--ink); }
  .tier-card--gold .tier-card__eyebrow { color: rgba(255,255,255,0.68); }
  .tier-card--gold .tier-card__name { color: var(--gold); }

  @media (max-width: 800px) {
    .tier-ladder { grid-template-columns: 1fr; max-width: 420px; }
    .tier-card--gold { transform: none; }
    .tier-card--gold:hover { transform: translateY(-6px); }
  }

  /* ---------- BONUS EVENTS BANNER ---------- */
  .bonus-banner-stack { display: flex; flex-direction: column; gap: 28px; }
  .bonus-banner {
    max-width: 1080px; margin: 0 auto; border-radius: 14px; overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 24px 50px -24px rgba(74,15,26,0.35);
  }
  .bonus-banner__media { position: relative; background: #000; }
  .bonus-banner__media img { width: 100%; height: 100%; min-height: 280px; object-fit: contain; }
  .bonus-banner__body { padding: 44px 40px; background: var(--white); display: flex; flex-direction: column; justify-content: center; }
  .bonus-banner__body .eyebrow { font-family: system-ui, sans-serif; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; }
  .bonus-banner__body h3 { font-size: 25px; margin: 0 0 14px; color: var(--burgundy-deep); }
  .bonus-banner__body p { font-family: system-ui, sans-serif; font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin: 0 0 22px; }
  @media (max-width: 800px) { .bonus-banner { grid-template-columns: 1fr; } .bonus-banner__media img { min-height: 200px; } }
  @media (max-width: 780px) { .bonus-banner__body { padding: 32px 26px; } }

  /* ---------- CTA STRIP ---------- */
  .cta-strip {
    text-align: center; padding: 90px 56px;
    background: linear-gradient(120deg, var(--burgundy-deep), var(--burgundy));
    color: var(--white);
  }
  .cta-strip h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 16px; }
  .cta-strip p { font-family: system-ui, sans-serif; font-size: 15px; color: rgba(255,255,255,0.82); max-width: 480px; margin: 0 auto 30px; line-height: 1.6; }
  .cta-strip .btn-solid { background: var(--gold); color: var(--burgundy-deep); font-weight: 700; }

  /* ---------- CONTACT ---------- */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
  .contact-card {
    background: var(--white); border-radius: 10px; padding: 34px 30px;
    border: 1px solid var(--line); box-shadow: 0 14px 34px -22px rgba(74,15,26,0.28);
    display: flex; flex-direction: column; gap: 12px;
  }
  .contact-card h3 { font-size: 20px; margin: 0 0 4px; color: var(--burgundy-deep); }
  .contact-card p { font-family: system-ui, sans-serif; font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
  .contact-card .btn-line, .contact-card .btn-solid { align-self: flex-start; }
  .contact-card__email { font-family: system-ui, sans-serif; font-size: 14px; color: var(--burgundy); }
  .contact-card__social { display: flex; gap: 14px; margin-top: 4px; }
  .contact-card__social a { font-family: system-ui, sans-serif; font-size: 12.5px; letter-spacing: .5px; color: var(--ink-soft); text-decoration: underline; }
  @media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

  /* ---------- AGE / COOKIE GATE ---------- */
  .age-gate {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(32, 26, 23, 0.92);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
  }
  .age-gate__card {
    background: var(--paper); border-radius: 12px; padding: 40px;
    max-width: 440px; width: 100%; text-align: center;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
  }
  .age-gate__card h2 { color: var(--burgundy-deep); margin: 0 0 16px; font-size: 24px; }
  .age-gate__card p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; margin: 0 0 28px; }
  .age-gate__actions { display: flex; flex-direction: column; gap: 12px; }
  .age-gate__actions .btn-solid, .age-gate__actions .btn-line {
    width: 100%; text-align: center; border: none; cursor: pointer; font: inherit;
  }
