:root {
  --bg: #140424;
  --bg-deep: #09020f;
  --surface: #ffffff;
  --surface-soft: #f3ebff;
  --surface-muted: #e7dbff;
  --ink: #120c1d;
  --ink-soft: #605874;
  --text: #f7f5ff;
  --text-soft: #d6cbee;
  --purple: #7c3aed;
  --purple-strong: #5b21b6;
  --purple-soft: rgba(124, 58, 237, 0.18);
  --purple-glow: rgba(124, 58, 237, 0.34);
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-light: rgba(18, 12, 29, 0.1);
  --shadow-dark: 0 30px 70px rgba(0, 0, 0, 0.38);
  --shadow-light: 0 24px 50px rgba(28, 16, 58, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(124, 58, 237, 0.36),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(168, 85, 247, 0.22),
      transparent 25%
    ),
    radial-gradient(
      circle at 50% 45%,
      rgba(91, 33, 182, 0.16),
      transparent 35%
    ),
    linear-gradient(180deg, #10031c 0%, #180528 30%, #12041f 100%);
}

body.is-locked {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -2;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(8px);
}

body::before {
  top: 8rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.34),
    transparent 72%
  );
}

body::after {
  left: -5rem;
  bottom: 10rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.22),
    transparent 74%
  );
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.8rem 1rem;
  color: var(--text);
  background: #1c102b;
  border-radius: 999px;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.announcement-strip {
  padding: 1rem 0 0;
}

.announcement-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(28, 16, 58, 0.06);
}

.announcement-copy {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
}

.announcement-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  color: var(--purple-strong);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(124, 58, 237, 0.12);
  background: rgba(124, 58, 237, 0.08);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.announcement-link:hover,
.announcement-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.2);
}

.home-spotlight-section {
  padding-top: 1.35rem;
  padding-bottom: 1.1rem;
}

.home-spotlight-card {
  max-width: none;
}

.hero-best-sellers {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.hero-best-sellers-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.hero-best-sellers-link {
  color: var(--purple-strong);
  font-weight: 800;
  text-decoration: none;
}

.hero-best-sellers-link:hover,
.hero-best-sellers-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.section {
  position: relative;
  padding: 4.1rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(18, 4, 31, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
  will-change: transform;
}

.site-header.is-header-hidden {
  transform: translateY(calc(-100% - 0.75rem));
  pointer-events: none;
}

.nav-row,
.footer-row,
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-row {
  padding: 1rem 0;
}

.site-header-row {
  align-items: center;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark-shell {
  flex: 0 0 auto;
  width: clamp(4.8rem, 10vw, 7.2rem);
  padding: 0.35rem 0.5rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 20px rgba(28, 16, 58, 0.08);
}

.brand-mark {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-identity {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.brand-kicker,
.section-label,
.eyebrow,
.panel-kicker,
.map-chip,
.detail-label,
.inventory-icon,
.community-tag {
  font-size: 0.78rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-kicker,
.eyebrow,
.section-label,
.panel-kicker {
  color: #c5b3ff;
}

.brand-name,
.hero-title,
.section-title,
.panel-title,
.map-title,
.footer-brand {
  font-family: "Archivo Black", Impact, sans-serif;
  font-weight: 400;
}

.brand-name {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--surface);
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-wrap: balance;
}

.site-nav {
  margin-left: auto;
}

.site-header-actions,
.store-header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.65rem 1rem;
  color: var(--text-soft);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a.is-active {
  color: var(--surface);
  background: rgba(124, 58, 237, 0.22);
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-1px);
}

.page-header-section {
  padding: 2rem 0 0;
}

.page-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.25rem;
  align-items: stretch;
}

.page-header-card,
.page-header-panel {
  min-width: 0;
  border-radius: var(--radius-xl);
}

.page-header-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  border: 1px solid rgba(168, 85, 247, 0.16);
  background:
    radial-gradient(
      circle at top right,
      rgba(168, 85, 247, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, rgba(48, 20, 87, 0.98), rgba(22, 8, 38, 0.98));
  box-shadow: var(--shadow-dark);
}

.page-header-card::after {
  content: "";
  position: absolute;
  inset: auto -2.5rem -3rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 2rem;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.24),
    rgba(255, 255, 255, 0.04)
  );
  transform: rotate(26deg);
}

.page-header-brand {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 11ch;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.6rem, 7vw, 4.75rem);
  line-height: 0.92;
  color: var(--surface);
  text-wrap: balance;
}

.page-header-summary {
  position: relative;
  z-index: 1;
  max-width: 58ch;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.page-header-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.page-header-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(196, 181, 253, 0.9);
  color: var(--ink);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(243, 235, 255, 0.98)
  );
  box-shadow: var(--shadow-light);
}

.page-header-detail-list {
  display: grid;
  gap: 0.9rem;
}

.page-header-detail-item {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(18, 12, 29, 0.08);
}

.page-header-detail-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-header-detail-label {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-header-detail-value {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.55;
}

.hero {
  padding-top: 4.4rem;
}

.page-header-section + .hero {
  padding-top: 1.35rem;
}

.hero-grid,
.about-grid,
.visit-grid,
.community-grid,
.page-header-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.7rem, 3vw, 2.7rem);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    ),
    linear-gradient(
      135deg,
      rgba(45, 20, 82, 0.98),
      rgba(20, 7, 36, 0.98) 60%,
      rgba(11, 3, 21, 0.98)
    );
  box-shadow: var(--shadow-dark);
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.42),
    transparent 72%
  );
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -3rem -3rem auto;
  width: 16rem;
  height: 16rem;
  border-radius: 2rem;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.3),
    rgba(255, 255, 255, 0.04)
  );
  transform: rotate(24deg);
}

.hero-title {
  position: relative;
  z-index: 1;
  margin: 0.7rem 0 1.2rem;
  max-width: 9ch;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.94;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero-summary,
.section-lead,
.section-copy,
.footer-copy,
.footer-note {
  color: var(--text-soft);
}

.hero-summary {
  position: relative;
  z-index: 1;
  max-width: 60ch;
  margin: 0 0 1.4rem;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}

.button,
.button-muted,
.button-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.button {
  color: var(--surface);
  background: linear-gradient(135deg, var(--purple), var(--purple-strong));
  box-shadow: 0 18px 30px rgba(91, 33, 182, 0.34);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 32px rgba(91, 33, 182, 0.42);
}

.button-muted {
  color: var(--surface);
  border: 1px solid rgba(168, 85, 247, 0.24);
  background: rgba(124, 58, 237, 0.14);
}

.button-muted:hover,
.button-muted:focus-visible {
  transform: translateY(-2px);
  background: rgba(124, 58, 237, 0.22);
  border-color: rgba(196, 181, 253, 0.36);
}

.button-placeholder {
  color: var(--text-soft);
  border: 1px dashed rgba(168, 85, 247, 0.24);
  background: rgba(124, 58, 237, 0.08);
  cursor: default;
}

.hero-highlights {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.highlight-card {
  padding: 1rem;
  border: 1px solid rgba(168, 85, 247, 0.16);
  border-radius: var(--radius-md);
  background: rgba(124, 58, 237, 0.1);
}

.highlight-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--surface);
}

.highlight-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.hero-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.35rem, 2.6vw, 1.9rem);
  border: 1px solid rgba(196, 181, 253, 0.9);
  border-radius: var(--radius-xl);
  color: var(--ink);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(243, 235, 255, 0.98)
  );
  box-shadow: var(--shadow-light);
}

.panel-title {
  margin: 0.75rem 0 0.9rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
  text-wrap: balance;
}

.panel-copy {
  color: var(--ink-soft);
  line-height: 1.75;
}

.snapshot-list {
  list-style: none;
  margin: 1.1rem 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.snapshot-list li {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(18, 12, 29, 0.08);
}

.hero-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.snapshot-label {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.snapshot-value {
  font-size: 1.02rem;
  font-weight: 800;
}

.hero-panel-note {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.media-placeholder {
  display: grid;
  gap: 0.65rem;
  align-items: end;
  min-height: 220px;
  padding: 1.4rem;
  border-radius: calc(var(--radius-xl) - 10px);
  border: 1px dashed rgba(196, 181, 253, 0.22);
  color: var(--surface);
  background:
    radial-gradient(
      circle at top left,
      rgba(168, 85, 247, 0.34),
      transparent 32%
    ),
    linear-gradient(145deg, #2a1244, #12071f 74%);
}

.media-label {
  font-weight: 800;
}

.media-copy {
  color: #d1cae2;
}

.brand-showcase {
  align-items: stretch;
  gap: 1rem;
  min-height: 0;
}

.brand-showcase-frame {
  display: grid;
  place-items: center;
  padding: 1rem;
  min-height: 210px;
  border-radius: calc(var(--radius-xl) - 14px);
  border: 1px solid rgba(124, 58, 237, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(28, 16, 58, 0.08);
}

.brand-showcase-image {
  width: min(100%, 500px);
  max-height: 240px;
  object-fit: contain;
  margin: 0 auto;
}

.brand-showcase-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.brand-showcase-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#about,
.community-section {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(243, 235, 255, 0.98)
  );
}

.about-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.story-card,
.values-card {
  min-width: 0;
  padding: clamp(1.45rem, 2.6vw, 1.9rem);
  border-radius: var(--radius-xl);
}

.story-card {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-light);
}

.section-title {
  margin: 0.55rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  color: var(--ink);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.section-lead,
.section-copy {
  color: var(--ink-soft);
  line-height: 1.8;
}

.values-card {
  color: var(--surface);
  border: 1px solid var(--border-dark);
  background:
    radial-gradient(
      circle at top left,
      rgba(168, 85, 247, 0.24),
      transparent 34%
    ),
    linear-gradient(160deg, #2a1146, #12051d 84%);
  box-shadow: var(--shadow-dark);
}

.value-list,
.detail-grid,
.inventory-grid,
.community-cards {
  display: grid;
  gap: 1rem;
}

.value-item,
.detail-card,
.inventory-card,
.community-card {
  min-width: 0;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
}

.value-item {
  border: 1px solid rgba(168, 85, 247, 0.14);
  background: rgba(124, 58, 237, 0.09);
}

.value-title,
.inventory-name,
.community-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.value-copy {
  color: var(--text-soft);
}

.inventory-section {
  background: linear-gradient(
    180deg,
    rgba(42, 17, 70, 0.98),
    rgba(18, 5, 31, 1)
  );
}

.inventory-section .section-title,
.inventory-section .section-lead {
  color: var(--surface);
}

.inventory-section .section-lead {
  color: var(--text-soft);
}

.section-heading {
  margin-bottom: 1.25rem;
  max-width: 60rem;
}

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

.popular-section {
  background:
    radial-gradient(
      circle at top right,
      rgba(168, 85, 247, 0.12),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(244, 239, 255, 0.98)
    );
}

.popular-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.popular-grid {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  overflow-x: auto;
  padding: 0.15rem 0 0.9rem;
  scroll-padding-left: 0;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 58, 237, 0.24) rgba(124, 58, 237, 0.06);
}

.scroll-row-shell {
  position: relative;
}

.popular-product-card {
  flex: 0 0 clamp(270px, 29vw, 320px);
  height: 100%;
  scroll-snap-align: start;
}

.home-page .hero-best-sellers .popular-grid {
  padding-bottom: 0.2rem;
}

.home-page .hero-best-sellers .popular-product-card {
  flex-basis: clamp(235px, 24vw, 275px);
}

.popular-grid::-webkit-scrollbar,
.store-product-grid::-webkit-scrollbar {
  height: 0.85rem;
}

.popular-grid::-webkit-scrollbar-track,
.store-product-grid::-webkit-scrollbar-track {
  background: rgba(124, 58, 237, 0.06);
  border-radius: 999px;
}

.popular-grid::-webkit-scrollbar-thumb,
.store-product-grid::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.24);
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
}

.inventory-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(245, 241, 255, 0.98)
  );
  box-shadow: var(--shadow-light);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.inventory-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #a855f7, var(--purple));
}

.inventory-card:hover,
.inventory-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 30px 55px rgba(28, 16, 58, 0.18);
  border-color: rgba(139, 92, 246, 0.22);
}

.inventory-icon {
  width: fit-content;
  margin-bottom: 0.95rem;
  padding: 0.45rem 0.7rem;
  color: var(--purple-strong);
  background: var(--purple-soft);
  border-radius: 999px;
}

.inventory-name {
  color: var(--ink);
  font-size: 1.5rem;
}

.inventory-copy,
.inventory-note,
.detail-copy,
.community-card p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.inventory-note {
  margin: 0.9rem 0 0;
}

.events-section {
  background: transparent;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.event-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99),
    rgba(246, 239, 255, 0.99)
  );
  box-shadow: var(--shadow-light);
}

.event-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--purple-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(124, 58, 237, 0.08);
}

.event-title {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.35;
}

.event-copy,
.event-note {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.event-action {
  width: fit-content;
  margin-top: 0.25rem;
}

.visit-section {
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(255, 255, 255, 0.08),
      transparent 22%
    ),
    linear-gradient(135deg, #8b3dff 0%, #4c1d95 45%, #140424 100%);
}

.visit-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: stretch;
}

.visit-section .section-title,
.visit-section .section-lead {
  color: var(--surface);
}

.visit-section .section-lead {
  color: var(--text-soft);
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.1rem;
}

.detail-card {
  border: 1px solid rgba(196, 181, 253, 0.18);
  background: rgba(124, 58, 237, 0.14);
}

.detail-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.4rem 0.65rem;
  color: #efe9ff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.detail-value {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--surface);
}

.detail-copy {
  color: var(--text-soft);
}

.map-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 0.9rem;
  padding: clamp(1.7rem, 3vw, 2.3rem);
  min-height: 100%;
  border: 1px solid rgba(196, 181, 253, 0.9);
  border-radius: var(--radius-xl);
  color: var(--ink);
  text-decoration: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(243, 235, 255, 0.98)
  );
  box-shadow: var(--shadow-light);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border-radius: calc(var(--radius-xl) - 10px);
  background:
    linear-gradient(
      90deg,
      transparent 0 48%,
      rgba(124, 58, 237, 0.08) 48% 52%,
      transparent 52% 100%
    ),
    linear-gradient(
      0deg,
      transparent 0 48%,
      rgba(124, 58, 237, 0.08) 48% 52%,
      transparent 52% 100%
    ),
    radial-gradient(
      circle at 30% 35%,
      rgba(168, 85, 247, 0.24),
      transparent 15%
    ),
    radial-gradient(
      circle at 62% 62%,
      rgba(124, 58, 237, 0.16),
      transparent 14%
    );
}

.map-chip,
.map-title,
.map-address,
.map-prompt {
  position: relative;
  z-index: 1;
}

.map-chip {
  color: var(--purple-strong);
}

.map-title {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.map-address {
  max-width: 24ch;
  color: var(--ink-soft);
  line-height: 1.6;
}

.map-prompt {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.4rem;
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  color: var(--surface);
  background: linear-gradient(135deg, var(--purple), var(--purple-strong));
  font-weight: 800;
}

.community-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.community-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.community-card {
  min-width: 0;
  border: 1px solid rgba(18, 12, 29, 0.08);
  background: linear-gradient(
    180deg,
    rgba(42, 17, 70, 0.98),
    rgba(27, 10, 46, 0.98)
  );
  box-shadow: var(--shadow-light);
}

.community-card h3 {
  color: var(--surface);
}

.community-card p {
  color: var(--text-soft);
}

.community-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.65rem;
  color: #d5c8ff;
  background: rgba(124, 58, 237, 0.22);
  border-radius: 999px;
}

.placeholder-tag {
  color: var(--purple-strong);
  background: var(--purple-soft);
}

.community-card-action {
  margin-top: 0.95rem;
  width: fit-content;
}

.site-footer {
  padding: 2.2rem 0 2.6rem;
  border-top: 1px solid rgba(168, 85, 247, 0.18);
  background: linear-gradient(180deg, #150424, #0a020f);
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-size: 1.18rem;
  color: var(--surface);
}

.footer-copy,
.footer-note,
.footer-meta {
  margin: 0;
  line-height: 1.7;
}

.footer-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.simulator-square-page [data-reveal] {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.simulator-square-page [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid rgba(139, 92, 246, 0.42);
  outline-offset: 3px;
}

.is-hidden {
  display: none;
}

.booking-hero-grid,
.booking-layout {
  display: grid;
  gap: 1.5rem;
}

.booking-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
}

.booking-hero-copy,
.booking-hero-panel,
.booking-form-card,
.summary-card,
.sidebar-card,
.faq-card {
  min-width: 0;
  border-radius: var(--radius-xl);
}

.booking-hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid rgba(168, 85, 247, 0.16);
  background:
    radial-gradient(
      circle at top right,
      rgba(168, 85, 247, 0.2),
      transparent 26%
    ),
    linear-gradient(135deg, rgba(55, 21, 98, 0.98), rgba(23, 8, 40, 0.98));
  box-shadow: var(--shadow-dark);
}

.booking-hero-panel {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(196, 181, 253, 0.92);
  color: var(--ink);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(243, 235, 255, 0.98)
  );
  box-shadow: var(--shadow-light);
}

.booking-title {
  margin: 0.7rem 0 1rem;
  max-width: 9ch;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.94;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.booking-summary {
  max-width: 60ch;
  margin: 0 0 1.85rem;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.booking-micro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.booking-micro-card {
  padding: 1rem;
  border: 1px solid rgba(168, 85, 247, 0.16);
  border-radius: var(--radius-md);
  background: rgba(124, 58, 237, 0.11);
}

.booking-micro-value {
  display: block;
  color: var(--surface);
  font-size: 1rem;
  font-weight: 800;
}

.booking-micro-label {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.feature-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.25rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.feature-list-light {
  color: var(--ink-soft);
}

.draft-note {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.booking-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: start;
}

.booking-form-card {
  padding: clamp(1.7rem, 3vw, 2.4rem);
  border: 1px solid rgba(196, 181, 253, 0.12);
  color: var(--surface);
  background:
    radial-gradient(
      circle at top right,
      rgba(168, 85, 247, 0.14),
      transparent 24%
    ),
    linear-gradient(145deg, rgba(29, 11, 52, 0.98), rgba(13, 4, 23, 0.99));
  box-shadow: var(--shadow-dark);
}

.booking-builder-title,
.booking-builder-lead {
  color: var(--surface);
}

.booking-builder-lead {
  color: var(--text-soft);
}

.booking-step-group + .booking-step-group {
  margin-top: 2rem;
}

.booking-step {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.booking-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  border-radius: 50%;
  color: var(--surface);
  background: linear-gradient(135deg, var(--purple), var(--purple-strong));
  font-weight: 800;
}

.booking-step-title {
  display: block;
  color: var(--surface);
  font-size: 1rem;
}

.booking-step-copy {
  margin: 0.2rem 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.selector-grid {
  display: grid;
  gap: 1rem;
}

.selector-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.selector-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.selector-card {
  min-width: 0;
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem;
  text-align: left;
  border: 1px solid rgba(196, 181, 253, 0.14);
  border-radius: var(--radius-lg);
  color: var(--surface);
  background: rgba(124, 58, 237, 0.08);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.selector-card:hover,
.selector-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(168, 85, 247, 0.4);
  background: rgba(124, 58, 237, 0.14);
}

.selector-card.is-selected {
  border-color: rgba(196, 181, 253, 0.8);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.3),
    rgba(91, 33, 182, 0.25)
  );
  box-shadow: 0 20px 30px rgba(35, 10, 70, 0.22);
}

.selector-kicker {
  color: #d6c8ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selector-title {
  font-size: 1.05rem;
  font-weight: 800;
}

.selector-meta,
.selector-copy {
  color: var(--text-soft);
  line-height: 1.45;
}

.calendar-card {
  padding: 0.85rem;
  border: 1px solid rgba(196, 181, 253, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(124, 58, 237, 0.07);
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.calendar-heading {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  text-align: center;
}

.calendar-month {
  color: var(--surface);
  font-size: 1.15rem;
  font-weight: 800;
}

.calendar-helper,
.calendar-selection {
  color: var(--text-soft);
  line-height: 1.7;
}

.calendar-helper {
  font-size: 0.9rem;
}

.calendar-nav {
  min-height: 2.6rem;
  min-width: 4.5rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(196, 181, 253, 0.18);
  border-radius: 999px;
  color: var(--surface);
  font: inherit;
  font-weight: 700;
  background: rgba(124, 58, 237, 0.12);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.calendar-nav:hover,
.calendar-nav:focus-visible {
  transform: translateY(-1px);
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(196, 181, 253, 0.32);
}

.calendar-nav:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.55rem;
}

.calendar-weekdays {
  margin-bottom: 0.55rem;
}

.calendar-weekdays span {
  color: #cdbdff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-empty,
.calendar-day {
  min-width: 0;
  min-height: 4.7rem;
  border-radius: var(--radius-md);
}

.calendar-empty {
  border: 1px dashed rgba(196, 181, 253, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.calendar-day {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.2rem;
  padding: 0.6rem 0.35rem;
  border: 1px solid rgba(196, 181, 253, 0.14);
  color: var(--surface);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.calendar-day:hover,
.calendar-day:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(196, 181, 253, 0.38);
}

.calendar-day.is-open {
  background: rgba(124, 58, 237, 0.1);
}

.calendar-day.is-limited {
  background: rgba(168, 85, 247, 0.16);
}

.calendar-day.is-booked,
.calendar-day.is-disabled {
  color: #8b84a3;
  background: rgba(255, 255, 255, 0.03);
}

.calendar-day.is-selected {
  border-color: rgba(196, 181, 253, 0.92);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.34),
    rgba(91, 33, 182, 0.28)
  );
  box-shadow: 0 16px 24px rgba(35, 10, 70, 0.2);
}

.calendar-day-number {
  font-size: 1.05rem;
  font-weight: 800;
}

.calendar-day-meta {
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.calendar-selection {
  margin: 0.7rem 0 0;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.slot-button {
  min-width: 0;
  display: grid;
  gap: 0.2rem;
  padding: 0.82rem;
  text-align: left;
  border: 1px solid rgba(196, 181, 253, 0.14);
  border-radius: var(--radius-md);
  color: var(--surface);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.slot-button:hover,
.slot-button:focus-visible {
  transform: translateY(-2px);
}

.slot-button.is-open {
  background: rgba(124, 58, 237, 0.08);
}

.slot-button.is-limited {
  background: rgba(168, 85, 247, 0.14);
  border-color: rgba(196, 181, 253, 0.22);
}

.slot-button.is-booked {
  color: #8b84a3;
  background: rgba(255, 255, 255, 0.03);
  cursor: not-allowed;
  opacity: 0.72;
}

.slot-button.is-selected {
  border-color: rgba(196, 181, 253, 0.9);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.3),
    rgba(91, 33, 182, 0.28)
  );
}

.slot-time {
  font-size: 1rem;
  font-weight: 800;
}

.slot-status {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.slot-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.9rem 0 0;
}

.slot-legend-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.slot-legend-open {
  background: rgba(124, 58, 237, 0.14);
}

.slot-legend-limited {
  background: rgba(168, 85, 247, 0.24);
}

.slot-legend-booked {
  background: rgba(255, 255, 255, 0.08);
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.player-fields {
  display: grid;
  gap: 1rem;
}

.player-sheet {
  display: grid;
  gap: 0.7rem;
  padding: 0.9rem;
  border: 1px solid rgba(196, 181, 253, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.player-sheet-title {
  margin: 0;
  color: var(--surface);
  font-size: 1rem;
  font-weight: 800;
}

.player-sheet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem;
  border: 1px solid rgba(196, 181, 253, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.checkbox-field input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.15rem 0 0;
  flex: 0 0 auto;
  accent-color: var(--purple);
}

.checkbox-text {
  display: grid;
  gap: 0.25rem;
}

.checkbox-copy {
  color: var(--surface);
  font-weight: 700;
  line-height: 1.5;
}

.checkbox-note {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.inline-link {
  color: var(--purple-strong);
  font-weight: 800;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.14em;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--purple);
}

.field-full {
  grid-column: 1 / -1;
}

.field-label {
  color: #d6c8ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(196, 181, 253, 0.16);
  border-radius: var(--radius-md);
  color: var(--surface);
  font: inherit;
  background-color: rgba(255, 255, 255, 0.05);
}

.field select {
  appearance: none;
  padding-right: 3rem;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.9) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 1.35rem) calc(50% - 0.18rem),
    calc(100% - 0.95rem) calc(50% - 0.18rem);
  background-size:
    0.5rem 0.5rem,
    0.5rem 0.5rem;
  background-repeat: no-repeat;
}

.field select option,
.field select optgroup {
  color: var(--ink);
  background: var(--surface);
}

.field textarea {
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9f98b6;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(196, 181, 253, 0.42);
  background-color: rgba(255, 255, 255, 0.08);
}

.form-actions {
  display: grid;
  gap: 0.75rem;
  align-items: start;
}

.success-banner {
  margin-top: 1.1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(196, 181, 253, 0.22);
  border-radius: var(--radius-md);
  color: var(--surface);
  background: rgba(124, 58, 237, 0.16);
  line-height: 1.7;
}

.success-banner.is-error {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.booking-sidebar {
  display: grid;
  gap: 1rem;
}

.summary-card,
.sidebar-card {
  padding: 1.4rem;
  border: 1px solid rgba(196, 181, 253, 0.14);
  color: var(--surface);
  background: linear-gradient(
    180deg,
    rgba(40, 14, 70, 0.98),
    rgba(19, 6, 33, 0.98)
  );
  box-shadow: var(--shadow-dark);
}

.summary-title,
.sidebar-title {
  margin: 0.45rem 0 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.summary-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.summary-item {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(196, 181, 253, 0.12);
}

.summary-label {
  color: #c8b6ff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-value {
  color: var(--surface);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.6;
}

.summary-empty {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.sidebar-card .section-copy,
.sidebar-card .feature-list {
  color: var(--text-soft);
}

.location-card .button {
  width: fit-content;
  margin-top: 0.5rem;
}

.simulator-faq {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(243, 235, 255, 0.98)
  );
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-card {
  padding: 1.35rem;
  border: 1px solid rgba(18, 12, 29, 0.08);
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-light);
}

.faq-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  font-weight: 800;
}

.faq-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.simple-back-link {
  flex: 0 0 auto;
}

.simulator-simple-page .site-header {
  border-bottom-color: rgba(168, 85, 247, 0.22);
}

.simple-booking-section {
  padding-top: 2.9rem;
}

.simple-booking-shell {
  display: grid;
  gap: 1rem;
}

.simple-booking-hero {
  overflow: hidden;
  border: 1px solid rgba(196, 181, 253, 0.8);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99),
    rgba(243, 235, 255, 0.99)
  );
  box-shadow: var(--shadow-light);
}

.simple-booking-banner {
  position: relative;
  overflow: hidden;
  height: clamp(285px, 33vw, 390px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.simple-booking-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(18, 12, 29, 0.02) 0%,
      rgba(18, 12, 29, 0.18) 46%,
      rgba(18, 12, 29, 0.74) 100%
    ),
    linear-gradient(
      90deg,
      rgba(18, 12, 29, 0.5) 0%,
      rgba(18, 12, 29, 0.12) 55%,
      rgba(18, 12, 29, 0.04) 100%
    );
}

.simple-booking-banner-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 61% 30%;
}

.simple-booking-banner-copy {
  position: absolute;
  left: clamp(1rem, 2.4vw, 1.6rem);
  right: clamp(1rem, 2.4vw, 1.6rem);
  bottom: clamp(0.8rem, 2vw, 1.2rem);
  z-index: 1;
  display: grid;
  gap: 0.35rem;
}

.simple-booking-banner-tag {
  width: fit-content;
  min-height: 1.75rem;
  padding: 0.28rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(18, 12, 29, 0.28);
  backdrop-filter: blur(8px);
}

.simple-booking-banner-title {
  max-width: 18ch;
  color: var(--surface);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  line-height: 1.02;
  text-wrap: balance;
}

.simple-booking-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 1rem;
  align-items: start;
  padding: clamp(0.95rem, 1.8vw, 1.2rem);
  border: 0;
  border-top: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.simple-booking-intro-main {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
  max-width: 34rem;
}

.simple-booking-intro-side {
  display: grid;
  gap: 0.7rem;
  min-width: 0;
  padding-left: 1rem;
  border-left: 1px solid rgba(124, 58, 237, 0.12);
  align-content: start;
}

.hero-steps-eyebrow {
  margin: 0;
}

.hero-step-list {
  display: grid;
  gap: 0.6rem;
}

.hero-step-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
  padding: 0.78rem 0.82rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: var(--radius-md);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(246, 239, 255, 0.98)
  );
  box-shadow: 0 12px 30px rgba(28, 16, 58, 0.06);
}

.hero-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  color: var(--purple-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(124, 58, 237, 0.08);
}

.hero-step-copy {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.hero-step-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.24;
}

.hero-step-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.42;
}

.simple-title {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
}

.simple-summary {
  margin: 0;
  max-width: 28rem;
  line-height: 1.45;
}

.simple-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.simple-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  color: var(--purple-strong);
  font-size: 0.84rem;
  font-weight: 800;
  background: rgba(124, 58, 237, 0.1);
}

.simple-location-row {
  display: flex;
  align-self: stretch;
  align-items: stretch;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 0 0 1rem;
  border-left: 1px solid rgba(124, 58, 237, 0.12);
}

.simple-location-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  flex: 1 1 auto;
}

.simple-location-copy {
  display: grid;
  gap: 0.2rem;
}

.simple-location-label {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.simple-location-value {
  font-size: 0.98rem;
  line-height: 1.45;
}

.simple-phone-link {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.simple-map-link {
  flex: 0 0 auto;
  min-width: 0;
}

.simple-booking-board {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1rem;
  align-items: start;
}

.simple-booking-main,
.simple-booking-side {
  min-width: 0;
}

.simple-booking-main {
  display: grid;
  gap: 1.2rem;
}

.simple-booking-main .booking-step-group + .booking-step-group {
  margin-top: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(196, 181, 253, 0.12);
}

.simple-booking-side {
  display: grid;
  gap: 0.85rem;
}

.simple-booking-side .summary-card {
  position: sticky;
  top: 5.6rem;
}

.simple-board-header {
  display: grid;
  gap: 0.5rem;
}

.simple-card-title {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.05;
  color: var(--surface);
}

.simple-card-copy {
  margin: 0.15rem 0 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.simple-booking-main .selector-grid-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.simple-booking-main .slot-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.simple-form-card .button {
  width: 100%;
}

.simulator-simple-page .booking-form-card,
.simulator-simple-page .summary-card {
  padding: 1.2rem;
}

.simulator-simple-page {
  color: var(--ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(168, 85, 247, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(196, 181, 253, 0.32),
      transparent 24%
    ),
    radial-gradient(
      circle at 50% 45%,
      rgba(221, 214, 254, 0.45),
      transparent 34%
    ),
    linear-gradient(180deg, #fcfbff 0%, #f4edff 48%, #ffffff 100%);
}

.simulator-simple-page::before {
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.16),
    transparent 72%
  );
}

.simulator-simple-page::after {
  background: radial-gradient(
    circle,
    rgba(196, 181, 253, 0.28),
    transparent 74%
  );
}

.simulator-simple-page .site-header {
  background: rgba(255, 255, 255, 0.84);
  border-bottom-color: rgba(124, 58, 237, 0.16);
}

.simulator-simple-page .brand-name {
  color: var(--ink);
}

.simulator-simple-page .brand-kicker,
.simulator-simple-page .section-label,
.simulator-simple-page .field-label,
.simulator-simple-page .summary-label {
  color: var(--purple-strong);
}

.simulator-simple-page .button-muted {
  color: var(--purple-strong);
  border-color: rgba(124, 58, 237, 0.18);
  background: rgba(124, 58, 237, 0.08);
}

.simulator-simple-page .button-muted:hover,
.simulator-simple-page .button-muted:focus-visible {
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(124, 58, 237, 0.28);
}

.simulator-simple-page .button {
  color: var(--purple-strong);
  border: 1px solid rgba(124, 58, 237, 0.18);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1),
    rgba(221, 214, 254, 0.82)
  );
  box-shadow: 0 10px 20px rgba(91, 33, 182, 0.08);
}

.simulator-simple-page .button:hover,
.simulator-simple-page .button:focus-visible {
  box-shadow: 0 14px 24px rgba(91, 33, 182, 0.1);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.14),
    rgba(221, 214, 254, 0.92)
  );
}

.simulator-simple-page .simple-booking-intro,
.simulator-simple-page .booking-form-card,
.simulator-simple-page .summary-card {
  color: var(--ink);
  border-color: rgba(124, 58, 237, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99),
    rgba(246, 239, 255, 0.99)
  );
  box-shadow: var(--shadow-light);
}

.simulator-simple-page .simple-card-title,
.simulator-simple-page .summary-title,
.simulator-simple-page .booking-builder-lead,
.simulator-simple-page .booking-step-title,
.simulator-simple-page .player-sheet-title {
  color: var(--ink);
}

.simulator-simple-page .simple-card-copy,
.simulator-simple-page .booking-step-copy,
.simulator-simple-page .summary-empty,
.simulator-simple-page .booking-builder-lead,
.simulator-simple-page .selector-meta,
.simulator-simple-page .selector-copy,
.simulator-simple-page .slot-status {
  color: var(--ink-soft);
}

.simulator-simple-page .selector-card {
  color: var(--ink);
  border-color: rgba(124, 58, 237, 0.12);
  background: rgba(124, 58, 237, 0.06);
}

.simulator-simple-page .selector-card:hover,
.simulator-simple-page .selector-card:focus-visible {
  border-color: rgba(124, 58, 237, 0.24);
  background: rgba(124, 58, 237, 0.1);
}

.simulator-simple-page .selector-card.is-selected {
  border-color: rgba(124, 58, 237, 0.44);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.18),
    rgba(221, 214, 254, 0.8)
  );
  box-shadow: 0 16px 28px rgba(91, 33, 182, 0.12);
}

.simulator-simple-page .selector-kicker {
  color: var(--purple-strong);
}

.simulator-simple-page .calendar-card {
  border-color: rgba(124, 58, 237, 0.12);
  background: rgba(124, 58, 237, 0.05);
}

.simulator-simple-page .calendar-nav {
  color: var(--purple-strong);
  border-color: rgba(124, 58, 237, 0.16);
  background: rgba(124, 58, 237, 0.08);
}

.simulator-simple-page .calendar-nav:hover,
.simulator-simple-page .calendar-nav:focus-visible {
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.22);
}

.simulator-simple-page .calendar-month {
  color: var(--ink);
}

.simulator-simple-page .calendar-helper,
.simulator-simple-page .calendar-selection {
  color: var(--ink-soft);
}

.simulator-simple-page .calendar-weekdays span {
  color: var(--purple-strong);
}

.simulator-simple-page .calendar-empty {
  border-color: rgba(124, 58, 237, 0.08);
  background: rgba(124, 58, 237, 0.02);
}

.simulator-simple-page .calendar-day {
  color: var(--ink);
  border-color: rgba(124, 58, 237, 0.12);
  background: rgba(255, 255, 255, 0.84);
}

.simulator-simple-page .calendar-day.is-open {
  background: rgba(124, 58, 237, 0.08);
}

.simulator-simple-page .calendar-day.is-limited {
  background: rgba(196, 181, 253, 0.38);
}

.simulator-simple-page .calendar-day.is-booked,
.simulator-simple-page .calendar-day.is-disabled {
  color: #9287a7;
  background: rgba(124, 58, 237, 0.03);
}

.simulator-simple-page .calendar-day.is-selected {
  color: var(--surface);
  border-color: rgba(124, 58, 237, 0.48);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.95),
    rgba(91, 33, 182, 0.88)
  );
}

.simulator-simple-page .calendar-day-meta {
  color: var(--ink-soft);
}

.simulator-simple-page .calendar-day.is-selected .calendar-day-meta {
  color: rgba(255, 255, 255, 0.88);
}

.simulator-simple-page .slot-button {
  color: var(--ink);
  border-color: rgba(124, 58, 237, 0.12);
  background: rgba(124, 58, 237, 0.05);
}

.simulator-simple-page .slot-button.is-open {
  background: rgba(124, 58, 237, 0.06);
}

.simulator-simple-page .slot-button.is-limited {
  background: rgba(196, 181, 253, 0.32);
  border-color: rgba(124, 58, 237, 0.16);
}

.simulator-simple-page .slot-button.is-booked {
  color: #9287a7;
  background: rgba(124, 58, 237, 0.03);
}

.simulator-simple-page .slot-button.is-selected {
  color: var(--surface);
  border-color: rgba(124, 58, 237, 0.42);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.96),
    rgba(91, 33, 182, 0.9)
  );
}

.simulator-simple-page .slot-button.is-selected .slot-status {
  color: rgba(255, 255, 255, 0.82);
}

.simulator-simple-page .player-sheet {
  border-color: rgba(124, 58, 237, 0.12);
  background: rgba(124, 58, 237, 0.04);
}

.simulator-simple-page .checkbox-field {
  border-color: rgba(124, 58, 237, 0.12);
  background: rgba(124, 58, 237, 0.04);
}

.simulator-simple-page .checkbox-copy {
  color: var(--ink);
}

.simulator-simple-page .checkbox-note {
  color: var(--ink-soft);
}

.simulator-simple-page .field input,
.simulator-simple-page .field select,
.simulator-simple-page .field textarea {
  color: var(--ink);
  border-color: rgba(124, 58, 237, 0.14);
  background-color: rgba(255, 255, 255, 0.92);
}

.simulator-simple-page .field select {
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(18, 12, 29, 0.75) 50%),
    linear-gradient(135deg, rgba(18, 12, 29, 0.75) 50%, transparent 50%);
}

.simulator-simple-page .field input::placeholder,
.simulator-simple-page .field textarea::placeholder {
  color: #8b84a3;
}

.simulator-simple-page .field input:focus,
.simulator-simple-page .field select:focus,
.simulator-simple-page .field textarea:focus {
  border-color: rgba(124, 58, 237, 0.34);
  background-color: rgba(248, 244, 255, 0.98);
}

.simulator-simple-page .summary-value {
  color: var(--ink);
}

.simulator-simple-page .footer-copy,
.simulator-simple-page .footer-note,
.simulator-simple-page .footer-meta {
  color: var(--text-soft);
}

.home-page {
  color: var(--ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(168, 85, 247, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(196, 181, 253, 0.3),
      transparent 24%
    ),
    radial-gradient(
      circle at 50% 45%,
      rgba(221, 214, 254, 0.42),
      transparent 34%
    ),
    linear-gradient(180deg, #fcfbff 0%, #f4edff 48%, #ffffff 100%);
}

.home-page::before {
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.16),
    transparent 72%
  );
}

.home-page::after {
  background: radial-gradient(
    circle,
    rgba(196, 181, 253, 0.28),
    transparent 74%
  );
}

.home-page .page-header-section {
  display: none;
}

.home-page .announcement-row {
  border-color: rgba(124, 58, 237, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(247, 241, 255, 0.96)
  );
}

.home-page .site-header {
  background: rgba(255, 255, 255, 0.84);
  border-bottom-color: rgba(124, 58, 237, 0.16);
}

.home-page .brand-name {
  color: var(--ink);
}

.home-page .brand-kicker,
.home-page .section-label,
.home-page .eyebrow,
.home-page .panel-kicker,
.home-page .map-chip,
.home-page .detail-label,
.home-page .inventory-icon,
.home-page .community-tag {
  color: var(--purple-strong);
}

.home-page .nav-list a {
  color: var(--ink-soft);
}

.home-page .nav-list a:hover,
.home-page .nav-list a:focus-visible,
.home-page .nav-list a.is-active {
  color: var(--purple-strong);
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.18);
}

.home-page .button {
  color: var(--purple-strong);
  border: 1px solid rgba(124, 58, 237, 0.18);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1),
    rgba(221, 214, 254, 0.82)
  );
  box-shadow: 0 10px 20px rgba(91, 33, 182, 0.08);
}

.home-page .button:hover,
.home-page .button:focus-visible {
  box-shadow: 0 14px 24px rgba(91, 33, 182, 0.1);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.14),
    rgba(221, 214, 254, 0.92)
  );
}

.home-page .button-muted {
  color: var(--purple-strong);
  border-color: rgba(124, 58, 237, 0.18);
  background: rgba(124, 58, 237, 0.08);
}

.home-page .button-muted:hover,
.home-page .button-muted:focus-visible {
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(124, 58, 237, 0.28);
}

.home-page .button-placeholder {
  color: var(--ink-soft);
  border-color: rgba(124, 58, 237, 0.14);
  background: rgba(124, 58, 237, 0.05);
}

.home-page .page-header-card,
.home-page .page-header-panel,
.home-page .hero-copy,
.home-page .hero-panel,
.home-page .story-card,
.home-page .values-card,
.home-page .inventory-card,
.home-page .detail-card,
.home-page .map-card,
.home-page .community-card {
  color: var(--ink);
  border-color: rgba(124, 58, 237, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99),
    rgba(246, 239, 255, 0.99)
  );
  box-shadow: var(--shadow-light);
}

.home-page .page-header-card::after,
.home-page .hero-copy::after {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.14),
    rgba(124, 58, 237, 0.04)
  );
}

.home-page .hero-copy::before {
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.18),
    transparent 72%
  );
}

.home-page .page-header-brand,
.home-page .hero-title,
.home-page .panel-title,
.home-page .section-title,
.home-page .map-title {
  color: var(--ink);
}

.home-page .hero-title {
  max-width: 11ch;
}

.home-page .hero-summary {
  max-width: 54ch;
}

.home-page .home-spotlight-card .hero-actions .button:first-child {
  min-width: 10rem;
}

.home-page .page-header-summary,
.home-page .hero-summary,
.home-page .panel-copy,
.home-page .section-lead,
.home-page .section-copy,
.home-page .value-copy,
.home-page .inventory-copy,
.home-page .inventory-note,
.home-page .detail-copy,
.home-page .community-card p,
.home-page .footer-copy,
.home-page .footer-note,
.home-page .footer-meta {
  color: var(--ink-soft);
}

.home-page .highlight-card,
.home-page .value-item {
  border-color: rgba(124, 58, 237, 0.12);
  background: rgba(124, 58, 237, 0.06);
}

.home-page .highlight-value,
.home-page .highlight-label {
  color: var(--ink);
}

.home-page .snapshot-label,
.home-page .page-header-detail-label {
  color: var(--purple-strong);
}

.home-page .snapshot-value,
.home-page .page-header-detail-value,
.home-page .value-title,
.home-page .inventory-name,
.home-page .community-card h3,
.home-page .detail-value {
  color: var(--ink);
}

.home-page .media-placeholder {
  color: var(--ink);
  border-color: rgba(124, 58, 237, 0.14);
  background:
    radial-gradient(
      circle at top left,
      rgba(168, 85, 247, 0.14),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(241, 232, 255, 0.98)
    );
}

.home-page .brand-showcase-frame {
  border-color: rgba(124, 58, 237, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99),
    rgba(247, 241, 255, 0.99)
  );
}

.home-page .brand-showcase-badges span {
  color: var(--purple-strong);
  border-color: rgba(124, 58, 237, 0.12);
  background: rgba(124, 58, 237, 0.08);
}

.home-page .media-copy {
  color: var(--ink-soft);
}

.home-page #about,
.home-page .inventory-section,
.home-page .events-section,
.home-page .visit-section,
.home-page .community-section {
  background: transparent;
}

.home-page .inventory-section .section-title,
.home-page .inventory-section .section-lead,
.home-page .visit-section .section-title,
.home-page .visit-section .section-lead {
  color: var(--ink);
}

.home-page .detail-card {
  background: rgba(124, 58, 237, 0.05);
}

.home-page .detail-label {
  color: var(--purple-strong);
  background: rgba(124, 58, 237, 0.08);
}

.home-page .map-card::before {
  background:
    linear-gradient(
      90deg,
      transparent 0 48%,
      rgba(124, 58, 237, 0.06) 48% 52%,
      transparent 52% 100%
    ),
    linear-gradient(
      0deg,
      transparent 0 48%,
      rgba(124, 58, 237, 0.06) 48% 52%,
      transparent 52% 100%
    ),
    radial-gradient(
      circle at 30% 35%,
      rgba(168, 85, 247, 0.2),
      transparent 15%
    ),
    radial-gradient(
      circle at 62% 62%,
      rgba(124, 58, 237, 0.12),
      transparent 14%
    );
}

.home-page .map-prompt {
  color: var(--purple-strong);
  border: 1px solid rgba(124, 58, 237, 0.18);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1),
    rgba(221, 214, 254, 0.82)
  );
}

.home-page .community-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.home-page .community-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page .community-tag {
  background: rgba(124, 58, 237, 0.08);
}

.home-page .site-footer {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(244, 237, 255, 0.92)
  );
  border-top-color: rgba(124, 58, 237, 0.14);
}

.home-page .footer-brand {
  color: var(--ink);
}

.store-page .site-footer {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(244, 237, 255, 0.92)
  );
  border-top-color: rgba(124, 58, 237, 0.14);
}

.store-page .footer-brand {
  color: var(--ink);
}

.store-page .footer-copy,
.store-page .footer-note,
.store-page .footer-meta {
  color: var(--ink-soft);
}

.store-cart-toggle {
  gap: 0.65rem;
}

.store-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  min-height: 1.75rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  color: var(--surface);
  font-size: 0.88rem;
  font-weight: 800;
  background: rgba(91, 33, 182, 0.88);
}

.store-shell {
  display: grid;
  gap: 1.5rem;
}

.store-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
}

.store-hero-card,
.store-side-card,
.store-card {
  min-width: 0;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99),
    rgba(246, 239, 255, 0.99)
  );
  box-shadow: var(--shadow-light);
}

.store-hero-card,
.store-side-card {
  padding: clamp(1.35rem, 2.6vw, 1.8rem);
}

.store-hero-card {
  display: grid;
  gap: 1rem;
}

.store-title {
  margin: 0;
  max-width: 12ch;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  line-height: 0.94;
  color: var(--ink);
  text-wrap: balance;
}

.store-summary {
  max-width: 60ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.75;
}

.store-chip-list,
.store-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-search-form {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(124, 58, 237, 0.04);
}

.store-search-label {
  color: var(--purple-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-search-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.75rem;
}

.store-search-input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.9rem 1rem;
  color: var(--ink);
  font: inherit;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.store-search-input::placeholder {
  color: rgba(96, 88, 116, 0.9);
}

.store-search-input:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.22);
  outline-offset: 2px;
  border-color: rgba(124, 58, 237, 0.22);
}

.store-search-button,
.store-search-clear {
  min-width: 7.2rem;
}

.store-search-status {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.home-utility-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99),
    rgba(246, 239, 255, 0.99)
  );
  box-shadow: var(--shadow-light);
}

.home-utility-copy {
  display: grid;
  gap: 0.45rem;
  max-width: 38rem;
}

.home-utility-title {
  margin: 0;
  color: var(--ink);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.home-utility-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-page-title {
  max-width: 14ch;
}

.about-page-actions {
  margin-top: 0.35rem;
}

.store-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--purple-strong);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(124, 58, 237, 0.1);
}

.store-side-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.store-detail-list {
  display: grid;
  gap: 0.9rem;
}

.store-detail-item {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(18, 12, 29, 0.08);
}

.store-detail-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.store-detail-label,
.store-card-tag {
  color: var(--purple-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-detail-value {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.6;
}

.store-section-heading {
  max-width: 58rem;
  margin-bottom: 1.2rem;
}

.store-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.store-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.store-reference-stack {
  display: grid;
  gap: 1.35rem;
}

.store-jump-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.store-search-feedback {
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  border: 1px dashed rgba(124, 58, 237, 0.22);
  border-radius: var(--radius-lg);
  color: var(--purple-strong);
  font-weight: 700;
  background: rgba(124, 58, 237, 0.05);
}

.store-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem;
}

.store-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
}

.store-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.store-brand-card {
  align-content: start;
}

.terms-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.terms-card {
  align-content: start;
}

.terms-title {
  margin: 0;
  color: var(--ink);
  font-size: 1.26rem;
  font-weight: 800;
  line-height: 1.3;
}

.terms-copy {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.terms-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.terms-list li {
  line-height: 1.7;
}

.promo-leads-header {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.promo-leads-empty {
  padding: 1rem 1.1rem;
  border: 1px dashed rgba(124, 58, 237, 0.22);
  border-radius: var(--radius-lg);
  color: var(--purple-strong);
  font-weight: 700;
  background: rgba(124, 58, 237, 0.05);
}

.promo-leads-table-shell {
  overflow-x: auto;
}

.promo-leads-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.promo-leads-table th,
.promo-leads-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(124, 58, 237, 0.12);
}

.promo-leads-table th {
  color: var(--purple-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promo-leads-table td {
  color: var(--ink-soft);
  line-height: 1.6;
}

.store-reference-category {
  padding: 1.35rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99),
    rgba(248, 243, 255, 0.98)
  );
  box-shadow: var(--shadow-light);
}

.store-category-header {
  display: grid;
  gap: 0.8rem 1.5rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: end;
  margin-bottom: 1rem;
}

.store-category-header h3 {
  margin: 0.35rem 0 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  font-weight: 800;
}

.store-category-header p {
  margin: 0;
  max-width: 34rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.store-product-grid {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  overflow-x: auto;
  padding: 0.15rem 0 0.9rem;
  scroll-padding-left: 0;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 58, 237, 0.24) rgba(124, 58, 237, 0.06);
}

.store-product-card {
  flex: 0 0 clamp(255px, 27vw, 305px);
  display: grid;
  gap: 0.9rem;
  padding: 0.9rem;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: calc(var(--radius-xl) - 8px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 26px rgba(28, 16, 58, 0.08);
  scroll-snap-align: start;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.store-product-card-featured {
  flex-basis: clamp(270px, 29vw, 320px);
  border-color: rgba(124, 58, 237, 0.18);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(243, 237, 255, 0.98)
  );
}

.store-product-card.is-interactive {
  cursor: pointer;
}

.store-product-card.is-interactive:hover,
.store-product-card.is-interactive:focus-visible,
.popular-product-link:hover,
.popular-product-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 18px 34px rgba(28, 16, 58, 0.13);
}

.store-product-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 1rem;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 12px);
  background:
    radial-gradient(circle at top, rgba(124, 58, 237, 0.14), transparent 45%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(239, 232, 252, 0.94)
    );
}

.store-product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  color: var(--purple-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(28, 16, 58, 0.08);
}

.store-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(28, 16, 58, 0.16));
}

.store-product-body {
  display: grid;
  gap: 0.3rem;
}

.store-product-brand {
  margin: 0;
  color: var(--purple-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-product-name {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.store-product-meta {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}

.store-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.65rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(18, 12, 29, 0.08);
}

.store-product-price {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.store-product-cta {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: var(--purple-strong);
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(124, 58, 237, 0.1);
}

.store-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(18, 12, 29, 0.34);
  backdrop-filter: blur(6px);
}

.store-sheet {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(31rem, 100vw);
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.2rem;
  padding: 1.25rem;
  border-left: 1px solid rgba(124, 58, 237, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99),
    rgba(245, 239, 255, 0.98)
  );
  box-shadow: -22px 0 44px rgba(18, 12, 29, 0.18);
}

.store-cart-drawer {
  width: min(34rem, 100vw);
}

.store-sheet-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.store-sheet-title {
  margin: 0.3rem 0 0;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 800;
}

.store-sheet-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 999px;
  color: var(--purple-strong);
  font: inherit;
  font-weight: 800;
  background: rgba(124, 58, 237, 0.08);
  cursor: pointer;
}

.store-sheet-close:hover,
.store-sheet-close:focus-visible {
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(124, 58, 237, 0.24);
}

.store-sheet-close span[aria-hidden="true"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  background: rgba(124, 58, 237, 0.12);
}

.store-sheet-body,
.store-cart-body {
  min-height: 0;
  overflow: auto;
}

.store-sheet-body {
  display: grid;
  gap: 1.15rem;
  align-content: start;
}

.store-sheet-media {
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, rgba(124, 58, 237, 0.12), transparent 40%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(239, 232, 252, 0.94)
    );
}

.store-sheet-image {
  width: min(100%, 320px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(28, 16, 58, 0.14));
}

.store-sheet-copy {
  display: grid;
  gap: 0.45rem;
}

.store-sheet-brand {
  margin: 0;
  color: var(--purple-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-sheet-name {
  margin: 0;
  color: var(--ink);
  font-size: 1.75rem;
  font-weight: 800;
}

.store-sheet-meta,
.store-sheet-note,
.store-cart-note,
.store-cart-empty,
.store-cart-item-meta {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.store-sheet-price {
  margin: 0.2rem 0 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
}

.store-quantity-row {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.store-quantity-label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.store-quantity-controls,
.store-cart-item-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.store-quantity-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 50%;
  color: var(--purple-strong);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  background: rgba(124, 58, 237, 0.08);
  cursor: pointer;
}

.store-quantity-input {
  width: 4.5rem;
  min-height: 2.65rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
}

.store-sheet-add {
  width: 100%;
  margin-top: 0.8rem;
}

.store-cart-list {
  display: grid;
  gap: 0.9rem;
}

.store-cart-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.95rem;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
}

.store-cart-item-media {
  display: grid;
  place-items: center;
  padding: 0.4rem;
  border-radius: var(--radius-md);
  background: rgba(124, 58, 237, 0.05);
}

.store-cart-item-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.store-cart-item-copy {
  display: grid;
  gap: 0.55rem;
}

.store-cart-item-top,
.store-cart-item-bottom,
.store-cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.store-cart-item-brand {
  margin: 0;
  color: var(--purple-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-cart-item-name {
  margin: 0.2rem 0 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.store-cart-item-quantity {
  min-width: 1.3rem;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.store-cart-item-price,
.store-cart-summary-row strong {
  color: var(--ink);
  font-size: 1rem;
}

.store-cart-remove {
  border: 0;
  padding: 0;
  color: var(--purple-strong);
  font: inherit;
  font-weight: 800;
  background: transparent;
  cursor: pointer;
}

.store-cart-summary {
  display: grid;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 12, 29, 0.08);
}

.checkout-section {
  display: grid;
  gap: 1rem;
}

.checkout-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.15rem;
}

.checkout-step {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.5rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 800;
  background: rgba(124, 58, 237, 0.06);
}

.checkout-step.is-active {
  color: var(--purple-strong);
  border-color: rgba(124, 58, 237, 0.22);
  background: rgba(124, 58, 237, 0.12);
}

.checkout-step.is-complete {
  color: var(--ink);
  border-color: rgba(124, 58, 237, 0.16);
  background: rgba(124, 58, 237, 0.08);
}

.checkout-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  color: var(--purple-strong);
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.9);
}

.checkout-section + .checkout-section {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(124, 58, 237, 0.12);
}

.checkout-section-heading {
  display: grid;
  gap: 0.35rem;
}

.checkout-section-title {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 800;
}

.checkout-section-copy {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.checkout-shipping-fields {
  margin-top: 0.15rem;
}

.checkout-empty-state {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.checkout-empty-state a {
  color: var(--purple-strong);
  font-weight: 800;
}

.checkout-order-list {
  max-height: 22rem;
  margin-top: 1rem;
  overflow: auto;
  padding-right: 0.2rem;
}

.checkout-quantity-label {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.checkout-summary-divider {
  margin: 1.1rem 0;
  border: 0;
  border-top: 1px solid rgba(18, 12, 29, 0.08);
}

.checkout-totals {
  margin-top: 0;
}

.checkout-total-row {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(18, 12, 29, 0.08);
}

.checkout-summary-note {
  margin-top: 1rem;
}

.review-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: var(--radius-md);
  background: rgba(124, 58, 237, 0.04);
}

.review-list {
  display: grid;
  gap: 0.9rem;
}

.review-item {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(18, 12, 29, 0.08);
}

.review-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.review-value {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.6;
  white-space: pre-line;
}

.review-address,
.review-note {
  margin: 0;
  color: var(--ink);
  line-height: 1.7;
  white-space: pre-line;
}

.checkout-help-card {
  align-content: start;
}

.checkout-help-card .feature-list {
  margin-top: 0.25rem;
}

.checkout-help-card .feature-list li {
  color: var(--ink-soft);
}

.checkout-submit:disabled {
  cursor: not-allowed;
  opacity: 0.64;
  transform: none;
  box-shadow: none;
}

.checkout-page .store-hero-grid {
  grid-template-columns: 1fr;
}

.checkout-page .store-hero-card {
  gap: 0.75rem;
  max-width: 52rem;
}

.checkout-page .store-title {
  max-width: 9ch;
  font-size: clamp(2.3rem, 6vw, 3.6rem);
}

.checkout-page .store-summary {
  max-width: 48ch;
}

.checkout-page .store-action-row {
  margin-top: 0.25rem;
}

.checkout-page .simple-booking-main {
  gap: 1.35rem;
}

.checkout-page .checkout-section + .checkout-section {
  padding-top: 1.2rem;
}

.checkout-page .checkout-order-list {
  margin-top: 0.8rem;
}

.checkout-page .simple-booking-board {
  align-items: start;
}

.store-cart-checkout:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.store-overlay.is-hidden,
.store-sheet.is-hidden {
  display: none;
  pointer-events: none;
}

.store-card-action {
  width: fit-content;
  margin-top: 0.4rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-header-grid,
  .about-grid,
  .visit-grid,
  .community-grid,
  .store-hero-grid,
  .booking-hero-grid,
  .booking-layout,
  .simple-booking-board {
    grid-template-columns: 1fr;
  }

  .community-cards,
  .faq-grid,
  .store-support-grid,
  .store-brand-grid,
  .events-grid,
  .terms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-category-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .simple-booking-intro {
    grid-template-columns: 1fr;
  }

  .simple-location-row {
    padding: 0.85rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(124, 58, 237, 0.12);
  }

  .simple-booking-side .summary-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4rem 0;
  }

  body::before,
  body::after {
    display: none;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .nav-row,
  .footer-row,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header-row {
    align-items: stretch;
  }

  .brand-lockup {
    width: 100%;
  }

  .site-nav {
    width: 100%;
    min-width: 0;
  }

  .nav-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: flex-start;
    width: 100%;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-copy,
  .hero-panel,
  .story-card,
  .values-card,
  .map-card {
    padding: 1.3rem;
  }

  .hero-title {
    font-size: clamp(2.7rem, 14vw, 4rem);
    max-width: 8ch;
  }

  .panel-title,
  .section-title,
  .map-title {
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .hero-panel-actions,
  .popular-action-row,
  .page-header-actions,
  .hero-highlights,
  .inventory-grid,
  .events-grid,
  .detail-grid,
  .community-cards,
  .store-brand-grid,
  .store-support-grid,
  .home-utility-actions,
  .store-action-row,
  .site-header-actions,
  .store-header-actions,
  .booking-micro-grid,
  .selector-grid-wide,
  .selector-grid-compact,
  .slot-grid,
  .field-grid,
  .player-sheet-grid,
  .faq-grid,
  .simple-booking-main .selector-grid-wide,
  .simple-booking-main .slot-grid {
    grid-template-columns: 1fr;
  }

  .store-search-controls {
    grid-template-columns: 1fr;
  }

  .terms-grid {
    grid-template-columns: 1fr;
  }

  .brand-showcase-frame {
    min-height: 0;
  }

  .store-product-grid {
    padding-bottom: 0.8rem;
  }

  .store-sheet,
  .store-cart-drawer {
    width: 100vw;
    padding: 1rem;
  }

  .store-cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .store-cart-item-top,
  .store-cart-item-bottom,
  .store-cart-summary-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .simple-booking-section {
    padding-top: 3.5rem;
  }

  .simple-booking-intro,
  .simple-booking-main,
  .simple-form-card,
  .summary-card {
    padding: 1.35rem;
  }

  .simple-booking-banner {
    height: 278px;
  }

  .simple-booking-banner-image {
    object-position: 60% 26%;
  }

  .simple-location-row {
    align-items: stretch;
    flex-direction: column;
    padding-top: 0.75rem;
  }

  .simple-location-details {
    grid-template-columns: 1fr;
  }

  .booking-title {
    max-width: 7ch;
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .summary-card,
  .sidebar-card,
  .booking-form-card {
    padding: 1.25rem;
  }

  .booking-hero-copy,
  .booking-hero-panel {
    padding: 1.35rem;
  }

  .calendar-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .calendar-heading {
    justify-items: flex-start;
    text-align: left;
  }

  .calendar-empty,
  .calendar-day {
    min-height: 4.2rem;
  }

  .calendar-day-number {
    font-size: 0.95rem;
  }

  .calendar-day-meta {
    font-size: 0.68rem;
  }

  .button,
  .button-muted,
  .button-placeholder {
    width: 100%;
  }

  .announcement-row,
  .announcement-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-utility-card {
    align-items: stretch;
    flex-direction: column;
  }
}

.schedule-hero-actions {
  margin-bottom: 0;
}

.schedule-location-row {
  align-items: end;
}

.schedule-location-actions {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}

.schedule-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0 1.35rem 1.35rem;
}

.schedule-proof-card {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: calc(var(--radius-xl) - 10px);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95),
      rgba(245, 238, 255, 0.95)
    );
}

.schedule-proof-label {
  color: var(--purple-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule-proof-value {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.schedule-location-copy,
.schedule-booking-helper,
.schedule-inline-terms {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.schedule-section-title {
  margin: 0;
  max-width: 16ch;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 0.96;
  color: var(--ink);
  text-wrap: balance;
}

.schedule-action-row {
  margin-top: 0.1rem;
}

.schedule-embed-card {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  overflow: visible;
}

.schedule-embed-head {
  display: block;
}

.schedule-embed-tabbar {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.schedule-embed-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.95rem;
  padding: 0.36rem 0.82rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 0.95rem 0.95rem 0.45rem 0.45rem;
  color: var(--purple-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(
    180deg,
    rgba(247, 242, 255, 0.98),
    rgba(236, 226, 255, 0.98)
  );
  box-shadow: 0 8px 18px rgba(91, 33, 182, 0.08);
}

.schedule-embed-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.85rem;
  padding: 0.28rem 0.68rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(124, 58, 237, 0.06);
}

.schedule-embed-title {
  position: relative;
  margin: 0;
  padding-bottom: 0.58rem;
  color: var(--ink);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.3rem, 2.8vw, 1.75rem);
  line-height: 1;
}

.schedule-embed-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.4rem;
  height: 0.22rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple-strong), rgba(168, 85, 247, 0.24));
}

.schedule-embed-copy {
  margin: 0;
}

.schedule-embed-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.schedule-league-callout {
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: calc(var(--radius-xl) - 12px);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.42;
  background:
    linear-gradient(
      135deg,
      rgba(124, 58, 237, 0.08),
      rgba(255, 255, 255, 0.96) 58%,
      rgba(216, 180, 254, 0.18)
    );
}

.simulator-photo-section {
  padding-top: 0;
}

.simulator-photo-head {
  max-width: 48rem;
  margin-bottom: 1rem;
}

.simulator-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.92fr));
  gap: 0.85rem;
}

.simulator-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: var(--radius-xl);
  color: #ffffff;
  background: #140424;
  box-shadow: 0 22px 48px rgba(28, 16, 58, 0.12);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.simulator-photo-card:first-child {
  min-height: 380px;
}

.simulator-photo-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.simulator-photo-card:first-child .simulator-photo-image {
  object-position: 48% 28%;
}

.simulator-photo-card:nth-child(2) .simulator-photo-image {
  object-position: 50% 42%;
}

.simulator-photo-card:nth-child(3) .simulator-photo-image {
  object-position: 50% 42%;
}

.simulator-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 26%, rgba(10, 2, 15, 0.2) 52%, rgba(10, 2, 15, 0.86) 100%),
    linear-gradient(90deg, rgba(14, 4, 24, 0.36), transparent 58%);
}

.simulator-photo-copy {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.28rem;
}

.simulator-photo-copy h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.05;
}

.simulator-photo-copy p {
  margin: 0;
  max-width: 35rem;
  color: #e9ddff;
  font-size: 0.94rem;
  line-height: 1.45;
}

.simulator-league-section {
  padding-top: 0;
}

.simulator-league-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr) auto;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.15rem, 2.4vw, 1.65rem);
  border: 1px solid rgba(216, 180, 254, 0.2);
  border-radius: var(--radius-xl);
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 10%, rgba(168, 85, 247, 0.34), transparent 32%),
    linear-gradient(135deg, #0b0710, #18052a 58%, #2e1065);
  box-shadow: 0 26px 55px rgba(18, 12, 29, 0.2);
}

.simulator-league-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -55% 35%;
  height: 12rem;
  pointer-events: none;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.32), transparent 68%);
}

.simulator-league-copy,
.simulator-league-points,
.simulator-league-cta {
  position: relative;
  z-index: 1;
}

.simulator-league-card .section-label {
  color: #d8b4fe;
}

.simulator-league-card .section-title {
  margin: 0.15rem 0 0.35rem;
  color: #ffffff;
}

.simulator-league-card .section-lead {
  margin: 0;
  color: #e9ddff;
  font-size: 0.98rem;
  line-height: 1.55;
}

.simulator-league-points {
  display: grid;
  gap: 0.55rem;
}

.simulator-league-point {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #f8f5ff;
  font-weight: 800;
  line-height: 1.35;
}

.simulator-league-point::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #a855f7;
  box-shadow: 0 0 0 0.32rem rgba(168, 85, 247, 0.14);
}

.simulator-league-cta {
  color: #2e1065;
  border-color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(135deg, #ffffff, #efe4ff);
  box-shadow: 0 18px 38px rgba(8, 3, 12, 0.22);
  white-space: nowrap;
}

.simulator-league-cta:hover,
.simulator-league-cta:focus-visible {
  color: #1d073f;
  background: linear-gradient(135deg, #ffffff, #f8f3ff);
  box-shadow: 0 22px 42px rgba(8, 3, 12, 0.3);
}

.schedule-embed-fact {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
  padding: 0.78rem 0.8rem;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: calc(var(--radius-xl) - 12px);
  background: rgba(124, 58, 237, 0.05);
}

.schedule-embed-fact-label {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule-embed-fact-value {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.35;
}

.square-embed-placeholder {
  display: grid;
  gap: 0.85rem;
  overflow: hidden;
  min-height: 258px;
  padding: 0.85rem;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: calc(var(--radius-xl) - 10px);
  color: var(--ink);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(246, 239, 255, 0.98)
      );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.square-embed-live-shell {
  align-content: start;
}

.square-embed-live {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 12px);
  background: #fff;
  box-shadow: 0 16px 40px rgba(18, 12, 29, 0.08);
}

.square-embed-live-note,
.square-embed-fallback {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}

.square-embed-fallback {
  display: grid;
  gap: 0.5rem;
}

.square-embed-fallback strong {
  color: var(--ink);
  font-size: 1rem;
}

.square-embed-topbar {
  display: flex;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  background: rgba(124, 58, 237, 0.04);
}

.square-embed-topbar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.22);
}

.square-embed-body {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  padding: 1.15rem;
}

.square-embed-body strong {
  font-size: 1rem;
  font-weight: 800;
}

.square-embed-body p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.square-embed-skeleton {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.3rem;
}

.square-embed-line {
  display: block;
  height: 0.8rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
}

.square-embed-line.is-wide {
  width: 100%;
}

.square-embed-line.is-short {
  width: 52%;
}

.square-embed-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-top: 0.15rem;
}

.square-embed-pill {
  width: 4.6rem;
  height: 2.1rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
}

.schedule-embed-card .schedule-points {
  color: var(--ink-soft);
}

.schedule-embed-actions {
  display: grid;
  gap: 0.5rem;
}

.schedule-embed-actions .button {
  width: 100%;
}

.schedule-embed-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.schedule-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.schedule-card {
  min-height: 100%;
}

.schedule-price-card {
  align-content: start;
}

.schedule-price {
  color: var(--purple-strong);
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
}

.schedule-points {
  margin: 0;
}

.schedule-seo-card {
  gap: 1rem;
}

.schedule-footer-row {
  align-items: start;
  gap: 1.5rem;
}

.schedule-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding: 1.25rem 1.35rem;
}

.schedule-footer-cta-copy {
  display: grid;
  gap: 0.45rem;
}

.schedule-footer-cta .schedule-section-title {
  max-width: 15ch;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.schedule-footer-details {
  display: grid;
  gap: 0.45rem;
  justify-items: start;
  color: var(--text-soft);
}

.schedule-footer-details p {
  margin: 0;
}

.schedule-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.mobile-booking-bar {
  display: none;
}

.simulator-square-page .section {
  padding: 2.75rem 0;
}

.simulator-square-page #booking-main::before,
.simulator-square-page #booking-main::after {
  content: none;
  display: none;
}

.simulator-square-page .site-header {
  background: rgba(8, 3, 12, 0.96);
  border-bottom-color: rgba(196, 181, 253, 0.28);
  box-shadow: 0 14px 30px rgba(7, 2, 10, 0.3);
}

.simulator-square-page .nav-row {
  padding: 0.75rem 0;
}

.simulator-square-page .site-header-row {
  gap: 0.85rem;
}

.simulator-square-page .brand-mark-shell {
  width: clamp(3.9rem, 8vw, 5.5rem);
  padding: 0.2rem 0.35rem;
  border-radius: 0.95rem;
}

.simulator-square-page .brand-kicker {
  color: #d8b4fe;
}

.simulator-square-page .brand-name {
  color: #ffffff;
}

.simulator-square-page .brand-mark-shell {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 26px rgba(4, 2, 8, 0.28);
}

.simulator-square-page .site-header-actions {
  margin-left: auto;
}

.simulator-square-page .site-header-actions .button,
.simulator-square-page .site-header-actions .button-muted {
  min-height: 2.85rem;
  padding: 0.72rem 1rem;
}

.simulator-square-page .site-header-call {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.simulator-square-page .site-header-call:hover,
.simulator-square-page .site-header-call:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}

.simulator-square-page .site-header-book {
  color: #ffffff;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.38);
}

.simulator-square-page .site-header-book:hover,
.simulator-square-page .site-header-book:focus-visible {
  box-shadow: 0 18px 34px rgba(124, 58, 237, 0.48);
}

.simulator-square-page .simple-booking-section {
  padding-top: 1.2rem;
}

.simulator-square-page .simple-booking-shell {
  gap: 0.6rem;
}

.simulator-square-page .simple-booking-hero {
  border-color: rgba(124, 58, 237, 0.18);
  box-shadow: 0 28px 60px rgba(18, 12, 29, 0.12);
}

.simulator-square-page .simple-booking-banner {
  height: clamp(270px, 31vw, 350px);
}

.simulator-square-page .simple-booking-banner::after {
  background:
    linear-gradient(
      180deg,
      rgba(18, 12, 29, 0.03) 0%,
      rgba(18, 12, 29, 0.2) 44%,
      rgba(18, 12, 29, 0.84) 100%
    ),
    linear-gradient(
      90deg,
      rgba(7, 9, 10, 0.56) 0%,
      rgba(7, 9, 10, 0.15) 54%,
      rgba(34, 197, 94, 0.08) 100%
    );
}

.simulator-square-page .simple-booking-banner-image {
  object-position: 50% 42%;
}

.simulator-square-page .simple-booking-banner-title {
  max-width: 15ch;
  font-size: clamp(1.4rem, 2.7vw, 2.15rem);
}

.simulator-square-page .simple-booking-intro {
  gap: 0.55rem;
  padding: 0.95rem 1rem 1rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.8fr);
}

.simulator-square-page .simple-booking-intro-main {
  gap: 0.45rem;
}

.simulator-square-page .simple-title {
  max-width: 9ch;
  font-size: clamp(2.05rem, 3.9vw, 3rem);
}

.simulator-square-page .simple-summary {
  max-width: 28rem;
  line-height: 1.48;
}

.simulator-square-page .hero-actions {
  gap: 0.6rem;
  align-items: center;
}

.simulator-square-page #book-online .container {
  margin-top: -1.2rem;
}

.simulator-square-page .schedule-booking-shell {
  width: min(100%, 900px);
  margin: 0 auto;
  min-width: 0;
}

.simulator-square-page .store-side-card {
  padding: 1.15rem 1.2rem;
  min-width: 0;
}

.simulator-square-page .store-title.schedule-section-title {
  max-width: 11ch;
  font-size: clamp(2.1rem, 4vw, 3.15rem);
}

.simulator-square-page .schedule-action-row {
  gap: 0.6rem;
}

.simulator-square-page .schedule-inline-terms {
  margin: 0.05rem 0 0;
}

.simulator-square-page .schedule-embed-card {
  gap: 0.72rem;
}

.simulator-square-page .schedule-embed-card-standalone {
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 28px 70px rgba(39, 15, 74, 0.13);
}

.simulator-square-page .schedule-embed-card-standalone::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.28rem;
  background: linear-gradient(90deg, var(--purple-strong), #c084fc, #ffffff, var(--purple-strong));
  background-size: 220% 100%;
  animation: simulatorAccentSweep 8s ease-in-out infinite;
}

.simulator-square-page .schedule-embed-title {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
}

.simulator-square-page .schedule-embed-facts {
  gap: 0.55rem;
}

.simulator-square-page .schedule-embed-fact {
  padding: 0.75rem 0.8rem;
}

.simulator-square-page .square-embed-placeholder {
  gap: 0.6rem;
  padding: 0.8rem;
  min-height: 0;
}

.simulator-square-page #square-embed-placeholder iframe {
  width: 100% !important;
  border: 0;
  border-radius: calc(var(--radius-xl) - 14px);
  background: #fff;
}

.simulator-square-page .section-heading {
  margin-bottom: 0.9rem;
  max-width: 42rem;
}

.simulator-square-page #how-it-works {
  padding-top: 1.9rem;
}

.simulator-square-page #how-it-works .container {
  width: min(calc(100% - 2rem), 1080px);
  min-width: 0;
  overflow-x: clip;
}

.simulator-square-page .section-title {
  margin: 0.35rem 0 0.55rem;
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
}

.simulator-square-page .section-lead {
  line-height: 1.55;
}

.simulator-square-page .schedule-grid,
.simulator-square-page .faq-grid {
  gap: 0.85rem;
  min-width: 0;
}

.simulator-square-page .schedule-card,
.simulator-square-page .faq-card {
  padding: 1.1rem;
  min-width: 0;
}

.simulator-square-page #how-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.simulator-square-page #how-grid .schedule-card {
  padding: 0.95rem 1rem;
}

.simulator-square-page #how-grid .schedule-card h3 {
  font-size: 1.02rem;
  line-height: 1.22;
}

.simulator-square-page #how-grid .schedule-card p {
  line-height: 1.45;
}

.simulator-square-page .schedule-price {
  font-size: clamp(1.6rem, 3vw, 2.05rem);
}

.simulator-square-page .simulator-faq {
  padding-bottom: 2rem;
}

.simulator-square-page .site-footer {
  padding: 1.5rem 0 1.9rem;
}

.simulator-square-page .schedule-footer-cta {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
}

.simulator-square-page .schedule-footer-cta-copy {
  gap: 0.3rem;
}

.simulator-square-page .schedule-footer-cta .schedule-section-title {
  max-width: 13ch;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.simulator-square-page .store-hero-card,
.simulator-square-page .store-side-card,
.simulator-square-page .store-card,
.simulator-square-page .faq-card {
  color: var(--ink);
  border-color: rgba(124, 58, 237, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99),
    rgba(246, 239, 255, 0.99)
  );
  box-shadow: var(--shadow-light);
}

.simulator-square-page .schedule-proof-card,
.simulator-square-page .schedule-footer-cta {
  border-color: rgba(124, 58, 237, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.99),
      rgba(246, 239, 255, 0.99)
    );
  box-shadow: var(--shadow-light);
}

@media (max-width: 1080px) {
  .schedule-embed-facts,
  .schedule-proof-grid,
  .schedule-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .simulator-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .simulator-square-page .schedule-embed-facts {
    grid-template-columns: 1fr;
  }

  .simulator-photo-card:first-child {
    grid-column: 1 / -1;
  }

  .simulator-league-card {
    grid-template-columns: 1fr;
  }

  .simulator-league-cta {
    width: fit-content;
  }
}

@media (max-width: 980px) {
  .simulator-square-page .simple-booking-intro {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .simulator-square-page .simple-booking-intro-side {
    padding-left: 0;
    padding-top: 0.85rem;
    border-left: 0;
    border-top: 1px solid rgba(124, 58, 237, 0.12);
  }
}

@media (max-width: 760px) {
  body.simulator-square-page {
    padding-bottom: calc(5.1rem + env(safe-area-inset-bottom));
  }

  .simulator-square-page .section {
    padding: 2.2rem 0;
  }

  .simulator-square-page .nav-row {
    padding: 0.6rem 0 0.7rem;
  }

  .simulator-square-page .site-header-row {
    gap: 0.65rem;
  }

  .simulator-square-page .brand-lockup {
    gap: 0.65rem;
  }

  .simulator-square-page .brand-mark-shell {
    width: 3.5rem;
    padding: 0.18rem 0.28rem;
  }

  .simulator-square-page .brand-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .simulator-square-page .brand-name {
    font-size: 0.98rem;
    line-height: 1;
  }

  .simulator-square-page .site-header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.55rem;
  }

  .simulator-square-page .site-header-actions .button,
  .simulator-square-page .site-header-actions .button-muted {
    width: 100%;
    min-height: 2.7rem;
    padding: 0.68rem 0.8rem;
    font-size: 0.94rem;
  }

  .mobile-booking-bar {
    position: fixed;
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
    z-index: 40;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr) minmax(0, 0.9fr);
    gap: 0.45rem;
    padding: 0.5rem;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
    border: 1px solid rgba(216, 180, 254, 0.28);
    border-radius: 1.35rem;
    background: rgba(12, 7, 18, 0.94);
    box-shadow: 0 18px 45px rgba(18, 12, 29, 0.35);
    backdrop-filter: blur(16px);
  }

  .mobile-booking-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.65rem 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-booking-primary {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(124, 58, 237, 0.38);
  }

  .simulator-square-page .simple-booking-banner {
    height: 216px;
  }

  .simulator-square-page .simple-booking-banner-title {
    max-width: 12ch;
    font-size: 1.45rem;
  }

  .simulator-square-page .simple-booking-intro {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 0.9rem;
  }

  .simulator-square-page .simple-booking-intro-side {
    gap: 0.6rem;
    padding-left: 0;
    padding-top: 0.8rem;
    border-left: 0;
    border-top: 1px solid rgba(124, 58, 237, 0.12);
  }

  .simulator-square-page .simple-title {
    max-width: 11ch;
    font-size: clamp(1.95rem, 9vw, 2.45rem);
    line-height: 0.96;
  }

  .simulator-square-page .simple-summary {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .simulator-square-page .hero-step-card {
    padding: 0.72rem 0.75rem;
    gap: 0.68rem;
  }

  .simulator-square-page .hero-step-copy h3 {
    font-size: 0.98rem;
  }

  .simulator-square-page .hero-step-copy p {
    font-size: 0.91rem;
  }

  .simulator-square-page .simple-chip-list {
    gap: 0.38rem;
  }

  .simulator-square-page .simple-chip {
    min-height: 1.8rem;
    padding: 0.32rem 0.62rem;
    font-size: 0.8rem;
  }

  .simulator-square-page .hero-actions,
  .simulator-square-page .schedule-action-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .simulator-square-page .hero-actions .button,
  .simulator-square-page .hero-actions .button-muted,
  .simulator-square-page .schedule-action-row .button,
  .simulator-square-page .schedule-action-row .button-muted {
    width: 100%;
  }

  .simulator-square-page .schedule-location-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding-left: 0;
    padding-top: 0.8rem;
    border-left: 0;
    border-top: 1px solid rgba(124, 58, 237, 0.12);
  }

  .simulator-square-page .simple-location-details {
    gap: 0.5rem;
  }

  .simulator-square-page .schedule-location-actions {
    width: 100%;
    justify-items: stretch;
  }

  .simulator-square-page .simple-map-link {
    width: 100%;
  }

  .simulator-square-page .simple-location-label {
    font-size: 0.68rem;
  }

  .simulator-square-page .simple-location-value {
    font-size: 0.92rem;
    line-height: 1.28;
  }

  .simulator-square-page .schedule-location-copy {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .simulator-square-page #book-online .container {
    margin-top: -0.5rem;
  }

  .simulator-square-page #how-it-works {
    padding-top: 1.5rem;
  }

  .simulator-square-page #how-it-works .container {
    width: min(calc(100% - 1.4rem), 1080px);
  }

  .simulator-square-page #how-grid {
    grid-template-columns: 1fr;
  }

  .simulator-square-page .schedule-booking-shell {
    width: 100%;
  }

  .simulator-square-page .store-side-card {
    padding: 1rem;
  }

  .simulator-square-page .store-title.schedule-section-title,
  .simulator-square-page .schedule-section-title {
    max-width: none;
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .simulator-square-page .store-summary,
  .simulator-square-page .schedule-booking-helper,
  .simulator-square-page .schedule-embed-copy,
  .simulator-square-page .section-lead {
    font-size: 0.97rem;
    line-height: 1.48;
  }

  .simulator-square-page .square-embed-placeholder {
    padding: 0.65rem;
  }

  .simulator-square-page .schedule-embed-fact {
    padding: 0.7rem 0.75rem;
  }

  .simulator-photo-head {
    margin-bottom: 0.8rem;
  }

  .simulator-photo-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .simulator-photo-card,
  .simulator-photo-card:first-child {
    min-height: 255px;
  }

  .simulator-photo-copy {
    right: 0.85rem;
    bottom: 0.85rem;
    left: 0.85rem;
  }

  .simulator-photo-copy p {
    font-size: 0.9rem;
  }

  .simulator-league-card {
    gap: 0.85rem;
    padding: 1rem;
  }

  .simulator-league-card .section-title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .simulator-league-card .section-lead,
  .simulator-league-point {
    font-size: 0.94rem;
  }

  .simulator-league-cta {
    width: 100%;
  }

  .simulator-square-page .schedule-grid,
  .simulator-square-page .faq-grid {
    gap: 0.75rem;
  }

  .simulator-square-page .schedule-card,
  .simulator-square-page .faq-card {
    padding: 0.95rem;
  }

  .simulator-square-page .faq-card h3,
  .simulator-square-page .schedule-card h3 {
    font-size: 1rem;
    line-height: 1.28;
  }

  .simulator-square-page .faq-card p,
  .simulator-square-page .schedule-card p {
    font-size: 0.93rem;
    line-height: 1.48;
  }

  .simulator-square-page .schedule-footer-cta {
    padding: 0.9rem 0.95rem;
  }

  .simulator-square-page .schedule-footer-cta .schedule-section-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .simulator-square-page .schedule-footer-details p,
  .simulator-square-page .footer-copy {
    font-size: 0.93rem;
    line-height: 1.45;
  }

  .schedule-embed-facts,
  .schedule-proof-grid,
  .schedule-grid-three {
    grid-template-columns: 1fr;
  }

  .schedule-location-row {
    align-items: stretch;
  }

  .schedule-location-actions,
  .schedule-footer-links {
    width: 100%;
  }

  .schedule-section-title {
    max-width: 10ch;
  }

  .square-embed-placeholder {
    min-height: 180px;
  }

  .schedule-embed-head {
    align-items: start;
    flex-direction: column;
  }

  .schedule-footer-cta {
    align-items: stretch;
    flex-direction: column;
  }
}

@keyframes simulatorHeroDrift {
  from {
    transform: scale(1.01) translate3d(-0.4%, 0.25%, 0);
  }

  to {
    transform: scale(1.055) translate3d(0.45%, -0.25%, 0);
  }
}

@keyframes simulatorTextRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes simulatorAccentSweep {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.simulator-square-page .simple-booking-hero.is-visible .simple-booking-banner-image {
  animation: simulatorHeroDrift 12s ease-out both;
}

.simulator-square-page .simple-booking-hero.is-visible .simple-booking-banner-title {
  animation: simulatorTextRise 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) 0.12s both;
}

@media (hover: hover) and (pointer: fine) {
  .simulator-square-page .hero-step-card:hover,
  .simulator-square-page .schedule-card:hover,
  .simulator-square-page .faq-card:hover,
  .simulator-square-page .schedule-embed-card-standalone:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.24);
    box-shadow: 0 24px 48px rgba(39, 15, 74, 0.13);
  }

  .simulator-square-page .simulator-photo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 181, 253, 0.32);
    box-shadow: 0 30px 62px rgba(28, 16, 58, 0.2);
  }

  .simulator-square-page .simulator-photo-card:hover .simulator-photo-image {
    transform: scale(1.06);
  }

  .simulator-square-page .button:hover,
  .simulator-square-page .button-muted:hover {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal],
  .simulator-square-page [data-reveal] {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

.simulator-square-page .simulator-league-card #league-cta.button.simulator-league-cta {
  color: #16051f;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, #ffffff 0%, #f7efff 48%, #e5d4ff 100%);
  box-shadow:
    0 18px 38px rgba(13, 5, 24, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  text-shadow: none;
}

.simulator-square-page .simulator-league-card #league-cta.button.simulator-league-cta:hover,
.simulator-square-page .simulator-league-card #league-cta.button.simulator-league-cta:focus-visible {
  color: #0f0318;
  border-color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #fbf8ff 45%, #efe4ff 100%);
  box-shadow:
    0 22px 44px rgba(13, 5, 24, 0.42),
    0 0 0 4px rgba(255, 255, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}
