/* TakeAway – Takeaway landing page */

:root {
  --color-bg: #0f0e0c;
  --color-surface: #1a1916;
  --color-cream: #f5f0e8;
  --color-gold: #c9a227;
  --color-gold-light: #e5c84a;
  --color-red: #a82a2a;
  --color-red-hover: #c23a3a;
  --color-muted: #8c8780;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --space: 1.25rem;
  --container: min(90vw, 1100px);
  --radius: 8px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-cream);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-gold-light);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal.revealed { transform: none; }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space) 0;
  background: rgba(15, 14, 12, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(15, 14, 12, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.header .container {
  animation: slideDown 0.6s var(--ease-out-expo) backwards;
}

@media (prefers-reduced-motion: reduce) {
  .header .container { animation: none; }
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  color: var(--color-cream);
  transition: color 0.25s ease, letter-spacing 0.25s ease, transform 0.25s ease;
}

.logo:hover {
  color: var(--color-gold);
  letter-spacing: 0.06em;
  transform: scale(1.02);
}

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

.nav a {
  color: var(--color-muted);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease-out-expo);
}

.nav a:hover {
  color: var(--color-cream);
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  color: var(--color-gold) !important;
  font-weight: 600;
}

.cart-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-cream);
  cursor: pointer;
  position: relative;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cart-trigger:hover {
  background: rgba(201, 162, 39, 0.2);
  transform: scale(1.05);
}

.cart-trigger.has-items {
  background: var(--color-red);
  color: var(--color-cream);
}

.cart-trigger.has-items:hover {
  background: var(--color-red-hover);
}

.cart-trigger-icon {
  width: 22px;
  height: 22px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4z'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cpath d='M16 10a4 4 0 01-8 0'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4z'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cpath d='M16 10a4 4 0 01-8 0'/%3E%3C/svg%3E") center/contain no-repeat;
}

.cart-trigger-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  background: var(--color-gold);
  color: var(--color-bg);
  border-radius: 10px;
}

.cart-trigger:not(.has-items) .cart-trigger-count {
  display: none;
}

/* Hero – marketplace-style banner (generic, no food-specific art) */
.hero {
  position: relative;
  min-height: min(92vh, 52rem);
  display: flex;
  align-items: center;
  padding: 7rem var(--space) 4.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-bg);
}

.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 0% 0%, rgba(201, 162, 39, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 100% 20%, rgba(168, 58, 46, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201, 162, 39, 0.08) 0%, transparent 45%);
  pointer-events: none;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-bg-orb--1 {
  width: min(55vw, 28rem);
  height: min(55vw, 28rem);
  background: rgba(201, 162, 39, 0.35);
  top: -8%;
  right: -5%;
}

.hero-bg-orb--2 {
  width: min(40vw, 20rem);
  height: min(40vw, 20rem);
  background: rgba(168, 58, 46, 0.25);
  bottom: 5%;
  left: -10%;
}

.hero-bg-orb--3 {
  width: min(30vw, 14rem);
  height: min(30vw, 14rem);
  background: rgba(245, 240, 232, 0.06);
  top: 40%;
  left: 35%;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 240, 232, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 0%, black 55%, transparent 100%);
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  top: 50%;
  right: min(8%, 4rem);
  width: min(42vmin, 22rem);
  height: min(42vmin, 22rem);
  transform: translateY(-50%);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1px rgba(245, 240, 232, 0.04),
    0 0 80px rgba(201, 162, 39, 0.06);
}

.hero-card {
  position: absolute;
  background: rgba(26, 25, 22, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.65rem;
}

.hero-card-line {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: rgba(245, 240, 232, 0.12);
  margin-bottom: 0.4rem;
}

.hero-card-line--short {
  width: 58%;
  margin-bottom: 0;
}

.hero-card--1 {
  top: 22%;
  right: min(18%, 8rem);
  width: 9.5rem;
  animation: heroFloatA 14s ease-in-out infinite;
}

.hero-card--2 {
  top: 46%;
  right: min(6%, 2rem);
  width: 7.5rem;
  animation: heroFloatB 12s ease-in-out infinite;
}

.hero-card-dots {
  display: flex;
  gap: 0.35rem;
}

.hero-card-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.45);
}

.hero-card-dots span:nth-child(2) {
  background: rgba(168, 58, 46, 0.5);
}

.hero-card-dots span:nth-child(3) {
  background: rgba(245, 240, 232, 0.2);
}

.hero-card--3 {
  bottom: 18%;
  right: min(22%, 10rem);
  width: auto;
  min-width: 10rem;
  animation: heroFloatC 16s ease-in-out infinite;
}

.hero-card-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dffb2;
  background: rgba(125, 255, 178, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

.hero-card-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--color-muted);
}

@keyframes heroFloatA {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-6px, 10px); }
}

@keyframes heroFloatB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -8px); }
}

@keyframes heroFloatC {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-4px, -12px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-card--1,
  .hero-card--2,
  .hero-card--3 {
    animation: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-bg {
    animation: fadeIn 1s ease-out;
  }
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-inner {
  max-width: 36rem;
  text-align: left;
}

.hero-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  animation: fadeUp 0.85s var(--ease-out-expo) 0.05s backwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.25rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.02;
  margin: 0 0 1rem;
  color: var(--color-cream);
  text-shadow: 0 0 60px rgba(201, 162, 39, 0.12);
  animation: fadeUp 0.9s var(--ease-out-expo) 0.15s backwards;
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  color: var(--color-muted);
  margin: 0 0 1.25rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 32rem;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.28s backwards;
}

.hero-pills {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.4s backwards;
}

.hero-pills li {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-cream);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.hero-address {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.5s backwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-title,
  .hero-tagline,
  .hero-pills,
  .hero-address,
  .hero-actions {
    animation: none;
  }
}

.hero-address a {
  color: var(--color-cream);
  border-bottom: 1px solid var(--color-gold);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.hero-address a:hover {
  color: var(--color-gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.62s backwards;
}

.hero-actions .btn {
  animation: scaleIn 0.55s var(--ease-out-back) backwards;
}

.hero-actions .btn:first-child {
  animation-delay: 0.72s;
}

.hero-actions .btn:last-child {
  animation-delay: 0.86s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-actions .btn {
    animation: none;
  }
}

@media (max-width: 900px) {
  .hero-ring,
  .hero-card--1,
  .hero-card--2,
  .hero-card--3 {
    opacity: 0.85;
  }

  .hero-card--1 {
    right: min(10%, 2rem);
    top: 14%;
  }

  .hero-card--2 {
    right: min(4%, 1rem);
    top: auto;
    bottom: 32%;
  }

  .hero-card--3 {
    display: none;
  }

  .hero-ring {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
    top: 10%;
    width: min(70vmin, 16rem);
    height: min(70vmin, 16rem);
    opacity: 0.45;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 6.5rem var(--space) 3rem;
  }

  .hero-inner {
    text-align: center;
    max-width: none;
  }

  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-ring {
    display: none;
  }

  .hero-card--1,
  .hero-card--2 {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-red);
  color: var(--color-cream);
  border-color: var(--color-red);
}

.btn-primary:hover {
  background: var(--color-red-hover);
  border-color: var(--color-red-hover);
  color: var(--color-cream);
}

.btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-secondary:hover {
  background: rgba(201, 162, 39, 0.15);
  color: var(--color-gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--color-cream);
  border-color: var(--color-muted);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--color-surface);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin: 0 0 1.5rem;
  color: var(--color-cream);
}

.hours-grid {
  max-width: 320px;
  margin: 0 0 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  font-weight: 500;
  transition: transform 0.25s ease, padding-left 0.25s ease;
}

.hours-row:hover {
  padding-left: 4px;
}

.hours-row span:last-child {
  color: var(--color-gold);
}

.hours-note {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0;
}

.find-address {
  margin: 0 0 1.5rem;
  line-height: 1.7;
}

.find-address a {
  color: var(--color-cream);
}

.find-address a:hover {
  color: var(--color-gold);
}

/* Menu */
.section--menu {
  background: var(--color-surface);
}

.menu-intro {
  color: var(--color-muted);
  margin: 0 0 2rem;
}

.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.menu-category-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--color-gold);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(201, 162, 39, 0.3);
}

.menu-category-items {
  display: grid;
  gap: 0.75rem;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid rgba(245, 240, 232, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.menu-item:hover {
  border-color: rgba(201, 162, 39, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.menu-item-name {
  font-weight: 600;
  color: var(--color-cream);
}

.menu-item-price {
  font-size: 0.95rem;
  color: var(--color-gold);
}

.btn-add {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--color-gold);
  color: var(--color-bg);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-add:hover {
  background: var(--color-gold-light);
  transform: scale(1.05);
}

.btn-add:active {
  transform: scale(0.98);
}

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 201;
  width: 100%;
  max-width: 380px;
  background: var(--color-surface);
  border-left: 1px solid rgba(201, 162, 39, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out-expo);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--color-cream);
}

.cart-close {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  color: var(--color-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cart-close:hover {
  background: rgba(245, 240, 232, 0.08);
  color: var(--color-cream);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin: 0;
  text-align: center;
  padding: 2rem 0;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-line {
  padding: 1rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid rgba(245, 240, 232, 0.06);
}

.cart-line-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.cart-line-name {
  font-weight: 600;
  color: var(--color-cream);
}

.cart-line-price {
  color: var(--color-gold);
  font-size: 0.95rem;
}

.cart-line-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.qty-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(245, 240, 232, 0.2);
  border-radius: var(--radius);
  background: transparent;
  color: var(--color-cream);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.qty-btn:hover {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--color-gold);
}

.qty-num {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--color-cream);
}

.cart-line-remove {
  display: block;
  width: 100%;
  padding: 0.35rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.cart-line-remove:hover {
  color: var(--color-red-hover);
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.btn-block {
  width: 100%;
  text-align: center;
  margin-bottom: 0.75rem;
}

.cart-footer-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.4;
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  text-align: center;
  background: var(--color-surface);
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.25rem;
  color: var(--color-cream);
}

.footer-address {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0;
}

@media (max-width: 600px) {
  .nav .nav-cta {
    display: none;
  }

  .nav {
    gap: 1rem;
  }

  .cart-drawer {
    max-width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .menu-item {
    flex-wrap: wrap;
  }

  .btn-add {
    width: 100%;
  }
}
