/* =========================================================
   IND Bingo — Design System v2
   Playful + vibrant. Solid header. Left-aligned content.
   Unified 1200px container. No full-bleed images.
   ========================================================= */

:root {
  /* Colors — green dominant, warm gold spark, magenta accent */
  --brand:         #00c85a;
  --brand-dark:    #00803b;
  --brand-light:   #4ef09a;
  --brand-deeper:  #005a2a;

  --accent:        #ffd24d;
  --accent-warm:   #ffb347;
  --accent-soft:   #ffe9a3;

  --spark:         #ff3d88;
  --spark-soft:    #ff79a8;

  --bg:            #0a1a14;
  --bg-card:       #12271e;
  --bg-card-2:     #173324;
  --bg-elevated:   #183326;
  --bg-panel:      #071310;
  --bg-warm:       #1a2d23;

  --text:          #f3fff7;
  --text-muted:    #b5d0c1;
  --text-dim:      #7a9688;

  --border:        rgba(255, 210, 77, 0.16);
  --border-strong: rgba(255, 210, 77, 0.32);
  --border-soft:   rgba(255, 255, 255, 0.08);
  --border-green:  rgba(0, 200, 90, 0.26);

  /* Typography */
  --font-body:     'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-heading:  'Bricolage Grotesque', 'Fraunces', Georgia, serif;
  --font-serif:    'Fraunces', Georgia, serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 6rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 10px 34px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.42);
  --shadow-gold: 0 0 32px rgba(255, 210, 77, 0.22);

  /* Layout */
  --container: 1200px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-light); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.18;
  margin: 0 0 .6em;
  text-align: left;
}

h1 { font-size: clamp(2.1rem, 3.8vw, 3.5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 1.5vw, 1.45rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; text-align: left; }
ul, ol { padding-left: 1.25rem; margin: 0 0 1em; text-align: left; }
li { margin: .35em 0; }

::selection { background: var(--accent); color: var(--bg-panel); }

/* Subtle green dot background - kept soft */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 90% 0%, rgba(0,200,90,0.12), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(255,210,77,0.08), transparent 60%);
  pointer-events: none;
}

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

/* =========================================================
   HEADER — solid, sticky, full-width bg, inner 1200 container
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 19, 16, 0.96);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.site-header.is-scrolled {
  background: rgba(7, 19, 16, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-mark {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform .25s ease;
}
.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.04); }

.nav {
  display: flex;
  align-items: center;
  gap: .15rem;
  margin-left: auto;
}
.nav-indicator { display: none; }
.nav-link {
  color: var(--text-muted);
  padding: .5rem .9rem;
  font-size: .94rem;
  font-weight: 500;
  letter-spacing: .01em;
  border-radius: 8px;
  transition: color .2s ease, background-color .2s ease;
  position: relative;
}
.nav-link:hover {
  color: var(--accent);
  background: rgba(255, 210, 77, 0.08);
}
.nav-link.active {
  color: var(--accent);
  font-weight: 600;
  background: rgba(255, 210, 77, 0.08);
}

.header-aside {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-green);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: border-color .2s;
}
.menu-toggle:hover { border-color: var(--brand-light); }
.menu-toggle span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle span:nth-child(1) { transform: translate(-50%, calc(-50% - 6px)); }
.menu-toggle span:nth-child(3) { transform: translate(-50%, calc(-50% + 6px)); }
body.menu-open .menu-toggle span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* =========================================================
   Buttons
   ========================================================= */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: .015em;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #042514 !important;
  box-shadow: 0 6px 20px rgba(0,200,90,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,200,90,.42);
  color: #042514 !important;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,.35) 50%, transparent 75%);
  transform: translateX(-100%);
  transition: transform .8s ease;
}
.btn-primary:hover::after { transform: translateX(100%); }

.btn-secondary {
  background: transparent;
  color: var(--accent) !important;
  border: 1.5px solid var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--bg) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.header-cta { padding: .6rem 1.2rem; font-size: .88rem; }

/* =========================================================
   HOMEPAGE HERO — stacked layout, full container width
   ========================================================= */
.hero {
  padding: 2.5rem 0 2rem;
  position: relative;
}
.hero-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.75rem;
}
.hero-content { text-align: left; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding: .35rem .75rem .35rem .55rem;
  background: rgba(255, 210, 77, 0.08);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}
.kicker .ico {
  width: 14px;
  height: 14px;
  margin: 0;
  color: var(--accent);
}
.hero h1 {
  margin: 0 0 1.25rem;
  color: var(--text);
}
.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.hero-subcontent { text-align: left; }
.hero .lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero horizontal image strip — equal 3-up row */
.hero-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.hero-gallery .hv-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-green);
  background: var(--bg-card);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-md);
}
.hero-gallery .hv-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.hero-gallery .hv-tile:hover img { transform: scale(1.06); }
.hero-gallery .hv-tile::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 3px;
  background: var(--accent);
  z-index: 2;
}
.hero-gallery .hv-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: .3rem .7rem;
  background: rgba(7, 19, 16, 0.82);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  z-index: 2;
}

/* Hero reveal */
.hero .kicker, .hero h1, .hero .lead, .hero-actions, .hero-gallery, .hero-stats-strip {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp .7s cubic-bezier(.25,.8,.25,1) forwards;
}
.hero .kicker { animation-delay: .05s; }
.hero h1 { animation-delay: .12s; }
.hero .lead { animation-delay: .18s; }
.hero-actions { animation-delay: .26s; }
.hero-gallery { animation-delay: .34s; }
.hero-stats-strip { animation-delay: .44s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero .kicker, .hero h1, .hero .lead, .hero-actions, .hero-gallery, .hero-stats-strip {
    opacity: 1; transform: none; animation: none;
  }
}

/* Stat strip — within container, flat */
.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
}
.stat-tile {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border-green);
  border-radius: var(--r-md);
  padding: 1.2rem 1.25rem;
  position: relative;
  min-width: 0;
  text-align: left;
}
.stat-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 1.25rem; right: 1.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.stat-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: .35rem;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  font-weight: 600;
}

/* =========================================================
   Sections — all left-aligned, container-bounded
   ========================================================= */
.home-section, .page-section {
  padding: 2.75rem 0;
  position: relative;
}
.home-section:nth-of-type(even) { background: rgba(255, 255, 255, 0.015); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
  padding: .4rem .85rem .4rem .65rem;
  background: rgba(255, 210, 77, 0.08);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}
.section-label .ico {
  width: 14px;
  height: 14px;
  margin: 0;
  color: var(--accent);
  flex-shrink: 0;
}
.section-label > svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.section-heading {
  margin: 0 0 1rem;
  text-align: left;
}
.section-intro {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin: 0 0 1.5rem;
  text-align: left;
}
.home-section-head { margin-bottom: 1.75rem; }

/* =========================================================
   SVG icon wrapper
   ========================================================= */
.ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--accent);
}
.ico svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ico--sm { width: 22px; height: 22px; }
.ico--lg { width: 48px; height: 48px; }

/* Standalone icon chip — used in card headers as a square-rounded badge */
.ico-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--accent);
  background: rgba(255, 210, 77, 0.1);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  margin-bottom: 1rem;
}
.ico-chip svg { width: 22px; height: 22px; }

/* =========================================================
   Intro-block (lede overflow) — left-aligned, full container width
   ========================================================= */
.intro-block {
  padding: 2rem 0 1.5rem;
}
.intro-block-inner {
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.intro-block .ico { color: var(--accent); }
.intro-block p { margin: 0 0 1.2em; }
.intro-block p:last-child { margin-bottom: 0; }

/* =========================================================
   Floor grid cards — new design
   Sharp top-left cut, gold hairline, monogram watermark
   ========================================================= */
.floor-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(1, 1fr);
}
.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); }

.floor-tile {
  position: relative;
  padding: 1.75rem 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  text-align: left;
}
.floor-tile::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 56px;
  height: 4px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
}
.floor-tile::after {
  content: attr(data-mono);
  position: absolute;
  bottom: -10px;
  right: -6px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 7rem;
  line-height: 1;
  color: rgba(255,210,77,.06);
  pointer-events: none;
  letter-spacing: -0.04em;
}
.floor-tile:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}
.floor-tile h3 {
  font-size: 1.25rem;
  margin-bottom: .8rem;
  color: var(--text);
  text-align: left;
}
.floor-tile p, .floor-tile li {
  color: var(--text-muted);
  font-size: .97rem;
  line-height: 1.65;
  text-align: left;
}
.floor-tile ul { list-style: none; padding-left: 0; margin: 0; }
.floor-tile li {
  padding-left: 1.3rem;
  position: relative;
  margin: .4em 0;
}
.floor-tile li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
.floor-tile .btn-secondary {
  margin-top: 1.1rem;
  padding: .6rem 1.1rem;
  font-size: .82rem;
}

/* =========================================================
   Split layout — 2-col content + image, container-bound
   ========================================================= */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split-layout--reverse .split-image { order: 2; }
.split-image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-green);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 4px;
  background: var(--accent);
  z-index: 2;
}
.split-content h2, .split-content h3 {
  margin-bottom: 1rem;
  text-align: left;
}
.split-content > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  text-align: left;
}

/* Section body — inline container that spans the full section width */
.section-body {
  width: 100%;
  text-align: left;
}

/* Feature check-list */
.feature-check-list {
  background: linear-gradient(135deg, rgba(255,210,77,.05), rgba(0,200,90,.03));
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem 1.25rem 1.75rem;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  list-style: none;
  margin: 0 0 1rem;
}
.feature-check-list li {
  padding: .45rem 0 .45rem 2.2rem;
  position: relative;
  color: var(--text);
  font-size: .98rem;
  line-height: 1.6;
  text-align: left;
}
.feature-check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .7rem;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--accent) 0%, var(--accent-warm) 100%);
  box-shadow: 0 0 10px rgba(255,210,77,.3);
}
.feature-check-list li::after {
  content: '';
  position: absolute;
  left: 5px; top: 1.08rem;
  width: 10px; height: 5px;
  border-left: 2px solid var(--bg-panel);
  border-bottom: 2px solid var(--bg-panel);
  transform: rotate(-45deg);
}

/* =========================================================
   Plain card — left-aligned editorial
   ========================================================= */
.plain-card {
  padding: 2rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--r-md);
  text-align: left;
  position: relative;
}
.plain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 4px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
}
.plain-card p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  text-align: left;
}
.plain-card p:last-child { margin-bottom: 0; }
.plain-card h3 { color: var(--accent); margin: 1.3em 0 .6em; }
.plain-card h3:first-child { margin-top: 0; }

/* =========================================================
   Image divider — CONSTRAINED to container (no full-bleed)
   ========================================================= */
.image-divider {
  margin: 2rem 0;
}
.image-divider-inner {
  position: relative;
  aspect-ratio: 21 / 8;
  width: 100%;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-green);
}
.image-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.image-divider-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 120px; height: 4px;
  background: var(--accent);
  z-index: 2;
}

/* =========================================================
   Home bespoke sections
   ========================================================= */
.home-intro {
  padding-top: 2.75rem;
}
.home-intro-inner {
  text-align: left;
}
.home-intro-inner p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  text-align: left;
}

/* home-floor bento — refined */
.home-floor-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(170px, auto);
  gap: 1.15rem;
}
.home-floor-grid .floor-tile--wide { grid-column: span 4; grid-row: span 2; padding: 2.25rem; }
.home-floor-grid .floor-tile--wide h3 { font-size: 1.7rem; }
.home-floor-grid .floor-tile--narrow { grid-column: span 2; }
.home-floor-grid .floor-tile--half   { grid-column: span 3; }

/* home-secure — 4-up */
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.security-card {
  position: relative;
  padding: 1.75rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--r-md);
  overflow: hidden;
  text-align: left;
  transition: transform .3s ease, border-color .3s ease;
}
.security-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 45%, rgba(255,210,77,.07) 50%, transparent 55%);
  transform: translateX(-100%);
  transition: transform .7s ease;
}
.security-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.security-card:hover::before { transform: translateX(100%); }
.security-card .ico {
  margin-bottom: 1rem;
}
.security-card h3 {
  font-size: 1.1rem;
  margin: 0 0 .5rem;
  color: var(--text);
  text-align: left;
}
.security-card p {
  color: var(--text-muted);
  font-size: .93rem;
  margin: 0;
  text-align: left;
}

/* home-rewards bento */
.rewards-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.welcome-card {
  grid-column: span 2;
  grid-row: span 2;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(0,200,90,.12) 0%, rgba(255,210,77,.08) 100%);
  border: 1px solid var(--accent);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.welcome-card .ico-chip {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  margin: 0;
}
.welcome-card h3 { font-size: 1.75rem; margin-bottom: 1rem; text-align: left; }
.welcome-card p { color: var(--text); font-size: 1rem; text-align: left; }

.reward-tile {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: left;
}
.reward-tile h4 { color: var(--accent); margin-bottom: .5rem; font-size: 1.05rem; text-align: left; }
.reward-tile p { color: var(--text-muted); font-size: .92rem; margin: 0; text-align: left; }

.vip-strip {
  grid-column: span 3;
  padding: 1.75rem 2rem;
  background: linear-gradient(90deg, var(--bg-panel) 0%, rgba(0,100,50,.22) 60%, rgba(255,210,77,.18) 100%);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: left;
}
.vip-inner { flex: 1; min-width: 250px; text-align: left; }
.vip-strip h4 { font-size: 1.2rem; margin-bottom: .3rem; color: var(--accent); text-align: left; }
.vip-strip p { margin: 0; color: var(--text-muted); font-size: .95rem; text-align: left; }

/* home-support */
.support-card {
  padding: 2.5rem 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--r-lg);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.support-card::before {
  content: '24/7';
  position: absolute;
  top: 50%;
  right: -0.5rem;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 11rem;
  color: var(--accent);
  opacity: .04;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.support-card > * { position: relative; z-index: 1; }
.support-card h3 { color: var(--accent); margin-bottom: 1rem; text-align: left; }
.support-card p { color: var(--text-muted); font-size: 1rem; text-align: left; }

/* =========================================================
   Inner-page hero — editorial: pill + h1 + subtitle + meta chips
   Decorated with dot-pattern bg, accent glow, serif monogram.
   ========================================================= */
.page-hero {
  padding: 2.25rem 0 2rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 210, 77, 0.06) 1.2px, transparent 1.4px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: .55;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -140px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 200, 90, 0.16) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.page-hero > .container {
  position: relative;
  z-index: 1;
  text-align: left;
}

/* Serif monogram watermark — top-right corner */
.page-hero-mark {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(9rem, 18vw, 16rem);
  color: var(--accent);
  opacity: .055;
  line-height: 1;
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .82rem;
  color: var(--text-dim);
  text-align: left;
}
.breadcrumb a { color: var(--text-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border-strong); }
.breadcrumb span:last-child { color: var(--accent); font-weight: 600; }

.page-hero .section-label {
  margin-bottom: 1.25rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 1.1rem;
  text-align: left;
}

.page-hero .subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: left;
}

.page-hero-meta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.page-hero-meta .chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem .85rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(7, 19, 16, 0.55);
  border: 1px solid var(--border-green);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
}
.page-hero-meta .chip svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.page-hero-meta .chip strong { color: var(--text); font-weight: 700; letter-spacing: 0; text-transform: none; font-family: var(--font-heading); }

/* =========================================================
   FOOTER — new design: light-accent, clean 4-col
   ========================================================= */
.site-footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
}
.footer-accent-band {
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--brand));
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.75rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  text-align: left;
}
.footer-pedestal img { height: 42px; width: auto; margin-bottom: 1rem; object-fit: contain; }
.footer-pedestal p {
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.65;
  text-align: left;
}
.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-green);
  border-radius: 10px;
  color: var(--text-muted) !important;
  transition: all .2s ease;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  margin: 0 0 1rem;
  font-weight: 700;
  text-align: left;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: .5em 0; text-align: left; }
.footer-col a {
  color: var(--text-muted);
  font-size: .92rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-accreditations {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: flex-start;
}
.accred-item {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}
.accred-item .ico {
  width: 22px;
  height: 22px;
  margin: 0;
  color: var(--accent);
}
.accred-item strong {
  color: var(--text);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: left;
}
.footer-bottom p {
  margin: 0;
  color: var(--text-dim);
  font-size: .82rem;
  text-align: left;
}
.footer-bottom .disclaimer {
  font-style: italic;
  color: var(--text-muted);
  opacity: .85;
}

/* =========================================================
   404
   ========================================================= */
.err-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 4rem 0;
}
.err-404 .glyph {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 14rem);
  color: var(--accent);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.05em;
}
.err-404 h1 { margin: .5rem 0 1rem; text-align: left; }
.err-404 p { color: var(--text-muted); margin: 0 0 2rem; text-align: left; }

/* =========================================================
   Content wrapper for inner pages
   ========================================================= */
.page-content { padding: 1.5rem 0 1rem; }
.page-content .page-section { padding: 1.5rem 0; }
.page-content .page-section:first-child { padding-top: 0; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-pedestal { grid-column: span 2; }
  .home-floor-grid { grid-template-columns: repeat(2, 1fr); }
  .home-floor-grid .floor-tile--wide { grid-column: span 2; grid-row: auto; }
  .home-floor-grid .floor-tile--narrow { grid-column: span 1; }
  .home-floor-grid .floor-tile--half   { grid-column: span 1; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .rewards-bento { grid-template-columns: repeat(2, 1fr); }
  .welcome-card { grid-column: span 2; grid-row: auto; }
  .vip-strip { grid-column: span 2; }
  .hero-head { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
  .hero-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 19, 16, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    gap: .5rem;
    transform: translateY(-100%);
    transition: transform .35s cubic-bezier(.6,.05,.3,1);
    margin: 0;
    z-index: 99;
  }
  body.menu-open .nav { transform: translateY(0); }
  .nav-link { font-size: 1.4rem; padding: .9rem 0; }
  .nav-indicator { display: none; }
  .menu-toggle { display: block; z-index: 101; }
  .header-cta { display: none; }
  .hero-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .split-layout { grid-template-columns: 1fr; gap: 2rem; }
  .split-layout--reverse .split-image { order: 0; }
  .split-image { aspect-ratio: 3 / 2; }
  .floor-grid--cols-3, .floor-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .home-section, .page-section { padding: 2rem 0; }
  .footer-main { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-pedestal { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .4rem; }
}

@media (max-width: 560px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.4rem; }
  .hero { padding: 2rem 0 1.75rem; }
  .hero .lead { font-size: 1rem; }
  .btn-primary, .btn-secondary { padding: .75rem 1.25rem; font-size: .88rem; }
  .hero-stats-strip { grid-template-columns: 1fr; }
  .stat-tile { padding: 1rem 1.1rem; }
  .floor-grid, .floor-grid--cols-2, .floor-grid--cols-3, .floor-grid--cols-4,
  .security-grid, .rewards-bento, .home-floor-grid {
    grid-template-columns: 1fr;
  }
  .welcome-card, .vip-strip, .home-floor-grid .floor-tile--wide,
  .home-floor-grid .floor-tile--narrow { grid-column: auto; }
  .plain-card, .support-card { padding: 1.75rem 1.25rem; }
  .welcome-card { padding: 1.75rem 1.25rem; }
  .hero-gallery { grid-template-columns: 1fr; }
}
