:root {
  color-scheme: dark;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #0a0b0f;
  --panel: #111217;
  --panel-soft: #1a1b22;
  --accent: #ffcd00;
  --accent-soft: rgba(255, 205, 0, 0.25);
  --text: #f8f8f4;
  --muted: #b5b3a8;
  --nav-height: 84px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

section {
  margin: 0;
}

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1.5rem, 4vw, 4rem);
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  min-height: var(--nav-height);
}

.logo {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff3a5, #ffcd00);
  color: #020203;
  display: grid;
  place-items: center;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone {
  font-weight: 600;
}

.cart-toggle {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.hero,
.menu,
.specials,
.events,
.gallery-preview,
.newsletter,
.product,
.gallery-page {
  padding: 0;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.hero-copy {
  padding: clamp(2rem, 4vw, 4rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 80%;
  background: url("../assets/logo.webp") no-repeat left center;
  background-size: 80% auto;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.menu {
  padding-bottom: 40px;
}

.specials,
.events {
  padding-bottom: 40px;
}

.hero-copy .eyebrow,
.product .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-board {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(640px, 90vh, 920px);
  border-radius: 40px;
  border: 16px solid transparent;
  border-image: linear-gradient(90deg, #000000 0%, #1d1200 45%, #ffcd00 100%) 1;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.85) 35%, rgba(255, 205, 0, 0.95) 100%);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
}

.hero-slot {
  position: absolute;
  width: clamp(140px, 22vw, 260px);
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  border: none;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.35);
  background-size: cover;
  background-position: center;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 500ms ease, transform 500ms ease;
}

.hero-slot.is-ready {
  opacity: 1;
}

.hero-slot.is-updating {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
}

.placeholder-slot {
  background: linear-gradient(135deg, rgba(255, 205, 0, 0.18), rgba(255, 205, 0, 0.04));
}

.slot-1 {
  top: 22%;
  left: 28%;
  z-index: 1;
}

.slot-2 {
  top: 20%;
  left: 70%;
  z-index: 2;
}

.slot-3 {
  top: 50%;
  left: 50%;
  z-index: 3;
}

.slot-4 {
  top: 80%;
  left: 30%;
  z-index: 1;
}

.slot-5 {
  top: 82%;
  left: 72%;
  z-index: 2;
}

.hero-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(6px);
}

.meta-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.section-heading {
  margin-bottom: 1.5rem;
  background: #ffcd00;
  padding: 1rem clamp(1.5rem, 4vw, 3rem);
  border-left: 6px solid var(--accent);
  color: #000;
}

.section-heading h2 {
  margin-bottom: 0.3rem;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.menu-tabs button {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0.35rem 0.9rem;
}

.menu-tabs button.is-active {
  background: var(--accent);
  color: #130a04;
  border-color: transparent;
}

.menu-additional,
.menu-disclaimer {
  color: var(--muted);
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
}

.menu-additional {
  margin-bottom: 1rem;
}

.menu-disclaimer {
  font-size: 0.85rem;
  opacity: 0.85;
}

.menu-grid,
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 260px));
  justify-content: flex-start;
  gap: 1.2rem;
  grid-auto-rows: 1fr;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
  grid-auto-rows: 1fr;
}

.gallery-card,
.gallery-folder-card,
.gallery-photo-card {
  max-width: 588px;
  width: 100%;
  margin: 0 auto;
}

.menu-card {
  background: var(--panel);
  border-radius: 28px;
  border: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  width: 100%;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.menu-card.is-clickable:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.muted {
  color: var(--muted);
  margin: 0.1rem 0 0;
}

.card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #000;
  border-bottom: none;
  border-left: none;
  border-right: none;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}



.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  min-height: 180px;
  justify-content: space-between;
}

.card-body h3 {
  margin: 0;
}

.card-body strong {
  font-size: 1rem;
}

.menu-card > .btn {
  border-radius: 0;
  width: 100%;
  border-top: none;
}



.btn.primary {
  background: var(--accent);
  color: #1a120a;
  box-shadow: 0 12px 25px rgba(255, 205, 0, 0.35);
  border: 2px solid #000;
}

.btn.ghost {
  background: transparent;
  border: none;
  color: var(--text);
}

.btn.small {
  padding: 0.45rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 999px;
}

.specials-grid .btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  width: auto;
  align-self: center;
  padding: 0.65rem 1.8rem;
  margin-bottom: 1rem;
}

.newsletter {
  background: var(--panel);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.newsletter form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.newsletter input {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text);
  padding: 0.6rem 1rem;
}

.error-banner {
  background: rgba(255, 63, 52, 0.12);
  border: 1px solid rgba(255, 63, 52, 0.4);
  color: #ffb0b0;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 6vw, 5rem) 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-logo {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-weight: 700;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
}

.footer-links a,
.footer-socials a {
  color: var(--muted);
}

.privacy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.15rem 0.8rem;
  border-radius: 999px;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-newsletter form {
  margin-top: 0.5rem;
  width: 100%;
  max-width: 240px;
}

.newsletter-control {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  overflow: hidden;
  width: 100%;
}

.newsletter-control input {
  border: none;
  padding: 0.5rem 0.9rem;
  background: transparent;
  color: var(--text);
  flex: 1;
}

.newsletter-control button {
  border: none;
  background: transparent;
  padding: 0 0.9rem;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
}

.newsletter-status {
  font-size: 0.85rem;
  margin-top: 0.4rem;
  min-height: 1em;
}

.newsletter-status[data-state="success"] {
  color: #6ee7b7;
}

.newsletter-status[data-state="error"] {
  color: #f97373;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.login-btn {
  min-width: 80px;
  justify-content: center;
}

.login-btn[hidden] {
  display: none;
}

.site-nav nav a[data-account-link],
.site-nav nav a[data-login-link] {
  display: inline-flex;
  min-width: 72px;
  justify-content: flex-end;
}

.site-nav nav a[hidden] {
  visibility: hidden;
  pointer-events: none;
}

.footer-links a[data-account-link],
.footer-links a[data-login-link] {
  display: inline-flex;
  min-width: 72px;
}

.footer-links a[hidden] {
  visibility: hidden;
  pointer-events: none;
}

.user-menu {
  position: relative;
}

.user-toggle {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--panel-soft);
  color: inherit;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 160px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 30;
}

.user-menu:hover .user-dropdown,
.user-menu:focus-within .user-dropdown,
.user-menu.is-open .user-dropdown {
  opacity: 1;
  pointer-events: auto;
}

.user-dropdown a,
.user-dropdown button {
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  padding: 0.35rem 0.4rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}

.user-dropdown a:hover,
.user-dropdown button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.user-pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  background: var(--panel-soft);
}

.user-pill[hidden] {
  display: none;
}

.auth-page {
  max-width: 600px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.auth-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-card input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.65rem 0.85rem;
  background: var(--panel-soft);
  color: inherit;
}

.auth-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.auth-status {
  min-height: 1.2em;
  font-size: 0.9rem;
}

.auth-status[data-state="error"] {
  color: #f97373;
}

.auth-status[data-state="success"] {
  color: #6ee7b7;
}

.account-page {
  padding: 2rem 1rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.account-hero {
  margin-bottom: 1.5rem;
}

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

.order-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--panel);
}

.order-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.order-details li strong {
  display: block;
  font-weight: 600;
}

.footer-meta {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  margin-top: 1rem;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(420px, 48%) 1fr;
  gap: 1.5rem;
  align-items: start;
}

.product-photo {
  min-height: 420px;
  max-height: 500px;
  aspect-ratio: 4 / 3;
  border-radius: 32px;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  justify-self: end;
  width: 100%;
}

.product-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-form input,
.product-form select {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--panel);
  color: var(--text);
  padding: 0.5rem 0.75rem;
}

.product-customizations {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-customizations legend {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--muted);
}

.product-customizations > label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
}

.product-customizations details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: var(--panel-soft);
  position: relative;
  padding-bottom: 0.25rem;
}

.product-customizations summary {
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-customizations summary::-webkit-details-marker {
  display: none;
}

.product-customizations details[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-customizations details > div {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 20;
}

.product-customizations details:not([open]) > div {
  display: none;
}

.product-customizations select {
  background: var(--panel-soft);
}

.product-customizations .option-dropdown summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
}

.product-customizations .option-dropdown summary span:last-child {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.product-customizations .option-stack--checkbox {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-customizations .option-stack--checkbox {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-customizations.multi-select,
.product-customizations .multi-select {
  position: relative;
}

.product-customizations.multi-select legend,
.product-customizations .multi-select legend {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.product-customizations.multi-select .multi-select-trigger,
.product-customizations .multi-select .multi-select-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  color: inherit;
  font-size: 0.95rem;
  cursor: pointer;
}

.product-customizations.multi-select .multi-select-value,
.product-customizations .multi-select .multi-select-value {
  flex: 1;
  text-align: left;
}

.product-customizations.multi-select .multi-select-caret,
.product-customizations .multi-select .multi-select-caret {
  font-size: 0.85rem;
  color: var(--muted);
}

.product-customizations.multi-select .multi-select-panel,
.product-customizations .multi-select .multi-select-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.8rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 40;
  display: none;
}

.product-customizations.multi-select.is-open .multi-select-panel,
.product-customizations .multi-select.is-open .multi-select-panel {
  display: block;
}

.product-customizations .signature-group .signature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-customizations .signature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-size: 0.9rem;
}

.product-customizations .signature-pill input {
  display: none;
}

.product-customizations .signature-pill.is-selected {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.signature-protein .signature-pills {
  flex-direction: column;
}

.signature-protein .signature-pill {
  border-radius: 8px;
  width: 100%;
  justify-content: flex-start;
}

.product-customizations .option-stack p {
  margin: 0;
  font-weight: 600;
}

.product-customizations .checkbox {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.product-customizations .checkbox.is-selected {
  color: var(--accent);
}

.featured-products {
  margin-top: 3rem;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.gallery-tabs button {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: inherit;
  padding: 0.4rem 1rem;
  cursor: pointer;
}

.gallery-tabs button.is-active {
  background: var(--accent);
  color: #1a120a;
}

.gallery-page .gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-board {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.gallery-breadcrumb button {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.gallery-folder-card .card-photo {
  border-bottom: none;
  border-radius: 24px 24px 0 0;
}

.gallery-folder-card .card-photo::after {
  content: attr(data-placeholder);
}

.gallery-photo-card .card-photo {
  border-bottom: none;
  border-radius: 24px 24px 0 0;
}

.gallery-photo-card .card-photo::after {
  content: "";
}

.gallery-folder-card .card-body,
.gallery-photo-card .card-body {
  min-height: 0;
}

.gallery-folder-card .btn,
.gallery-photo-card .btn {
  width: 100%;
}
.gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.gallery-pagination button {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: inherit;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
}

.gallery-pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  margin: 2rem 0;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 60;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
}

.gallery-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--panel);
  padding: 1.5rem;
  border-radius: 20px;
  width: min(900px, 90vw);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-modal-panel img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
}

.gallery-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

@media (max-width: 960px) {
  nav {
    display: none;
  }

  .site-nav {
    flex-wrap: wrap;
  }
}
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 6vw, 5rem) 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 1.5rem;
  background: #000;
}

@media (max-width: 960px) {
  .site-footer {
    grid-template-columns: 1fr;
  }
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 260px));
  gap: 1.2rem;
  grid-auto-rows: 1fr;
}

.event-card {
  border: 3px solid var(--accent);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.event-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #1e212e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: var(--muted);
  background-size: cover;
  background-position: center;
}

.event-photo::after {
  content: attr(data-placeholder);
}

.event-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.event-date {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  z-index: 70;
}

.cart-drawer[hidden] {
  display: none;
}

.cart-backdrop {
  flex: 1;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.cart-panel {
  width: min(360px, 90vw);
  background: #0f111a;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-close {
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
}

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

.cart-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.75rem;
}

.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-item button {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.85rem;
}

.cart-options {
  list-style: disc;
  margin: 0.25rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
}

.btn.full-width {
  width: 100%;
  justify-content: center;
}

body.cart-open {
  overflow: hidden;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-btn {
  border-radius: 999px;
  padding: 0.65rem 1.8rem;
}

.hero-btn.btn.primary {
  color: #1a120a;
  background: var(--accent);
  border: none;
  box-shadow: 0 12px 22px rgba(255, 205, 0, 0.4);
}

.hero-btn.btn.ghost {
  border: 2px solid var(--accent);
  color: var(--text);
  background: transparent;
}
.specials-grid .btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 999px;
}
.menu > *,
.specials > *,
.events > *,
.gallery-preview > *,
.product > *,
.gallery-page > * {
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

.ordering-disabled-banner {
  background: #fff4e5;
  border: 1px solid #f5d0a9;
  color: #7a3b0c;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.cart-toggle.is-disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
