/* =========================================================================
   Perfect Rummy — Editorial Festive Light System
   Palette: cherry magenta + marigold gold on warm ivory
   Typography: DM Serif Display + Nunito
   ========================================================================= */

:root {
  /* ── Colors ─────────────────────────────────────────────── */
  --brand:         #D81E5B;
  --brand-dark:    #A30F43;
  --brand-light:   #FF5B8C;

  --accent:        #C9A227;
  --accent-warm:   #F5B700;
  --accent-soft:   #FFD166;

  --bg:            #FFF8EC;
  --bg-card:       #FFFFFF;
  --bg-elevated:   #FFFBF0;
  --bg-panel:      #1F0D13;

  --text:          #1B0F14;
  --text-muted:    #5D4650;
  --text-dim:      #8D7680;
  --text-invert:   #FFF5D9;

  --border:        rgba(201, 162, 39, 0.22);
  --border-strong: rgba(201, 162, 39, 0.45);
  --border-soft:   rgba(27, 15, 20, 0.08);

  --overlay-glass: rgba(255, 248, 236, 0.72);

  /* ── Type ───────────────────────────────────────────────── */
  --font-body:     'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading:  'DM Serif Display', 'Playfair Display', Georgia, serif;

  /* ── Spacing scale (8pt grid) ───────────────────────────── */
  --sp-0:   0.25rem;
  --sp-1:   0.5rem;
  --sp-2:   0.75rem;
  --sp-3:   1rem;
  --sp-4:   1.5rem;
  --sp-5:   2rem;
  --sp-6:   3rem;
  --sp-7:   4.5rem;
  --sp-8:   6rem;

  /* ── Radius — deliberately sharp ────────────────────────── */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-pill: 999px;

  /* ── Shadows ────────────────────────────────────────────── */
  --sh-hair:  0 1px 0 rgba(27, 15, 20, 0.04);
  --sh-sm:    0 2px 12px -6px rgba(27, 15, 20, 0.08),   0 1px 2px rgba(27, 15, 20, 0.04);
  --sh-md:    0 8px 28px -12px rgba(163, 15, 67, 0.18),  0 2px 8px rgba(27, 15, 20, 0.06);
  --sh-glow:  0 0 0 1px var(--border-strong), 0 12px 40px -18px rgba(201, 162, 39, 0.45);

  /* ── Gradients ──────────────────────────────────────────── */
  --g-gold:       linear-gradient(135deg, #F5B700 0%, #C9A227 48%, #A07A10 100%);
  --g-gold-soft:  linear-gradient(135deg, rgba(245,183,0,0.18) 0%, rgba(201,162,39,0.10) 100%);
  --g-brand:      linear-gradient(135deg, #D81E5B 0%, #A30F43 100%);
  --g-hero-veil:  linear-gradient(90deg, rgba(31,13,19,0.88) 0%, rgba(31,13,19,0.60) 40%, rgba(31,13,19,0.00) 80%);
  --g-cream:      linear-gradient(180deg, #FFFBF0 0%, #FFF8EC 100%);
}

/* =========================================================================
   Reset-ish
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 4.75rem; /* clears floating glass ribbon */
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(circle at -10% -20%, rgba(245, 183, 0, 0.16), transparent 45%),
    radial-gradient(circle at 110% 10%, rgba(216, 30, 91, 0.10), transparent 45%),
    radial-gradient(circle at 50% 120%, rgba(201, 162, 39, 0.08), transparent 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: var(--brand-dark); text-decoration: none; transition: color .18s ease; }
a:hover, a:focus-visible { color: var(--brand); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 .75rem;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -0.005em; }

p  { margin: 0 0 1rem; }
strong { font-weight: 700; }
em     { font-style: italic; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: var(--r-xs); }

/* =========================================================================
   Layout helpers
   ========================================================================= */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  position: relative;
}

.section + .section { padding-top: 0; }

/* Section head — gold kicker + headline */

.home-section-head {
  max-width: 780px;
  margin: 0 auto 2.25rem;
  text-align: left;
}
.home-section-head--center { margin-inline: auto; text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .65rem;
}

.section-heading {
  margin: 0 0 .75rem;
}
.section-heading em {
  color: var(--brand);
  font-style: italic;
}

.section-intro { color: var(--text-muted); font-size: 1.04rem; }
.section-intro p { margin-bottom: .6rem; }

/* =========================================================================
   Buttons
   ========================================================================= */

.btn-primary, .btn-secondary, .btn-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.55rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .96rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--r-xs);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--g-brand);
  color: #FFF !important;
  box-shadow: 0 10px 26px -12px rgba(216, 30, 91, 0.55), inset 0 0 0 1px rgba(255,255,255,0.12);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px -14px rgba(216, 30, 91, 0.65), inset 0 0 0 1px rgba(255,255,255,0.18);
  color: #FFF !important;
}

.btn-secondary {
  background: transparent;
  color: var(--text) !important;
  border: 1.5px solid var(--text);
}
.btn-secondary:hover {
  background: var(--text);
  color: var(--bg) !important;
}

.btn-gold {
  background: var(--g-gold);
  color: #1F0D13 !important;
  box-shadow: 0 10px 28px -14px rgba(201, 162, 39, 0.65);
}
.btn-gold:hover { transform: translateY(-1px); color: #1F0D13 !important; }

/* Force reset of any global link color bleed inside buttons/CTA panels */
.vip-inner a, .cta-inline a, .seo-article a.btn-primary, .seo-article a.btn-gold { color: inherit; }

/* =========================================================================
   Floating Glass Ribbon Header
   ========================================================================= */

.site-header {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 100;
  background: var(--overlay-glass);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
          backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-md);
  transition: top .3s ease, left .3s ease, right .3s ease, padding .25s ease;
}
.site-header.is-scrolled {
  top: .55rem;
  left: .6rem;
  right: .6rem;
  box-shadow: 0 14px 38px -16px rgba(27, 15, 20, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: .65rem 1.25rem .65rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 40px;
  flex-shrink: 0;
  color: var(--text);
}
.brand-mark {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  gap: .25rem;
  justify-content: center;
}
.nav a {
  position: relative;
  padding: .6rem .85rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--r-xs);
  z-index: 2;
}
.nav a:hover, .nav a:focus-visible { color: var(--brand); }
.nav a.active { color: var(--brand); }

.nav-indicator {
  position: absolute;
  bottom: 6px;
  height: 2px;
  background: var(--g-gold);
  border-radius: 1px;
  transition: left .28s cubic-bezier(.5,.1,.3,1), width .28s cubic-bezier(.5,.1,.3,1), opacity .2s;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.header-aside {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.header-cta {
  padding: .62rem 1.15rem;
  font-size: .86rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform .25s, opacity .25s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   Full-bleed Hero
   ========================================================================= */

.hero {
  position: relative;
  min-height: 92vh;
  margin-top: -4.75rem;
  padding-top: 4.75rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--text-invert);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #2A1119 0%, #40151F 65%, #6B1830 100%);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .85;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--g-hero-veil);
}
.hero::after {
  /* diagonal gold hairline */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 20%, var(--accent-warm) 50%, var(--accent) 80%, transparent 100%);
  z-index: 2;
  opacity: .5;
}

.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 5rem) clamp(1rem, 4vw, 3rem);
}
.hero-content { max-width: 640px; }

.kicker {
  display: inline-block;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent-soft);
  padding: .4rem .9rem;
  border: 1px solid rgba(245, 183, 0, 0.4);
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}
.hero h1 {
  color: #FFF5D9;
  margin-bottom: 1.15rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.hero h1 em {
  color: var(--accent-warm);
  font-style: italic;
}
.hero .lead {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: #FFEECE;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-actions .btn-secondary {
  color: #FFEECE !important;
  border-color: rgba(255,238,206,0.6);
}
.hero-actions .btn-secondary:hover {
  background: #FFEECE;
  color: #1F0D13 !important;
}

/* Hero bridge — normal flow, overlaps hero */

.hero-bridge {
  position: relative;
  margin-top: -3.25rem;
  z-index: 5;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.hero-stats-strip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--r-sm);
  padding: 1.4rem clamp(1rem, 2.5vw, 2rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.75rem, 2vw, 2rem);
  box-shadow: var(--sh-md);
  max-width: 1200px;
  margin: 0 auto;
}
.stat-tile {
  text-align: left;
  position: relative;
  padding-left: clamp(.8rem, 2vw, 1.2rem);
}
.stat-tile + .stat-tile::before {
  content: '';
  position: absolute;
  left: 0; top: 15%;
  bottom: 15%;
  width: 1px;
  background: var(--border-strong);
}
.stat-tile .stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--brand);
  line-height: 1;
  margin-bottom: .25rem;
  font-variant-numeric: tabular-nums;
}
.stat-tile .stat-lbl {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

/* =========================================================================
   Home sections — bespoke hand-authored
   ========================================================================= */

/* § Intro block */

.home-intro .container { max-width: 900px; }
.intro-block .intro-block-inner {
  position: relative;
  padding: 2rem 0;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.intro-block p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text);
  margin-bottom: 1.1rem;
}
.ornament {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  color: var(--accent);
  line-height: .8;
  text-align: center;
  margin-bottom: 1rem;
  opacity: .8;
}

/* Home intro hand-section */
.home-intro {
  text-align: center;
}
.home-intro-body {
  max-width: 780px;
  margin: 0 auto;
}
.home-intro-body p {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.home-intro-cta {
  margin-top: 1.5rem;
}

/* Floor grid — 5-item bento: 3 wide on top, 2 wider below */

.home-floor {
  background: linear-gradient(180deg, transparent 0%, rgba(245, 183, 0, 0.05) 60%, transparent 100%);
}

.floor-grid {
  display: grid;
  gap: 1.1rem;
}
.floor-grid--cols-1 { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; }
.floor-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.floor-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.floor-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

/* bespoke home floor bento: 5-items → first row 3, second row 2 */
.floor-grid--bento-5 {
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
}
.floor-grid--bento-5 > :nth-child(1),
.floor-grid--bento-5 > :nth-child(2),
.floor-grid--bento-5 > :nth-child(3) { grid-column: span 2; }
.floor-grid--bento-5 > :nth-child(4) { grid-column: span 3; }
.floor-grid--bento-5 > :nth-child(5) { grid-column: span 3; }

.floor-grid--bento-6 {
  grid-template-columns: repeat(6, 1fr);
}
.floor-grid--bento-6 > :nth-child(1) { grid-column: span 3; grid-row: span 2; }
.floor-grid--bento-6 > :nth-child(n+2) { grid-column: span 3; }

.floor-tile {
  position: relative;
  padding: 1.65rem 1.5rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--r-xs);
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease;
}
.floor-tile::before {
  content: attr(data-mono);
  position: absolute;
  top: -20px;
  right: -12px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 9rem;
  line-height: 1;
  color: rgba(201, 162, 39, 0.10);
  pointer-events: none;
  z-index: 0;
}
.floor-tile > * { position: relative; z-index: 1; }
.floor-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.floor-tile-title {
  font-family: var(--font-heading);
  color: var(--brand-dark);
  margin-bottom: .6rem;
}
.floor-tile-body {
  font-size: .96rem;
  color: var(--text-muted);
}
.floor-tile-body p { margin-bottom: .6rem; }
.floor-tile-body p:last-child { margin-bottom: 0; }

.floor-tile--featured {
  background: linear-gradient(155deg, #2A0B14 0%, #4A1024 100%);
  color: var(--text-invert);
  border-color: rgba(245,183,0,0.3);
}
.floor-tile--featured .floor-tile-title { color: var(--accent-warm); }
.floor-tile--featured .floor-tile-body { color: rgba(255,238,206,0.9); }

/* Split layout — image beside feature list */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-layout--reverse .split-image { order: 2; }

.split-image {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}
.split-image::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(245, 183, 0, 0.35);
  border-radius: var(--r-sm);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.split-content .split-intro p,
.split-content .split-outro p {
  color: var(--text-muted);
}
.split-content .split-intro { margin-bottom: 1.2rem; }
.split-content .split-outro { margin-top: 1.2rem; }

/* Feature check-list — gold ticks in a gradient panel */

.feature-check-list {
  list-style: none;
  padding: 1.25rem 1.35rem;
  margin: 0;
  background: var(--g-gold-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.feature-check-list li {
  position: relative;
  padding-left: 1.85rem;
  padding-top: .55rem;
  padding-bottom: .55rem;
  font-size: .98rem;
  color: var(--text);
  border-bottom: 1px dashed rgba(201, 162, 39, 0.25);
}
.feature-check-list li:last-child { border-bottom: 0; }
.feature-check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .85rem;
  width: 20px; height: 20px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, #F5B700 0%, #C9A227 100%);
  box-shadow: 0 2px 6px -2px rgba(201,162,39,0.5);
}
.feature-check-list li::after {
  content: '';
  position: absolute;
  left: 5px; top: 1.1rem;
  width: 10px; height: 5px;
  border-left: 2px solid #1F0D13;
  border-bottom: 2px solid #1F0D13;
  transform: rotate(-45deg);
}

.feature-check-list--plain {
  max-width: 900px;
  margin: 0 auto;
}
.feature-check-list--plain > p,
.split-content > p {
  color: var(--text-muted);
  line-height: 1.65;
}
.feature-check-list--plain > ul,
.feature-check-list--plain > ol,
.split-content > ul,
.split-content > ol { margin: 1rem 0 1.5rem; }

.inline-subhead {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  color: var(--brand-dark);
  margin: 1.75rem 0 .6rem;
  letter-spacing: -.005em;
  position: relative;
  padding-left: 1.1rem;
}
.inline-subhead::before {
  content: '';
  position: absolute;
  left: 0; top: .5em;
  width: .7rem; height: 2px;
  background: var(--g-gold);
}

/* First subhead in a block shouldn't have massive top margin */
.plain-card-body > .inline-subhead:first-child,
.split-content > .inline-subhead:first-child,
.feature-check-list--plain > .inline-subhead:first-child { margin-top: 0; }

/* Art-deco / security grid — 4-up trust cards */

.home-secure {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.security-card, .accred-badge {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.75rem 1.35rem 1.5rem;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease;
}
.security-card:hover, .accred-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.security-card::after, .accred-badge::after {
  content: '';
  position: absolute;
  top: -40%; left: -40%;
  width: 180%; height: 60%;
  background: linear-gradient(115deg, transparent 40%, rgba(245, 183, 0, 0.26) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .8s ease;
  pointer-events: none;
}
.security-card:hover::after, .accred-badge:hover::after { transform: translateX(120%); }

.accred-corner {
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--accent);
  transition: width .3s ease, height .3s ease;
}
.accred-corner--tl { top: 8px;    left: 8px;    border-top: 2px solid;  border-left:  2px solid; }
.accred-corner--tr { top: 8px;    right: 8px;   border-top: 2px solid;  border-right: 2px solid; }
.accred-corner--bl { bottom: 8px; left: 8px;    border-bottom: 2px solid; border-left:  2px solid; }
.accred-corner--br { bottom: 8px; right: 8px;   border-bottom: 2px solid; border-right: 2px solid; }
.security-card:hover .accred-corner,
.accred-badge:hover .accred-corner { width: 26px; height: 26px; }

.security-card-icon {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: .75rem;
  display: block;
}
.security-card h3 { font-size: 1.2rem; margin-bottom: .5rem; color: var(--brand-dark); }
.security-card p  { font-size: .92rem; color: var(--text-muted); margin: 0; }

/* Rewards bento */

.rewards-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(auto, 1fr);
  gap: 1.1rem;
}
.rewards-bento > .reward-welcome  { grid-column: span 3; grid-row: span 2; }
.rewards-bento > .reward-card     { grid-column: span 3; }
.rewards-bento > .reward-vip      { grid-column: span 6; }

.reward-card, .reward-welcome, .reward-vip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  padding: 1.5rem;
  position: relative;
}
.reward-welcome {
  background:
    radial-gradient(circle at 90% 10%, rgba(245, 183, 0, 0.18), transparent 55%),
    linear-gradient(155deg, #FFFFFF 0%, #FFFBF0 100%);
}
.reward-welcome h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--brand-dark);
}
.reward-welcome p { color: var(--text-muted); }

.reward-vip {
  background: linear-gradient(120deg, #2A0B14 0%, #4A1024 60%, #6B1830 100%);
  color: var(--text-invert);
  border-top-color: var(--accent-warm);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.reward-vip .vip-inner { flex: 1; min-width: 260px; }
.reward-vip .vip-kicker {
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 800;
}
.reward-vip h3 { color: var(--accent-soft); margin: .5rem 0; }
.reward-vip p  { color: rgba(255,238,206,0.85); margin: 0; }

/* Support card — editorial centered */

.home-support { text-align: center; }
.support-card {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.support-card::before {
  content: '24/7';
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-family: var(--font-heading);
  font-size: 14rem;
  line-height: .8;
  color: var(--brand);
  opacity: 0.055;
  font-style: italic;
  pointer-events: none;
  user-select: none;
}
.support-card h2 { color: var(--brand-dark); }
.support-card p { color: var(--text-muted); }

/* Plain card */

.plain-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: clamp(2rem, 4vw, 3rem);
}
.plain-card-body p {
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 1rem;
}

/* =========================================================================
   Image divider
   ========================================================================= */

.image-divider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  aspect-ratio: 21 / 9;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.image-divider img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.image-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,13,19,0.55) 0%, rgba(31,13,19,0.15) 55%, rgba(165,35,75,0.35) 100%);
}

/* =========================================================================
   Page hero (for inner pages)
   ========================================================================= */

.page-hero {
  background: var(--g-cream);
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(245,183,0,0.10), transparent 55%),
    radial-gradient(circle at 5% 80%, rgba(216,30,91,0.08), transparent 60%);
  pointer-events: none;
}
.page-hero--image {
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center 30%;
  color: var(--text-invert);
}
.page-hero--image::before {
  background:
    linear-gradient(90deg, rgba(31,13,19,0.85) 0%, rgba(31,13,19,0.6) 50%, rgba(31,13,19,0.3) 100%);
}
.page-hero .container { position: relative; z-index: 1; max-width: 1100px; }
.page-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: .9rem;
}
.page-hero--image .page-hero-title { color: #FFF5D9; text-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.page-hero-subtitle {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 760px;
}
.page-hero--image .page-hero-subtitle { color: #FFEECE; }

.breadcrumb {
  margin-bottom: 1.25rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.page-hero--image .breadcrumb,
.page-hero--image .breadcrumb a,
.page-hero--image .breadcrumb span { color: #FFEECE; }
.breadcrumb a { color: var(--brand-dark); font-weight: 600; }
.breadcrumb span { margin: 0 .4rem; }

/* =========================================================================
   Casino Counter footer
   ========================================================================= */

.site-footer {
  margin-top: clamp(4rem, 8vw, 6rem);
  background: var(--bg-panel);
  color: var(--text-invert);
  position: relative;
}
.footer-fret {
  height: 40px;
  background-color: var(--bg);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><path fill='none' stroke='%23C9A227' stroke-width='1.2' d='M0 20 L10 10 L20 20 L30 10 L40 20 M0 30 L10 40 L20 30 L30 40 L40 30'/></svg>");
  background-repeat: repeat;
  background-size: 40px 40px;
  opacity: .9;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--accent);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.4fr;
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2rem);
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.footer-pedestal .brand-mark {
  height: 72px;
  margin-bottom: 1.1rem;
}
.footer-pedestal p {
  color: rgba(255,238,206,0.75);
  font-size: .92rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 800;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-col a {
  color: rgba(255,238,206,0.85);
  font-size: .92rem;
  transition: color .18s ease;
}
.footer-col a:hover { color: var(--accent-soft); }

.footer-vip {
  position: relative;
  padding-left: 2rem;
  border-left: 1px solid var(--border-strong);
}
.footer-vip .vip-kicker {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 800;
}
.footer-vip h4 {
  font-family: var(--font-heading);
  color: var(--accent-soft);
  font-size: 1.45rem;
  margin: .55rem 0 .6rem;
  letter-spacing: 0;
  text-transform: none;
}
.footer-vip p {
  color: rgba(255,238,206,0.8);
  font-size: .92rem;
  margin-bottom: 1rem;
}

.footer-accreditations {
  border-top: 1px solid rgba(201,162,39,0.25);
  border-bottom: 1px solid rgba(201,162,39,0.25);
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
}
.footer-accreditations .accred-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.accred-badge {
  background: rgba(255, 248, 236, 0.04);
  border: 1px solid rgba(201,162,39,0.22);
  color: var(--text-invert);
  padding: 1.5rem 1rem;
  text-align: center;
}
.accred-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--accent-soft);
  margin: .3rem 0;
}
.accred-badge span {
  font-size: .72rem;
  color: rgba(255,238,206,0.65);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.accred-badge .accred-glyph {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-warm);
  display: block;
  line-height: 1;
}

.footer-bottom {
  position: relative;
  text-align: center;
  padding: 2rem 1rem 2.5rem;
  color: rgba(255,238,206,0.7);
}
.footer-bottom::before {
  content: '§';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2rem;
  color: var(--accent-warm);
  background: var(--bg-panel);
  padding: 0 .6rem;
}
.footer-copyright {
  font-family: var(--font-heading);
  font-variant-caps: small-caps;
  font-size: .96rem;
  letter-spacing: .04em;
  margin-bottom: .5rem;
}
.footer-disclaimer {
  font-style: italic;
  font-size: .8rem;
  color: rgba(255,238,206,0.5);
  max-width: 620px;
  margin: 0 auto;
}

/* =========================================================================
   Blog listing
   ========================================================================= */

.blog-list { padding: clamp(3rem, 5vw, 4rem) 0; }
.blog-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  padding: 1.5rem;
  transition: transform .18s ease, box-shadow .18s ease;
  color: var(--text);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); color: var(--text); }
.blog-card h3 { color: var(--brand-dark); }
.blog-card-meta { font-size: .8rem; color: var(--text-muted); letter-spacing: .12em; text-transform: uppercase; }
.blog-card-excerpt { color: var(--text-muted); margin-top: .5rem; }

.blog-card--featured {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0;
  overflow: hidden;
}
.blog-card--featured figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--g-brand);
  overflow: hidden;
}
.blog-card--featured figure img { width: 100%; height: 100%; object-fit: cover; }
.blog-card--featured .blog-card-body { padding: 2rem; }
.blog-card--featured h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* =========================================================================
   404
   ========================================================================= */

.err-404 {
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) 1rem;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.err-404 .glyph {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 1;
  color: var(--brand);
  font-style: italic;
  margin-bottom: 1rem;
}
.err-404 .section-label { color: var(--accent); }
.err-404 h1 { max-width: 720px; margin-inline: auto; }
.err-404 p { max-width: 560px; margin: 1rem auto 2rem; color: var(--text-muted); }

/* =========================================================================
   Page-load reveals
   ========================================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--reveal-i, 0) * 60ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================================
   Responsive
   ========================================================================= */

@media (max-width: 980px) {
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-vip {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--border-strong);
    padding-top: 1.5rem;
    margin-top: .5rem;
  }
}

@media (max-width: 900px) {
  body { padding-top: 4.5rem; }
  .site-header { top: .5rem; left: .5rem; right: .5rem; }
  .menu-toggle { display: inline-flex; }
  .header-aside .header-cta { display: none; }
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 248, 236, 0.96);
    backdrop-filter: blur(26px) saturate(180%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    transform: translateY(-100%);
    transition: transform .35s cubic-bezier(.5,.1,.3,1);
    z-index: 90;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { font-size: 1.4rem; padding: .8rem 1.5rem; }
  .nav-indicator { display: none; }

  .hero-stats-strip { grid-template-columns: 1fr 1fr; row-gap: 1rem; }
  .stat-tile + .stat-tile::before { display: none; }
  .split-layout { grid-template-columns: 1fr; }
  .split-layout--reverse .split-image { order: 0; }
  .floor-grid--cols-3, .floor-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
  .floor-grid--bento-5,
  .floor-grid--bento-6 { grid-template-columns: 1fr 1fr; }
  .floor-grid--bento-5 > *, .floor-grid--bento-6 > * { grid-column: span 1 !important; grid-row: auto !important; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .rewards-bento { grid-template-columns: 1fr 1fr; }
  .rewards-bento > .reward-welcome { grid-column: span 2; grid-row: auto; }
  .rewards-bento > .reward-vip { grid-column: span 2; }
  .blog-card--featured { grid-template-columns: 1fr; }
  .blog-card--featured figure { aspect-ratio: 16 / 9; }
  .footer-accreditations .accred-row { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main .footer-pedestal { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { padding-top: 4rem; font-size: 16px; }
  .header-inner { padding: .5rem .75rem; gap: .75rem; }
  .brand-mark { height: 30px; }
  .hero-stats-strip { grid-template-columns: 1fr 1fr; padding: 1rem; }
  .floor-grid,
  .floor-grid--cols-3, .floor-grid--cols-4,
  .floor-grid--bento-5, .floor-grid--bento-6,
  .security-grid, .rewards-bento, .blog-grid,
  .footer-main, .footer-accreditations .accred-row {
    grid-template-columns: 1fr;
  }
  .rewards-bento > * { grid-column: span 1 !important; }
  .image-divider { aspect-ratio: 16 / 9; }
  .page-hero { padding: 3rem 0 2rem; }
}
