/* =====================================================================
   101 Game Casino — playful · vibrant · light-mode editorial
   Brand: vibrant magenta (#E91E63)  |  Accent: warm gold (#F4B400)
   Fonts: Fraunces (display) + Manrope (body)
   ===================================================================== */

:root {
  /* Brand palette */
  --brand:        #E91E63;
  --brand-dark:   #AD1457;
  --brand-light:  #FFE0EC;

  --accent:       #F4B400;
  --accent-warm:  #FF8A00;
  --accent-soft:  #FFE082;

  /* Surfaces (light theme) */
  --bg:           #FFFFFF;
  --bg-card:      #FFF8FA;
  --bg-elevated:  #FFFFFF;
  --bg-tint:      #FFF2F6;
  --bg-panel:     #1A1B2E;     /* footer + dark sections */
  --bg-panel-2:   #232442;

  /* Text */
  --text:         #1A1B2E;
  --text-muted:   #5A5C7A;
  --text-dim:     #8A8C9E;
  --text-on-dark: #F8F4FF;
  --text-on-dark-muted: #B4B6CC;

  /* Borders */
  --border:        rgba(244, 180, 0, 0.20);
  --border-strong: rgba(244, 180, 0, 0.40);
  --border-soft:   rgba(26, 27, 46, 0.08);
  --border-pink:   rgba(233, 30, 99, 0.18);

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

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.875rem;
  --fs-2xl:  2.5rem;
  --fs-3xl:  3.5rem;
  --fs-hero: clamp(2.5rem, 5.6vw, 4.75rem);

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 2.75rem;
  --sp-8: 4rem;
  --sp-9: 5.5rem;
  --sp-10: 7rem;

  /* Radius */
  --r-xs: 2px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 6px 24px rgba(26, 27, 46, 0.06);
  --shadow-pop:  0 14px 40px rgba(233, 30, 99, 0.18);
  --shadow-gold: 0 12px 32px rgba(244, 180, 0, 0.22);

  /* Containers */
  --container-w: 1200px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Atmospheric background — soft confetti dot pattern + radial wash */
  background-image:
    radial-gradient(circle at 12% -8%, rgba(233, 30, 99, 0.10), transparent 38%),
    radial-gradient(circle at 88% 6%, rgba(244, 180, 0, 0.10), transparent 42%),
    radial-gradient(circle at 50% 110%, rgba(255, 138, 0, 0.07), transparent 50%);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--brand); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--brand-dark); }

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 600; line-height: 1.15; margin: 0 0 0.5em; color: var(--text); letter-spacing: -0.012em; }
h1 { font-size: var(--fs-hero); font-weight: 600; }
h2 { font-size: clamp(1.875rem, 3.6vw, 2.625rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { margin: 0 0 1em; color: var(--text); }

::selection { background: var(--brand); color: #fff; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #FF3F8A 100%);
  color: #ffffff !important;
  box-shadow: var(--shadow-pop);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 46px rgba(233, 30, 99, 0.30); color: #fff !important; }

.btn-secondary {
  background: transparent;
  color: var(--text) !important;
  border-color: var(--text);
}
.btn-secondary:hover {
  background: var(--text);
  color: #fff !important;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  color: #1A1B2E !important;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--accent) !important;
  border-color: var(--accent);
}
.btn-ghost:hover { background: var(--accent); color: var(--bg-panel) !important; }

/* ---------- Static 2-line header ---------- */
.site-header {
  position: relative;
  z-index: 30;
  background: #ffffff;
  border-bottom: 1px solid rgba(244, 180, 0, 0.18);
  box-shadow: 0 1px 0 rgba(26, 27, 46, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Line 1 — brand + CTA */
.header-top {
  background: #ffffff;
  position: relative;
}
.header-top::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(233, 30, 99, 0.10) 30%, rgba(244, 180, 0, 0.18) 50%, rgba(233, 30, 99, 0.10) 70%, transparent 100%);
}
.header-top .header-inner {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; margin-right: auto; }
.brand-mark { height: 56px; width: auto; max-width: 240px; object-fit: contain; }

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

.header-cta {
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
}

/* Line 2 — primary nav */
.header-nav-row {
  background: #ffffff;
}
.header-nav-row .header-inner {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.nav { position: relative; flex: 1; display: flex; justify-content: center; }
.nav-list {
  display: flex;
  gap: 0.15rem;
  list-style: none;
  padding: 0; margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-link {
  display: inline-block;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--r-pill);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.nav-link:hover { color: var(--brand); background: rgba(233, 30, 99, 0.06); }
.nav-link.active {
  color: var(--brand);
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.10), rgba(244, 180, 0, 0.10));
}
.nav-indicator {
  position: absolute;
  bottom: -0.45rem;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 3px;
  transition: left 0.28s cubic-bezier(0.65, 0, 0.35, 1), width 0.28s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.2s;
  opacity: 0;
  pointer-events: none;
}
.nav-indicator.is-visible { opacity: 1; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--border-pink);
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 50%;
}
.menu-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (asymmetric editorial · playful chips) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 110% 0%, rgba(244, 180, 0, 0.18), transparent 40%),
    radial-gradient(circle at -10% 100%, rgba(233, 30, 99, 0.16), transparent 45%),
    linear-gradient(160deg, #FFE6F0 0%, #FFF8E6 60%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border);
}
/* Confetti dot pattern overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  background-image:
    radial-gradient(circle at 12% 18%, var(--brand) 0 5px, transparent 6px),
    radial-gradient(circle at 22% 78%, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 8%  62%, var(--accent-warm) 0 3px, transparent 4px),
    radial-gradient(circle at 35% 12%, var(--brand) 0 3px, transparent 4px),
    radial-gradient(circle at 70% 88%, var(--accent) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 32%, var(--brand) 0 4px, transparent 5px),
    radial-gradient(circle at 95% 70%, var(--accent-warm) 0 3px, transparent 4px);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 3rem;
  align-items: center;
}

/* Left content */
.hero-content { max-width: 600px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1.5px solid var(--border-pink);
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 18px rgba(233, 30, 99, 0.10);
}
.kicker::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent-warm));
  box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.5);
  animation: kickerPulse 2.4s ease-in-out infinite;
}
@keyframes kickerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(233, 30, 99, 0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
.hero h1 em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent-warm) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.18em;
  background: linear-gradient(90deg, rgba(244, 180, 0, 0.45), rgba(233, 30, 99, 0.0));
  border-radius: 2px;
  z-index: -1;
}

.hero .lead {
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

/* Trust chips inline */
.hero-trust {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
}
.trust-chip::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* Right side — chip stack illustration (CSS only, no AI image needed) */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 520px;
  justify-self: center;
}
.chip {
  position: absolute;
  width: 60%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.18);
  box-shadow:
    inset 0 0 0 6px rgba(255,255,255,0.55),
    inset 0 0 0 8px currentColor,
    inset 0 0 0 24px rgba(255,255,255,0.0),
    0 22px 50px rgba(26, 27, 46, 0.18);
  background-image:
    repeating-conic-gradient(
      currentColor 0deg 22.5deg,
      rgba(255,255,255,0.92) 22.5deg 45deg
    );
  background-clip: padding-box;
  border: 8px solid currentColor;
}
.chip::after {
  content: '';
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.45), rgba(255,255,255,0) 55%),
    currentColor;
  box-shadow:
    inset 0 0 0 3px rgba(255,255,255,0.45),
    0 6px 12px rgba(0,0,0,0.10);
}
.chip-glyph {
  position: relative;
  z-index: 2;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.04em;
}
.chip--pink {
  color: #E91E63;
  top: 6%; left: 4%;
  transform: rotate(-12deg);
  animation: chipFloatA 8s ease-in-out infinite;
}
.chip--gold {
  color: #F4B400;
  top: 2%; right: 2%;
  transform: rotate(8deg);
  animation: chipFloatB 9s ease-in-out infinite;
}
.chip--purple {
  color: #6A1B9A;
  bottom: 4%; left: 22%;
  transform: rotate(15deg);
  width: 56%;
  animation: chipFloatC 10s ease-in-out infinite;
}
@keyframes chipFloatA { 0%,100% { transform: rotate(-12deg) translateY(0); } 50% { transform: rotate(-9deg) translateY(-12px); } }
@keyframes chipFloatB { 0%,100% { transform: rotate(8deg)   translateY(0); } 50% { transform: rotate(11deg) translateY(-16px); } }
@keyframes chipFloatC { 0%,100% { transform: rotate(15deg)  translateY(0); } 50% { transform: rotate(13deg) translateY(-10px); } }

/* Floating sparkle */
.hero-sparkle {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
  pointer-events: none;
  animation: sparkleSpin 6s linear infinite;
}
.hero-sparkle--a { top: 8%;  right: 38%; }
.hero-sparkle--b { bottom: 18%; left: 6%;  font-size: 1rem; animation-delay: 1.5s; }
.hero-sparkle--c { top: 48%; right: 4%; font-size: 1.25rem; animation-delay: 3s; }
@keyframes sparkleSpin {
  0%   { transform: rotate(0deg)   scale(1); opacity: 0.6; }
  50%  { transform: rotate(180deg) scale(1.25); opacity: 1; }
  100% { transform: rotate(360deg) scale(1);   opacity: 0.6; }
}

/* ---------- Hero bridge stat strip (vibrant gradient) ---------- */
.hero-bridge {
  margin-top: -2.5rem;
  position: relative;
  z-index: 5;
}
.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: linear-gradient(135deg, #ffffff 0%, #FFF8FA 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow:
    0 26px 60px rgba(233, 30, 99, 0.16),
    0 8px 16px rgba(26, 27, 46, 0.06);
  overflow: hidden;
  position: relative;
}
.hero-stats-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent-warm) 50%, var(--accent) 100%);
}
.stat-tile {
  padding: 1.6rem 1.4rem;
  text-align: center;
  position: relative;
  transition: background 0.25s ease;
}
.stat-tile:hover { background: rgba(233, 30, 99, 0.04); }
.stat-tile + .stat-tile { border-left: 1px dashed var(--border-soft); }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-num em { font-style: italic; color: var(--accent-warm); }
.stat-tile:nth-child(2n) .stat-num { color: var(--accent-warm); }
.stat-tile:nth-child(3) .stat-num { color: var(--brand); }
.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 0.55rem;
}

/* ---------- Section primitives ---------- */
.home-section,
.page-section {
  padding: 2.75rem 0;
  position: relative;
}
.home-section + .home-section,
.page-section + .page-section { padding-top: 1.5rem; }
.home-section:first-of-type,
.page-section:first-of-type { padding-top: 2.25rem; }

.home-section-head { max-width: 760px; margin-bottom: 2.5rem; }
.home-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1rem;
}
.section-label::before { content: '—'; color: var(--brand); font-weight: 800; }

.section-heading { margin-bottom: 0.85rem; }
.section-intro { font-size: 1.075rem; color: var(--text-muted); max-width: 640px; line-height: 1.6; }

/* ---------- Intro block ---------- */
.intro-block {
  position: relative;
  padding: 1.25rem 0;
}
.intro-block .container {
  max-width: 780px;
  text-align: center;
}
.intro-block p {
  font-size: 1.075rem;
  line-height: 1.7;
  color: var(--text);
}
.intro-block p + p { margin-top: 0.85rem; }

/* ---------- Floor grid (H3 children) ---------- */
.floor-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
}
.floor-grid--cols-1 { --cols: 1; }
.floor-grid--cols-2 { --cols: 2; }
.floor-grid--cols-3 { --cols: 3; }
.floor-grid--cols-4 { --cols: 4; }

.floor-tile {
  position: relative;
  padding: 2.25rem 1.6rem 1.85rem;
  background: #ffffff;
  border: 1px solid rgba(26, 27, 46, 0.06);
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 6px 18px rgba(26, 27, 46, 0.04);
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.32s ease, border-color 0.32s ease;
}
/* Gradient stripe across the top */
.floor-tile::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent-warm) 50%, var(--accent) 100%);
  border-radius: 18px 18px 0 0;
  transition: height 0.3s ease;
}
.floor-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 30, 99, 0.18);
  box-shadow:
    0 22px 48px rgba(233, 30, 99, 0.18),
    0 6px 14px rgba(244, 180, 0, 0.10);
}
.floor-tile:hover::after { height: 8px; }

/* Italic monogram watermark badge in the corner */
.floor-tile::before {
  content: attr(data-mono);
  position: absolute;
  top: 0.85rem; right: 0.95rem;
  width: 2.4rem; height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand);
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.08), rgba(244, 180, 0, 0.10));
  border: 1px solid rgba(233, 30, 99, 0.12);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
  letter-spacing: -0.02em;
}
.floor-tile:hover::before {
  transform: rotate(-8deg) scale(1.08);
  background: linear-gradient(135deg, var(--brand), var(--accent-warm));
  color: #fff;
  border-color: transparent;
}

.floor-tile h3 { margin: 0.4rem 0 0.6rem; font-size: 1.2rem; padding-right: 3rem; }
.floor-tile p { margin: 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; }
.floor-tile p + p { margin-top: 0.5rem; }
.floor-tile ul { padding-left: 1.1rem; margin: 0.6rem 0 0; color: var(--text-muted); font-size: 0.95rem; }
.floor-tile li + li { margin-top: 0.3rem; }
.floor-tile .tile-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin: 1.1rem 0 0.4rem;
  padding-left: 0.85rem;
  position: relative;
}
.floor-tile .tile-sub::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Nested H3 layout — outer card per H3, inner sub-cards inside */
.floor-grid--nested {
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4rem;
  max-width: 920px;
  margin: 0 auto;
}
.floor-tile--expanded {
  padding: 2.2rem 2rem 1.85rem;
}
.floor-tile--expanded h3 {
  font-size: 1.45rem;
  margin: 0.2rem 0 0.85rem;
}
.floor-tile--expanded > p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Bold gradient divider between intro & sub-cards */
.tile-divider {
  height: 4px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent-warm) 50%, var(--accent) 100%);
  margin: 1.5rem 0 1.4rem;
  width: 100%;
}

/* Sub-card grid inside an outer floor-tile */
.subcard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.subcard {
  position: relative;
  padding: 1.25rem 1.3rem 1.15rem;
  background: linear-gradient(180deg, #FFF8FA 0%, #ffffff 70%);
  border: 1px solid var(--border-pink);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  box-shadow: inset 0 -2px 0 rgba(244, 180, 0, 0.10);
}
.subcard-title {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin: 0 0 0.85rem;
  padding-left: 0.85rem;
  position: relative;
}
.subcard-title::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent-warm));
}
.subcard p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 0.6rem;
  line-height: 1.55;
}
.subcard p:last-child { margin-bottom: 0; }

.subcard-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.subcard-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}
.subcard-list li + li { border-top: 1px dashed var(--border-soft); }
.subcard-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.95rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  box-shadow: 0 2px 6px rgba(244, 180, 0, 0.30);
}

/* ---------- Plain editorial card ---------- */
.plain-card {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 2.75rem 2.25rem;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(26, 27, 46, 0.06);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(26, 27, 46, 0.05);
  overflow: hidden;
}
.plain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--accent-warm), var(--accent));
}
.plain-card h2 { margin-bottom: 1rem; }
.plain-card p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.65; }
.plain-card p:last-child { margin-bottom: 0; }

/* ---------- Split layout (image + feature list) ---------- */
.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split-layout--reverse { direction: rtl; }
.split-layout--reverse > * { direction: ltr; }
.split-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-tint);
  border: 1px solid var(--border);
}
.split-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(233, 30, 99, 0) 50%, rgba(26, 27, 46, 0.12) 100%);
  pointer-events: none;
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-content h2 { margin-bottom: 1rem; }
.split-content > p { color: var(--text-muted); font-size: 1.04rem; line-height: 1.65; }

/* ---------- Feature check list ---------- */
.feature-check-list {
  position: relative;
  background: linear-gradient(180deg, #FFF8E6 0%, #FFFFFF 100%);
  border-left: 3px solid var(--accent);
  border-top: 1px solid var(--border-soft);
  border-right: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 1.4rem 1.6rem 1.4rem 1.6rem;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  list-style: none;
  margin: 1.25rem 0 0;
}
.feature-check-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 2rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.55;
}
.feature-check-list li + li { border-top: 1px dashed var(--border-soft); }
.feature-check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  box-shadow: 0 4px 12px rgba(244, 180, 0, 0.35);
}
.feature-check-list li::after {
  content: '';
  position: absolute;
  left: 6px; top: 0.95rem;
  width: 10px; height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.feature-check-list--plain {
  margin: 1.5rem auto 0;
  max-width: 820px;
}

.list-intro { color: var(--text-muted); font-size: 1.05rem; line-height: 1.65; margin: 0.5rem 0 0; }
.list-outro { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin: 1.25rem 0 0; }

/* ---------- Art-deco security cards ---------- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(var(--security-cols, 4), minmax(0, 1fr));
  gap: 1rem;
}
.security-grid--cols-1 { --security-cols: 1; }
.security-grid--cols-2 { --security-cols: 2; }
.security-grid--cols-3 { --security-cols: 3; }
.security-grid--cols-4 { --security-cols: 4; }
.security-card {
  position: relative;
  padding: 2.25rem 1.5rem;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(26, 27, 46, 0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(26, 27, 46, 0.04);
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.32s ease, border-color 0.32s ease;
}
.security-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 180, 0, 0.30);
  box-shadow: 0 22px 48px rgba(244, 180, 0, 0.20);
}
.security-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 50%; height: 200%;
  background: linear-gradient(115deg, transparent 30%, rgba(244, 180, 0, 0.22) 50%, transparent 70%);
  transition: left 0.7s ease;
  pointer-events: none;
}
.security-card:hover::before { left: 120%; }
.security-card .icon {
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(244, 180, 0, 0.18), rgba(233, 30, 99, 0.12));
  border-radius: 50%;
  filter: drop-shadow(0 4px 8px rgba(244, 180, 0, 0.30));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.security-card:hover .icon { transform: rotate(-8deg) scale(1.08); }
.security-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.security-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0 0 0.45rem; line-height: 1.55; }
.security-card p:last-child { margin-bottom: 0; }
.accred-corner {
  position: absolute;
  width: 16px; height: 16px;
  border: 2px solid var(--accent);
  pointer-events: none;
  transition: width 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), height 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 1px;
}
.accred-corner--tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.accred-corner--tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.accred-corner--bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.accred-corner--br { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.security-card:hover .accred-corner { width: 26px; height: 26px; }

/* ---------- Image divider — contained scene-card (not full-bleed) ---------- */
.image-divider {
  position: relative;
  max-width: 720px;
  margin: 1.5rem auto;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(233, 30, 99, 0.14);
  transform: rotate(-1deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.image-divider:hover { transform: rotate(0); }
.image-divider img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.image-divider::before {
  content: '';
  position: absolute;
  top: -1px; right: -1px;
  width: 56px; height: 56px;
  background: linear-gradient(225deg, var(--brand) 0%, var(--accent-warm) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 2;
  pointer-events: none;
}
.image-divider::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(255,255,255,0) 60%, rgba(26, 27, 46, 0.18) 100%);
  pointer-events: none;
}

/* ---------- Bento grids — homepage signature ---------- */
.home-floor .bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(170px, auto);
  gap: 1rem;
}
.bento-tile {
  position: relative;
  padding: 2.15rem 1.65rem 1.75rem;
  background: #ffffff;
  border: 1px solid rgba(26, 27, 46, 0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(26, 27, 46, 0.04);
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.32s ease, border-color 0.32s ease;
}
.bento-tile::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent-warm) 50%, var(--accent) 100%);
  border-radius: 18px 18px 0 0;
  transition: height 0.3s ease;
}
.bento-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 30, 99, 0.18);
  box-shadow: 0 22px 48px rgba(233, 30, 99, 0.18), 0 6px 14px rgba(244, 180, 0, 0.10);
}
.bento-tile:hover::after { height: 8px; }
.bento-tile::before {
  content: attr(data-mono);
  position: absolute;
  top: 0.95rem; right: 1rem;
  width: 2.5rem; height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand);
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.08), rgba(244, 180, 0, 0.10));
  border: 1px solid rgba(233, 30, 99, 0.12);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}
.bento-tile:hover::before {
  transform: rotate(-8deg) scale(1.08);
  background: linear-gradient(135deg, var(--brand), var(--accent-warm));
  color: #fff;
  border-color: transparent;
}
.bento-tile h3 { font-size: 1.2rem; margin: 0.4rem 0 0.55rem; padding-right: 3rem; }
.bento-tile p  { font-size: 0.95rem; color: var(--text-muted); margin: 0; line-height: 1.55; }
.bento-tile p + p { margin-top: 0.5rem; }
.bento-tile--wide  { grid-column: span 4; padding: 2.6rem 2rem 2rem; }
.bento-tile--wide  h3 { font-size: 1.7rem; }
.bento-tile--wide  p  { font-size: 1.04rem; max-width: 520px; }
.bento-tile--med   { grid-column: span 2; }
.bento-tile--narrow { grid-column: span 2; }
.bento-tile--featured {
  background: linear-gradient(135deg, var(--brand) 0%, #FF3F8A 50%, var(--accent-warm) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(233, 30, 99, 0.30);
  grid-row: span 2;       /* the headline tile (Slots) takes both rows */
}
.bento-tile--featured::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2));
}
.bento-tile--featured h3 { color: #fff; font-style: italic; }
.bento-tile--featured p  { color: rgba(255,255,255,0.94); }
.bento-tile--featured::before {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.30);
  color: #fff;
}
.bento-tile--featured:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(233, 30, 99, 0.40); }
.bento-tile--featured:hover::before { background: rgba(255, 255, 255, 0.28); color: #fff; }

/* Rewards bento */
.rewards-bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}
.rewards-bento .welcome-card {
  grid-column: span 3;
  grid-row: span 2;
  padding: 2.75rem 2rem 2.25rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 180, 0, 0.22), transparent 50%),
    linear-gradient(135deg, #FFF2D6 0%, #FFFFFF 70%);
  border: 1px solid rgba(244, 180, 0, 0.25);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(244, 180, 0, 0.18);
  position: relative;
  overflow: hidden;
}
.rewards-bento .welcome-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-warm), var(--accent));
  border-radius: 22px 22px 0 0;
}
.rewards-bento .welcome-card::after {
  content: '★';
  position: absolute;
  top: 1.2rem; right: 1.6rem;
  font-size: 7rem;
  color: rgba(244, 180, 0, 0.16);
  font-family: var(--font-heading);
  line-height: 1;
  pointer-events: none;
}
.rewards-bento .welcome-card h3 { font-size: 1.65rem; font-style: italic; }
.rewards-bento .welcome-card p  { color: var(--text-muted); font-size: 1.05rem; max-width: 480px; }
.rewards-bento .reward-tile { grid-column: span 3; }
.rewards-bento .vip-strip   { grid-column: span 6; }
.vip-strip {
  padding: 2rem 2.4rem;
  background: linear-gradient(90deg, var(--bg-panel) 0%, #2A1B3F 100%);
  color: var(--text-on-dark);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.vip-strip h3 { color: #fff; font-style: italic; margin: 0 0 0.35rem; }
.vip-strip p  { color: rgba(255,255,255,0.85); margin: 0; flex: 1 1 320px; }
.vip-strip .vip-inner a { color: var(--bg-panel) !important; }

/* ---------- Support card (24/7 watermark) ---------- */
.support-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--brand);
  border-radius: var(--r-md);
  overflow: hidden;
}
.support-card::before {
  content: '24/7';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 600;
  color: rgba(233, 30, 99, 0.05);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}
.support-card > * { position: relative; }
.support-card h2 { margin-bottom: 1rem; }
.support-card p  { color: var(--text-muted); font-size: 1.05rem; max-width: 620px; margin-left: auto; margin-right: auto; }
.support-card .cta-inline { margin-top: 1.5rem; display: inline-flex; }
.support-card .cta-inline .btn { color: #fff !important; }

/* ---------- Page hero (inner pages) — contained side-card layout ---------- */
.page-hero {
  position: relative;
  padding: 3.5rem 0 2.75rem;
  background:
    radial-gradient(circle at 110% 0%, rgba(244, 180, 0, 0.14), transparent 40%),
    radial-gradient(circle at -10% 100%, rgba(233, 30, 99, 0.12), transparent 45%),
    linear-gradient(180deg, #FFE6F0 0%, #FFFFFF 95%);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}
.page-hero .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}
.page-hero--text-only .container {
  display: block;
  max-width: 920px;
}
.page-hero-content { max-width: 620px; }
.page-hero-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  box-shadow:
    0 22px 48px rgba(233, 30, 99, 0.15),
    0 6px 14px rgba(244, 180, 0, 0.10);
  transform: rotate(1.2deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.page-hero-image:hover { transform: rotate(0); }
.page-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Gold corner-tag accent */
.page-hero-image::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
  pointer-events: none;
}
.page-hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(255,255,255,0) 50%, rgba(26, 27, 46, 0.20) 100%);
  pointer-events: none;
}

.breadcrumb {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { color: var(--accent); margin: 0 0.45rem; }
.page-hero h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin-bottom: 0.85rem;
  line-height: 1.1;
}
.page-hero h1 em { font-style: italic; color: var(--brand); }
.page-hero .subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 620px;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  margin-top: 6rem;
  background: var(--bg-panel);
  color: var(--text-on-dark);
  padding-bottom: 1.5rem;
}
.footer-fret {
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 18' width='80' height='18'><g fill='none' stroke='%23F4B400' stroke-width='2'><path d='M0 9 L20 1 L40 9 L60 1 L80 9'/></g></svg>");
  background-repeat: repeat-x;
  background-size: 80px 18px;
  background-position: center;
  background-color: var(--bg-panel);
  border-top: 1px solid rgba(244, 180, 0, 0.30);
  border-bottom: 1px solid rgba(244, 180, 0, 0.30);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding: 4rem 1.5rem 3rem;
  align-items: start;
  position: relative;
}
.footer-pedestal img {
  height: 64px;
  width: auto;
  max-width: 220px;
  margin-bottom: 1.1rem;
  padding: 8px 14px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.20);
  object-fit: contain;
}
.footer-tagline { color: var(--text-on-dark-muted); font-size: 0.95rem; line-height: 1.55; max-width: 280px; margin-bottom: 1.4rem; }
.footer-cta { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%); color: var(--bg-panel) !important; box-shadow: var(--shadow-gold); }
.footer-cta:hover { color: var(--bg-panel) !important; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li + li { margin-top: 0.55rem; }
.footer-col a { color: var(--text-on-dark-muted); font-size: 0.95rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent); }

.footer-vip {
  position: relative;
  padding: 1.4rem 0 1.4rem 2rem;
  border-left: 1px solid rgba(244, 180, 0, 0.30);
}
.footer-vip-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-vip h4 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0.4rem 0 0.5rem;
}
.footer-vip p { color: var(--text-on-dark-muted); font-size: 0.9rem; line-height: 1.5; margin: 0 0 1rem; }

.footer-accreditations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 1.5rem 2.5rem;
}
.accred-badge {
  position: relative;
  padding: 1.4rem 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 180, 0, 0.22);
  border-radius: var(--r-xs);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.accred-badge:hover { border-color: var(--accent); }
.accred-badge .accred-icon {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.accred-badge strong { display: block; font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: #fff; }
.accred-badge small  { display: block; color: var(--text-on-dark-muted); font-size: 0.78rem; margin-top: 0.3rem; line-height: 1.4; }

.footer-bottom {
  position: relative;
  padding: 2rem 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(244, 180, 0, 0.18);
  margin: 0 1.5rem;
}
.footer-mark {
  position: absolute;
  top: -0.85rem; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-panel);
  border: 1px solid rgba(244, 180, 0, 0.30);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--accent);
  font-size: 1.1rem;
}
.footer-copy {
  font-family: var(--font-heading);
  font-feature-settings: "smcp";
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  margin: 0 0 0.4rem;
}
.footer-disclaimer { font-size: 0.78rem; color: var(--text-dim); margin: 0; }

/* ---------- 404 ---------- */
.err-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.err-404 .glyph {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent-warm) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
}
.err-404 h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.err-404 p  { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ---------- SEO article (inline content default) ---------- */
.seo-article { padding: var(--sp-8) 0; }
.seo-article h2 { margin-top: 2.5rem; }
.seo-article h2:first-child { margin-top: 0; }
.seo-article p,
.seo-article ul,
.seo-article ol { font-size: 1.04rem; line-height: 1.65; color: var(--text); }
.seo-article a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- CTA Inline ---------- */
.cta-inline {
  margin: 2rem 0 1rem;
  display: flex; gap: 0.85rem; flex-wrap: wrap;
}
.cta-inline .btn { color: #fff !important; }
.cta-inline .btn-secondary { color: var(--text) !important; }

/* ---------- Reveal animation ---------- */
@keyframes reveal {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
[data-reveal] { animation: reveal 0.7s ease both; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { animation: none; }
  * { transition: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { gap: 2rem; padding: 4rem 1.5rem 5rem; }
  .hero-visual { max-width: 380px; }
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .header-nav-row { display: none; }
  body.nav-open .header-nav-row {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 70;
    padding: 5rem 1.5rem;
    overflow-y: auto;
  }
  body.nav-open .header-nav-row .header-inner {
    padding: 0;
  }
  body.nav-open .nav { width: 100%; }
  body.nav-open .nav-list { flex-direction: column; gap: 0.5rem; align-items: center; }
  body.nav-open .nav-link { font-size: 1.35rem; padding: 0.7rem 1.25rem; }
  body.nav-open { overflow: hidden; }
  .nav-indicator { display: none; }

  /* Hero stacks vertically; chip visual scales down */
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    padding: 3rem 1.5rem 4.5rem;
  }
  .hero-content { max-width: 100%; min-width: 0; order: 1; }
  .hero-visual {
    order: 2;
    max-width: 340px;
    width: 100%;
  }
  .hero h1 { font-size: clamp(2.2rem, 7vw, 3rem); }

  .hero-stats-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-tile + .stat-tile { border-left: none; }
  .stat-tile:nth-child(2) { border-left: 1px dashed var(--border-soft); }
  .stat-tile:nth-child(3),
  .stat-tile:nth-child(4) { border-top: 1px dashed var(--border-soft); }
  .stat-tile:nth-child(4) { border-left: 1px dashed var(--border-soft); }

  .floor-grid--cols-3,
  .floor-grid--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .split-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .split-layout--reverse { direction: ltr; }
  .split-image { aspect-ratio: 16 / 10; }

  .security-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .home-floor .bento {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .bento-tile--wide { grid-column: span 4; grid-row: span 1; }
  .bento-tile--med  { grid-column: span 2; }

  .rewards-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rewards-bento .welcome-card { grid-column: span 2; grid-row: span 1; }
  .rewards-bento .reward-tile  { grid-column: span 1; }
  .rewards-bento .vip-strip    { grid-column: span 2; }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-vip {
    grid-column: span 2;
    border-left: none;
    border-top: 1px solid rgba(244, 180, 0, 0.30);
    padding: 1.5rem 0 0;
  }
  .footer-pedestal { grid-column: span 2; }
  .footer-accreditations { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .hero h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero-actions .btn { flex: 1 1 auto; min-width: 140px; justify-content: center; }
  .header-cta { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .header-cta { display: none; }
  .header-top .header-inner { padding-top: 0.7rem; padding-bottom: 0.7rem; }
  .hero-visual { max-width: 280px; }
  .hero-trust { gap: 0.4rem; }
  .trust-chip { font-size: 0.66rem; padding: 0.35rem 0.7rem; }
}

@media (max-width: 560px) {
  .hero-stats-strip { grid-template-columns: 1fr; }
  .stat-tile { border-top: 1px solid var(--border-soft) !important; border-left: none !important; }
  .stat-tile:first-child { border-top: none !important; }

  .floor-grid--cols-2,
  .floor-grid--cols-3,
  .floor-grid--cols-4 { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }

  .home-floor .bento { grid-template-columns: 1fr; }
  .bento-tile--wide,
  .bento-tile--med,
  .bento-tile--narrow { grid-column: span 1; grid-row: auto; }

  .rewards-bento { grid-template-columns: 1fr; }
  .rewards-bento .welcome-card,
  .rewards-bento .reward-tile,
  .rewards-bento .vip-strip { grid-column: span 1; }

  .footer-main { grid-template-columns: 1fr; }
  .footer-pedestal,
  .footer-vip { grid-column: span 1; }
  .footer-accreditations { grid-template-columns: 1fr; }

  .header-inner { padding: 0.5rem 1rem; gap: 0.5rem; }
}
