@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f1f1f1;
  --bg-white: #ffffff;
  --bg-soft: #e8edf5;
  --border: #d4dae6;
  --border-light: #ebeef4;
  --text: #1a2744;
  --text-muted: #5c6b82;
  --blue: #013896;
  --blue-light: #1a52b8;
  --blue-dim: rgba(1, 56, 150, 0.08);
  --blue-glow: rgba(1, 56, 150, 0.18);
  --red: #cf142b;
  --red-light: #e8233c;
  --red-dim: rgba(207, 20, 43, 0.1);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(1, 56, 150, 0.08);
  --shadow-lg: 0 20px 50px rgba(1, 56, 150, 0.12);
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

body.age-locked { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font: inherit; }

/* Age gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 39, 68, 0.72);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 1;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.age-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate-panel {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--blue);
  animation: agePop 0.4s ease;
}

@keyframes agePop {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.age-gate-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.age-gate-panel h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.age-gate-panel p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.age-gate-sub { font-weight: 600; color: var(--text) !important; }

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.25rem 0 1rem;
}

.age-gate-actions .btn { width: 100%; }

.age-gate-legal {
  font-size: 0.75rem !important;
  margin-bottom: 0 !important;
}

.age-gate-legal a { color: var(--blue); font-weight: 600; }

/* Site shell */
.site { min-height: 100vh; display: flex; flex-direction: column; }

/* Ticker */
.ticker {
  background: var(--blue);
  color: #fff;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.45rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker-track span { padding-right: 3rem; white-space: nowrap; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Masthead */
.masthead {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 2px 16px rgba(1, 56, 150, 0.04);
}

.masthead-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1.5rem;
  max-width: 1280px;
  margin-inline: auto;
}

.brand img { height: 34px; width: auto; }

.masthead-nav {
  display: flex;
  gap: 0.35rem;
  flex: 1;
}

.nav-pill {
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  color: var(--text-muted);
  transition: background var(--ease), color var(--ease);
}

.nav-pill:hover { background: var(--blue-dim); color: var(--blue); }
.nav-pill.active { background: var(--blue); color: #fff; }

.masthead-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.masthead-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  min-width: 180px;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.masthead-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-dim);
}

.masthead-search input {
  border: none;
  background: none;
  outline: none;
  font-size: 0.82rem;
  width: 120px;
}

.fun-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue-dim);
  border: 1px solid rgba(1, 56, 150, 0.15);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
}

.fun-chip-label { color: var(--text-muted); font-weight: 600; }
.fun-chip-val { color: var(--blue); font-weight: 800; font-variant-numeric: tabular-nums; }

.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
}

.game-rail {
  display: flex;
  gap: 0.5rem;
  padding: 0.55rem 1.5rem 0.75rem;
  overflow-x: auto;
  max-width: 1280px;
  margin-inline: auto;
  scrollbar-width: none;
}

.game-rail::-webkit-scrollbar { display: none; }

.rail-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem 0.35rem 0.35rem;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color var(--ease), transform var(--ease);
}

.rail-chip img { border-radius: 50%; object-fit: cover; }
.rail-chip:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.rail-chip.active { border-color: var(--blue); background: var(--blue-dim); color: var(--blue); }

.mobile-drawer { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(207, 20, 43, 0.25);
}

.btn-red:hover { background: var(--red-light); }

.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px var(--blue-glow);
}

.btn-blue:hover { background: var(--blue-light); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover { background: var(--blue-dim); }

.btn-ghost {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-sm { font-size: 0.8rem; padding: 0.5rem 1rem; }
.btn-lg { font-size: 0.95rem; padding: 0.85rem 1.6rem; }

.content { flex: 1; }

.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: 3.5rem 0; }
.section-tight { padding: 2rem 0; }
.section-alt { background: var(--bg-white); border-block: 1px solid var(--border-light); }

.section-head { margin-bottom: 2rem; }
.section-head.center { text-align: center; }

.section-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head p { color: var(--text-muted); max-width: 560px; }

/* Salon hero */
.salon-hero {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg) 55%, var(--bg-soft) 100%);
}

.salon-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.salon-hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.salon-hero-copy h1 em {
  font-style: normal;
  color: var(--blue);
}

.salon-lead {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.salon-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.salon-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.salon-pillars li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 999px;
}

.salon-pillars strong { color: var(--blue); margin-right: 0.25rem; }

.spotlight-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--ease);
}

.spotlight-card:hover { transform: translateY(-4px); }

.spotlight-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.spotlight-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(1, 56, 150, 0.92));
  color: #fff;
}

.spotlight-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--red);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-weight: 700;
}

.spotlight-meta h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0.5rem 0 0.35rem;
}

.spotlight-meta p { font-size: 0.88rem; opacity: 0.9; margin-bottom: 0.5rem; }
.spotlight-play { font-size: 0.82rem; font-weight: 700; }

/* Manifesto */
.manifesto {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
}

.manifesto-icon {
  width: 56px;
  height: 56px;
  background: var(--blue);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.manifesto h2 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.35rem; }
.manifesto p { font-size: 0.9rem; color: var(--text-muted); flex: 1; min-width: 200px; }

/* Bento lobby */
.bento-lobby {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  min-height: 420px;
}

.bento-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  transition: transform var(--ease);
}

.bento-main:hover { transform: scale(1.01); }

.bento-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.bento-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(26, 39, 68, 0.9));
  color: #fff;
}

.bento-overlay span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }
.bento-overlay h3 { font-size: 1.4rem; font-weight: 800; margin: 0.25rem 0; }
.bento-overlay em { font-style: normal; font-size: 0.85rem; font-weight: 600; color: #ffd4d9; }

.bento-side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
}

.bento-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  transition: transform var(--ease);
}

.bento-tile:hover { transform: translateX(4px); }

.bento-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 120px;
}

.bento-tile-info {
  position: absolute;
  inset: 0;
  background: rgba(1, 56, 150, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.85rem 1rem;
  color: #fff;
  opacity: 0;
  transition: opacity var(--ease);
}

.bento-tile:hover .bento-tile-info { opacity: 1; }

.bento-tile-info h3 { font-size: 0.95rem; font-weight: 800; }
.bento-tile-info span { font-size: 0.78rem; font-weight: 600; }

/* Timeline */
.timeline-head { margin-bottom: 2rem; }

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.timeline-step {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: transform var(--ease), box-shadow var(--ease);
}

.timeline-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.timeline-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.35;
  margin-bottom: 0.5rem;
}

.timeline-step h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.4rem; }
.timeline-step p { font-size: 0.82rem; color: var(--text-muted); }

/* Trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.trust-card-accent {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.trust-card-accent p { color: rgba(255,255,255,0.85); }
.trust-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; }
.trust-card p { font-size: 0.85rem; color: var(--text-muted); }

/* CTA band */
.cta-band {
  background: linear-gradient(90deg, var(--blue) 0%, #024db8 100%);
  color: #fff;
  padding: 2.5rem 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-band h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.35rem; }
.cta-band p { opacity: 0.9; font-size: 0.95rem; }

/* Page hero */
.page-hero {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 2.5rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.breadcrumb a { color: var(--blue); font-weight: 600; }

.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-hero p { color: var(--text-muted); max-width: 640px; }

/* Compliance */
.compliance-band {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.compliance-band svg { color: var(--blue); flex-shrink: 0; }
.compliance-band p { font-size: 0.9rem; color: var(--text-muted); }

/* Games grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.game-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.game-thumb-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.game-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-thumb-wrap img { transform: scale(1.06); }

.game-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 56, 150, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
}

.game-card:hover .game-play-overlay { opacity: 1; }

.play-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.game-body { padding: 1rem 1.1rem 0.5rem; flex: 1; }
.game-provider { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); font-weight: 700; }
.game-title { font-size: 1.05rem; font-weight: 800; margin: 0.3rem 0; }
.game-tagline { font-size: 0.82rem; color: var(--text-muted); }
.game-footer { padding: 0.75rem 1.1rem 1.1rem; }
.game-footer .btn { width: 100%; }

.hidden-card { display: none !important; }

/* Arcade layout */
.arcade-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.arcade-intro h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 0.75rem; }
.arcade-intro p { color: var(--text-muted); }

.arcade-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.arcade-stat {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  text-align: center;
  min-width: 90px;
}

.arcade-stat strong { display: block; font-size: 1.25rem; color: var(--blue); }
.arcade-stat span { font-size: 0.72rem; color: var(--text-muted); }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  align-items: center;
}

.filters-label { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); }

.filter-btn {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--ease);
}

.filter-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Game page */
.game-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  align-items: start;
}

.game-frame-wrap {
  background: #0a1628;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
}

.game-frame-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

.game-sidebar-panel { display: flex; flex-direction: column; gap: 1rem; }

.info-panel {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.info-panel h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.85rem; }

.meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border-light);
}

.meta-row span:first-child { color: var(--text-muted); }
.meta-row span:last-child { font-weight: 700; }

.related-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  padding: 0.45rem 0;
}

.related-link:hover { color: var(--red); }
.related-link img { border-radius: 8px; object-fit: cover; }

.game-content {
  margin-top: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
}

.game-content h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 1rem; }
.game-content p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.92rem; }

/* Prose / contact */
.prose {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 800px;
}

.prose h2 { font-size: 1.2rem; font-weight: 800; margin: 1.5rem 0 0.75rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.prose ul { padding-left: 1.25rem; list-style: disc; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.4rem; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-dim);
}

.form-group textarea { min-height: 140px; resize: vertical; }
.form-ok { font-size: 0.85rem; color: var(--blue); font-weight: 600; margin-top: 0.75rem; }

/* Footer */
.foot {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 2.5rem 1.5rem 1.25rem;
  margin-top: auto;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 2rem;
  max-width: 1180px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.foot-brand img { height: 30px; width: auto; margin-bottom: 0.75rem; }
.foot-brand p { font-size: 0.82rem; color: var(--text-muted); }

.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.foot h4 { font-size: 0.85rem; font-weight: 800; margin-bottom: 0.75rem; }
.foot ul li { margin-bottom: 0.4rem; }
.foot ul a { font-size: 0.84rem; color: var(--text-muted); }
.foot ul a:hover { color: var(--blue); }
.foot-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.5rem; }

.foot-form { display: flex; gap: 0.5rem; }
.foot-form input {
  flex: 1;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
}

.foot-bottom {
  max-width: 1180px;
  margin-inline: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .salon-hero-grid { grid-template-columns: 1fr; }
  .bento-lobby { grid-template-columns: 1fr; min-height: auto; }
  .bento-side { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .timeline-steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .game-layout { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .arcade-intro { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .masthead-nav { display: none; }
  .masthead-search { display: none; }
  .nav-burger { display: flex; }
  .masthead-cta { display: none; }

  .mobile-drawer.open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 400;
  }

  .mobile-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(280px, 85vw);
    height: 100%;
    background: var(--bg-white);
    padding: 5rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
    animation: slideIn 0.3s ease;
  }

  @keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }

  .mobile-drawer-mask {
    position: absolute;
    inset: 0;
    background: rgba(26, 39, 68, 0.45);
  }

  .bento-side { grid-template-columns: 1fr; }
  .timeline-steps { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}
