:root {
  --void: #100c08;
  --warm: #f0c37a;
  --brass: #c9a24a;
  --ink: #f6ead8;
  --muted: #b9a894;
  --wood: #3a2a1c;
  --lime: #efe4d2;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Outfit, system-ui, sans-serif;
  background: var(--void);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
}
a { color: var(--brass); }
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; line-height: 1.12; }

.rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding: 12px 4vw;
  background: #080604;
  border-bottom: 1px solid #2a2018;
  position: sticky;
  top: 0;
  z-index: 8;
}
.brand { letter-spacing: 0.28em; font-weight: 700; font-size: 13px; }
.chip { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.lang { margin-left: auto; display: flex; border: 1px solid #3a2a1c; }
.lang button {
  border: 0; background: transparent; color: var(--ink);
  padding: 7px 12px; cursor: pointer; font: inherit; font-size: 12px; font-weight: 700;
}
.lang button.active { background: var(--warm); color: #1a1208; }

.showroom { position: relative; overflow: hidden; }
.ceiling {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 4vw;
  background: #1a140e;
  border-bottom: 10px solid #2c2016;
}
.pend {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  display: grid;
  justify-items: center;
  padding: 0 8px 16px;
  min-height: 180px;
}
.cord {
  width: 2px;
  height: 72px;
  background: linear-gradient(#6a5a48, #c9a24a);
}
.shade {
  width: 52px;
  height: 36px;
  background: #2a2018;
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  box-shadow: 0 10px 24px rgba(240, 195, 122, 0);
}
.pend b { margin-top: 10px; font-size: 11px; letter-spacing: 0.16em; color: var(--brass); }
.pend em { font-style: normal; font-size: 13px; font-weight: 600; text-align: center; }
.pend.on { color: var(--ink); }
.pend.on .shade {
  background: #f0c37a;
  box-shadow: 0 18px 40px rgba(240, 195, 122, 0.45);
}

.floor {
  position: relative;
  min-height: 62vh;
  padding: 48px 4vw 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pool {
  position: absolute;
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(240, 195, 122, 0.38), transparent 68%);
  top: 8%;
  transition: left 0.45s ease;
}
body[data-lamp="mix"] .pool { left: 2%; }
body[data-lamp="agent"] .pool { left: 22%; }
body[data-lamp="opt"] .pool { left: 48%; }
body[data-lamp="shop"] .pool { left: 70%; }
.lux {
  position: absolute;
  top: 20px;
  right: 4vw;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--warm);
}
.kicker {
  color: var(--brass);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 10px;
}
.floor h1 { font-size: clamp(34px, 5.4vw, 58px); max-width: 16ch; margin-bottom: 12px; }
.lead { max-width: 64ch; color: var(--muted); font-size: 17px; }

.beam {
  padding: 28px 4vw 36px;
  background: #1a140e;
  border-top: 1px solid #2a2018;
}
.ch { color: var(--warm); font-size: 12px; letter-spacing: 0.2em; font-weight: 800; margin-bottom: 8px; }
.beam h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 10px; }
.beam p { color: var(--muted); max-width: 64ch; }
.cue {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #3a2a1c;
  color: var(--warm) !important;
}

.plan, .walk, .rules, .order { padding: 40px 4vw; }
.plan { background: var(--lime); color: #1c140e; }
.plan .kicker { color: #8a4a18; }
.plan h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 12px; }
.intro { color: #5c4e40; max-width: 68ch; margin-bottom: 24px; }
.bays { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--wood); }
.bays article { background: #fff8ee; padding: 20px; }
.bays article p:first-child { font-family: "Cormorant Garamond", serif; font-size: 28px; color: #8a4a18; }
.bays h3 { font-size: 22px; margin: 6px 0 8px; }
.bays p { color: #5c4e40; }

.walk { background: #16110c; }
.walk ol {
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin-top: 12px;
  counter-reset: step;
}
.walk li {
  border: 1px solid #2a2018;
  padding: 14px 16px 14px 56px;
  color: var(--muted);
  position: relative;
}
.walk li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 14px;
  top: 14px;
  color: var(--brass);
  font-weight: 800;
  font-size: 12px;
}

.rules { background: #1a140e; }
.rules ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.rules li {
  border-top: 3px solid var(--warm);
  background: #100c08;
  padding: 16px;
  color: var(--muted);
}

.order {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: var(--lime);
  color: #1c140e;
}
.order .kicker { color: #8a4a18; }
.order h2 { font-size: clamp(24px, 3vw, 34px); margin: 8px 0 12px; }
.order p { color: #5c4e40; }
address { font-style: normal; margin-top: 16px; }
address p { margin: 4px 0; }
address a { color: #8a4a18; }
form { display: grid; gap: 10px; }
@media (min-width: 700px) {
  form { grid-template-columns: 1fr 1fr; }
  .wide, form button, .note { grid-column: 1 / -1; }
}
label { display: grid; gap: 4px; font-size: 12px; font-weight: 700; }
input, textarea {
  font: inherit; padding: 10px;
  border: 1px solid #c9b79a;
  background: #fff8ee;
  color: #1c140e;
}
button[type="submit"] {
  justify-self: start;
  background: #1c140e; color: var(--warm); border: 0;
  padding: 12px 18px; font: inherit; font-weight: 800; cursor: pointer;
}
.note { font-size: 13px; color: #5c4e40; }
footer {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 16px 4vw 32px;
  color: var(--muted); font-size: 13px;
}

@media (max-width: 900px) {
  .ceiling, .bays, .rules ul, .order { grid-template-columns: 1fr 1fr; }
  .lang { margin-left: 0; }
  body[data-lamp] .pool { left: 20% !important; }
}
@media (max-width: 560px) {
  .ceiling, .bays { grid-template-columns: 1fr 1fr; }
  .pend { min-height: 140px; }
}
