:root {
  --coal: #070604;
  --char: #15100c;
  --smoke: #2a211b;
  --ash: #76685d;
  --bone: #fff3da;
  --cream: #f8e3bd;
  --ember: #ff4815;
  --flame: #ff841f;
  --gold: #f6b934;
  --lime: #8cc72b;
  --leaf: #5b8f16;
  --danger: #ff5a4f;
  --ok: #9bd44d;
  --panel: rgba(20, 13, 8, 0.78);
  --panel-solid: #160f0a;
  --border: rgba(255, 229, 181, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --display-font: "Fraunces", "Cooper Black", Georgia, serif;
  --body-font: "Plus Jakarta Sans", "Trebuchet MS", "Gill Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--bone);
  font-family: var(--body-font);
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 115, 23, 0.34), transparent 28rem),
    radial-gradient(circle at 90% 8%, rgba(140, 199, 43, 0.18), transparent 22rem),
    radial-gradient(circle at 48% 75%, rgba(255, 72, 21, 0.22), transparent 30rem),
    linear-gradient(135deg, #080604 0%, #1d120c 46%, #050403 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 64px),
    radial-gradient(ellipse at 50% 20%, rgba(255, 183, 68, 0.16), transparent 36%),
    repeating-linear-gradient(98deg, rgba(0, 0, 0, 0.28) 0 8px, rgba(255, 132, 31, 0.1) 9px 12px, transparent 13px 48px);
  filter: saturate(1.15);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 24% 34%, rgba(255, 255, 255, 0.12), transparent 0.18rem),
    radial-gradient(circle at 71% 18%, rgba(255, 255, 255, 0.08), transparent 0.16rem),
    radial-gradient(circle at 84% 64%, rgba(255, 255, 255, 0.08), transparent 0.18rem),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.74));
  mix-blend-mode: screen;
  opacity: 0.45;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

img {
  max-width: 100%;
  display: block;
}

.hidden {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: var(--bone);
  color: var(--coal);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.75rem clamp(1rem, 3vw, 2rem);
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(7, 6, 4, 0.92), rgba(7, 6, 4, 0.62));
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.brand-chip,
.cart-pill,
.nav-links a,
.nav-toggle {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 243, 218, 0.08);
  color: var(--bone);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.85rem 0.35rem 0.4rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-logo {
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  object-fit: cover;
  background: var(--coal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-links a,
.cart-pill,
.nav-toggle {
  padding: 0.55rem 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.cart-pill {
  flex: 0 0 auto;
  white-space: nowrap;
}

.nav-links a:hover,
.cart-pill:hover,
.nav-toggle:hover {
  background: rgba(255, 132, 31, 0.18);
}

.cart-pill span {
  display: inline-grid;
  min-width: 1.55rem;
  height: 1.55rem;
  margin-left: 0.35rem;
  place-items: center;
  border-radius: 50%;
  color: #142000;
  background: var(--lime);
}

.nav-toggle {
  display: none;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 26rem);
  gap: clamp(1.5rem, 5vw, 4rem);
  min-height: clamp(36rem, 88svh, 45rem);
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--coal);
}

.hero-section::before {
  position: absolute;
  inset: 1rem;
  z-index: 3;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 2rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 0 6px rgba(0, 0, 0, 0.06) inset;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.05);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.82) 0%, rgba(7, 6, 4, 0.42) 52%, rgba(7, 6, 4, 0.72) 100%),
    radial-gradient(circle at 18% 52%, rgba(255, 72, 21, 0.22), transparent 24rem),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.64));
  pointer-events: none;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 2;
}

.hero-content {
  align-self: center;
  width: 100%;
  min-width: 0;
  max-width: 760px;
}

.hero-logo {
  display: block;
  width: clamp(12rem, 24vw, 17rem);
  height: auto;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 50%;
  border: 1px solid rgba(255, 243, 218, 0.2);
  background: var(--coal);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display-font);
  line-height: 0.98;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 9vw, 7.7rem);
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.35rem;
}

.panel h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
}

.hero-copy,
.section-heading p,
.panel-note {
  color: rgba(255, 243, 218, 0.74);
  line-height: 1.7;
}

.hero-copy {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 1000;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover:not(:disabled) {
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.btn-fire {
  color: #1d0900;
  background: linear-gradient(135deg, var(--flame), var(--ember));
  box-shadow: 0 14px 34px rgba(255, 72, 21, 0.33);
}

.btn-ghost,
.btn-smoke {
  border: 1px solid var(--border);
  color: var(--bone);
}

.btn-ghost {
  background: rgba(255, 243, 218, 0.08);
}

.btn-smoke {
  background: linear-gradient(135deg, rgba(255, 243, 218, 0.14), rgba(255, 132, 31, 0.13));
}

.btn.small,
.btn-ghost.small {
  min-height: 2.25rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.86rem;
}

.full-width {
  width: 100%;
}

.hero-card {
  align-self: end;
  display: grid;
  min-width: 0;
  gap: 0.35rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: rgba(10, 7, 5, 0.72);
  box-shadow: var(--shadow);
}

.hero-card strong {
  font-family: var(--display-font);
  font-size: 2rem;
  line-height: 1;
}

.card-kicker {
  color: var(--gold);
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card small {
  margin-top: 0.8rem;
  color: rgba(255, 243, 218, 0.64);
  line-height: 1.5;
}

.section-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.section-heading.compact {
  margin-bottom: 1rem;
}

.status-card,
.panel,
.menu-card {
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.status-card {
  padding: 1rem 1.15rem;
  border-radius: 1.1rem;
  color: rgba(255, 243, 218, 0.78);
}

.status-card.hidden {
  display: none;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0;
}

.category-tabs button {
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--bone);
  background: rgba(255, 243, 218, 0.08);
  cursor: pointer;
}

.category-tabs button.active {
  color: #142000;
  border-color: transparent;
  background: var(--lime);
  font-weight: 1000;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
}

.menu-card-image,
.menu-card-placeholder {
  height: 13.5rem;
  background:
    radial-gradient(circle at 28% 36%, rgba(255, 132, 31, 0.75), transparent 6rem),
    linear-gradient(135deg, #2a150c, #090604);
}

.menu-card-image {
  width: 100%;
  object-fit: cover;
}

.menu-card-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 243, 218, 0.62);
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-card-body {
  padding: 1rem;
}

.menu-card h3 {
  margin-bottom: 0.45rem;
}

.menu-card p {
  min-height: 2.8rem;
  margin: 0 0 0.9rem;
  color: rgba(255, 243, 218, 0.7);
  line-height: 1.55;
}

.variant-actions {
  display: grid;
  gap: 0.45rem;
}

.variant-actions button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(140, 199, 43, 0.35);
  border-radius: 0.8rem;
  color: var(--bone);
  background: rgba(140, 199, 43, 0.08);
  cursor: pointer;
}

.variant-actions button:hover {
  background: rgba(140, 199, 43, 0.18);
}

.cart-layout,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.panel {
  border-radius: 1.5rem;
  padding: clamp(1rem, 2.5vw, 1.5rem);
}

.panel-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.34rem 0.52rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: rgba(255, 243, 218, 0.74);
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-badge.good {
  color: #142000;
  border-color: transparent;
  background: var(--lime);
}

.status-badge.warn {
  color: #2c1200;
  border-color: transparent;
  background: var(--gold);
}

.cart-lines {
  display: grid;
  gap: 0.75rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 243, 218, 0.06);
}

.cart-line strong,
.order-card strong {
  display: block;
}

.cart-line small,
.order-card small {
  color: rgba(255, 243, 218, 0.62);
}

.quantity-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.quantity-tools button {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--bone);
  background: rgba(255, 243, 218, 0.08);
  cursor: pointer;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 1.1rem;
}

.cart-total-row strong {
  color: var(--lime);
  font-size: 1.5rem;
}

.empty-copy {
  margin: 0;
  color: rgba(255, 243, 218, 0.62);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  min-width: 0;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}

.choice-grid legend {
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
  color: rgba(255, 243, 218, 0.76);
  font-weight: 900;
}

.choice-card {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 243, 218, 0.06);
  cursor: pointer;
}

.choice-card:has(input:checked) {
  border-color: rgba(140, 199, 43, 0.85);
  background: rgba(140, 199, 43, 0.14);
}

.choice-card span {
  font-weight: 1000;
}

.choice-card small,
.form-group small {
  color: rgba(255, 243, 218, 0.62);
}

.choice-card input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--lime);
}

.form-group {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

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

.form-group label {
  color: rgba(255, 243, 218, 0.82);
  font-weight: 900;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 0.8rem 0.9rem;
  color: var(--bone);
  background: rgba(255, 243, 218, 0.08);
  outline: none;
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 3.2rem;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  z-index: 1;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  color: rgba(255, 243, 218, 0.78);
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.password-toggle:hover,
.password-toggle:focus-visible {
  border-color: var(--border);
  color: var(--bone);
  background: rgba(255, 243, 218, 0.1);
}

.password-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255, 132, 31, 0.82);
  box-shadow: 0 0 0 4px rgba(255, 132, 31, 0.12);
}

.stack-form {
  display: grid;
  gap: 0.85rem;
}

.form-message {
  min-height: 1.4rem;
  margin: 0.35rem 0 0.75rem;
  color: var(--gold);
  line-height: 1.45;
}

.form-message.error {
  color: var(--danger);
}

.form-message.success {
  color: var(--ok);
}

.order-confirmation,
.detail-result:not(:empty) {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(140, 199, 43, 0.35);
  border-radius: 1rem;
  background: rgba(140, 199, 43, 0.08);
}

.order-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.summary-cell {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: rgba(0, 0, 0, 0.16);
}

.summary-cell span {
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(255, 243, 218, 0.56);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-items {
  width: 100%;
  margin-top: 0.9rem;
  border-collapse: collapse;
}

.detail-items th,
.detail-items td {
  padding: 0.55rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.detail-items th {
  color: rgba(255, 243, 218, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.auth-tabs {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.auth-tabs button {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--bone);
  background: rgba(255, 243, 218, 0.08);
  cursor: pointer;
}

.auth-tabs button.active {
  color: #142000;
  border-color: transparent;
  background: var(--lime);
  font-weight: 1000;
}

.reset-form {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.profile-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1rem;
}

.avatar,
.avatar-empty {
  width: 4.4rem;
  height: 4.4rem;
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  object-fit: cover;
  background: rgba(255, 132, 31, 0.12);
}

.avatar-empty {
  display: grid;
  place-items: center;
  color: var(--lime);
  font-family: var(--display-font);
  font-size: 2rem;
}

.avatar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.avatar-file-picker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
  color: rgba(255, 243, 218, 0.72);
  cursor: pointer;
}

.avatar-file-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--bone);
  background: rgba(255, 243, 218, 0.08);
  font-size: 0.86rem;
  font-weight: 1000;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.avatar-file-name {
  max-width: min(12rem, 42vw);
  overflow: hidden;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.avatar-file-picker:hover .avatar-file-action,
#avatar-file:focus-visible + .avatar-file-picker .avatar-file-action {
  border-color: rgba(255, 243, 218, 0.34);
  background: rgba(255, 243, 218, 0.13);
  transform: translateY(-1px);
}

.orders-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.orders-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.order-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 243, 218, 0.06);
}

.order-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
  gap: 1rem;
  align-items: stretch;
}

.contact-panel,
.map-panel {
  min-height: 100%;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.contact-list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.contact-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list dt {
  margin-bottom: 0.28rem;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: rgba(255, 243, 218, 0.82);
  line-height: 1.55;
}

.contact-list a {
  color: var(--bone);
  font-weight: 900;
}

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

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.map-panel {
  overflow: hidden;
  padding: 0;
}

.map-frame {
  display: block;
  width: 100%;
  height: auto;
  min-height: 23rem;
  aspect-ratio: 16 / 10;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.24rem 0.48rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.badge.pickup {
  color: #142000;
  background: var(--lime);
}

.badge.delivery {
  color: #2a1000;
  background: var(--flame);
}

.badge.pending,
.badge.confirmed,
.badge.preparing {
  color: #2c1200;
  background: var(--gold);
}

.badge.ready {
  color: #142000;
  background: var(--ok);
}

.badge.completed {
  color: var(--bone);
  background: rgba(255, 243, 218, 0.16);
}

.badge.cancelled {
  color: #fff;
  background: var(--danger);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  padding: 2rem 1rem;
  color: rgba(255, 243, 218, 0.54);
  border-top: 1px solid var(--border);
}

.toast-container {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: grid;
  gap: 0.6rem;
  width: min(24rem, calc(100vw - 2rem));
}

.toast {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  color: var(--bone);
  background: rgba(7, 6, 4, 0.92);
  box-shadow: var(--shadow);
}

.toast.success {
  border-color: rgba(140, 199, 43, 0.55);
}

.toast.error {
  border-color: rgba(255, 90, 79, 0.65);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-width: 13rem;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(7, 6, 4, 0.96);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-section,
  .cart-layout,
  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    align-self: auto;
  }

  .hero-content {
    display: grid;
    justify-self: center;
    justify-items: center;
    text-align: center;
  }

  .hero-logo {
    margin-inline: auto;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-actions {
    display: grid;
    justify-content: center;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding-inline: 0.65rem;
  }

  .nav-shell {
    width: 100%;
    max-width: calc(100vw - 1.3rem);
    gap: 0.5rem;
  }

  .brand-chip span:last-child {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: clamp(1.75rem, 7vw, 3rem) clamp(1rem, 5vw, 1.25rem);
  }

  .hero-content {
    max-width: min(21rem, 100%);
  }

  .hero-content .eyebrow {
    max-width: 100%;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .hero-actions {
    width: min(18rem, 100%);
  }

  .hero-card {
    margin-inline: clamp(0.75rem, 3vw, 1.25rem);
  }

  .hero-card strong {
    font-size: clamp(1.55rem, 8vw, 2rem);
    overflow-wrap: break-word;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 10.5vw, 3rem);
    letter-spacing: -0.035em;
  }

  .choice-grid,
  .form-row,
  .order-summary-grid {
    grid-template-columns: 1fr;
  }

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

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

  .order-card-actions {
    justify-content: flex-start;
  }
}
