:root {
  --bg-dark: #050307;
  --bg-card: #151018;
  --bg-card-soft: #1d151f;
  --accent: #ff4b2b;
  --accent-soft: rgba(255, 75, 43, 0.16);
  --accent-yellow: #ffc857;
  --text-main: #f8f5ff;
  --text-muted: #b9b2c8;
  --border-subtle: rgba(255, 255, 255, 0.04);
  --radius-xl: 1.75rem;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(255, 75, 43, 0.3);
  --nav-height: 80px;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #210b2c 0%, #050307 40%, #050307 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-main);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: linear-gradient(
    to bottom,
    rgba(5, 3, 7, 0.96),
    rgba(5, 3, 7, 0.82),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  max-height: 56px;
  width: auto;
  display: block;
}

.logo-text-main {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-text-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4b2b, #ffc857);
  transition: width 0.2s ease-out;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pill {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent-yellow);
  background: rgba(21, 16, 24, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #19ff8b;
  box-shadow: 0 0 0 6px rgba(25, 255, 139, 0.18);
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ff4b2b, #ff7a2f);
  color: #050307;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(255, 75, 43, 0.32);
  background: linear-gradient(135deg, #ff7a2f, #ffc857);
}

.btn-ghost {
  background: rgba(21, 16, 24, 0.9);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  background: rgba(24, 18, 28, 0.9);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.icon-arrow {
  font-size: 0.9rem;
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.2s ease-out;
}

.btn:hover .icon-arrow {
  transform: translateX(3px);
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 7, 12, 0.9);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  position: relative;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: all 0.18s ease-out;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.nav-toggle.open span {
  background: transparent;
}

.nav-toggle.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-mobile {
  display: none;
}

/* HERO with background image */
.hero {
  position: relative;
  padding: 3.5rem 0 5.5rem;
  background-image: url("../images/hero-plates.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(5, 3, 7, 0.5), transparent 45%),
    rgba(5, 3, 7, 0.82);
  backdrop-filter: blur(1.5px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .hero {
    padding: 3.8rem 0 6rem;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem 0.3rem 0.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 0% 0%, rgba(255, 75, 43, 0.38), transparent 65%),
    radial-gradient(circle at 85% 0%, rgba(255, 200, 87, 0.15), transparent 60%),
    rgba(16, 10, 20, 0.94);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hero-eyebrow-pill {
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: rgba(5, 3, 7, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.hero-eyebrow-pill span {
  font-size: 0.68rem;
}

.hero-title {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(2.4rem, 3.4vw + 1.5rem, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.hero-title-highlight {
  background: linear-gradient(120deg, #ff4b2b, #ffc857);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-meta-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-meta-label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: rgba(185, 178, 200, 0.8);
}

.hero-meta-value {
  font-weight: 500;
  color: #ffffff;
}

.hero-meta-tagline {
  color: var(--accent-yellow);
  font-weight: 500;
}

.hero-right {
  position: relative;
}

.hero-card {
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  background: radial-gradient(circle at 0% 0%, rgba(255, 75, 43, 0.33), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(255, 200, 87, 0.2), transparent 52%),
    linear-gradient(145deg, #0c060f, #151018);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.09) 0, transparent 50%),
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.12) 0, transparent 50%);
  mix-blend-mode: soft-light;
  opacity: 0.35;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  display: grid;
  gap: 1.1rem;
}

/* Fixed hero image shape */
.hero-card-photo {
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #080509;
  position: relative;
  aspect-ratio: 4 / 3;
}

.hero-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.66) 100%);
  mix-blend-mode: soft-light;
}

.hero-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease-out;
}

.hero-card:hover .hero-card-photo img {
  transform: scale(1.06);
}

.hero-card-overlay-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 5, 9, 0.82);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
}

.hero-card-overlay-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #19ff8b;
}

.hero-card-meta {
  display: grid;
  gap: 0.75rem;
}

.hero-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.badge {
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(8, 5, 10, 0.92);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.badge-accent {
  border-color: rgba(255, 75, 43, 0.6);
  background: rgba(255, 75, 43, 0.12);
  color: #ffb6a3;
}

.hero-card-stat-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-stat {
  flex: 1;
  min-width: 7rem;
  border-radius: 1rem;
  padding: 0.9rem 0.85rem;
  background: rgba(8, 5, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-label {
  font-size: 0.68rem;
  color: rgba(185, 178, 200, 0.8);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.hero-stat-value {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-stat-pill {
  font-size: 0.75rem;
  color: var(--accent-yellow);
  margin-top: 0.15rem;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 0.75rem;
  margin-top: 0.4rem;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.hero-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-footer-avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  overflow: hidden;
  background: #050307;
  border: 2px solid #050307;
}

.hero-footer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-footer-text strong {
  color: #ffffff;
  font-weight: 600;
}

/* Sections */
section {
  padding: 2.5rem 0;
}

@media (min-width: 900px) {
  section {
    padding: 3rem 0;
  }
}

.section-header {
  margin-bottom: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 0.3rem;
}

.section-title {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 22rem;
}

.grid {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 800px) {
  .grid-cols-2-md {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Story / Signature */
.signature-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #151018, #1d151f);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.4rem;
  display: grid;
  gap: 1.3rem;
}

@media (min-width: 900px) {
  .signature-card {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  }
}

.signature-copy {
  display: grid;
  gap: 0.85rem;
}

.signature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.2rem;
}

.chip {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.chip-hot {
  border-color: rgba(255, 75, 43, 0.8);
  background: var(--accent-soft);
  color: #ffbca9;
}

.signature-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.signature-text strong {
  color: #ffffff;
  font-weight: 600;
}

.signature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.signature-icon-block {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.signature-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  background: rgba(8, 5, 9, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.signature-media {
  border-radius: 1.4rem;
  background: radial-gradient(circle at 0 0, rgba(255, 75, 43, 0.35), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(255, 200, 87, 0.22), transparent 55%),
    #080509;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.signature-media-top {
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050307;
  position: relative;
  aspect-ratio: 4 / 3;
}

.signature-media-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.45s ease-out;
}

.signature-card:hover .signature-media-top img {
  transform: scale(1.08);
}

.signature-media-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.signature-media-pill {
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background: rgba(5, 3, 7, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-size: 0.65rem;
  color: #ffffff;
}

/* Menu layout */
.menu-locations-wrapper {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 950px) {
  .menu-locations-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.menu-location-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #151018, #1a111c);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.3rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* cleaned-up header + actions layout */
.menu-location-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.8rem;
  min-height: 155px; /* keeps both cards top sections aligned */
}

.menu-location-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 0.25rem;
}

.menu-location-title {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.menu-location-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.menu-location-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

/* Label always above buttons */
.menu-location-delivery-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.menu-location-delivery-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.75;
}

/* Buttons under label */
.menu-location-delivery-buttons {
  display: flex;
  gap: 0.25rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.menu-location-delivery-buttons .btn {
  font-size: 0.7rem;
  padding: 0.25rem 0.75rem;
}

/* Consistent width on pickup button */
.menu-location-actions .btn.btn-primary {
  min-width: 155px;
  text-align: center;
}

.menu-location-body {
  margin-top: 0.6rem;
  display: grid;
  gap: 1.1rem;
}

.menu-category-block {
  display: grid;
  gap: 0.6rem;
}

.menu-category-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.menu-category-name {
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(185, 178, 200, 0.95);
}

.menu-category-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.menu-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.menu-card {
  border-radius: 1.2rem;
  padding: 0.95rem 0.95rem;
  background: linear-gradient(145deg, #151018, #1a111c);
  border: 1px solid var(--border-subtle);
  display: grid;
  gap: 0.45rem;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 0 0, rgba(255, 75, 43, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card-unavailable {
  opacity: 0.6;
}

.menu-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.menu-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.menu-tag-unavailable {
  font-size: 0.7rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 110, 110, 0.7);
  color: #ffaaaa;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.menu-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.menu-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.15rem;
}

.menu-tag {
  font-size: 0.7rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.menu-tag-ghost-only {
  border-color: rgba(131, 181, 255, 0.7);
  color: #a9c8ff;
}

.menu-print-note {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Info / Locations */
.info-grid {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 800px) {
  .info-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

.info-card {
  border-radius: 1.4rem;
  padding: 1.2rem 1.1rem;
  background: linear-gradient(145deg, #151018, #1b1220);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.info-heading {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(185, 178, 200, 0.9);
  margin-bottom: 0.45rem;
}

.info-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.info-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.info-address {
  font-size: 0.86rem;
  line-height: 1.6;
}

.info-address strong {
  font-weight: 600;
  color: #ffffff;
}

.info-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.info-chip {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 5, 9, 0.88);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hours-table tr {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.3rem 0;
}

.hours-day {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: rgba(185, 178, 200, 0.85);
  width: 35%;
}

.hours-time {
  text-align: right;
  font-size: 0.82rem;
}

.hours-closed {
  color: rgba(255, 255, 255, 0.45);
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem 0 2.1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

/* Responsive nav & menu cards */
@media (max-width: 899px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-mobile {
    display: none;
    padding-bottom: 0.9rem;
  }

  .nav-mobile.open {
    display: block;
  }

  .nav-mobile-inner {
    border-radius: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 5, 10, 0.96);
    padding: 0.75rem 0.9rem 0.85rem;
    display: grid;
    gap: 0.4rem;
  }

  .nav-mobile .nav-link {
    display: block;
    padding: 0.2rem 0;
  }

  .nav-mobile-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.4rem;
  }

  .menu-location-actions {
    align-items: flex-start;
  }

  .menu-location-delivery-buttons {
    justify-content: flex-start;
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Print tweaks */
@media print {
  body {
    background: #ffffff;
    color: #000000;
  }

  header,
  footer,
  .nav-mobile,
  .hero,
  .signature-card,
  .menu-print-note {
    box-shadow: none;
    background: #ffffff !important;
  }

  .hero::before {
    display: none;
  }

  .menu-location-card,
  .info-card {
    box-shadow: none;
    background: #ffffff;
    border-color: #cccccc;
  }

  .btn,
  .nav-toggle,
  .pill {
    display: none !important;
  }

  .page {
    background: #ffffff;
  }
}

/* PERFECT ALIGNMENT: ORDER PICKUP + DELIVERY ROW */
.menu-location-actions {
  display: grid;
  grid-template-rows: auto 1fr auto; /* top button, spacer, bottom buttons */
  justify-items: end;
  width: 100%;
  min-height: 150px; /* keep both cards visually even */
}

/* Center the ORDER PICKUP button across both cards */
.menu-location-actions .btn.btn-primary {
  min-width: 165px;
  text-align: center;
}

/* Delivery label + buttons stack cleanly */
.menu-location-delivery-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-end;
}

.menu-location-delivery-buttons {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
