:root {
  color-scheme: dark;
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #050607;
  --panel: #0d0f11;
  --panel-2: #141414;
  --line: rgba(212, 165, 68, 0.28);
  --gold: #d7a641;
  --gold-2: #f1d37a;
  --red: #9b1b1e;
  --text: #f6f1e8;
  --muted: #c6beb3;
  --rail: #8f1719;
  --felt: #7a0f12;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f1ea;
  --panel: #fffaf1;
  --panel-2: #eee6d8;
  --text: #171512;
  --muted: #5d554c;
}

:root[data-accent="red"] {
  --gold: #c63a34;
  --gold-2: #ff8a78;
  --line: rgba(198, 58, 52, 0.3);
}

:root[data-accent="emerald"] {
  --gold: #2fbf8f;
  --gold-2: #8cf1cf;
  --line: rgba(47, 191, 143, 0.3);
}

:root[data-accent="blue"] {
  --gold: #5fa8ff;
  --gold-2: #b7d8ff;
  --line: rgba(95, 168, 255, 0.32);
}

:root[data-accent="silver"] {
  --gold: #c9ced6;
  --gold-2: #f3f5f8;
  --line: rgba(201, 206, 214, 0.32);
}

:root[data-font="system"] {
  --font-main: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-font="georgia"] {
  --font-main: Georgia, "Times New Roman", serif;
}

:root[data-font="trebuchet"] {
  --font-main: "Trebuchet MS", "Segoe UI", sans-serif;
}

:root[data-font="verdana"] {
  --font-main: Verdana, Geneva, sans-serif;
}

:root[data-font="arial"] {
  --font-main: Arial, Helvetica, sans-serif;
}

:root[data-font="times"] {
  --font-main: "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(203, 39, 40, 0.22), transparent 34rem),
    radial-gradient(circle at 12% 18%, rgba(215, 166, 65, 0.09), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #090a0b 45%, #030404 100%);
  color: var(--text);
  font-family: var(--font-main);
  letter-spacing: 0;
}

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 50% -10%, rgba(155, 27, 30, 0.11), transparent 34rem),
    radial-gradient(circle at 12% 18%, color-mix(in srgb, var(--gold), transparent 88%), transparent 28rem),
    linear-gradient(180deg, #f7f2ea 0%, #efe7da 45%, #f7f2ea 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.asset-image {
  display: none;
}

.asset-image.image-loaded {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(3, 4, 5, 0.78);
  border-bottom: 1px solid rgba(215, 166, 65, 0.18);
  backdrop-filter: blur(18px);
}

:root[data-theme="light"] .site-header {
  background: rgba(247, 242, 234, 0.84);
}

:root[data-theme="light"] .nav,
:root[data-theme="light"] .brand,
:root[data-theme="light"] .icon-button {
  color: #171512;
}

.site-customizer {
  position: fixed;
  top: 7.2rem;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(17rem, 20rem);
  transform: translateX(calc(100% - 2.35rem));
  transition: transform 220ms ease;
}

.site-customizer.is-open {
  transform: translateX(0);
}

.customizer-tab {
  writing-mode: vertical-rl;
  width: 2.35rem;
  height: min(10vh, 4.6rem);
  min-height: 0;
  border: 1px solid var(--line);
  border-right: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 650;
  text-transform: uppercase;
}

.customizer-tab:hover {
  background: color-mix(in srgb, var(--gold), transparent 88%);
}

.customizer-panel {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 0%, color-mix(in srgb, var(--gold), transparent 86%), transparent 12rem),
    rgba(8, 9, 10, 0.96);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

:root[data-theme="light"] .customizer-panel {
  background:
    radial-gradient(circle at 15% 0%, color-mix(in srgb, var(--gold), transparent 82%), transparent 12rem),
    rgba(255, 250, 241, 0.96);
}

.customizer-panel h2 {
  margin: 0;
  font-size: 1.35rem;
  font-style: normal;
  font-weight: 750;
}

.customizer-panel fieldset {
  padding: 0.9rem;
}

.customizer-panel label,
.customizer-panel legend {
  font-style: normal;
  font-weight: 650;
}

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

.accent-options label {
  position: relative;
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(23, 21, 18, 0.12);
  background: rgba(255, 255, 255, 0.44);
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 500;
  cursor: pointer;
}

.accent-options input {
  position: absolute;
  opacity: 0;
}

.accent-options label:has(input:checked) {
  border-color: var(--gold);
  background: color-mix(in srgb, var(--gold), white 86%);
  color: #191613;
}

.accent-options span {
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: var(--swatch);
  box-shadow: 0 0 0 1px rgba(23, 21, 18, 0.18);
}

.brand,
.nav,
.button-row,
.trust-row,
.stats-row,
.footer-bottom {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  color: var(--gold);
  font-size: 1.35rem;
}

.nav {
  gap: clamp(0.9rem, 2.4vw, 2.5rem);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--gold-2);
}

.icon-button,
.dialog-close {
  border: 0;
  color: #fff;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-cart {
  display: none;
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  gap: 0.28rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.18rem;
  height: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  --hero-stack-gap: clamp(1.65rem, 2.2vw, 2.35rem);
  --hero-table-width: min(102rem, 114vw);
  --trust-row-height: 4.4rem;
  position: relative;
  display: block;
  min-height: 100svh;
  overflow: hidden;
  padding: 6rem 1rem 0;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.25) 48%, rgba(0, 0, 0, 0.94)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 13px);
}

:root[data-theme="light"] .hero::before {
  background:
    linear-gradient(90deg, rgba(247, 242, 234, 0.95), rgba(247, 242, 234, 0.18) 48%, rgba(247, 242, 234, 0.95)),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.035) 0 1px, transparent 1px 13px);
}

.hero-table-wrap {
  position: absolute;
  top: -25%;
  left: 50%;
  width: var(--hero-table-width);
  aspect-ratio: 1.8;
  transform: translateX(-50%);
  filter: drop-shadow(0 2rem 4rem rgba(215, 166, 65, 0.2));
}

.hero-asset {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2rem 4rem rgba(215, 166, 65, 0.18));
}

.hero-asset.image-loaded + .diamond-table {
  opacity: 0;
}

.diamond-table {
  position: relative;
  width: 100%;
  height: 100%;
  padding: clamp(1.1rem, 3vw, 2.5rem);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--rail), #fff 10%), var(--rail) 45%, #350708),
    radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 30%);
  clip-path: polygon(11% 0, 89% 0, 100% 50%, 89% 100%, 11% 100%, 0 50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.diamond-table::before,
.diamond-table::after {
  content: "";
  position: absolute;
  inset: 0.7rem;
  pointer-events: none;
  clip-path: inherit;
  border: 1px solid rgba(215, 166, 65, 0.55);
}

.table-felt {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.1), transparent 22%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.035) 25%, transparent 25% 50%, rgba(255, 255, 255, 0.035) 50% 75%, transparent 75%),
    var(--felt);
  background-size: auto, 1.1rem 1.1rem, auto;
  clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
  box-shadow: inset 0 0 0 2px rgba(215, 166, 65, 0.72), inset 0 0 4rem rgba(0, 0, 0, 0.7);
}

.dealer-box {
  position: absolute;
  top: 8%;
  left: 50%;
  min-width: 8rem;
  padding: 0.45rem 1rem;
  transform: translateX(-50%);
  border: 1px solid rgba(215, 166, 65, 0.72);
  color: var(--gold-2);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.table-logo {
  color: rgba(255, 216, 129, 0.72);
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 4vw, 3rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0.25rem 1rem #000;
}

.hero-copy {
  position: absolute;
  top: calc(-25svh + (var(--hero-table-width) / 1.8) * 0.61);
  left: 50%;
  z-index: 1;
  width: min(55rem, 100%);
  margin: 0;
  padding: 0 clamp(1rem, 3vw, 2.3rem);
  transform: translateX(-50%);
  text-align: center;
}

.hero-lower {
  position: absolute;
  left: 50%;
  top: calc(((-25svh + (var(--hero-table-width) / 1.8)) + (100svh - var(--trust-row-height))) / 2 - clamp(2.5rem, 6vh, 5rem));
  z-index: 2;
  width: min(46rem, calc(100% - 2rem));
  transform: translate(-50%, -50%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.centered {
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.03;
  text-transform: uppercase;
}

h1 {
  margin-bottom: var(--hero-stack-gap);
  font-size: clamp(3rem, 7.45vw, 6.1rem);
  line-height: 0.95;
  filter: drop-shadow(0 0.45rem 0.65rem rgba(0, 0, 0, 0.92));
}

h1 span,
h2 span {
  color: var(--gold);
}

h1 span {
  display: block;
}

h1 .hero-title-light {
  color: #f7f3eb;
  text-shadow:
    0 0.08em 0.03em rgba(0, 0, 0, 0.96),
    0 0.16em 0.18em rgba(0, 0, 0, 0.9),
    0 0 0.28em rgba(0, 0, 0, 0.72);
}

.hero-copy p:not(.eyebrow),
.hero-lower p,
.builder-intro p,
.experience-copy p,
.product-card p,
.value-grid p,
blockquote {
  color: var(--muted);
}

.hero-copy p:not(.eyebrow),
.hero-lower p {
  width: min(34rem, 100%);
  margin: 0 auto 1.35rem;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  line-height: 1.58;
}

.hero-lower p.hero-tagline {
  width: min(33rem, 100%);
  margin-bottom: var(--hero-stack-gap);
  color: #fff;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 650;
  line-height: 1.45;
  text-shadow:
    0 0.08em 0.08em rgba(0, 0, 0, 1),
    0 0.18em 0.45em rgba(0, 0, 0, 0.95);
}

h1 span:not(.hero-title-light) {
  text-shadow:
    0 0.08em 0.03em rgba(0, 0, 0, 0.96),
    0 0.18em 0.18em rgba(0, 0, 0, 0.88),
    0 0 0.3em rgba(0, 0, 0, 0.72);
}

.hero-lower .hero-description {
  display: none;
}

.button-row {
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  padding: 0.75rem 1.35rem;
  cursor: pointer;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.button-gold {
  background: linear-gradient(135deg, #f6d576, #b78327);
  color: #111;
}

.button-outline {
  background: rgba(5, 6, 7, 0.52);
}

:root[data-theme="light"] .button-outline {
  background: rgba(255, 255, 255, 0.42);
  color: #171512;
}

.button-red {
  background: linear-gradient(135deg, #c63a34, #751315);
  border-color: #c63a34;
}

.trust-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  justify-content: center;
  gap: clamp(0.8rem, 4vw, 4rem);
  flex-wrap: wrap;
  padding: 1.35rem 1rem;
  border-top: 1px solid rgba(215, 166, 65, 0.15);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1rem, 5vw, 4rem);
}

.section-tight {
  padding-top: clamp(2.8rem, 6vw, 5rem);
  padding-bottom: clamp(2.8rem, 6vw, 5rem);
}

.section-title {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
}

.table-grid,
.value-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.product-card,
.value-grid article,
.testimonial-grid figure {
  border: 1px solid rgba(215, 166, 65, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

:root[data-theme="light"] .product-card,
:root[data-theme="light"] .value-grid article,
:root[data-theme="light"] .testimonial-grid figure,
:root[data-theme="light"] .faq-list details {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 241, 0.42));
}

:root[data-theme="light"] .faq-list summary {
  color: #171512;
}

.product-card {
  display: flex;
  min-height: 29rem;
  flex-direction: column;
  padding: 1.3rem;
}

.product-visual {
  display: grid;
  min-height: 11rem;
  place-items: center;
  margin-bottom: 1rem;
  overflow: hidden;
  background: radial-gradient(circle, rgba(215, 166, 65, 0.12), transparent 62%);
}

.product-visual .asset-image {
  width: 100%;
  height: 11rem;
  object-fit: contain;
}

.product-visual .asset-image.image-loaded + .mini-table {
  display: none;
}

.mini-table {
  width: 90%;
  aspect-ratio: 2.4;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  transform: perspective(26rem) rotateX(54deg) rotateZ(-5deg);
  box-shadow: inset 0 0 0 0.8rem var(--rail), inset 0 0 0 0.95rem var(--gold);
}

.product-red .mini-table {
  background: var(--felt);
}

.product-gray .mini-table {
  --rail: #111317;
  background: #526474;
}

.product-luxury .mini-table {
  --rail: #4c4f50;
  background: #18382f;
}

.product-card h3,
.value-grid h3 {
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.gold-line,
.product-card strong {
  color: var(--gold);
}

.product-card strong {
  display: block;
  margin-top: auto;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.builder-band,
.experience-band,
.map-band,
.configurator {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 5rem);
  border-block: 1px solid rgba(215, 166, 65, 0.15);
  background: linear-gradient(90deg, rgba(129, 20, 22, 0.18), rgba(255, 255, 255, 0.018) 58%, rgba(215, 166, 65, 0.08));
}

:root[data-theme="light"] .builder-band,
:root[data-theme="light"] .experience-band,
:root[data-theme="light"] .map-band,
:root[data-theme="light"] .configurator {
  background: linear-gradient(90deg, rgba(155, 27, 30, 0.08), rgba(255, 255, 255, 0.34) 58%, color-mix(in srgb, var(--gold), transparent 88%));
}

.builder-visual {
  min-height: 26rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.band-asset {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  object-fit: cover;
}

.builder-visual .band-asset.image-loaded,
.experience-visual .band-asset.image-loaded {
  grid-area: 1 / 1;
}

.builder-visual .band-asset.image-loaded + .diamond-table,
.experience-visual .band-asset.image-loaded + .poker-room-scene {
  display: none;
}

.lifestyle-table {
  width: min(52rem, 115%);
  aspect-ratio: 1.85;
  transform: perspective(46rem) rotateX(48deg) rotateZ(-7deg);
}

.chips-felt::before {
  content: "";
  position: absolute;
  inset: 18% 24%;
  background:
    radial-gradient(circle at 12% 26%, #f7d86a 0 0.28rem, transparent 0.33rem),
    radial-gradient(circle at 25% 64%, #f7f3df 0 0.22rem, transparent 0.28rem),
    radial-gradient(circle at 62% 31%, #d0232b 0 0.3rem, transparent 0.36rem),
    radial-gradient(circle at 82% 72%, #f7d86a 0 0.26rem, transparent 0.32rem),
    linear-gradient(90deg, transparent 45%, rgba(255, 255, 255, 0.8) 45% 55%, transparent 55%);
  opacity: 0.9;
}

.builder-copy h2,
.experience-copy h2,
.map-band h2,
.builder-intro h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.feature-list,
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  padding: 0;
  margin: 1.4rem 0;
  list-style: none;
}

.feature-list li::before,
.check-grid li::before {
  content: "✓ ";
  color: var(--gold);
}

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

.value-grid article {
  padding: 1.6rem;
  text-align: center;
}

.value-icon {
  color: var(--gold);
  font-size: 2.4rem;
}

.experience-visual {
  min-height: 27rem;
}

.poker-room-scene {
  position: relative;
  height: 100%;
  min-height: 27rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 32%, rgba(215, 166, 65, 0.33), transparent 12rem),
    linear-gradient(180deg, rgba(255, 216, 129, 0.13), transparent 38%),
    repeating-linear-gradient(90deg, #130f0d 0 5rem, #0b0a09 5rem 5.25rem);
}

.scene-table {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  width: min(46rem, 96%);
  aspect-ratio: 1.9;
  transform: translateX(-50%) perspective(42rem) rotateX(54deg);
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  background: #7a0f12;
  box-shadow: inset 0 0 0 1.25rem #8f1719, inset 0 0 0 1.4rem #d7a641, 0 2rem 4rem #000;
}

.testimonial-grid figure {
  margin: 0;
  padding: 1.5rem;
}

.stars {
  color: var(--gold);
  margin-bottom: 1rem;
}

.map-band {
  grid-template-columns: 1fr 1fr;
  background: #070809;
}

:root[data-theme="light"] .map-band {
  background: #f1eadf;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 15% 15%, rgba(215, 166, 65, 0.08), transparent 28rem),
    #050606;
  border-top: 1px solid rgba(215, 166, 65, 0.14);
}

:root[data-theme="light"] .faq-section {
  background:
    radial-gradient(circle at 15% 15%, color-mix(in srgb, var(--gold), transparent 88%), transparent 28rem),
    #f7f2ea;
}

.faq-heading h2 {
  max-width: 28rem;
  font-size: clamp(2rem, 5vw, 4rem);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  border: 1px solid rgba(215, 166, 65, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.faq-list summary {
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.65rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
  line-height: 1.65;
}

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

.stats-row strong {
  color: var(--gold);
  min-width: 8rem;
}

.stats-row span {
  display: block;
  color: #fff;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.usa-map {
  min-height: 18rem;
  display: grid;
  place-items: center;
}

.map-asset {
  width: min(32rem, 100%);
}

.map-asset.image-loaded + .map-shape {
  display: none;
}

.map-shape {
  position: relative;
  width: min(32rem, 100%);
  aspect-ratio: 1.9;
  background:
    radial-gradient(circle at 61% 48%, var(--gold) 0 0.55rem, transparent 0.6rem),
    radial-gradient(circle at 28% 42%, rgba(215, 166, 65, 0.8) 0 0.14rem, transparent 0.18rem),
    radial-gradient(circle at 42% 54%, rgba(215, 166, 65, 0.8) 0 0.14rem, transparent 0.18rem),
    radial-gradient(circle at 75% 38%, rgba(215, 166, 65, 0.8) 0 0.14rem, transparent 0.18rem),
    rgba(255, 255, 255, 0.035);
  clip-path: polygon(6% 33%, 19% 22%, 35% 20%, 45% 28%, 61% 23%, 77% 28%, 94% 21%, 98% 35%, 86% 48%, 76% 60%, 66% 57%, 53% 70%, 38% 68%, 24% 61%, 13% 51%);
  border: 1px solid rgba(215, 166, 65, 0.35);
}

.illinois-dot {
  position: absolute;
  left: 58%;
  top: 41%;
  color: #111;
  font-size: 0.7rem;
  font-weight: 900;
}

.site-footer {
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1rem, 5vw, 5rem) 1.5rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 166, 65, 0.08), transparent 26rem),
    linear-gradient(180deg, #111314 0%, #080909 100%);
  border-top: 1px solid rgba(215, 166, 65, 0.24);
}

:root[data-theme="light"] .site-footer {
  background:
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--gold), transparent 88%), transparent 26rem),
    linear-gradient(180deg, #eee6d8 0%, #f8f3eb 100%);
}

:root[data-theme="light"] .footer-brand h2,
:root[data-theme="light"] .footer-column h3,
:root[data-theme="light"] .footer-newsletter h3,
:root[data-theme="light"] .contact-details h3 {
  color: #171512;
}

:root[data-theme="light"] .footer-brand p,
:root[data-theme="light"] .footer-newsletter p,
:root[data-theme="light"] .footer-bottom,
:root[data-theme="light"] .footer-column a,
:root[data-theme="light"] .footer-column span,
:root[data-theme="light"] .contact-details p {
  color: rgba(23, 21, 18, 0.72);
}

:root[data-theme="light"] .footer-socials a {
  background: rgba(255, 255, 255, 0.36);
  color: #171512;
}

:root[data-theme="light"] .contact-form label {
  color: rgba(23, 21, 18, 0.78);
}

:root[data-theme="light"] .newsletter-form,
:root[data-theme="light"] input,
:root[data-theme="light"] select,
:root[data-theme="light"] textarea {
  background: rgba(255, 255, 255, 0.44);
  color: #171512;
}

:root[data-theme="light"] input::placeholder,
:root[data-theme="light"] textarea::placeholder {
  color: rgba(23, 21, 18, 0.54);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(16rem, 1.25fr) repeat(3, minmax(9rem, 0.8fr)) minmax(17rem, 1.1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  width: min(1320px, 100%);
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h2,
.footer-column h3,
.footer-newsletter h3 {
  margin: 0 0 1.35rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-brand h2::before {
  content: "♦ ";
  color: var(--gold);
}

.footer-brand p,
.footer-newsletter p,
.footer-bottom,
.footer-column a,
.footer-column span {
  color: rgba(246, 241, 232, 0.68);
}

.footer-brand p,
.footer-newsletter p {
  max-width: 18rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 0.85rem;
}

.footer-socials a {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(215, 166, 65, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 900;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.footer-column a,
.footer-column span {
  line-height: 1.25;
  font-style: normal;
  font-weight: 500;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--gold-2);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 4rem;
  min-height: 3.7rem;
  border: 1px solid rgba(215, 166, 65, 0.22);
  background: rgba(0, 0, 0, 0.24);
}

.newsletter-form input {
  border: 0;
  background: transparent;
}

.newsletter-form button {
  border: 0;
  background: linear-gradient(135deg, #f1d37a, #b78327);
  color: #111;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 950;
}

.footer-contact {
  display: grid;
  grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  width: min(1320px, 100%);
  margin: 0 auto;
}

.contact-details h3 {
  margin: 0 0 1.2rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-details p {
  margin: 0 0 0.85rem;
  color: rgba(246, 241, 232, 0.72);
  line-height: 1.5;
}

.contact-details span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.contact-form label {
  color: rgba(246, 241, 232, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form-wide {
  grid-column: 1 / -1;
}

.contact-form .button {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1320px, 100%);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.order-dialog,
.status-dialog {
  width: min(34rem, calc(100vw - 2rem));
  border: 1px solid rgba(215, 166, 65, 0.4);
  background: #08090a;
  color: var(--text);
  padding: 0;
}

.order-dialog::backdrop,
.status-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.order-form,
.status-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.status-panel {
  gap: 1.2rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background:
    radial-gradient(circle at 20% 0%, rgba(215, 166, 65, 0.16), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.status-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.status-panel p:not(.eyebrow) {
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.65;
}

.dialog-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  background: transparent;
  font-size: 1.6rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: #fff;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(215, 166, 65, 0.28);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  padding: 0.8rem;
}

option {
  background: #111;
  color: #fff;
}

:root[data-theme="light"] option {
  background: #fffaf1;
  color: #171512;
}

:root[data-theme="light"] select,
:root[data-theme="light"] .customizer-panel select,
:root[data-theme="light"] .builder-controls select {
  background: #fffaf1;
  color: #171512;
}

.customizer-panel select {
  font-style: normal;
  font-weight: 500;
}

.builder-page {
  padding-top: 5rem;
}

.builder-intro {
  width: min(900px, 100%);
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem) 2rem;
}

.configurator {
  align-items: start;
  grid-template-columns: minmax(20rem, 0.95fr) minmax(0, 1.05fr);
  color: #191613;
  background:
    radial-gradient(circle at 12% 15%, rgba(155, 27, 30, 0.12), transparent 28rem),
    linear-gradient(135deg, #f7f2ea 0%, #ebe2d3 100%);
}

.builder-preview {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
}

.preview-table-photo {
  position: relative;
  display: grid;
  min-height: 28rem;
  place-items: center;
  overflow: hidden;
}

.preview-table-photo::before {
  content: "";
  position: absolute;
  inset: 9% 7%;
  background:
    radial-gradient(circle at 50% 62%, color-mix(in srgb, var(--felt), transparent 58%), transparent 34%),
    linear-gradient(135deg, color-mix(in srgb, var(--rail), transparent 72%), transparent 48%);
  mix-blend-mode: multiply;
  opacity: 0.72;
  pointer-events: none;
}

.preview-table-photo img {
  width: min(58rem, 118%);
  max-width: none;
  filter: drop-shadow(0 2rem 2.5rem rgba(0, 0, 0, 0.28));
}

.price-box {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(23, 21, 18, 0.12);
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.56);
  color: #191613;
}

.price-box strong {
  color: var(--gold);
  font-size: 1.4rem;
}

.builder-controls {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1rem, 2vw, 1.4rem);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 21, 18, 0.1);
  box-shadow: 0 2rem 5rem rgba(53, 33, 20, 0.12);
}

fieldset {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  border: 1px solid rgba(23, 21, 18, 0.12);
  padding: 1rem;
}

legend {
  padding: 0 0.4rem;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

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

.swatches label,
fieldset label {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: #4c453d;
  font-style: normal;
  font-weight: 500;
}

.swatches label {
  position: relative;
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(23, 21, 18, 0.12);
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
}

.swatches input {
  position: absolute;
  opacity: 0;
}

.swatches label:has(input:checked) {
  border-color: var(--gold);
  background: color-mix(in srgb, var(--gold), white 86%);
}

.swatches span {
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: var(--swatch);
  box-shadow: 0 0 0 1px rgba(23, 21, 18, 0.18);
}

.builder-controls fieldset:not(.series-picker) {
  background: rgba(255, 255, 255, 0.36);
}

.builder-controls fieldset:not(.series-picker) > label {
  display: flex;
  min-height: 2.5rem;
  align-items: center;
  gap: 0.65rem;
  font-weight: 650;
}

.builder-controls input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--gold);
}

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

.series-options label {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  min-height: 8rem;
  align-content: center;
  padding: 1rem;
  border: 1px solid rgba(23, 21, 18, 0.14);
  background: rgba(255, 255, 255, 0.52);
  color: #191613;
  cursor: pointer;
}

.series-options input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.series-options label:has(input:checked) {
  border-color: var(--gold);
  background: color-mix(in srgb, var(--gold), white 84%);
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--gold), transparent 55%);
}

.series-options span {
  font-size: 1.1rem;
  font-weight: 900;
}

.series-options small {
  color: #6b6258;
  font-weight: 500;
}

.series-options strong {
  color: var(--gold);
  font-size: 1rem;
}

.builder-controls input,
.builder-controls select,
.builder-controls textarea {
  background: rgba(255, 255, 255, 0.58);
  color: #191613;
  border-color: rgba(23, 21, 18, 0.14);
}

.builder-controls .button-outline {
  background: transparent;
  color: #191613;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    font-size: 0.74rem;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-table-wrap {
    top: -4rem;
    width: 140vw;
  }

  .hero-copy {
    margin-top: 15rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-copy p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .button-row {
    justify-content: center;
  }

  .table-grid,
  .value-grid,
  .testimonial-grid,
  .builder-band,
  .experience-band,
  .map-band,
  .configurator,
  .footer-main,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 2.25rem;
  }

  .footer-contact {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .builder-preview {
    position: static;
  }

  .series-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.55rem;
    padding: 0.85rem 1rem;
  }

  .brand {
    min-width: 0;
    max-width: none;
  }

  .brand span:last-child {
    font-size: 0.86rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav {
    position: absolute;
    order: initial;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    z-index: 35;
    width: auto;
    display: grid;
    gap: 0;
    padding: 0.45rem;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(3, 4, 5, 0.96);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.45);
    transform: translateY(-0.35rem);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  :root[data-theme="light"] .nav {
    background: rgba(255, 250, 241, 0.98);
  }

  .site-header.is-menu-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav a {
    padding: 0.9rem 0.95rem;
    border-bottom: 1px solid color-mix(in srgb, var(--line), transparent 35%);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .icon-button {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
  }

  .menu-toggle {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(0.38rem) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-0.38rem) rotate(-45deg);
  }

  .site-customizer {
    top: 8.5rem;
    grid-template-columns: auto minmax(0, calc(100vw - 3rem));
  }

  .hero {
    --hero-stack-gap: 1.35rem;
    display: grid;
    min-height: auto;
    padding: 0 0.85rem 0;
    margin-top: -0.65rem;
    overflow: hidden;
  }

  .hero-table-wrap {
    position: relative;
    top: auto;
    left: 50%;
    order: 1;
    width: min(116vw, 36rem);
    margin: -3.4rem auto 0;
    transform: translateX(-50%);
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    order: 2;
    width: min(100%, 28rem);
    margin: -0.2rem auto 0;
    padding: 0;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.25rem);
    line-height: 0.92;
  }

  .hero-lower {
    position: relative;
    top: auto;
    left: auto;
    order: 3;
    width: min(100% - 1.5rem, 28rem);
    margin: 0 auto 1.2rem;
    transform: none;
  }

  .hero-lower p.hero-tagline {
    width: min(25rem, 100%);
    font-size: 0.96rem;
  }

  .hero .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .trust-row {
    position: relative;
    order: 4;
    left: auto;
    right: auto;
    bottom: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    padding: 1rem 0.85rem;
    font-size: 0.72rem;
    text-align: center;
  }

  .section,
  .section-tight,
  .builder-band,
  .experience-band,
  .map-band,
  .faq-section,
  .configurator {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-title,
  .builder-copy h2,
  .experience-copy h2,
  .map-band h2,
  .faq-heading h2,
  .builder-intro h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .product-card {
    min-height: auto;
  }

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

  .builder-visual,
  .experience-visual,
  .poker-room-scene {
    min-height: 18rem;
  }

  .feature-list,
  .check-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .builder-page {
    padding-top: 0;
  }

  .builder-intro {
    padding: 2.5rem 1rem 1.5rem;
  }

  .configurator {
    gap: 1.5rem;
  }

  .preview-table-photo {
    min-height: 18rem;
  }

  .preview-table-photo img {
    width: 175%;
  }

  .price-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .builder-controls {
    padding: 1rem;
  }

  .series-options,
  .swatches,
  .control-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-main,
  .footer-contact,
  .footer-bottom {
    width: 100%;
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .hero {
    --hero-stack-gap: clamp(1.65rem, 2.2vw, 2.35rem);
  }

  .hero-lower {
    top: auto;
    bottom: calc(var(--trust-row-height) + var(--hero-stack-gap));
    transform: translateX(-50%);
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    font-size: 0.78rem;
  }

  .hero-copy {
    margin-top: -0.2rem;
  }

  .hero-table-wrap {
    width: min(118vw, 30rem);
    margin-top: -2.55rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  .hero-lower {
    margin-top: 0.25rem;
  }

  .trust-row,
  .feature-list,
  .check-grid,
  .swatches,
  .control-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .newsletter-form {
    grid-template-columns: 1fr 3.5rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom nav {
    flex-direction: column;
    gap: 0.85rem;
  }
}
