:root {
  --charcoal: #0D0A08;
  --charcoal-2: #1C120F;
  --gold: #E8891E;
  --gold-light: #F2AA4C;
  --gold-glow: #FFCF7A;
  --red: #CD031D;
  --red-deep: #7A0714;
  --off-white: #F7F5F1;
  --oxblood: #8A1A12;
  --metallic-gradient: linear-gradient(135deg, var(--red-deep), var(--red) 30%, var(--gold) 55%, var(--gold-glow) 75%, var(--gold) 100%);

  --font-display: 'Anton', sans-serif;
  --font-body: 'Work Sans', sans-serif;

  --max-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--charcoal);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
}

a { color: inherit; }
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3rem); }

/* ---------- Nav ---------- */
header.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  background: rgba(13,10,8,0.92);
  border-bottom: 1px solid rgba(232,137,30,0.15);
}
.nav-mark { display: flex; align-items: center; }
.nav-mark img { height: 34px; width: auto; display: block; }
.nav-cta {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--metallic-gradient); border-color: transparent; color: var(--charcoal); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-position 0.4s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--metallic-gradient); background-size: 200% 200%; background-position: 0% 50%; color: var(--charcoal); }
.btn-gold:hover { background-position: 100% 50%; }

/* ---------- Menu hero ---------- */
.menu-back {
  display: inline-block;
  margin: 2rem clamp(1.25rem, 5vw, 3rem) 0;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(247,245,241,0.6);
  text-decoration: none;
}
.menu-back:hover { color: var(--gold-light); }

.menu-hero { padding: 1.5rem 0 3rem; }
.menu-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1rem;
}
.menu-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 0.95;
  color: var(--off-white);
}
.menu-hero p {
  margin-top: 1.25rem;
  max-width: 62ch;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(247,245,241,0.82);
}
.menu-hero-photo {
  margin-top: 2.5rem;
  height: clamp(220px, 34vw, 420px);
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(232,137,30,0.2);
}

/* ---------- Dish grid ---------- */
.menu-section { padding: 1rem 0 4rem; }
.menu-section-head { margin-bottom: 2rem; }
.menu-section-head .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.menu-section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  color: var(--off-white);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.dish-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(232,137,30,0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.dish-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.dish-photo { height: 190px; background-size: cover; background-position: center; }
.dish-body { padding: 1.5rem; }
.dish-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.15rem;
  color: var(--off-white);
  margin-bottom: 0.6rem;
}
.dish-body p { font-size: 0.92rem; color: rgba(247,245,241,0.75); }

/* ---------- Also on this menu ---------- */
.also-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.5rem; }
.also-tags span {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(247,245,241,0.18);
  color: rgba(247,245,241,0.75);
  white-space: nowrap;
}

/* ---------- Closing CTA ---------- */
.menu-cta {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 5vw, 3rem);
  margin: 2rem clamp(1.25rem, 5vw, 3rem) 0;
  background: linear-gradient(135deg, rgba(138,26,18,0.22), rgba(138,26,18,0.06));
  border: 1px solid rgba(138,26,18,0.5);
  border-radius: 8px;
}
.menu-cta .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.menu-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  max-width: 26ch;
  margin: 0 auto;
}
.menu-cta p { margin: 1rem auto 2rem; max-width: 46ch; color: rgba(247,245,241,0.8); }

/* ---------- Footer ---------- */
footer.site-footer {
  padding: 3rem clamp(1.25rem, 5vw, 3rem) 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(232,137,30,0.12);
  margin-top: 3rem;
}
footer.site-footer .foot-mark { height: 30px; width: auto; }
footer.site-footer .foot-links {
  margin-top: 1.25rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
footer.site-footer .foot-links a { text-decoration: none; color: rgba(247,245,241,0.7); }
footer.site-footer .foot-links a:hover { color: var(--gold-light); }
footer.site-footer .foot-fine {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(247,245,241,0.4);
}

@media (max-width: 900px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .dish-grid { grid-template-columns: 1fr; }
}

/* ---------- Order Now ---------- */
.meal-picker-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin: 2.5rem 0 1rem; }
.meal-picker-grid .meal-picker-card { max-width: 360px; }
.meal-disclaimer {
  background: rgba(232,137,30,0.08); border: 1px solid rgba(232,137,30,0.25); border-radius: 6px;
  padding: 0.9rem 1.1rem; font-size: 0.88rem; color: rgba(247,245,241,0.8); margin-bottom: 1.5rem;
}
.meal-picker-card {
  background: var(--charcoal-2); border: 1px solid rgba(232,137,30,0.18); border-radius: 10px;
  padding: 2rem 1.5rem; text-align: left; cursor: pointer; transition: transform 0.2s ease, border-color 0.2s ease;
  font-family: inherit; color: inherit;
}
.meal-picker-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.meal-picker-card h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.4rem; color: var(--off-white); margin-bottom: 0.6rem; }
.meal-picker-card p { font-size: 0.9rem; color: rgba(247,245,241,0.7); }
.menu-back-link {
  display: inline-block; margin-bottom: 1.5rem; font-size: 0.85rem; letter-spacing: 0.04em;
  color: rgba(247,245,241,0.6); background: none; border: none; cursor: pointer; padding: 0;
}
.menu-back-link:hover { color: var(--gold-light); }
.order-tabs { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 0 0 2.5rem; }
.order-tab {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 0.55rem 1.2rem; border-radius: 999px; border: 1px solid rgba(247,245,241,0.18);
  background: none; color: rgba(247,245,241,0.75); cursor: pointer; transition: all 0.2s ease;
}
.order-tab:hover { border-color: var(--gold); color: var(--off-white); }
.order-tab.active { background: var(--metallic-gradient); border-color: transparent; color: var(--charcoal); }

.order-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding-bottom: 8rem; }
.order-card { background: var(--charcoal-2); border: 1px solid rgba(232,137,30,0.15); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
.order-card-photo { height: 150px; background-size: cover; background-position: center; background-color: rgba(232,137,30,0.06); }
.order-card-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.order-card-body h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.05rem; color: var(--off-white); }
.order-card-body p { font-size: 0.88rem; color: rgba(247,245,241,0.7); margin-top: 0.5rem; flex: 1; }
.order-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; gap: 0.75rem; }
.order-price { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold-light); }
.order-add-btn {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; padding: 0.5rem 1rem;
  border-radius: 999px; border: 1px solid var(--gold); background: none; color: var(--gold-light); cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.order-add-btn:hover { background: var(--metallic-gradient); border-color: transparent; color: var(--charcoal); }
.order-empty { text-align: center; padding: 4rem 1rem; color: rgba(247,245,241,0.5); }

.qty-stepper { display: flex; align-items: center; gap: 0.6rem; }
.qty-stepper button {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(247,245,241,0.25);
  background: none; color: var(--off-white); cursor: pointer; font-size: 1rem; line-height: 1;
}
.qty-stepper button:hover { border-color: var(--gold); }
.qty-stepper span { min-width: 1.2em; text-align: center; font-variant-numeric: tabular-nums; }

.cart-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: rgba(13,10,8,0.96); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(232,137,30,0.25);
  padding: 1rem clamp(1.25rem, 5vw, 3rem);
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
}
.cart-bar.show { display: flex; }
.cart-bar-summary { font-size: 0.92rem; color: var(--off-white); }
.cart-bar-summary strong { color: var(--gold-light); }

.checkout-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(13,10,8,0.88);
  display: none; align-items: center; justify-content: center; padding: 1.5rem; overflow-y: auto;
}
.checkout-overlay.open { display: flex; }
.checkout-card {
  background: var(--charcoal-2); border: 1px solid rgba(232,137,30,0.25); border-radius: 10px;
  max-width: 560px; width: 100%; padding: clamp(1.5rem, 4vw, 2.5rem); max-height: 90vh; overflow-y: auto; position: relative;
}
.checkout-close { position: absolute; top: 1rem; right: 1.25rem; background: none; border: none; color: rgba(247,245,241,0.5); font-size: 1.5rem; cursor: pointer; line-height: 1; }
.checkout-close:hover { color: var(--off-white); }
.checkout-card h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.5rem; margin-bottom: 1.25rem; }
.checkout-items { list-style: none; margin: 0 0 1.25rem; padding: 0; font-size: 0.88rem; }
.checkout-items li { display: flex; justify-content: space-between; padding: 0.4rem 0; border-bottom: 1px solid rgba(247,245,241,0.1); color: rgba(247,245,241,0.85); }
.checkout-items li .remove-line { color: rgba(247,245,241,0.4); background: none; border: none; cursor: pointer; margin-left: 0.6rem; }
.checkout-totals { font-size: 0.9rem; margin: 1rem 0 1.5rem; }
.checkout-totals .row { display: flex; justify-content: space-between; padding: 0.25rem 0; color: rgba(247,245,241,0.75); }
.checkout-totals .row.grand { color: var(--off-white); font-weight: 600; font-size: 1.05rem; border-top: 1px solid rgba(247,245,241,0.15); margin-top: 0.4rem; padding-top: 0.6rem; }

.fulfillment-toggle { display: flex; gap: 0.6rem; margin-bottom: 1.25rem; }
.fulfillment-toggle button {
  flex: 1; padding: 0.7rem; border-radius: 6px; border: 1px solid rgba(247,245,241,0.18);
  background: none; color: rgba(247,245,241,0.75); cursor: pointer; font-size: 0.88rem;
}
.fulfillment-toggle button.active { border-color: var(--gold); color: var(--gold-light); background: rgba(232,137,30,0.08); }

.checkout-field { margin-bottom: 1rem; }
.checkout-field label { display: block; font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.4rem; }
.checkout-field input, .checkout-field textarea {
  width: 100%; background: rgba(247,245,241,0.05); border: 1px solid rgba(247,245,241,0.18); border-radius: 4px;
  color: var(--off-white); font-family: var(--font-body); font-size: 0.92rem; padding: 0.6em 0.75em;
}
.checkout-field input:focus, .checkout-field textarea:focus { border-color: var(--gold); outline: none; }
.checkout-msg { font-size: 0.85rem; margin-top: 1rem; padding: 0.6em 0.9em; border-radius: 4px; }
.checkout-msg.error { color: #E88; background: rgba(232,136,136,0.1); border: 1px solid rgba(232,136,136,0.3); }
.order-success { text-align: center; padding: 1rem 0; }
.order-success .stamp-check { font-size: 2.5rem; color: var(--gold-light); margin-bottom: 1rem; }

@media (max-width: 900px) {
  .order-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .order-grid { grid-template-columns: 1fr; }
  .cart-bar { flex-direction: column; align-items: stretch; }
}
