:root {
  --bg: #030303;
  --card-bg: #101010;
  --card-bg-soft: #151515;
  --text: #f7f3ea;
  --muted: #d6cdbd;
  --gold: #f2c46d;
  --line: rgba(242, 196, 109, 0.22);
  --danger-soft: rgba(255, 95, 95, 0.16);
  --danger-line: rgba(255, 95, 95, 0.42);
  --success-soft: rgba(115, 255, 175, 0.12);
  --success-line: rgba(115, 255, 175, 0.32);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(242, 196, 109, 0.14), transparent 38%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}

a { color: #ffe3a0; }
a:hover, a:focus { color: #fff2cc; }
code { color: #fff1cc; }

.page-wrap { padding: 48px 0 64px; }
.brand-link { text-decoration: none; display: inline-block; }
.brand-title {
  color: #fff6df;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.95;
  text-shadow: 0 0 8px rgba(242,196,109,.72), 0 0 20px rgba(242,196,109,.38), 0 0 42px rgba(242,196,109,.22);
}
.brand-subtitle {
  margin-top: 10px;
  color: var(--gold);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-size: clamp(1rem, 2.6vw, 1.8rem);
  text-shadow: 0 0 8px rgba(242,196,109,.85), 0 0 22px rgba(242,196,109,.32);
}

.intro-card, .calculator-card, .info-card, .admin-card, .pricing-card, .admin-link-card {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(16,16,16,.84);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 0 30px rgba(242,196,109,.09);
  color: var(--muted);
}
.intro-card { margin-top: 34px; margin-bottom: 22px; }
.calculator-card, .admin-card, .pricing-card, .admin-link-card { margin-bottom: 42px; }
.info-card.bottom-info { margin-top: 42px; margin-bottom: 22px; }

.info-card h2, .admin-card h2, .pricing-card h2, .calculator-label, .admin-link-card h2 {
  color: #fff6df;
  text-shadow: 0 0 8px rgba(242,196,109,.54), 0 0 22px rgba(242,196,109,.22);
}
p { color: var(--text); line-height: 1.55; }
.calculator-label { font-size: 1.25rem; }

.guest-input, .date-input, .admin-input, .admin-select {
  background: #070707;
  border: 1px solid rgba(242,196,109,.5);
  color: #fff6df;
  border-radius: 18px;
  padding: 14px 18px;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: inset 0 0 18px rgba(242,196,109,.04), 0 0 18px rgba(242,196,109,.08);
}
.guest-input { font-size: 1.35rem; }
.guest-input:focus, .date-input:focus, .admin-input:focus, .admin-select:focus {
  background: #090909;
  color: #fff6df;
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(242,196,109,.12), 0 0 22px rgba(242,196,109,.18);
}
.admin-select option { background: #101010; color: #fff6df; }

.menu-card {
  height: 100%;
  background: linear-gradient(145deg, var(--card-bg), var(--card-bg-soft));
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 44px rgba(0,0,0,.55), 0 0 22px rgba(242,196,109,.08);
  overflow: hidden;
}
.menu-card .card-header {
  background: rgba(242,196,109,.08);
  border-bottom: 1px solid var(--line);
  padding: 26px 26px 20px;
}
.menu-card .card-body { padding: 26px; }
.menu-name {
  margin: 0;
  color: #fff5dc;
  font-size: 1.85rem;
  text-shadow: 0 0 8px rgba(242,196,109,.52), 0 0 20px rgba(242,196,109,.22);
}
.price-line {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(242,196,109,.42);
  color: #fff1cc;
  background: rgba(242,196,109,.1);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: .95rem;
  line-height: 1.2;
  box-shadow: 0 0 14px rgba(242,196,109,.1);
}
.danger-pill { border-color: var(--danger-line); color: #ffd6d6; background: var(--danger-soft); }
.success-pill { border-color: var(--success-line); color: #d6ffe4; background: var(--success-soft); }

.estimate-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(242,196,109,.075);
  border: 1px solid rgba(242,196,109,.3);
  box-shadow: inset 0 0 18px rgba(242,196,109,.035);
}
.estimate-label {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.estimate-value {
  margin: 0;
  color: #fff6df;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  font-weight: 700;
  line-height: 1.05;
  text-shadow: 0 0 8px rgba(242,196,109,.54), 0 0 22px rgba(242,196,109,.22);
}
.estimate-note, .per-head-note { margin: 8px 0 0; color: var(--muted); line-height: 1.45; }
.warning-note, .date-advice-card, .success-note {
  margin-top: 12px;
  padding: 11px 13px;
  border-radius: 14px;
  line-height: 1.4;
}
.warning-note, .date-advice-card {
  background: var(--danger-soft);
  border: 1px solid var(--danger-line);
  color: #ffd6d6;
}
.success-note {
  background: var(--success-soft);
  border: 1px solid var(--success-line);
  color: #d6ffe4;
}
.date-advice-card {
  background: rgba(242,196,109,.095);
  border-color: rgba(242,196,109,.34);
  color: #fff1cc;
  margin-top: 18px;
}
.selected-date-card {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text);
}
.section-heading {
  color: var(--gold);
  font-size: 1.1rem;
  margin: 24px 0 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(242,196,109,.42);
}
.menu-list { margin: 0; padding-left: 1.15rem; color: var(--text); }
.menu-list li { margin-bottom: 10px; line-height: 1.45; }
.item-desc { display: block; margin-top: 2px; color: var(--muted); font-size: .95rem; line-height: 1.35; }
.note-box {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  line-height: 1.5;
}
.highlight { color: #fff0c6; font-weight: 700; text-shadow: 0 0 10px rgba(242,196,109,.34); }
.base-struck { color: var(--muted); opacity: 0.6; }

.slot-option { position: relative; }
.slot-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.slot-label {
  display: block;
  padding: 10px 14px;
  border: 1px solid rgba(242,196,109,.3);
  border-radius: 16px;
  cursor: pointer;
  background: rgba(0,0,0,.25);
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.2;
  transition: border-color .15s, background .15s;
  user-select: none;
}
.slot-radio:checked + .slot-label {
  border-color: var(--gold);
  background: rgba(242,196,109,.12);
  color: #fff6df;
  box-shadow: 0 0 14px rgba(242,196,109,.14);
}
.slot-label:hover {
  border-color: rgba(242,196,109,.55);
  color: var(--text);
}
.slot-time {
  display: block;
  font-size: .82rem;
  color: var(--muted);
  margin-top: 2px;
}
.slot-radio:checked + .slot-label .slot-time { color: var(--gold); }

.tier-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
  vertical-align: middle;
  margin-left: 5px;
  text-shadow: none;
}
.tier-badge--t1,
.tier-badge--t2,
.tier-badge--t3,
.tier-badge--t4,
.tier-badge--special250 { background: rgba(80,200,120,.16); border: 1px solid rgba(80,200,120,.38); color: #a8f0b8; }
.footer-note { margin-top: 42px; color: var(--muted); font-size: .98rem; }
.glow-button {
  border: 1px solid rgba(242,196,109,.48);
  background: rgba(242,196,109,.12);
  color: #fff1cc;
  border-radius: 999px;
  padding: 10px 16px;
  text-decoration: none;
  box-shadow: 0 0 16px rgba(242,196,109,.10);
}
.glow-button:hover, .glow-button:focus {
  background: rgba(242,196,109,.18);
  color: #fff6df;
  border-color: rgba(242,196,109,.72);
}
.override-list { display: grid; gap: 10px; }
.override-row {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  padding: 12px 14px;
}
.pricing-table { color: var(--text); border-color: rgba(242,196,109,.18); }
.pricing-table th, .pricing-table td { color: var(--text); background: transparent; border-color: rgba(242,196,109,.18); }

@media print {
  body { background: #000 !important; color: #fff !important; }
  .menu-card, .intro-card, .calculator-card, .info-card, .admin-card, .pricing-card { break-inside: avoid; }
}
