:root {
  --bg: #050505;
  --ink: #f7f4ea;
  --mute: #8d8774;
  --line: #2c2616;
  --soft: #12100b;
  --gold: #C9A227;
  --gold-dim: #8f7418;
  --gold-soft: rgba(201,162,39,0.16);
  --ok: #C9A227;
  --danger: #c4c4c0;
  --tap: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Neue Haas Grotesk Text Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  min-height: 100%;
}

button, input { font: inherit; color: inherit; }

.app {
  min-height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 48px 28px;
  display: flex;
  flex-direction: column;
}

.top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.logo-wrap img {
  width: 280px;
  height: auto;
  display: block;
}

.lang-pill {
  align-self: flex-start;
  border: 1px solid var(--line);
  background: transparent;
  min-height: 44px;
  min-width: 72px;
  padding: 0 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--mute);
}

.stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0 32px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 18px;
}

h1, .title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.sub {
  margin-top: 16px;
  color: var(--mute);
  font-size: 17px;
  max-width: 36em;
}

.grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}
.grid.two { grid-template-columns: 1fr 1fr; }
.grid.services { grid-template-columns: 1fr 1fr; }
.stage { overflow-y: auto; }
.grid.three { grid-template-columns: 1fr 1fr 1fr; }

.card {
  min-height: 140px;
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 28px 28px 24px;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}
.card:hover, .card:focus-visible { border-color: var(--gold); outline: none; }
.card .k {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
}
.card .v {
  margin-top: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
}
.card .m { margin-top: 10px; color: var(--mute); font-size: 14px; }
.card.solid, .card.gold {
  background: var(--gold);
  color: #0a0a08;
  border-color: var(--gold);
}
.card.solid .k, .card.gold .k { color: #2a2208; }
.card.solid .m, .card.gold .m { color: #3a320c; }
.card.gold-outline {
  border-color: var(--gold);
  background: var(--gold-soft);
}
.card.gold-outline .k { color: var(--gold); }
.card.selected { border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); }

.row-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  min-height: var(--tap);
  min-width: 160px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
}
.btn.fill { background: var(--gold); color: #0a0a08; border-color: var(--gold); }
.btn.ghost { border-color: var(--line); color: var(--mute); }
.btn:disabled { opacity: 0.35; cursor: default; }

.list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list button {
  width: 100%;
  min-height: 84px;
  border: 1px solid var(--line);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  text-align: left;
  cursor: pointer;
}
.list button:hover { border-color: var(--gold); }
.list .who {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
}
.list .meta { color: var(--mute); letter-spacing: 0.14em; text-transform: uppercase; font-size: 12px; }

.phone-box {
  margin-top: 28px;
  font-size: 42px;
  letter-spacing: 0.12em;
  min-height: 56px;
}
.keypad {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 420px;
}
.keypad button {
  min-height: 72px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}
.keypad button:hover { border-color: var(--gold); }

.field {
  margin-top: 20px;
  max-width: 420px;
}
.field label {
  display: block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--mute);
  margin-bottom: 8px;
}
.field input[type="text"] {
  width: 100%;
  min-height: 64px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-size: 28px;
  font-family: "Cormorant Garamond", serif;
  outline: none;
}
.check {
  margin-top: 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--mute);
  font-size: 14px;
  max-width: 36em;
}
.check input { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--gold); }

.confirm {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.dl { margin-top: 28px; }
.dl div { display: flex; justify-content: space-between; gap: 24px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.dl dt { color: var(--mute); letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; }
.dl dd { font-size: 16px; }

.stamps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.dot {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.stamps .dot.on {
  background-color: transparent;
  background-image: url("../mark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(201,162,39,0.45);
}
.upcoming-acts { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }

.success {
  text-align: center;
  padding: 40px 0;
}
.mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
}
.mark:after {
  content: "";
  position: absolute;
  left: 22px;
  top: 34px;
  width: 22px;
  height: 10px;
  border-left: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(-45deg);
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--mute);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 12px;
}

.hidden { display: none !important; }

.board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.chair {
  border: 1px solid var(--line);
  min-height: 520px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.chair h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 40px;
}
.now {
  margin-top: 24px;
  min-height: 120px;
}
.q-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.tiny {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--mute);
}
.acts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.acts .btn { min-height: 52px; min-width: 0; padding: 0 14px; font-size: 10px; }

.feed {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.feed li { list-style: none; padding: 8px 0; color: var(--mute); font-size: 13px; }

.pin-row { display: flex; gap: 8px; margin-top: 20px; }
.pin-row input {
  width: 160px;
  min-height: 56px;
  background: transparent;
  border: 1px solid var(--line);
  text-align: center;
  letter-spacing: 0.4em;
  font-size: 22px;
}

@media (max-width: 820px) {
  .app { padding: 24px 20px; }
  .logo-wrap img { width: 200px; }
  .grid.two, .grid.three, .confirm, .board { grid-template-columns: 1fr; }
  .card { min-height: 110px; }
}

.booth-chrome {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.mark-stamp {
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
}
.mark-stamp img,
.mark-stamp svg {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: contain;
  flex: 0 0 56px;
}
.word {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.word strong {
  font-weight: 400;
  letter-spacing: 0.38em;
  font-size: 13px;
  text-transform: uppercase;
}
.word span {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--mute);
}

.tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
}
.tabs button {
  min-height: 48px;
  padding: 0 22px;
  background: transparent;
  border: 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  color: var(--mute);
}
.tabs button.on {
  background: var(--gold);
  color: #0a0a08;
}

.pane { display: none; flex: 1; flex-direction: column; }
.pane.on { display: flex; }

.wide-logo { display: none; }


.mark-stamp img.gold-mark,
.mark-stamp img#markImg,
.mark-stamp img#markImg2 {
  filter: sepia(1) saturate(7) hue-rotate(2deg) brightness(0.92) contrast(1.15);
}

.wallet {
  margin-top: 18px;
  padding: 22px 22px 18px;
  border: 1px solid var(--gold);
  background:
    linear-gradient(145deg, rgba(201,162,39,0.18), rgba(10,10,8,0.92) 42%, #0c0b08),
    repeating-linear-gradient(135deg, rgba(201,162,39,0.05) 0 2px, transparent 2px 7px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,220,120,0.18);
}
.wallet .foil {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold);
}
.wallet h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 30px;
  color: #fff;
  margin: 8px 0 4px;
}
.wallet .clock {
  color: var(--mute);
  font-size: 14px;
  margin-bottom: 14px;
}
.wallet .states {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.chip {
  flex: 1;
  min-height: 64px;
  border: 1px solid var(--line);
  padding: 10px 12px;
  color: var(--mute);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.chip.ready {
  border-color: var(--gold);
  color: #0a0a08;
  background: var(--gold);
}

.book-remote {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
}

.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }


.tv-body { background:#050505; margin:0; }
.tv { min-height:100vh; padding:36px 48px; display:flex; flex-direction:column; }
.tv-gate { min-height:100vh; max-width:720px; margin:0 auto; padding:72px 32px; }
.tv-head { display:flex; justify-content:space-between; align-items:flex-end; border-bottom:1px solid #2c2616; padding-bottom:20px; }
.tv-head h1 { font-family:"Cormorant Garamond",serif; font-weight:400; font-size:56px; color:#f7f4ea; }
.tv-clock { text-align:right; color:#C9A227; font-family:"Helvetica Neue", Helvetica, Arial, sans-serif; font-weight:300; line-height:1; }
.tv-clock .tv-hms, .tv-clock .tv-ampm { font-size:56px; font-weight:300; letter-spacing:0.02em; line-height:1; vertical-align:baseline; display:inline-block; }
.tv-clock .tv-ampm { margin-left:0.2em; }
.tv-clock .tiny, #tvDate { display:block; margin-top:10px; font-size:16px; letter-spacing:0.14em; font-weight:300; }
.tv-chairs { flex:1; display:grid; grid-template-columns:1fr 1fr; gap:28px; padding-top:28px; }
.tv-chair { border:1px solid #C9A227; background:#0c0b08; padding:28px 32px; min-height:70vh; }
.tv-chair h2 { font-family:"Cormorant Garamond",serif; font-size:64px; font-weight:400; color:#C9A227; }
.tv-wait { margin:8px 0 24px; letter-spacing:.2em; text-transform:uppercase; color:#8d8774; font-size:13px; }
.tv-guest { font-family:"Cormorant Garamond",serif; font-size:48px; color:#f7f4ea; }
.tv-col { margin-top:28px; }
.tv-col ul { list-style:none; }
.tv-col li { display:flex; justify-content:space-between; padding:12px 0; border-top:1px solid #2c2616; font-size:22px; font-family:"Cormorant Garamond",serif; }
@media (max-width:900px) { .tv-chairs { grid-template-columns:1fr; } .tv-chair { min-height:auto; } }


.btn.giant { min-height: 120px; width: 100%; font-size: 22px; letter-spacing: 0.28em; margin-top: 28px; }
.quiet { margin-top: 18px; }
.wallet.compact { padding: 14px 16px; margin-top: 28px; }
.wallet.compact .stamps { margin-top: 10px; }
.tv-banner {
  grid-column: 1 / -1;
  background: #C9A227;
  color: #0a0a08;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 7vw, 84px);
  text-align: center;
  padding: 28px 20px;
  letter-spacing: 0.04em;
}
.tv-qr { grid-column: 1 / -1; text-align: center; color: #8d8774; letter-spacing: 0.2em; text-transform: uppercase; font-size: 14px; padding: 16px 0; }


.btn, .card, .keypad button, .list button, .card.gold, .card.gold-outline {
  pointer-events: auto;
  min-height: 56px;
}
.card .k, .card .v, .card .m, .btn > span, .list .who, .list .meta {
  pointer-events: none;
}
#stage {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
.stage::before, .stage::after { pointer-events: none; }
.grid.services { grid-template-columns: 1fr; }
.services-list {
  max-height: 56vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.services-list button { min-height: 56px; }

/* —— Public booking only (SavSpot IA, Chronos gold/black) —— */
body[data-mode="public"] .app.public-book {
  max-width: 720px;
  padding: 28px 28px 24px;
}
body[data-mode="public"] .pub-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
body[data-mode="public"] .pub-hero {
  padding: 28px 0 8px;
}
body[data-mode="public"] .pub-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 52px);
  line-height: 1.05;
}
body[data-mode="public"] .pub-addr,
body[data-mode="public"] .pub-phone {
  color: var(--mute);
  margin-top: 8px;
  font-size: 15px;
}
body[data-mode="public"] .pub-phone { color: var(--gold); letter-spacing: 0.08em; }
body[data-mode="public"] .pub-stepper {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
}
body[data-mode="public"] .pub-stepper li {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  border: 1px solid var(--line);
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
body[data-mode="public"] .pub-stepper li.on {
  color: #0a0a08;
  background: var(--gold);
  border-color: var(--gold);
}
body[data-mode="public"] .pub-stepper li.done { border-color: var(--gold); color: var(--gold); }
body[data-mode="public"] .pub-stage {
  justify-content: flex-start;
  padding: 24px 0 20px;
}
body[data-mode="public"] .svc-row {
  width: 100%;
  min-height: 72px;
  border: 1px solid var(--line);
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  text-align: left;
  cursor: pointer;
}
body[data-mode="public"] .svc-row:hover { border-color: var(--gold); }
body[data-mode="public"] .svc-row .who,
body[data-mode="public"] .svc-row .meta,
body[data-mode="public"] .svc-row .book-now { pointer-events: none; }
body[data-mode="public"] .svc-row .who {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}
body[data-mode="public"] .svc-row .meta { color: var(--mute); font-size: 13px; letter-spacing: 0.08em; }
body[data-mode="public"] .svc-row .book-now {
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  flex: 0 0 auto;
}
body[data-mode="public"] .day-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}
body[data-mode="public"] .day-row button {
  min-height: 56px;
  min-width: 56px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}
body[data-mode="public"] .day-row button.on {
  background: var(--gold);
  color: #0a0a08;
  border-color: var(--gold);
}
body[data-mode="public"] .pub-stage .card .k,
body[data-mode="public"] .pub-stage .card .v,
body[data-mode="public"] .pub-stage .card .m { pointer-events: none; }

/* Chronos stage redesign overrides */
:root {
  --bg: #0a0a0a;
  --ink: #f5f0e6;
  --mute: #cfc9b8;
  --line: #2e2a1e;
  --soft: #11100c;
  --gold: #D4AF37;
  --gold-dim: #8a7a45;
  --gold-soft: rgba(212, 175, 55, 0.14);
  --ok: #D4AF37;
}

body {
  background: #0a0a0a;
  color: #f5f0e6;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

h1, h2, h3, .title, .card .v, .list .who, .phone-box, .tv-guest {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
}

.app {
  padding-top: 24px;
}

.booth-chrome,
body[data-mode="public"] .pub-top {
  align-items: center;
  padding-bottom: 12px;
  min-height: 72px;
}

.stage {
  justify-content: flex-start;
  padding: 28px 0 24px;
  overflow: visible;
}

.btn,
.card,
.keypad button,
.list button,
body[data-mode="public"] .svc-row {
  border-radius: 0;
}

.btn:active,
.card:active,
.keypad button:active,
.list button:active,
body[data-mode="public"] .svc-row:active {
  transform: scale(0.97);
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.streak-dots {
  display: grid;
  grid-template-columns: repeat(10, minmax(24px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.streak-dot {
  aspect-ratio: 1;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font: 700 11px/1 Arial, sans-serif;
}

.streak-dot.on {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.cut-streak .streak-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.cut-streak .streak-head p {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.count-ring {
  width: 74px;
  height: 74px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 2px solid var(--line);
  border-top-color: var(--gold);
  animation: chronos-spin 8s linear forwards;
}

@keyframes chronos-spin {
  to { transform: rotate(360deg); }
}

/* TV board */
body.tv-body,
body.tv-body html {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cursor-hidden,
.cursor-hidden * {
  cursor: none !important;
}

.tv {
  width: 100vw;
  height: 100vh;
  min-height: 0;
  padding: 28px 36px;
  overflow: hidden;
  max-width: none;
}

.tv-gate {
  min-height: 100vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 32px;
}

.gate-mark {
  margin: 0 auto 22px;
  filter: sepia(1) saturate(7) hue-rotate(2deg) brightness(0.92) contrast(1.15);
}

.tv-gate h1 {
  font-size: clamp(54px, 7vw, 104px);
  color: var(--gold);
}

.tv-gate .pin-row {
  justify-content: center;
}

.tv-gate .pin-row input {
  width: min(520px, 52vw);
  min-height: 92px;
  background: #0f0e0a;
  color: var(--gold);
  border-color: var(--gold);
  font-size: 46px;
}

.tv-head {
  height: 112px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom-color: var(--line);
}

.tv-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tv-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: sepia(1) saturate(7) hue-rotate(2deg) brightness(0.92) contrast(1.15);
}

.tv-head h1 {
  font-size: clamp(52px, 5vw, 82px);
  color: var(--ink);
}

.tv-clock .tv-hms,
.tv-clock .tv-ampm {
  color: var(--gold);
  font-size: clamp(46px, 5vw, 76px);
}

.tv-clock .tiny,
#tvDate {
  color: var(--gold);
}

.tv-layout {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 28px;
  padding-top: 26px;
}

.tv-chairs {
  min-height: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 22px;
}

.tv-chair {
  min-height: 0;
  height: calc(100vh - 166px);
  border-color: var(--line);
  background: #0a0a0a;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.chair-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.tv-chair h2 {
  color: var(--gold);
  font-size: clamp(88px, 7vw, 132px);
  line-height: 0.9;
}

.wait-chip {
  min-width: 112px;
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font: 700 18px/1 Arial, sans-serif;
  text-transform: uppercase;
}

.wait-chip.zero {
  background: var(--gold);
  color: #0a0a0a;
}

.tv-now {
  margin-top: 20px;
  min-height: 104px;
}

.tv-guest {
  font-size: clamp(42px, 4vw, 64px);
  color: var(--ink);
}

.tv-col {
  margin-top: 8px;
}

.tv-col li {
  align-items: baseline;
  justify-content: flex-start;
  gap: 18px;
  font-size: clamp(30px, 3vw, 48px);
}

.tv-col li span {
  color: var(--gold-dim);
  min-width: 40px;
  font-family: Arial, sans-serif;
  font-size: 20px;
}

.empty {
  color: rgba(207, 201, 184, 0.34) !important;
  letter-spacing: 0.2em;
  font-family: Arial, sans-serif !important;
  font-size: 20px !important;
}

.tv-next {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.tv-next div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  font-size: 26px;
}

.tv-next span {
  color: var(--gold);
}

.tv-rail {
  border-left: 1px solid var(--line);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--mute);
  font-size: 16px;
  line-height: 1.35;
}

.qr-link img {
  width: max(180px, min(220px, 16vw));
  height: max(180px, min(220px, 16vw));
  background: #fff;
  padding: 8px;
  display: block;
  margin-bottom: 18px;
}

body.tv-body .tv-banner {
  position: fixed;
  left: 36px;
  right: 304px;
  top: 140px;
  z-index: 5;
  border: 1px solid var(--gold);
}

body.tv-body ::-webkit-scrollbar {
  display: none;
}

/* Kiosk */
body[data-mode="shop"],
body[data-mode="shop"] .app,
body[data-mode="shop"] .pane,
body[data-mode="shop"] .stage {
  max-height: 100vh;
  overflow: hidden;
}

body[data-mode="shop"] .app {
  height: 100vh;
  max-width: none;
  padding: 24px 34px 20px;
}

body[data-mode="shop"] .pane {
  min-height: 0;
}

body[data-mode="shop"] .stage {
  min-height: 0;
}

body[data-mode="shop"] .stage {
  padding-top: 22px;
}

body[data-mode="shop"] .foot {
  min-height: 34px;
  border-top: 1px solid var(--line);
  align-items: center;
}

body[data-mode="shop"] button,
body[data-mode="shop"] .btn,
body[data-mode="shop"] .card,
body[data-mode="shop"] input {
  min-height: 72px;
}

body[data-mode="shop"] button:hover,
body[data-mode="shop"] .card:hover,
body[data-mode="shop"] .keypad button:hover,
body[data-mode="shop"] .list button:hover {
  border-color: var(--line);
}

.kiosk-idle {
  min-height: calc(100vh - 176px);
  display: grid;
  place-items: center;
  align-content: start;
  text-align: center;
  padding-top: 48px;
}

.kiosk-idle img {
  width: 124px;
  height: 124px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: sepia(1) saturate(7) hue-rotate(2deg) brightness(0.92) contrast(1.15);
}

.kiosk-idle h1 {
  font-size: clamp(58px, 8vw, 112px);
  color: var(--gold);
}

.kiosk-idle .sub {
  max-width: none;
  color: var(--mute);
}

.idle-actions {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr);
  gap: 18px;
  width: min(680px, 90vw);
}

.staff-corner {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 20;
}

.staff-dot {
  min-width: 74px;
  min-height: 74px;
  border: 1px solid var(--line);
  background: #0d0c09;
  color: var(--gold-dim);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.staff-pin-panel {
  position: absolute;
  right: 0;
  top: 82px;
  width: 260px;
  padding: 14px;
  background: #0d0c09;
  border: 1px solid var(--gold-dim);
}

.staff-pin-panel input {
  width: 100%;
  background: #080808;
  border: 1px solid var(--line);
  color: var(--gold);
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.28em;
  margin-bottom: 10px;
}

.kiosk-keypad-screen {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 420px) minmax(220px, 0.65fr);
  gap: 30px;
  align-items: center;
  min-height: calc(100vh - 176px);
}

.keypad-copy h1 {
  font-size: clamp(56px, 6vw, 86px);
  color: var(--gold);
}

.phone-box.live {
  color: var(--gold);
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: 0.04em;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 0.8em;
  background: var(--gold);
  margin-left: 8px;
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.kiosk-pad {
  max-width: none;
  gap: 12px;
}

.kiosk-pad button {
  width: 96px;
  height: 96px;
  min-height: 96px;
  border-color: var(--line);
  color: var(--ink);
  font-size: 40px;
}

.kiosk-pad .soft-key {
  color: var(--gold-dim);
  font-size: 17px;
  letter-spacing: 0.12em;
}

.keypad-actions {
  display: grid;
  gap: 16px;
}

.keypad-actions .btn {
  width: 100%;
}

.choice-screen {
  min-height: calc(100vh - 176px);
}

.choice-title {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.choice-title h1 {
  font-size: clamp(58px, 7vw, 96px);
  color: var(--gold);
}

.choice-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(280px, 0.62fr);
  gap: 24px;
  align-items: stretch;
}

.choice-left {
  display: grid;
  gap: 16px;
}

.choice-card {
  border: 1px solid var(--line);
  padding: 22px;
  background: #0d0c09;
}

.choice-card h2 {
  color: var(--gold);
  font-size: 42px;
  font-weight: 400;
}

.choice-card p:last-child {
  color: var(--mute);
  margin-top: 8px;
}

.choice-actions {
  display: grid;
  align-content: start;
  gap: 16px;
}

.choice-actions .btn {
  width: 100%;
  min-height: 88px;
}

body[data-mode="shop"] .services-list {
  max-height: none;
  overflow: visible;
  gap: 8px;
}

body[data-mode="shop"] .list button {
  min-height: 72px;
}

body[data-mode="shop"] ::-webkit-scrollbar {
  display: none;
}

/* Public booking */
body[data-mode="public"] .app.public-book {
  max-width: 760px;
  padding-top: 20px;
}

body[data-mode="public"] .pub-stepper {
  position: sticky;
  top: 0;
  z-index: 4;
  background: #0a0a0a;
  padding: 10px 0;
  margin-top: 10px;
}

body[data-mode="public"] .pub-stepper li.done,
body[data-mode="public"] .pub-stepper li.on {
  border-color: var(--gold);
}

body[data-mode="public"] .pub-stage {
  padding-top: 18px;
}

body[data-mode="public"] .services-list {
  max-height: none;
  overflow: visible;
}

body[data-mode="public"] .svc-row {
  min-height: 64px;
}

body[data-mode="public"] .svc-row .meta {
  margin-left: auto;
  white-space: nowrap;
}

.review-screen h1 {
  color: var(--gold);
  font-size: clamp(42px, 8vw, 64px);
}

.review-progress {
  height: 8px;
  background: #17140d;
  border: 1px solid var(--line);
  margin-bottom: 24px;
}

.review-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
}

.review-card {
  margin-top: 20px;
  border: 1px solid var(--line);
  background: #0d0c09;
  padding: 22px;
}

.review-card p {
  color: var(--mute);
  margin-top: 12px;
  font-size: 16px;
}

.review-time {
  color: var(--gold) !important;
  font: 400 46px/1 "Cormorant Garamond", serif;
  margin-top: 0 !important;
}

.review-time span {
  font: 700 13px/1 Arial, sans-serif;
  letter-spacing: 0.18em;
}

.review-date {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px !important;
}

.review-streak {
  color: var(--gold) !important;
}

.review-contact a {
  color: var(--gold);
}

.review-confirm {
  width: 100%;
  margin-top: 18px;
}

.review-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.review-links button {
  border: 0;
  background: transparent;
  color: var(--gold-dim);
  min-height: 44px;
  letter-spacing: 0.12em;
  font-size: 11px;
  cursor: pointer;
}

/* Admin */
body[data-page="barber"] .app {
  max-width: none;
  padding: 20px 28px 12px;
}

.admin-toggles {
  display: flex;
  gap: 10px;
  align-items: center;
}

.admin-board {
  position: relative;
}

.chair-strip-wrap {
  position: sticky;
  top: 0;
  z-index: 6;
  display: grid;
  gap: 8px;
  background: #0a0a0a;
  padding-bottom: 10px;
}

.admin-chair-strip {
  min-height: 76px;
  border: 1px solid var(--line);
  background: #0e0d09;
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(260px, 1fr);
  gap: 18px;
  align-items: center;
  padding: 10px 16px;
}

.admin-chair-strip h2 {
  color: var(--gold);
  font-size: 34px;
  font-weight: 400;
}

.admin-chair-strip p,
.strip-next {
  color: var(--mute);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.strip-next {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.strip-next .acts {
  margin-top: 0;
}

.admin-day-summary {
  min-height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.admin-tools {
  margin-top: 10px;
}

.appt-list {
  display: grid;
  gap: 6px;
}

.appt-row {
  min-height: 64px;
  max-height: 72px;
  display: grid;
  grid-template-columns: 64px minmax(180px, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  padding: 8px 10px;
}

.appt-row.next-up {
  border-color: var(--gold);
}

.appt-row.is-dim {
  opacity: 0.5;
}

.appt-time {
  color: var(--gold);
  font-size: 14px;
}

.appt-main {
  min-width: 0;
}

.appt-main strong {
  display: inline;
  font-size: 18px;
}

.appt-main span {
  color: var(--mute);
  margin-left: 8px;
  font-size: 13px;
}

.appt-row .acts {
  margin-top: 0;
  flex-wrap: nowrap;
}

.appt-row .btn,
.admin-tools .btn,
.admin-queue-row .btn {
  min-height: 42px;
  padding: 0 12px;
  font-size: 10px;
}

.confirmed-label {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0 10px;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.slot-inline {
  grid-column: 2 / 4;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.owner-panel {
  position: relative;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.owner-corner {
  position: absolute;
  right: 0;
  top: 12px;
}

.owner-add-form {
  max-width: 360px;
  margin: 0 0 18px auto;
  padding: 14px;
  border: 1px solid var(--line);
  background: #0d0c09;
}

.owner-add-form input {
  width: 100%;
  min-height: 54px;
  margin-top: 8px;
  background: #090909;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0 12px;
}

.owner-add-form input[type="password"] {
  letter-spacing: 0.2em;
}

/* Owner console */
.owner-console {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  min-height: calc(100vh - 136px);
}

.owner-nav {
  position: sticky;
  top: 0;
  align-self: start;
  width: 118px;
  min-height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--line);
  padding-right: 10px;
}

.owner-nav button {
  min-height: 44px;
  border: 1px solid var(--gold-dim);
  background: transparent;
  color: var(--gold-dim);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.owner-nav button.on {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.owner-nav-bottom {
  margin-top: auto;
  display: grid;
  gap: 8px;
}

.owner-nav .quiet-item {
  border-color: var(--line);
}

.owner-head,
.owner-panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.owner-head {
  min-height: 74px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  padding-bottom: 12px;
}

.owner-main {
  min-width: 0;
}

.owner-panel-view h1 {
  color: var(--gold);
  font-size: clamp(42px, 5vw, 64px);
}

.owner-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.owner-row {
  min-height: 82px;
  border: 1px solid var(--line);
  background: #0d0c09;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 14px;
}

.owner-row.inactive {
  border-style: dashed;
  opacity: 0.55;
}

.owner-row h3,
.owner-client-record h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 30px;
}

.owner-row p,
.owner-client-record p,
.next-strip span {
  color: var(--mute);
  font-size: 13px;
  margin-top: 4px;
}

.inactive-note {
  color: var(--gold) !important;
}

.role-chip,
.service-chip {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font: 700 10px/1 Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
}

.role-chip.solid,
.service-chip.earns {
  background: var(--gold);
  color: #0a0a0a;
}

.role-chip.outline {
  background: transparent;
}

.inactive-chip,
.service-chip.muted {
  border-color: var(--line);
  color: var(--mute);
}

.owner-form {
  margin-top: 16px;
  border: 1px solid var(--gold-dim);
  padding: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  background: #0d0c09;
}

.owner-form input,
.owner-search,
.owner-date,
.hours-row input {
  min-height: 50px;
  background: #080808;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0 12px;
  outline: none;
}

.owner-form input[type="password"] {
  -webkit-text-security: disc;
}

.owner-search {
  width: min(280px, 36vw);
}

.owner-footnote {
  margin-top: 16px;
  color: var(--mute);
  font-size: 12px;
}

.owner-clients-layout {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.owner-client-list {
  display: grid;
  gap: 8px;
}

.owner-client-pick {
  min-height: 58px;
  border: 1px solid var(--line);
  background: #0d0c09;
  color: var(--ink);
  display: grid;
  align-content: center;
  text-align: left;
  padding: 8px 12px;
  cursor: pointer;
}

.owner-client-pick span {
  color: var(--mute);
  font-size: 12px;
  margin-top: 4px;
}

.owner-client-record {
  min-width: 0;
}

.owner-streak {
  margin-bottom: 12px;
}

.next-strip {
  margin: 14px 0 20px;
  border: 1px solid var(--line);
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 14px;
}

.owner-history-list {
  display: grid;
  gap: 8px;
}

.owner-history-row {
  min-height: 46px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--ink);
}

.owner-history-row.muted {
  opacity: 0.55;
}

.owner-history-row.gold {
  color: var(--gold);
}

.filter-chips {
  margin: 14px 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-chips button {
  min-height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--mute);
  padding: 0 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.filter-chips button.on {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.hours-grid {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.hours-row {
  display: grid;
  grid-template-columns: 72px 130px 130px;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  border-top: 1px solid var(--line);
}

.display-panel {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 58vh;
  text-align: center;
}

.display-code {
  color: var(--gold);
  font: 400 clamp(82px, 16vw, 180px)/1 "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
  margin: 20px 0;
}

@media (max-width: 820px) {
  .tv {
    padding: 18px;
  }
  .tv-head {
    height: auto;
    gap: 16px;
  }
  .tv-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tv-rail {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 14px 0 0;
  }
  .tv-chair {
    height: auto;
    min-height: 420px;
  }
  .tv-chair h2 {
    font-size: 76px;
  }
  .kiosk-keypad-screen,
  .choice-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .kiosk-pad {
    justify-content: center;
  }
  .kiosk-pad button {
    width: 88px;
    height: 88px;
  }
  .idle-actions {
    grid-template-columns: 1fr;
  }
  .choice-actions {
    grid-template-columns: 1fr;
  }
  .appt-row {
    grid-template-columns: 64px 1fr;
    max-height: none;
  }
  .appt-row .acts {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  body[data-mode="shop"] .app {
    padding: 14px 16px 12px;
  }
  body[data-mode="shop"] .booth-chrome {
    min-height: 58px;
    padding-bottom: 8px;
  }
  body[data-mode="shop"] .mark-stamp img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
  body[data-mode="shop"] .word strong {
    font-size: 11px;
  }
  body[data-mode="shop"] .word span {
    font-size: 9px;
  }
  body[data-mode="shop"] .stage {
    padding-top: 10px;
  }
  .kiosk-idle,
  .kiosk-keypad-screen,
  .choice-screen {
    min-height: calc(100vh - 126px);
  }
  .kiosk-idle {
    padding-top: 26px;
  }
  .kiosk-idle img {
    width: 92px;
    height: 92px;
  }
  .kiosk-idle h1,
  .choice-title h1,
  .keypad-copy h1 {
    font-size: 42px;
  }
  .kiosk-keypad-screen {
    gap: 8px;
    align-content: start;
  }
  .keypad-copy .sub {
    margin-top: 8px;
    font-size: 13px;
  }
  .phone-box.live {
    margin-top: 10px;
    min-height: 40px;
    font-size: 34px;
  }
  .kiosk-pad {
    gap: 8px;
    margin-top: 4px;
  }
  .kiosk-pad button {
    width: 72px;
    height: 72px;
    min-height: 72px;
    font-size: 30px;
  }
  .kiosk-pad .soft-key {
    font-size: 11px;
  }
  .keypad-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .keypad-actions .btn {
    min-width: 0;
    padding: 0 10px;
  }
  .choice-title {
    gap: 10px;
  }
  .choice-title .btn {
    min-width: 118px;
    padding: 0 10px;
    font-size: 10px;
  }
  .choice-grid {
    margin-top: 8px;
  }
  .choice-card {
    padding: 14px;
  }
  .choice-card h2 {
    font-size: 30px;
  }
  .streak-dots {
    gap: 5px;
  }
  .choice-actions {
    gap: 8px;
  }
  .choice-actions .btn {
    min-height: 72px;
  }
  body[data-mode="shop"] .foot {
    font-size: 9px;
    min-height: 24px;
    gap: 8px;
  }
}
