:root {
  color-scheme: dark;
  --bg: #08110f;
  --panel: rgba(15, 32, 28, 0.86);
  --panel-strong: rgba(22, 48, 42, 0.96);
  --ink: #f5fff9;
  --muted: #aac5bb;
  --line: rgba(187, 230, 203, 0.22);
  --mint: #8ef0bc;
  --gold: #f7c95b;
  --coral: #ff806f;
  --blue: #7cc8ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 12%, rgba(142, 240, 188, 0.16), transparent 34rem),
    radial-gradient(circle at 80% 2%, rgba(247, 201, 91, 0.18), transparent 30rem),
    linear-gradient(135deg, #07130f 0%, #11241f 46%, #101017 100%);
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 44px 0 28px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 100%;
  font-size: clamp(3.8rem, 7vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  letter-spacing: 0;
}

.lede {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action,
.checkout-button,
.menu-card button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #07110e;
  background: var(--mint);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.secondary-action {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

.hero-visual {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.hero-visual strong {
  color: var(--gold);
}

.reserve-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.reserve-band > div {
  min-height: 148px;
  padding: 24px;
  background: rgba(10, 24, 20, 0.9);
}

.reserve-value {
  display: block;
  color: var(--mint);
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  font-weight: 900;
  line-height: 0.92;
}

.reserve-band p {
  margin: 14px 0 0;
  color: var(--muted);
}

.counter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: 22px;
  align-items: start;
  padding: 34px 0;
}

.menu-panel,
.receipt-panel,
.compliance-strip {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.menu-panel,
.receipt-panel {
  padding: clamp(20px, 3vw, 32px);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.menu-list {
  display: grid;
  gap: 14px;
}

.menu-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 86px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.menu-card.featured {
  border-color: rgba(247, 201, 91, 0.55);
  background: rgba(247, 201, 91, 0.09);
}

.item-code {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
}

.menu-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.menu-card button {
  width: 72px;
  padding: 0 12px;
  background: var(--gold);
}

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

.status-pill {
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.cart-lines {
  display: grid;
  gap: 10px;
  min-height: 96px;
  padding: 16px 0;
  border-block: 1px solid var(--line);
}

.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.cart-line strong {
  color: var(--ink);
}

.empty {
  margin: auto 0;
  color: var(--muted);
}

.totals {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.totals dt,
.totals dd {
  margin: 0;
}

.totals dd {
  color: var(--ink);
  font-weight: 800;
}

.grand-total {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 1.2rem;
}

.checkout-button {
  width: 100%;
  background: var(--mint);
}

pre {
  margin: 18px 0 0;
  max-height: 260px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  color: #c4f6dc;
  background: rgba(0, 0, 0, 0.28);
  font-size: 0.82rem;
  line-height: 1.5;
  white-space: pre-wrap;
}

.compliance-strip {
  margin: 18px 0 54px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(28, 18, 16, 0.82);
}

.compliance-strip h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.compliance-strip p {
  margin-bottom: 0;
  color: #ffd2c9;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .hero,
  .counter-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .reserve-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

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

  .menu-card button {
    width: 100%;
  }

  .receipt-top,
  .section-heading {
    display: grid;
  }
}
