@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --radius: 0.75rem;
  --background: oklch(0.985 0.005 80);
  --foreground: oklch(0.18 0.02 30);
  --ink: oklch(0.18 0.02 30);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.18 0.02 30);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.18 0.02 30);
  --primary: oklch(0.22 0.02 30);
  --primary-foreground: oklch(0.985 0.005 80);
  --secondary: oklch(0.95 0.01 60);
  --secondary-foreground: oklch(0.22 0.02 30);
  --muted: oklch(0.95 0.01 60);
  --muted-foreground: oklch(0.45 0.02 40);
  --accent: oklch(0.95 0.01 60);
  --accent-foreground: oklch(0.22 0.02 30);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.985 0 0);
  --border: oklch(0.9 0.01 60);
  --input: oklch(0.9 0.01 60);
  --ring: oklch(0.65 0.25 350);
  --brand: oklch(0.62 0.27 350);
  --brand-foreground: oklch(0.985 0.005 80);
  --font-display: 'Pacifico', cursive;
  --font-sans: 'Poppins', system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--brand);
  letter-spacing: 0.01em;
}

/* ===== LAYOUT ===== */
.min-h-screen { min-height: 100vh; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }

.container { margin: 0 auto; }
.max-w-6xl { max-width: 72rem; margin: 0 auto; }
.max-w-4xl { max-width: 56rem; margin: 0 auto; }
.max-w-3xl { max-width: 48rem; margin: 0 auto; }
.max-w-2xl { max-width: 42rem; margin: 0 auto; }
.max-w-xl { max-width: 36rem; margin: 0 auto; }
.max-w-md { max-width: 28rem; margin: 0 auto; }

.list-none { list-style: none; }

/* ===== DISPLAY ===== */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }

/* ===== FLEX ALIGNMENT ===== */
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }
.gap-1 { gap: 0.25rem; }
.gap-1-5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-16 { gap: 4rem; }

/* ===== GRID ===== */
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ===== SPACING ===== */
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-0-5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1-5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-14 > * + * { margin-top: 3.5rem; }

/* ===== TYPOGRAPHY ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-display { font-family: var(--font-display); }
.font-sans { font-family: var(--font-sans); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.625; }
.whitespace-nowrap { white-space: nowrap; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-03 { letter-spacing: 0.3em; }
.tracking-04 { letter-spacing: 0.4em; }

.text-8xl { font-size: 6rem; }
.text-7xl { font-size: 4.5rem; }
.text-6xl { font-size: 3.75rem; }
.text-5xl { font-size: 3rem; }
.text-4xl { font-size: 2.25rem; }
.text-3xl { font-size: 1.875rem; }
.text-2xl { font-size: 1.5rem; }
.text-xl { font-size: 1.25rem; }
.text-lg { font-size: 1.125rem; }
.text-base { font-size: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-10 { font-size: 10px; }

/* ===== COLORS - BACKGROUND ===== */
.bg-background { background: var(--background); }
.bg-card { background: var(--card); }
.bg-secondary { background: var(--secondary); }
.bg-ink { background: var(--ink); }
.bg-brand { background: var(--brand); }
.bg-transparent { background: transparent; }

.bg-ink-80 { background: color-mix(in oklch, var(--ink) 80%, transparent); }
.bg-ink-90 { background: color-mix(in oklch, var(--ink) 90%, transparent); }
.bg-brand-10 { background: color-mix(in oklch, var(--brand) 10%, transparent); }
.hover-bg-brand-foreground-10:hover { background: color-mix(in oklch, var(--brand-foreground) 10%, transparent); }

/* ===== COLORS - TEXT ===== */
.text-brand { color: var(--brand); }
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-brand-foreground { color: var(--brand-foreground); }
.text-brand-foreground-90 { color: color-mix(in oklch, var(--brand-foreground) 90%, transparent); }

/* ===== BORDERS ===== */
.border { border: 1px solid; }
.border-0 { border: 0; }
.border-border { border-color: var(--border); }
.border-brand { border-color: var(--brand); }
.border-brand-foreground-40 { border-color: color-mix(in oklch, var(--brand-foreground) 40%, transparent); }
.rounded-sm { border-radius: calc(var(--radius) - 4px); }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) + 4px); }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.divide-y > * + * { border-top: 1px solid var(--border); }

/* ===== EFFECTS ===== */
.transition { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.backdrop-blur { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.hover-opacity-90:hover { opacity: 0.9; }
.hover-text-brand:hover { color: var(--brand); }
.hover-underline:hover { text-decoration: underline; }
.object-cover { object-fit: cover; }
.w-full { width: 100%; }
.h-full { height: 100%; }

.brand-shadow {
  box-shadow: 0 20px 60px -20px color-mix(in oklch, var(--brand) 45%, transparent);
}

/* ===== ICONS ===== */
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: middle; }
.icon-4 { width: 1rem; height: 1rem; }
.icon-6 { width: 1.5rem; height: 1.5rem; }
.icon-2 { width: 0.5rem; height: 0.5rem; }

/* ===== COMPONENT: HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: color-mix(in oklch, var(--ink) 80%, transparent);
  color: var(--brand-foreground);
}

.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brand);
  line-height: 1;
}

.header-logo-sub {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
}

.header-nav {
  display: none;
}

.header-nav-link {
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.header-nav-link:hover {
  color: var(--brand);
}

.header-nav-cta,
.header-mobile-cta {
  border-radius: 9999px;
  background: var(--brand);
  color: var(--brand-foreground);
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.header-nav-cta:hover,
.header-mobile-cta:hover {
  opacity: 0.9;
}

.header-nav-cta {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.header-mobile-cta {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  z-index: 60;
  position: relative;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand-foreground);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

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

.mobile-nav-link {
  font-size: 1.5rem;
  color: var(--brand-foreground);
  transition: color 0.2s ease;
  opacity: 0.8;
}

.mobile-nav-link:hover {
  color: var(--brand);
  opacity: 1;
}

.mobile-nav-cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--brand);
  color: var(--brand-foreground);
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.mobile-nav-cta:hover {
  opacity: 0.9;
}

/* ===== COMPONENT: HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    color-mix(in oklch, var(--ink) 70%, transparent),
    color-mix(in oklch, var(--ink) 50%, transparent),
    color-mix(in oklch, var(--ink) 90%, transparent)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 48rem;
}

.hero-badge {
  color: var(--brand);
  font-size: 0.875rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.75rem;
  color: var(--brand);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: color-mix(in oklch, var(--brand-foreground) 90%, transparent);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: color-mix(in oklch, var(--brand-foreground) 70%, transparent);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--brand);
  color: var(--brand-foreground);
  padding: 0.75rem 1.75rem;
  font-weight: 500;
  box-shadow: 0 20px 60px -20px color-mix(in oklch, var(--brand) 45%, transparent);
  transition: opacity 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklch, var(--brand-foreground) 40%, transparent);
  color: var(--brand-foreground);
  padding: 0.75rem 1.75rem;
  font-weight: 500;
  transition: background 0.2s ease;
}

.btn-secondary:hover {
  background: color-mix(in oklch, var(--brand-foreground) 10%, transparent);
}

/* ===== COMPONENT: ABOUT ===== */
.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

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

.about-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 1rem;
}

.about-text strong {
  color: var(--foreground);
}

.about-features {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-feature-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem;
  text-align: center;
}

.about-feature-icon {
  color: var(--brand);
  margin: 0 auto 0.5rem;
}

.about-feature-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px -20px color-mix(in oklch, var(--brand) 45%, transparent);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* ===== COMPONENT: LOCATION ===== */
.bg-secondary-section {
  background: var(--secondary);
}

.location-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.location-title {
  font-size: 3rem;
}

.location-grid {
  display: grid;
  gap: 2rem;
}

.location-card {
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.location-card-icon {
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.location-card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--foreground);
}

.location-card-text {
  color: var(--muted-foreground);
}

.location-card-link {
  margin-top: 1rem;
  display: inline-block;
  color: var(--brand);
  font-weight: 500;
}

.location-card-link:hover {
  text-decoration: underline;
}

.location-map {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px color-mix(in oklch, var(--brand) 45%, transparent);
  min-height: 400px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ===== COMPONENT: CONTACT ===== */
.contact-section {
  text-align: center;
}

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

.contact-title {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.contact-text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  background: var(--brand);
  color: var(--brand-foreground);
  padding: 1.25rem 2.5rem;
  font-size: 1.5rem;
  font-family: var(--font-display);
  box-shadow: 0 20px 60px -20px color-mix(in oklch, var(--brand) 45%, transparent);
  transition: opacity 0.2s ease;
}

.btn-phone:hover {
  opacity: 0.9;
}

/* ===== COMPONENT: FOOTER ===== */
.footer {
  background: var(--ink);
  color: var(--brand-foreground);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--brand);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.875rem;
  opacity: 0.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-info {
  font-size: 0.875rem;
  opacity: 0.7;
  text-align: center;
}

/* ===== COMPONENT: MENU HEADER (CARTA PAGE) ===== */
.menu-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: color-mix(in oklch, var(--ink) 90%, transparent);
  color: var(--brand-foreground);
}

.menu-header-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-header-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.menu-header-back:hover {
  color: var(--brand);
}

.menu-header-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brand);
  line-height: 1;
}

.menu-header-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
}

.menu-header-phone {
  border-radius: 9999px;
  background: var(--brand);
  color: var(--brand-foreground);
  padding: 0.5rem;
  transition: opacity 0.2s ease;
}

.menu-header-phone:hover {
  opacity: 0.9;
}

/* ===== COMPONENT: MENU PAGE ===== */
.menu-page {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.menu-header-section {
  text-align: center;
  margin-bottom: 3rem;
}

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

.menu-header-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.menu-header-desc {
  color: var(--muted-foreground);
}

.menu-legend {
  margin-top: 1.5rem;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.menu-legend-sg {
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: color-mix(in oklch, var(--brand) 10%, transparent);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-legend-sg-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--brand);
}

.menu-legend-info {
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--secondary);
  color: var(--muted-foreground);
}

/* ===== COMPONENT: MENU SECTION ===== */
.menu-section {
  margin-bottom: 3.5rem;
}

.menu-section-title {
  font-size: 2.25rem;
  margin-bottom: 0;
}

.menu-section-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-style: italic;
  margin-top: 0.5rem;
}

.menu-list {
  list-style: none;
}

.menu-list.divide-y > * + * {
  border-top: 1px solid var(--border);
}

.menu-item {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
  gap: 1rem;
}

.menu-item-img {
  width: 5rem;
  height: 5rem;
  border-radius: 0.75rem;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 20px 60px -20px color-mix(in oklch, var(--brand) 45%, transparent);
}

.menu-item-content {
  flex: 1;
  min-width: 0;
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.menu-item-name {
  font-family: var(--font-sans);
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.menu-item-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 9999px;
  padding: 0.125rem 0.5rem;
  line-height: 1.4;
}

.menu-item-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.menu-item-allergens {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.menu-item-allergen {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: var(--secondary);
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  line-height: 1.4;
}

.menu-item-price {
  font-family: var(--font-display);
  color: var(--brand);
  font-size: 1.25rem;
  white-space: nowrap;
}

.menu-note-box {
  margin-top: 4rem;
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--secondary);
}

.menu-note-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.menu-note-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== COMPONENT: ERROR / 404 ===== */
.error-page {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: var(--background);
  padding: 0 1rem;
}

.error-box {
  max-width: 28rem;
  text-align: center;
}

.error-code {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--brand);
}

.error-title {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.error-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.error-btn-wrap {
  margin-top: 1.5rem;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background: var(--brand);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-foreground);
  transition: opacity 0.2s ease;
}

.btn-back:hover {
  opacity: 0.9;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .md-flex { display: flex; }
  .md-hidden { display: none; }
  .md-block { display: block; }
  .md-flex-row { flex-direction: row; }
  .md-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md-grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
  .md-col-span-2 { grid-column: span 2; }
  .md-col-span-3 { grid-column: span 3; }
  .md-text-right { text-align: right; }
  .md-text-6xl { font-size: 3.75rem; }
  .md-text-5xl { font-size: 3rem; }
  .md-text-8xl { font-size: 6rem; }
  .md-text-xl { font-size: 1.25rem; }
  .md-w-24 { width: 6rem; }
  .md-h-24 { height: 6rem; }

  .hero-title { font-size: 6rem; }

  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .about-title { font-size: 3.75rem; }
  .location-grid { grid-template-columns: repeat(5, 1fr); }
  .location-title { font-size: 3.75rem; }
  .location-cards { grid-column: span 2; }
  .location-map-wrap { grid-column: span 3; }
  .contact-title { font-size: 3.75rem; }
  .footer-inner { flex-direction: row; }
  .footer-info { text-align: right; }
  .header-nav { display: flex; align-items: center; gap: 2rem; font-size: 0.875rem; }

  .menu-header-title { font-size: 3.75rem; }
  .menu-section-title { font-size: 3rem; }
  .menu-item-img { width: 6rem; height: 6rem; }

  .menu-page { padding-top: 3rem; padding-bottom: 3rem; }
}
