/* ================================================================
   91 Club Games — premium online-casino design system
   Layout personality: asymmetric hero split by a diagonal gold
   hairline; sections separated by thin angled dividers; cards use
   hairline-gold borders with a warm inset glow; primary CTA has a
   brushed-gold sheen.
   ================================================================ */

:root {
  /* ——— Colors ——————————————————————————————————————— */
  --brand:        #8B1A2C;          /* rich burgundy */
  --brand-dark:   #5A0E1C;          /* deeper maroon */
  --brand-light:  #C62849;          /* lighter maroon */
  --accent:       #EDDF3C;          /* classic casino gold */
  --accent-warm:  #FA5E5D;          /* coral highlight */
  --accent-soft:  #F6E88F;          /* soft champagne */

  --bg:           #0E0A0D;          /* warm near-black */
  --bg-card:      #1B1418;          /* dark card */
  --bg-elevated:  #261B20;          /* surface for CTAs */
  --bg-panel:     #15100F;          /* deepest panel */

  --text:         #F5EDE0;          /* warm cream */
  --text-muted:   #A89388;          /* muted warm taupe */
  --text-dim:     #72615A;

  --border:       rgba(237, 223, 60, 0.14);
  --border-strong:rgba(237, 223, 60, 0.28);
  --border-soft:  rgba(245, 237, 224, 0.08);

  /* ——— Typography ————————————————————————————————— */
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Fraunces', 'Cormorant Garamond', Georgia, serif;

  --text-base:    1rem;
  --text-lg:      1.125rem;
  --text-xl:      1.25rem;
  --text-2xl:     1.5rem;
  --text-3xl:     2rem;
  --text-4xl:     2.75rem;
  --text-5xl:     3.75rem;

  /* ——— Spacing ———————————————————————————————————— */
  --gap-sm: 0.75rem;
  --gap:    1.5rem;
  --gap-lg: 3rem;
  --gap-xl: 5rem;

  /* ——— Shape ————————————————————————————————————— */
  --r:    0.5rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;

  /* ——— Shadow ———————————————————————————————————— */
  --shadow:      0 12px 32px -12px rgba(0, 0, 0, 0.55);
  --shadow-card: inset 0 1px 0 rgba(237, 223, 60, 0.08),
                 0 16px 40px -20px rgba(0, 0, 0, 0.75);
  --shadow-gold: 0 0 0 1px rgba(237, 223, 60, 0.35),
                 0 18px 40px -20px rgba(237, 223, 60, 0.35);
}

/* ——— Reset ————————————————————————————————————————— */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  min-height: 100vh;
  font-feature-settings: "ss01", "cv11";

  background-image:
    radial-gradient(circle at 15% -5%, rgba(139, 26, 44, 0.28), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(237, 223, 60, 0.06), transparent 40%),
    radial-gradient(circle at 50% 120%, rgba(139, 26, 44, 0.18), transparent 55%);
  background-attachment: fixed;
}

img, picture, svg, video { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 160ms ease;
}
a:hover { color: var(--accent-soft); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.25rem, 5vw, var(--text-5xl)); }
h2 { font-size: clamp(1.65rem, 3.2vw, var(--text-4xl)); }
h3 { font-size: clamp(1.25rem, 2vw, var(--text-2xl)); }

p + p, p + ul, p + ol, ul + p, ol + p, h2 + p, h3 + p { margin-top: 1.1rem; }

::selection { background: var(--accent); color: var(--brand-dark); }

/* ——— Container ——————————————————————————————————— */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 3.5vw, 2rem);
}

/* ——— Accessibility ——————————————————————————————— */
.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;
}

/* ================================================================
   SITE HEADER — Floating Glass Ribbon
   ================================================================ */
body { padding-top: 4.75rem; }

.site-header {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;               /* let clicks through empty gutters */
}

.header-inner {
  pointer-events: auto;
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.8vw, 1.5rem);
  padding: 0.55rem 0.55rem 0.55rem 1.25rem;
  background: rgba(14, 10, 13, 0.48);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter:         blur(22px) saturate(180%);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  box-shadow:
    0 24px 48px -24px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(237, 223, 60, 0.10);
  transition: padding 280ms cubic-bezier(.4,.2,.1,1),
              background 280ms ease,
              box-shadow 280ms ease,
              border-radius 280ms ease;
}
.site-header.is-scrolled .header-inner {
  padding: 0.38rem 0.38rem 0.38rem 1rem;
  background: rgba(14, 10, 13, 0.82);
  box-shadow:
    0 14px 30px -16px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(237, 223, 60, 0.08);
}

/* ——— Brand ——— */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { filter: brightness(1.08); }
.brand-mark {
  /* logo is a 320×84 wordmark — display full, never crop */
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-brand .brand-mark { height: 44px; }

/* ——— Nav + sliding underline indicator ——— */
.nav {
  position: relative;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.8vw, 1.6rem);
  padding: 0 0.25rem;
}
.nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 0.1rem;
  position: relative;
  white-space: nowrap;
  transition: color 180ms ease;
}
.nav a:hover,
.nav a.active { color: var(--accent); }

.nav-indicator {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  pointer-events: none;
  transition:
    left 320ms cubic-bezier(.4,.2,.1,1),
    width 320ms cubic-bezier(.4,.2,.1,1),
    opacity 200ms ease;
}
.nav:hover .nav-indicator,
.nav-indicator.is-active { opacity: 1; }

/* ——— Right cluster: jackpot + CTA + hamburger ——— */
.header-aside {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ——— Live jackpot ticker ——— */
.jackpot {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
  padding: 0.32rem 0.9rem 0.32rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(circle at 0% 50%, rgba(59, 214, 113, 0.12), transparent 55%),
    linear-gradient(135deg, rgba(139, 26, 44, 0.25), rgba(14, 10, 13, 0.1));
  position: relative;
  overflow: hidden;
}
.jackpot::before {
  content: "";
  position: absolute;
  top: 50%; left: 0.62rem;
  width: 6px; height: 6px;
  margin-top: -3px;
  background: #3bd671;
  border-radius: 50%;
  box-shadow: 0 0 8px #3bd671;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.jackpot-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.jackpot-value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  transition: color 220ms ease, text-shadow 220ms ease;
}
.jackpot.is-bumped .jackpot-value {
  color: #fff6c2;
  text-shadow: 0 0 14px rgba(237, 223, 60, 0.55);
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px  rgba(59, 214, 113, 0.9); transform: scale(1); }
  50%      { box-shadow: 0 0 14px rgba(59, 214, 113, 1);   transform: scale(1.18); }
}

/* Size the CTA to match the pill */
.site-header .header-cta {
  padding: 0.7rem 1.25rem;
  font-size: 0.82rem;
  border-radius: 999px;
}

/* ——— Hamburger (mobile only) ——— */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  width: 40px; height: 40px;
  cursor: pointer;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--accent);
  margin: 3px auto;
  transition: transform 280ms cubic-bezier(.4,.2,.1,1),
              opacity 220ms ease;
  transform-origin: center;
}
.menu-toggle.is-open { background: rgba(237, 223, 60, 0.08); }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary,
.btn-secondary,
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: var(--r);
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 220ms ease, filter 220ms ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Primary — brushed gold sheen on burgundy */
.btn-primary {
  background: linear-gradient(135deg, var(--brand-light), var(--brand) 60%, var(--brand-dark));
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 12px 28px -14px rgba(139, 26, 44, 0.75);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(237, 223, 60, 0.32) 50%,
    transparent 70%);
  transform: translateX(-110%);
  transition: transform 650ms ease;
  z-index: -1;
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn-primary:hover::after { transform: translateX(110%); }

/* Secondary — outlined gold */
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 1px 0 rgba(237, 223, 60, 0.06);
}
.btn-secondary:hover {
  background: rgba(237, 223, 60, 0.06);
  border-color: var(--accent);
  color: var(--accent-soft);
}

/* Accent — solid gold */
.btn-accent {
  background: linear-gradient(135deg, var(--accent), #d6c42f);
  color: var(--brand-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 12px 28px -14px rgba(237, 223, 60, 0.7);
}
.btn-accent:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* Overrides so the global a { color } rule never bleeds onto buttons */
.cta-inline .btn-primary,
.cta-inline .btn-primary:hover,
.seo-article .btn-primary,
.seo-article .btn-primary:hover,
.header-cta.btn-primary,
.header-cta.btn-primary:hover { color: #ffffff; }

.cta-inline .btn-accent,
.cta-inline .btn-accent:hover,
.seo-article .btn-accent,
.seo-article .btn-accent:hover { color: var(--brand-dark); }

.cta-inline .btn-secondary,
.cta-inline .btn-secondary:hover,
.seo-article .btn-secondary,
.seo-article .btn-secondary:hover { color: var(--accent); }

/* ================================================================
   HERO — "Full-bleed Cinematic"
   Full-viewport image + strong left-anchored gradient overlay,
   content column anchored left, floating frosted stat strip that
   bleeds into the next section.
   ================================================================ */
.hero {
  position: relative;
  min-height: clamp(580px, 92vh, 900px);
  padding-block: clamp(5rem, 11vw, 9rem) clamp(6rem, 10vw, 8rem);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  /* pull up through the body padding-top so the image reaches the true top */
  margin-top: -4.75rem;
  padding-top: calc(4.75rem + clamp(2rem, 6vw, 5rem));
}
@media (max-width: 900px) {
  .hero {
    margin-top: -4.25rem;
    padding-top: calc(4.25rem + 3rem);
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 55%;              /* favor right-half subject */
  transform: scale(1.04);                /* tiny zoom for parallax feel */
}

/* Vertical + horizontal gradient overlay — keeps left-anchored text readable */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(14, 10, 13, 0.96) 0%,
      rgba(14, 10, 13, 0.88) 32%,
      rgba(14, 10, 13, 0.55) 58%,
      rgba(14, 10, 13, 0.30) 82%,
      rgba(14, 10, 13, 0.55) 100%),
    linear-gradient(180deg,
      rgba(14, 10, 13, 0.35) 0%,
      rgba(14, 10, 13, 0.00) 28%,
      rgba(14, 10, 13, 0.00) 65%,
      rgba(14, 10, 13, 0.95) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3.5vw, 2rem);
}

.hero-content { max-width: 36rem; }

.hero-content .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(14, 10, 13, 0.45);
  backdrop-filter: blur(6px);
  margin-bottom: 1.6rem;
}
.hero-content .kicker::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.75rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 1.6rem;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.55);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
  text-shadow: 0 2px 30px rgba(237, 223, 60, 0.3);
}

.hero-content .lead {
  font-size: var(--text-lg);
  color: var(--text);
  opacity: 0.85;
  max-width: 32rem;
  margin-bottom: 2.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ——— Frosted stat strip: normal-flow bridge that overlaps the hero ——— */
.hero-bridge {
  position: relative;
  z-index: 3;
  margin-top: -3.25rem;                  /* overlap into the hero */
  margin-bottom: 1.5rem;
  animation: rise 900ms cubic-bezier(.2,.7,.2,1) both;
  animation-delay: 0.75s;
}

.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0.35rem;
  background: rgba(14, 10, 13, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter:         blur(18px) saturate(180%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  box-shadow:
    0 24px 50px -24px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(237, 223, 60, 0.12);
  position: relative;
  overflow: hidden;                       /* belt-and-braces: no tile overflow escapes */
}
.hero-stats-strip::before {
  /* top accent hairline */
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.stat-tile {
  min-width: 0;                          /* allow tile to shrink inside the grid column */
  padding: 1.1rem 0.75rem;
  text-align: center;
  position: relative;
  border-right: 1px solid var(--border-soft);
  overflow: hidden;
}
.stat-tile:last-child { border-right: 0; }
.stat-tile strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.85rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stat-tile span {
  display: block;
  font-size: clamp(0.62rem, 1vw, 0.74rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Extra top padding on the first section after the stat-bridge */
.hero-bridge + section { padding-top: clamp(2.5rem, 5vw, 4rem); }

/* Hero content entrance stagger */
.hero-content > * { animation: rise 700ms cubic-bezier(.2,.7,.2,1) both; }
.hero-content .kicker      { animation-delay: 0.10s; }
.hero-content h1           { animation-delay: 0.22s; }
.hero-content .lead        { animation-delay: 0.38s; }
.hero-content .hero-actions{ animation-delay: 0.54s; }

/* Responsive tweaks */
@media (max-width: 900px) {
  .hero-bg img { object-position: 60% 55%; }
  .hero::before {
    background:
      linear-gradient(180deg,
        rgba(14, 10, 13, 0.75) 0%,
        rgba(14, 10, 13, 0.55) 35%,
        rgba(14, 10, 13, 0.85) 75%,
        rgba(14, 10, 13, 0.98) 100%);
  }
  .hero-content h1 { text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8); }

  .hero-bridge { margin-top: -2.25rem; }
  .hero-stats-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-tile { padding: 0.9rem 0.6rem; }
  .stat-tile strong { font-size: 1.35rem; }
  .stat-tile span   { letter-spacing: 0.1em; }
  .stat-tile:nth-child(2) { border-right: 0; }
  .stat-tile:nth-child(1),
  .stat-tile:nth-child(2) { border-bottom: 1px solid var(--border-soft); }
}

/* ================================================================
   SECTION HEADINGS
   ================================================================ */
.section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  position: relative;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-label::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
}
.section-heading {
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 42rem;
  margin-bottom: 0.75rem;
}
.section-intro {
  color: var(--text-muted);
  font-size: var(--text-lg);
  max-width: 48rem;
  margin-bottom: 3rem;
}

/* ================================================================
   GAMES GRID
   ================================================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.game-tile {
  position: relative;
  display: block;
  padding: 2rem 1.75rem;
  background: linear-gradient(165deg, var(--bg-card), var(--bg-panel));
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  color: var(--text);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease;
  min-height: 220px;
}
.game-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(237, 223, 60, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 260ms ease;
}
.game-tile:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  color: var(--text);
}
.game-tile:hover::before { opacity: 1; }
.game-tile .tile-icon {
  display: inline-flex;
  width: 52px; height: 52px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--accent);
  margin-bottom: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.game-tile h3 {
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
  position: relative;
}
.game-tile p {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
}
.game-tile .tile-arrow {
  position: absolute;
  right: 1.5rem; bottom: 1.5rem;
  color: var(--accent);
  transition: transform 260ms ease;
}
.game-tile:hover .tile-arrow { transform: translateX(4px); }

/* ================================================================
   ARTICLE
   ================================================================ */
.article-shell {
  max-width: 760px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 3.5vw, 2rem);
}
.seo-article {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.75;
}
.seo-article h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-left: 1.1rem;
  border-left: 3px solid var(--accent);
}
.seo-article h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--accent-soft);
}
.seo-article p { margin-bottom: 1.1rem; color: var(--text); }
.seo-article ul,
.seo-article ol { margin: 1rem 0 1.5rem 1.25rem; }
.seo-article li { margin-bottom: 0.5rem; color: var(--text); }
.seo-article strong { color: var(--accent-soft); font-weight: 700; }
.seo-article h2 strong,
.seo-article h3 strong { color: inherit; font-weight: inherit; }
.seo-article a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.seo-article a:hover { color: var(--accent-soft); }

/* Article image */
.article-image {
  margin: 2.25rem -0.5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.article-image img { width: 100%; display: block; }
.article-image figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-panel);
  text-align: center;
  letter-spacing: 0.03em;
}

/* Inline CTA */
.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.25rem 2.75rem;
  margin: 2.5rem -0.75rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 223, 60, 0.12), transparent 55%),
    linear-gradient(135deg, var(--bg-elevated), var(--bg-panel));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.cta-inline::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.cta-inline .cta-text {
  flex: 1;
  min-width: 0;
}
.cta-inline h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.cta-inline p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin: 0;
}

/* Highlight box — lists */
.highlight-box {
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(90deg, rgba(237, 223, 60, 0.05), transparent 80%);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r) var(--r) 0;
}
.highlight-box ul,
.highlight-box ol { margin: 0 0 0 1.1rem; }
.highlight-box li { color: var(--text); }

/* ================================================================
   GALLERY + LIGHTBOX
   ================================================================ */
.brand-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  cursor: pointer;
}
.gallery-item.is-featured {
  grid-column: span 2;
  aspect-ratio: 8 / 5;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 400ms ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 10, 13, 0.75));
  opacity: 0.7;
  transition: opacity 300ms ease;
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.1); }
.gallery-item:hover::after { opacity: 0.4; }
.gallery-item .caption {
  position: absolute;
  left: 1rem; bottom: 0.9rem;
  font-size: 0.88rem;
  color: var(--accent-soft);
  font-weight: 500;
  z-index: 2;
  letter-spacing: 0.04em;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 3, 5, 0.92);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 2rem;
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 85vh;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  transition: opacity 250ms ease;
}
.lightbox-btn {
  position: absolute;
  width: 52px; height: 52px;
  background: rgba(14, 10, 13, 0.85);
  border: 1px solid var(--border-strong);
  color: var(--accent);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms ease, transform 200ms ease;
}
.lightbox-btn:hover { background: var(--brand); transform: scale(1.06); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; }
.lightbox-next  { right: 1.5rem; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.06); }

/* ================================================================
   PAGE HERO (inner pages) — prominent image background with readable overlay
   ================================================================ */
.page-hero {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--border-strong);
  background:
    radial-gradient(circle at 80% 20%, rgba(237, 223, 60, 0.12), transparent 55%),
    linear-gradient(135deg, var(--brand-dark) 0%, var(--bg-panel) 60%);
}

/* When a page image is available, layer it underneath a readability gradient */
.page-hero[data-bg]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.02);
}
.page-hero[data-bg]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg,
      rgba(14, 10, 13, 0.88) 0%,
      rgba(14, 10, 13, 0.62) 40%,
      rgba(14, 10, 13, 0.45) 70%,
      rgba(14, 10, 13, 0.75) 100%),
    radial-gradient(circle at 85% 20%, rgba(237, 223, 60, 0.12), transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb .sep { color: var(--text-dim); }
.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  max-width: 42rem;
  margin-bottom: 1rem;
}
.page-hero .subtitle {
  color: var(--text-muted);
  font-size: var(--text-lg);
  max-width: 42rem;
}

/* ================================================================
   BLOG
   ================================================================ */
.blog-list-hero {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(237, 223, 60, 0.1), transparent 55%),
    linear-gradient(180deg, var(--brand-dark), var(--bg-panel));
  border-bottom: 1px solid var(--border-strong);
}
.blog-list-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 0.75rem;
}
.blog-list-hero p {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto;
}
.post-count-bar {
  margin: 2rem 0;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.blog-card__thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--brand-dark), var(--bg-panel));
  position: relative;
  overflow: hidden;
}
.blog-card--featured .blog-card__thumb { aspect-ratio: auto; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--accent);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: var(--r);
}
.blog-card__body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.blog-card--featured .blog-card__body { padding: 2.25rem; justify-content: center; }
.blog-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.blog-card__meta span { display: inline-flex; gap: 0.35rem; align-items: center; }
.blog-card__title {
  font-size: 1.4rem;
  line-height: 1.25;
}
.blog-card--featured .blog-card__title { font-size: 2rem; }
.blog-card__title a { color: var(--text); }
.blog-card__title a:hover { color: var(--accent); }
.blog-card__excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card--featured .blog-card__excerpt {
  -webkit-line-clamp: unset;
  display: block;
}
.blog-card__link {
  margin-top: auto;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
}

/* ================================================================
   404
   ================================================================ */
.err-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
}
.err-404 .code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 18vw, 11rem);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
  text-shadow: 0 6px 40px rgba(237, 223, 60, 0.35);
}
.err-404 h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.75rem; }
.err-404 p { color: var(--text-muted); max-width: 32rem; margin: 0 auto 2rem; }

/* ================================================================
   FOOTER — "Casino Counter" (ornate, Monte-Carlo classic)
   ================================================================ */
.site-footer {
  background: var(--bg-panel);
  margin-top: 5rem;
  position: relative;
}

/* ——— Gold chevron fret pattern band (decorative strip) ——— */
.footer-fret {
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 14' fill='none' stroke='%23EDDF3C' stroke-width='1.1' stroke-linecap='round' stroke-linejoin='round'><path d='M0 11 L6 3 L12 11 L18 3 L24 11'/></svg>");
  background-repeat: repeat-x;
  background-size: 24px 14px;
  background-position: 0 center;
  opacity: 0.55;
  border-block: 1px solid rgba(237, 223, 60, 0.18);
  animation: fret-drift 40s linear infinite;
}
@keyframes fret-drift {
  from { background-position: 0 center; }
  to   { background-position: -240px center; }
}
@media (prefers-reduced-motion: reduce) {
  .footer-fret { animation: none; }
}

/* ——— Main grid: pedestal · 3 narrow cols · VIP tile ——— */
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr 0.75fr 1.5fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  align-items: start;
}

.footer-pedestal .brand-mark { height: 44px; }
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-top: 1.2rem;
  max-width: 24rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.93rem;
  transition: color 180ms ease, padding-left 220ms ease;
}
.footer-col a:hover {
  color: var(--accent);
  padding-left: 0.35rem;
}

/* ——— VIP tile with gold vertical divider to its left ——— */
.footer-vip {
  position: relative;
  padding-left: 2rem;
}
.footer-vip::before {
  content: "";
  position: absolute;
  top: 0.5rem; bottom: 0.5rem;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--accent) 50%, transparent);
  opacity: 0.45;
}
.vip-inner {
  position: relative;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 223, 60, 0.10), transparent 60%),
    linear-gradient(135deg, rgba(139, 26, 44, 0.28), rgba(14, 10, 13, 0.2));
  overflow: hidden;
}
.vip-inner::before {
  /* top accent hairline */
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.vip-kicker {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.vip-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.15;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.vip-inner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.vip-inner .btn-accent {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ——— Accreditation badges with ornate corner flourishes ——— */
.footer-accreditations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: 2rem 2.5rem;
  border-top: 1px solid var(--border-soft);
}

.accred-badge {
  position: relative;
  padding: 1.4rem 1rem 1.25rem;
  border: 1px solid var(--border-strong);
  border-radius: 2px;                        /* sharp art-deco corners */
  background: linear-gradient(135deg, rgba(237, 223, 60, 0.03), transparent 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  overflow: hidden;
  transition: border-color 260ms ease, transform 260ms ease;
  cursor: default;
}
.accred-badge:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.accred-badge::after {
  /* gold sweep shimmer on hover */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(237, 223, 60, 0.18) 50%,
    transparent 70%);
  transform: translateX(-110%);
  transition: transform 650ms ease;
  pointer-events: none;
}
.accred-badge:hover::after { transform: translateX(110%); }

/* Four corner flourishes — small gold L-shapes in each corner */
.accred-corner {
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--accent);
  border-style: solid;
  border-width: 0;
  opacity: 0.7;
  transition: opacity 220ms ease, width 220ms ease, height 220ms ease;
}
.accred-corner--tl { top: 5px; left: 5px;   border-top-width: 1px; border-left-width: 1px; }
.accred-corner--tr { top: 5px; right: 5px;  border-top-width: 1px; border-right-width: 1px; }
.accred-corner--bl { bottom: 5px; left: 5px;  border-bottom-width: 1px; border-left-width: 1px; }
.accred-corner--br { bottom: 5px; right: 5px; border-bottom-width: 1px; border-right-width: 1px; }
.accred-badge:hover .accred-corner { opacity: 1; width: 14px; height: 14px; }

.accred-badge svg,
.accred-badge .accred-age {
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.accred-badge .accred-age {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.accred-badge .accred-age sup { font-size: 0.7em; }

.accred-badge strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  letter-spacing: 0.01em;
}
.accred-badge span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ——— Editorial copyright bar ——— */
.footer-bottom {
  text-align: center;
  padding-block: 1.75rem 2.25rem;
  border-top: 1px solid var(--border-soft);
  position: relative;
}
.footer-bottom::before {
  /* tiny centered ornamental mark */
  content: "§";
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.4rem;
  height: 1.4rem;
  background: var(--bg-panel);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  opacity: 0.8;
}
.footer-copyright {
  font-family: var(--font-heading);
  font-variant-caps: all-small-caps;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.footer-disclaimer {
  font-style: italic;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0 auto;
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.25rem;
  }
  .footer-pedestal { grid-column: 1 / -1; }
  .footer-vip {
    grid-column: 1 / -1;
    padding-left: 0;
  }
  .footer-vip::before { display: none; }
  .vip-inner { padding: 1.5rem; }
  .vip-inner .btn-accent { width: auto; }
}

@media (max-width: 760px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-accreditations { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .footer-fret { height: 8px; background-size: 18px 8px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-accreditations { gap: 0.6rem; }
  .accred-badge { padding: 1.1rem 0.75rem 1rem; }
  .accred-badge span { letter-spacing: 0.08em; }
}

/* ================================================================
   HOME PAGE BESPOKE SECTIONS
   ================================================================ */
.home-section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  position: relative;
}
.home-section + .home-section { padding-top: 0; }    /* stack without double-padding */

.home-section-head {
  max-width: 46rem;
  margin-bottom: 2.75rem;
}
.home-section-head--center {
  margin-inline: auto;
  text-align: center;
}
.home-section-head--center .section-label { justify-content: center; }
.home-section-head--center .section-label::before { width: 20px; }
.home-section-head--center .section-intro { margin-inline: auto; }

.home-section .section-heading {
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 0.85rem;
}

/* ─────────────── 0 · HOME INTRO — lede paragraphs ─────────────── */
.home-intro {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
}
.intro-block {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 3.5vw, 2.75rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(237, 223, 60, 0.08), transparent 55%),
    linear-gradient(160deg, var(--bg-elevated), var(--bg-panel));
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  overflow: hidden;
}
.intro-block::before,
.intro-block::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
}
.intro-block::before { top: 0;    background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.intro-block::after  { bottom: 0; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0.45; }

.intro-block__glyph {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(5rem, 11vw, 8rem);
  color: var(--accent);
  opacity: 0.55;
  line-height: 0.85;
  flex-shrink: 0;
}
.intro-block__content p {
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.72;
  margin-bottom: 1.1rem;
}
.intro-block__content p:last-of-type { margin-bottom: 1.5rem; }
.intro-block__cta { display: inline-flex; }

@media (max-width: 700px) {
  .intro-block { grid-template-columns: 1fr; }
  .intro-block__glyph { font-size: 5rem; }
}

/* ─────────────── 1 · THE FULL FLOOR — bento tiles ─────────────── */
.floor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}
.floor-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.6rem;
  background: linear-gradient(165deg, var(--bg-card), var(--bg-panel));
  border: 1px solid var(--border-soft);
  border-radius: 2px;                           /* sharp corners for art-deco restraint */
  color: var(--text);
  overflow: hidden;
  transition: transform 300ms ease, border-color 300ms ease;
  isolation: isolate;
}
.floor-tile:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  color: var(--text);
}

/* oversize serif monogram watermark (S, L, T, J, V, C) */
.floor-tile::before {
  content: attr(data-mono);
  position: absolute;
  right: -0.4rem;
  bottom: -3.3rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  font-size: 14rem;
  line-height: 1;
  color: rgba(237, 223, 60, 0.08);
  pointer-events: none;
  transition: color 400ms ease, transform 400ms ease;
  z-index: 0;
}
.floor-tile:hover::before {
  color: rgba(237, 223, 60, 0.16);
  transform: translate(-0.3rem, -0.3rem);
}

/* diagonal gold hairline across each tile */
.floor-tile::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 223, 60, 0.3), transparent);
}

.floor-tile h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}
.floor-tile p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.floor-tile p em { font-style: italic; color: var(--accent-soft); }

/* Outro paragraph under the bento grid */
.floor-outro,
.section-outro {
  margin-top: 2.25rem;
  max-width: 62rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}
.section-outro + .section-outro { margin-top: 1rem; }

/* Column-count variants for inner-page h3-grid sections.
   Desktop: uniform tile sizing, column count driven by item count:
     • 1–4 items → N columns, 1 row
     • 5–6 items → 3 columns
     • 7+ items  → 4 columns                                       */
.floor-grid--cols-1 { grid-template-columns: 1fr; }
.floor-grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.floor-grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.floor-grid--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* When builder emits uniform tiles, cancel the bento wide/featured/glow
   treatment that's reserved for hand-authored home sections. */
[class*="floor-grid--cols-"] .floor-tile--wide,
[class*="floor-grid--cols-"] .floor-tile--featured,
[class*="floor-grid--cols-"] .floor-tile--glow {
  grid-column: span 1;
  background: linear-gradient(165deg, var(--bg-card), var(--bg-panel));
  border-color: var(--border-soft);
}
[class*="floor-grid--cols-"] .floor-tile::before {
  font-size: 10rem;
  bottom: -2.4rem;
}

@media (max-width: 900px) {
  .floor-grid--cols-3,
  .floor-grid--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .floor-grid--cols-2,
  .floor-grid--cols-3,
  .floor-grid--cols-4 { grid-template-columns: 1fr; }
}

/* Plain-paragraph section — editorial card */
.plain-card {
  max-width: 56rem;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  background:
    linear-gradient(160deg, var(--bg-elevated), var(--bg-panel));
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.plain-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.plain-card .section-heading {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 1.25rem;
}
.plain-card p {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: left;
}
.plain-card p:last-child { margin-bottom: 0; }

/* Feature list without image panel (standalone, centered) */
.feature-check-list--plain-wrap { max-width: 58rem; margin-inline: auto; }

/* Reverse-split: image on the RIGHT, content on the LEFT (alternating rhythm) */
.split-layout--reverse .split-layout__media  { order: 2; }
.split-layout--reverse .split-layout__content { order: 1; }

/* Inside a split layout, the feature-list uses the full content column */
.split-layout__content .feature-check-list { margin-bottom: 1.5rem; }
.split-layout__content .home-section-head   { margin-bottom: 1.5rem; }

/* Bottom margin on sections so they don't glue together */
.ps-section { padding-block: clamp(2.5rem, 5vw, 4rem); }
.ps-intro   { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem); }

/* Image divider — atmospheric full-width banner between sections */
.image-divider {
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}
.image-divider__frame {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--border-strong);
  box-shadow:
    0 30px 60px -30px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(237, 223, 60, 0.06);
}
.image-divider__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 900ms ease;
}
.image-divider__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(14, 10, 13, 0.25) 0%,
      transparent 25%,
      transparent 70%,
      rgba(14, 10, 13, 0.60) 100%),
    radial-gradient(circle at 75% 50%, rgba(139, 26, 44, 0.22), transparent 55%);
  pointer-events: none;
}
.image-divider__frame::before {
  /* top gold hairline */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 223, 60, 0.5), transparent);
  z-index: 1;
}
@media (max-width: 700px) {
  .image-divider__frame { aspect-ratio: 3 / 2; }
}

.floor-tile__badge {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--accent);
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.floor-tile__pulse {
  position: absolute;
  top: 1.4rem; right: 1.25rem;
  width: 8px; height: 8px;
  background: #3bd671;
  border-radius: 50%;
  box-shadow: 0 0 10px #3bd671;
  animation: pulse-dot 1.6s ease-in-out infinite;
  z-index: 1;
}

/* Wide tiles span 2 columns */
.floor-tile--wide { grid-column: span 2; }

/* Featured: gold hairline ring + warmer background */
.floor-tile--featured {
  background:
    radial-gradient(circle at 20% 100%, rgba(139, 26, 44, 0.4), transparent 55%),
    linear-gradient(165deg, var(--bg-elevated), var(--bg-panel));
  border-color: var(--border-strong);
}
.floor-tile--featured h3 { color: var(--text); }

/* Glow: soft gold pulse for Jackpot tile */
.floor-tile--glow {
  background:
    radial-gradient(circle at 100% 0%, rgba(237, 223, 60, 0.15), transparent 60%),
    linear-gradient(165deg, var(--bg-card), var(--bg-panel));
}
.floor-tile--glow::after {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}

/* ─────────────── 2 · LIVE DEALER — split layout ─────────────── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-layout__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -30px rgba(0, 0, 0, 0.75),
    inset 0 0 0 1px var(--border-strong);
  background: linear-gradient(160deg, var(--brand-dark), var(--bg-panel));
  isolation: isolate;
}
.split-layout__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 800ms ease;
}
.split-layout__media:hover img { transform: scale(1.06); }

/* corner vignette to preserve text legibility for badges */
.split-layout__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,10,13,0.55) 0%, transparent 35%, transparent 70%, rgba(14,10,13,0.65) 100%);
  pointer-events: none;
}

.split-layout__badge {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.9rem;
  background: rgba(14, 10, 13, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  z-index: 2;
}
.split-layout__badge .live-dot {
  width: 7px; height: 7px;
  background: #3bd671;
  border-radius: 50%;
  box-shadow: 0 0 8px #3bd671;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

/* Oversized serif "91" as a corner mark */
.split-layout__mark {
  position: absolute;
  bottom: -1.5rem; right: -0.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  font-size: 12rem;
  line-height: 0.85;
  color: rgba(237, 223, 60, 0.15);
  pointer-events: none;
  z-index: 1;
}

.split-layout__content .section-label { margin-bottom: 1rem; }
.split-layout__content .section-heading { margin-bottom: 1rem; }
.split-layout__content .section-intro { margin-bottom: 1.75rem; }

.feature-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0 0 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(237, 223, 60, 0.04), transparent 80%);
}
.feature-check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}
.feature-check-list__tick {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(237, 223, 60, 0.12);
  border: 1px solid var(--border-strong);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-check-list li strong {
  color: var(--accent-soft);
  font-weight: 600;
}

.split-layout__outro {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.75rem;
  max-width: 30rem;
}

/* ─────────────── 3 · SECURITY — art-deco grid ─────────────── */
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.security-card {
  position: relative;
  padding: 2rem 1.4rem 1.75rem;
  background: linear-gradient(135deg, rgba(237, 223, 60, 0.02), transparent 70%);
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  text-align: center;
  transition: border-color 260ms ease, transform 260ms ease;
  overflow: hidden;
}
.security-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.security-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(237, 223, 60, 0.14) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 700ms ease;
  pointer-events: none;
}
.security-card:hover::after { transform: translateX(110%); }

.security-card .accred-corner { opacity: 0.6; }
.security-card:hover .accred-corner { opacity: 1; width: 14px; height: 14px; }

.security-card svg {
  color: var(--accent);
  margin: 0 auto 1rem;
}
.security-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--text);
  letter-spacing: 0.01em;
}
.security-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Outro paragraph under the security grid */
.secure-outro {
  margin: 2.25rem auto 0;
  max-width: 52rem;
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
}

/* ─────────────── 4 · HORIZON CTA ─────────────── */
.horizon-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: 2.5rem 3rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(237, 223, 60, 0.10), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(139, 26, 44, 0.35), transparent 55%),
    linear-gradient(135deg, var(--bg-elevated), var(--bg-panel));
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  overflow: hidden;
}
.horizon-cta::before {
  /* top gold hairline */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.horizon-cta::after {
  /* bottom gold hairline */
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.horizon-cta__mark {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: var(--accent);
  opacity: 0.7;
  line-height: 1;
  flex-shrink: 0;
}
.horizon-cta__body .section-label { margin-bottom: 0.6rem; }
.horizon-cta__body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.horizon-cta__body p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 0;
}

/* ─────────────── 5 · REWARDS LEDGER — bento ─────────────── */
.rewards-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 1.1rem;
}
.reward {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(165deg, var(--bg-card), var(--bg-panel));
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  overflow: hidden;
}
.reward::before {
  /* top gold hairline */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 223, 60, 0.4), transparent);
}

.reward__kicker {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.reward h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.reward p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}
.reward p strong {
  color: var(--accent-soft);
  font-weight: 700;
}

.reward__numeral {
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  font-size: 4.5rem;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}
.reward__numeral small {
  font-size: 0.45em;
  vertical-align: baseline;
  margin-left: 0.15em;
  color: var(--accent-soft);
}

/* Welcome: large 2x2 with centerpiece numeral */
.reward--welcome {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.25rem 2rem 2rem;
  background:
    radial-gradient(circle at 100% 100%, rgba(237, 223, 60, 0.14), transparent 55%),
    linear-gradient(165deg, var(--bg-elevated), var(--bg-panel));
  border-color: var(--border-strong);
}
.reward--welcome .reward__numeral {
  font-size: clamp(6rem, 11vw, 9rem);
  margin-bottom: 0;
}
.reward--welcome h3 { font-size: 1.5rem; margin-top: 1.2rem; }
.reward--welcome p  { font-size: 0.96rem; margin-bottom: 1.5rem; }
.reward__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, var(--accent), #d6c42f);
  color: var(--brand-dark) !important;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  align-self: flex-start;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
}
.reward__cta:hover { filter: brightness(1.06); }

/* Weekly: top-right, 2 cols wide */
.reward--weekly { grid-column: span 2; }

/* Cashback + No-deposit: small */
.reward--cashback .reward__numeral { font-size: 2.8rem; margin-bottom: 0.4rem; }

/* VIP: full-width bottom */
.reward--vip {
  grid-column: span 4;
  padding: 2rem 2.25rem;
  background:
    radial-gradient(circle at 0% 50%, rgba(139, 26, 44, 0.25), transparent 55%),
    linear-gradient(90deg, var(--bg-elevated), var(--bg-panel) 70%);
  border-color: var(--border-strong);
}
.reward--vip h3 { font-size: 1.4rem; }
.reward--vip p  { max-width: 42rem; margin-bottom: 1.25rem; }
.reward__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.reward__chips span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(237, 223, 60, 0.04);
}

/* Outro pane under the rewards bento */
.rewards-outro {
  margin-top: 2.25rem;
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.75rem;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(237, 223, 60, 0.04), transparent);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.rewards-outro p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}
.rewards-outro__cta { flex-shrink: 0; font-size: 0.85rem; }

@media (max-width: 700px) {
  .rewards-outro { grid-template-columns: 1fr; padding: 1.5rem; }
}

/* ─────────────── 6 · SUPPORT — centered editorial card ─────────────── */
.support-card {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(2rem, 5vw, 4rem);
  background: linear-gradient(160deg, var(--bg-elevated), var(--bg-panel));
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.support-card::before,
.support-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
}
.support-card::before {
  top: 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.support-card::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.support-card__watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(12rem, 28vw, 22rem);
  line-height: 1;
  color: rgba(237, 223, 60, 0.045);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.04em;
}
.support-card__watermark .support-card__slash {
  margin: 0 -0.1em;
  opacity: 0.55;
}

.support-card__body {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin-inline: auto;
}
.support-card__body .section-label { justify-content: center; margin-bottom: 0.8rem; }
.support-card__body .section-label::before { width: 20px; }
.support-card__body .section-heading { margin-bottom: 1rem; }
.support-card__body p {
  color: var(--text-muted);
  font-size: var(--text-lg);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.support-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 1024px) {
  .floor-grid           { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .floor-tile--wide     { grid-column: span 2; }
  .security-grid        { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rewards-bento        { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reward--welcome      { grid-column: span 2; grid-row: span 1; }
  .reward--welcome .reward__numeral { font-size: clamp(4.5rem, 14vw, 7rem); }
  .reward--weekly       { grid-column: span 2; }
  .reward--vip          { grid-column: span 2; }
}

@media (max-width: 800px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .split-layout__media { aspect-ratio: 16 / 10; max-width: 520px; margin: 0 auto; }
  .horizon-cta {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .horizon-cta__mark { margin: 0 auto; }
  .horizon-cta .btn-accent { justify-self: center; }
}

@media (max-width: 560px) {
  .floor-grid           { grid-template-columns: 1fr; }
  .floor-tile--wide     { grid-column: span 1; }
  .security-grid        { grid-template-columns: 1fr; }
  .rewards-bento        { grid-template-columns: 1fr; }
  .reward--welcome, .reward--weekly, .reward--vip { grid-column: span 1; }
  .support-card         { padding: 2.5rem 1.5rem; }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .games-grid        { grid-template-columns: repeat(2, 1fr); }
}

/* Hide the jackpot ticker on narrower desktops — nav + CTA already fills the pill */
@media (max-width: 1100px) {
  .jackpot { display: none; }
}

@media (max-width: 900px) {
  body { padding-top: 4.25rem; }
  .site-header { top: 0.6rem; left: 0.6rem; right: 0.6rem; }
  .header-inner {
    padding: 0.45rem 0.45rem 0.45rem 0.9rem;
    gap: 0.6rem;
  }

  /* Full-viewport glass overlay nav */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    margin-left: 0;
    padding: 6rem 2rem 3rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: rgba(14, 10, 13, 0.82);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    backdrop-filter:         blur(28px) saturate(180%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 320ms ease, visibility 320ms ease;
    z-index: 45;                     /* below header so hamburger stays tappable */
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav-indicator { display: none; }

  .nav a {
    width: 100%;
    padding: 1.1rem 0.25rem;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    border-bottom: 1px solid var(--border-soft);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 420ms cubic-bezier(.2,.7,.2,1),
                transform 420ms cubic-bezier(.2,.7,.2,1);
  }
  .nav.is-open a { opacity: 1; transform: translateY(0); }
  /* Staggered reveal (up to 8 links) */
  .nav.is-open a:nth-of-type(1) { transition-delay:  60ms; }
  .nav.is-open a:nth-of-type(2) { transition-delay: 100ms; }
  .nav.is-open a:nth-of-type(3) { transition-delay: 140ms; }
  .nav.is-open a:nth-of-type(4) { transition-delay: 180ms; }
  .nav.is-open a:nth-of-type(5) { transition-delay: 220ms; }
  .nav.is-open a:nth-of-type(6) { transition-delay: 260ms; }
  .nav.is-open a:nth-of-type(7) { transition-delay: 300ms; }
  .nav.is-open a:nth-of-type(8) { transition-delay: 340ms; }

  .menu-toggle { display: inline-flex; }
  .header-cta  { display: none; }

  .blog-card--featured { grid-template-columns: 1fr; }
  .blog-grid           { grid-template-columns: 1fr; }

  .cta-inline { flex-direction: column; align-items: flex-start; padding: 1.75rem; }
}

@media (max-width: 600px) {
  .games-grid        { grid-template-columns: 1fr; }
  .brand-gallery     { grid-template-columns: 1fr; }
  .gallery-item.is-featured { grid-column: span 1; aspect-ratio: 4 / 3; }
  .section { padding-block: 3rem; }
  .cta-inline h3 { font-size: 1.25rem; }
  .article-image { margin-inline: 0; }
}
