/* ============================================================
   SAM & LEE'S RESTAURANT — Design System v2
   Playfair Display SC + Karla | Warm Restaurant Palette
   Mobile-first | WCAG AA | 8px spacing grid
   ============================================================ */

/* ---- Google Fonts ---- */
/* Google Fonts loaded via <link> in HTML <head> for performance */

/* ---- Design Tokens ---- */
:root {
  /* Brand Colors */
  --color-primary:        #C41E2C;
  --color-primary-dark:   #9B1621;
  --color-primary-light:  #E53E4D;
  --color-primary-subtle: #FEF2F2;

  /* Gold / Accent */
  --color-gold:           #A16207;
  --color-gold-light:     #FEF3C7;
  --color-gold-bright:    #D97706;

  /* Neutrals — warm-tinted */
  --color-dark:           #1C0A09;
  --color-dark-mid:       #3D1C1A;
  --color-text:           #2D1110;
  --color-muted:          #78716C;
  --color-muted-light:    #A8A29E;

  /* Surfaces */
  --color-white:          #FFFFFF;
  --color-cream:          #FFFAF7;
  --color-cream-dark:     #F5EDE3;
  --color-light:          #FDF6F0;
  --color-border:         #E8D5C4;
  --color-border-light:   #F0E4D8;

  /* Semantic */
  --color-success:        #15803D;
  --color-error:          #DC2626;
  --color-warning:        #D97706;

  /* Typography */
  --font-display:  'Playfair Display SC', Georgia, serif;
  --font-body:     'Karla', system-ui, -apple-system, sans-serif;

  /* Type Scale */
  --text-xs:   0.75rem;    /*  12px */
  --text-sm:   0.875rem;   /*  14px */
  --text-base: 1rem;       /*  16px */
  --text-lg:   1.125rem;   /*  18px */
  --text-xl:   1.25rem;    /*  20px */
  --text-2xl:  1.5rem;     /*  24px */
  --text-3xl:  1.875rem;   /*  30px */
  --text-4xl:  2.25rem;    /*  36px */
  --text-5xl:  3rem;       /*  48px */
  --text-6xl:  3.75rem;    /*  60px */

  /* Spacing (8px base grid) */
  --space-1:   0.25rem;   /*  4px */
  --space-2:   0.5rem;    /*  8px */
  --space-3:   0.75rem;   /* 12px */
  --space-4:   1rem;      /* 16px */
  --space-5:   1.25rem;   /* 20px */
  --space-6:   1.5rem;    /* 24px */
  --space-8:   2rem;      /* 32px */
  --space-10:  2.5rem;    /* 40px */
  --space-12:  3rem;      /* 48px */
  --space-16:  4rem;      /* 64px */
  --space-20:  5rem;      /* 80px */
  --space-24:  6rem;      /* 96px */

  /* Elevation / Shadows */
  --shadow-xs:  0 1px 2px rgba(28,10,9,0.06);
  --shadow-sm:  0 2px 8px rgba(28,10,9,0.08), 0 1px 2px rgba(28,10,9,0.04);
  --shadow-md:  0 4px 16px rgba(28,10,9,0.10), 0 2px 4px rgba(28,10,9,0.06);
  --shadow-lg:  0 8px 32px rgba(28,10,9,0.12), 0 4px 8px rgba(28,10,9,0.06);
  --shadow-xl:  0 16px 48px rgba(28,10,9,0.16), 0 4px 12px rgba(28,10,9,0.08);
  --shadow-red: 0 4px 20px rgba(196,30,44,0.28);

  /* Border Radius */
  --radius-sm:   4px;
  --radius:      8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --duration-fast:   150ms;
  --duration-base:   200ms;
  --duration-slow:   300ms;

  /* Layout */
  --max-width:  1100px;
  --nav-height: 68px;

  /* Dragon Brand */
  --color-dragon-red: #C41E2C;
  --color-ink: #2D1110;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
  cursor: pointer;
}
a:hover { color: var(--color-primary-dark); }

ul { list-style: none; }

button { cursor: pointer; font-family: var(--font-body); }

a, button, input, select, textarea { touch-action: manipulation; }

/* Focus visible — accessibility */
:focus-visible {
  outline: 2.5px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: var(--text-sm);
  z-index: 9999;
  transition: top var(--duration-fast) var(--ease-out);
}
.skip-link:focus {
  top: var(--space-4);
  color: var(--color-white);
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(var(--text-3xl), 5.5vw, var(--text-5xl)); }
h2 { font-size: clamp(var(--text-2xl), 3.8vw, var(--text-4xl)); }
h3 { font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl)); }
h4 { font-size: var(--text-lg); }
h5 { font-size: var(--text-base); }

p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-muted);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

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

@media (min-width: 768px) {
  .container { padding: 0 var(--space-8); }
}

.section {
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--space-20) 0; }
}

.section--alt  { background: var(--color-light); }
.section--dark { background: var(--color-dark); }
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--color-cream); }

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.section-header h2 { margin-bottom: var(--space-3); }

.section-header .lead {
  max-width: 540px;
  margin: 0 auto;
}

/* Decorative divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin: var(--space-3) auto var(--space-4);
}

.divider::before,
.divider::after {
  content: '';
  width: 36px;
  height: 1.5px;
  background: var(--color-gold-bright);
  opacity: 0.6;
}

.divider-dot {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

/* Dragon divider variant */
.divider--dragon .divider-dot {
  width: 28px;
  height: 28px;
  background: url('../photos/logos/dragon-red.png') center/contain no-repeat;
  border-radius: 0;
  opacity: 0.4;
}

.section--dark .divider--dragon .divider-dot {
  background-image: url('../photos/logos/dragon-white.png');
  opacity: 0.35;
}

/* Gold accent borders for sections */
.section--gold-border {
  border-top: 1.5px solid var(--color-gold);
  border-bottom: 1.5px solid var(--color-gold);
}

/* ---- Brand Logo Styles ---- */

.nav__brand-logo {
  height: 36px;
  width: auto;
  display: block;
  transition: opacity var(--duration-fast);
}
.nav__brand-logo:hover { opacity: 0.85; }

@media (min-width: 768px) {
  .nav__brand-logo { height: 42px; }
}

/* Hero brand logo */
.hero__brand-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin-bottom: var(--space-6);
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.4));
}

@media (min-width: 768px) {
  .hero__brand-logo { max-width: 400px; }
}

/* Hero location badge */
.hero__badge-logo {
  max-width: 240px;
  width: 100%;
  height: auto;
  opacity: 0.85;
  filter: brightness(10) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* Screen-reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ---- Dragon Watermarks ---- */

.dragon-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
}

.dragon-watermark--hero {
  width: 500px;
  height: auto;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
}

.dragon-watermark--section {
  width: 360px;
  height: auto;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
}

.dragon-watermark--cta {
  width: 400px;
  height: auto;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
}

.dragon-watermark--menu {
  width: 140px;
  height: auto;
  opacity: 0.12;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Hide watermarks on small screens */
@media (max-width: 767px) {
  .dragon-watermark { display: none; }
  .dragon-watermark--menu { display: block; opacity: 0.08; width: 100px; }
}

/* ---- Footer Brand Logo ---- */

.footer__brand-logo {
  height: auto;
  max-width: 200px;
  margin-bottom: var(--space-3);
}

.footer__dragon-accent {
  width: 120px;
  height: auto;
  opacity: 0.55;
  margin-bottom: var(--space-4);
}

@media (max-width: 639px) {
  .footer__dragon-accent { display: none; }
}

/* ---- Family Photo Grid ---- */

.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .family-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
  }
}

.family-grid__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-border-light);
  transition: transform var(--duration-slow) var(--ease-out),
              box-shadow var(--duration-slow) var(--ease-out);
}

.family-grid__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.family-grid__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (min-width: 768px) {
  .family-grid__item img { height: 320px; }
}

/* Last photo spans 2 columns on mobile, centered on desktop */
.family-grid__item--wide {
  grid-column: 1 / -1;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .family-grid__item--wide {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
}

/* About page brand logo */
.about-brand-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  margin-bottom: var(--space-6);
}

/* Contact page badge */
.contact-badge-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  margin: var(--space-4) 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn:active { transform: scale(0.97); }

/* Primary */
.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: 0 6px 24px rgba(196,30,44,0.38);
  transform: translateY(-1px);
}

/* Outline on dark bg */
.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  transform: translateY(-1px);
}

/* Outline on light bg */
.btn--outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* Ghost */
.btn--ghost {
  background: rgba(196,30,44,0.07);
  color: var(--color-primary);
  border-color: transparent;
}
.btn--ghost:hover {
  background: rgba(196,30,44,0.14);
  color: var(--color-primary-dark);
}

/* Sizes */
.btn--sm  { padding: 0.55rem 1.2rem; font-size: var(--text-xs); }
.btn--lg  { padding: 1rem 2.25rem;   font-size: var(--text-base); }
.btn--xl  { padding: 1.1rem 2.75rem; font-size: var(--text-lg); }

/* Gold accent button */
.btn--gold {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: 0 4px 16px rgba(161,98,7,0.3);
}
.btn--gold:hover {
  background: #92540A;
  color: var(--color-white);
  transform: translateY(-1px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(28,10,9,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 20px rgba(28,10,9,0.3);
  transition: background var(--duration-slow) var(--ease-out);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand */
.nav__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-white);
  letter-spacing: 0.03em;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  transition: opacity var(--duration-fast);
}
.nav__brand:hover { opacity: 0.9; color: var(--color-white); }
.nav__brand-main { font-weight: 700; }
.nav__brand-sub  {
  font-size: var(--text-xs);
  color: var(--color-gold-bright);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Desktop links */
.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-1);
}

.nav__links a {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius);
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: var(--space-3);
  right: var(--space-3);
  height: 1.5px;
  background: var(--color-gold-bright);
  transform: scaleX(0);
  transition: transform var(--duration-base) var(--ease-out);
}

.nav__links a:hover { color: var(--color-white); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__links a.active { color: var(--color-white); }

/* Nav CTA */
.nav__call {
  display: none;
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--duration-base) var(--ease-out);
  box-shadow: var(--shadow-red);
}
.nav__call:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,30,44,0.38);
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0 var(--space-2);
  transition: background var(--duration-fast);
}
.nav__hamburger:hover { background: rgba(255,255,255,0.14); }

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile drawer */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(22,8,8,0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-4) var(--space-5) var(--space-6);
  gap: var(--space-1);
}
.nav__mobile.open { display: flex; }

.nav__mobile a {
  color: rgba(255,255,255,0.78);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  transition: all var(--duration-fast) var(--ease-out);
  border-left: 2px solid transparent;
}
.nav__mobile a:hover,
.nav__mobile a.active {
  color: var(--color-white);
  background: rgba(255,255,255,0.06);
  border-left-color: var(--color-gold-bright);
}

.nav__mobile-call {
  margin-top: var(--space-4) !important;
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  text-align: center;
  border-radius: var(--radius-full) !important;
  justify-content: center;
  border-left: none !important;
  box-shadow: var(--shadow-red);
  font-size: var(--text-sm) !important;
}
.nav__mobile-call:hover {
  background: var(--color-primary-dark) !important;
  color: var(--color-white) !important;
}

@media (min-width: 768px) {
  .nav__links  { display: flex; }
  .nav__call   { display: block; }
  .nav__hamburger { display: none; }
}

/* ============================================================
   MOBILE STICKY CALL BAR
   ============================================================ */

.mobile-call-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-4);
  padding-bottom: max(var(--space-4), env(safe-area-inset-bottom));
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 -4px 20px rgba(196,30,44,0.35);
  transition: background var(--duration-fast);
}
.mobile-call-bar:hover {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  color: var(--color-white);
}
.mobile-call-bar svg { flex-shrink: 0; }

@media (min-width: 768px) { .mobile-call-bar { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 72px; } }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88dvh;
  display: flex;
  align-items: center;
  background: var(--color-dark);
  overflow: hidden;
}

/* Background image with layered overlay */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../photos/snl.webp');
  background-size: cover;
  background-position: center 40%;
  transition: transform 8s ease;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(28,10,9,0.82) 0%,
      rgba(28,10,9,0.60) 45%,
      rgba(28,10,9,0.35) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-12) 0;
  max-width: 640px;
}

/* Eyebrow badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(161,98,7,0.25);
  border: 1px solid rgba(217,119,6,0.45);
  color: #FCD34D;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  backdrop-filter: blur(4px);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: #FCD34D;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  color: var(--color-white);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin-bottom: var(--space-5);
  text-shadow: 0 2px 20px rgba(28,10,9,0.5);
  line-height: 1.1;
}

.hero__tagline {
  color: rgba(255,255,255,0.85);
  font-size: clamp(var(--text-base), 2.5vw, var(--text-xl));
  margin-bottom: var(--space-8);
  line-height: 1.65;
  font-weight: 400;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

/* Info chips */
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.92);
  font-size: var(--text-sm);
  font-weight: 500;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}
.hero__chip svg { color: var(--color-gold-bright); flex-shrink: 0; }

/* ============================================================
   INFO BAR
   ============================================================ */

.info-bar {
  background: linear-gradient(90deg, var(--color-primary) 0%, #A91825 100%);
  padding: var(--space-3) 0;
  box-shadow: 0 2px 12px rgba(196,30,44,0.25);
}

.info-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: center;
  justify-content: center;
}

.info-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.02em;
}

.info-bar__item svg { color: rgba(255,255,255,0.7); flex-shrink: 0; }

.info-bar__sep {
  display: none;
  color: rgba(255,255,255,0.25);
  font-size: var(--text-xl);
}

@media (min-width: 640px) { .info-bar__sep { display: block; } }

/* ============================================================
   FEATURE CARDS (Home — Featured Dishes)
   ============================================================ */

.features-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}

@media (min-width: 600px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: transform var(--duration-slow) var(--ease-out),
              box-shadow var(--duration-slow) var(--ease-out);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.feature-card__img-wrap {
  position: relative;
  overflow: hidden;
}

.feature-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.feature-card:hover .feature-card__img {
  transform: scale(1.04);
}

.feature-card__body {
  padding: var(--space-5) var(--space-6);
}

.feature-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.feature-card__label::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: var(--color-gold-bright);
  display: inline-block;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-dark);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   INTRO / ABOUT BLOCK
   ============================================================ */

.intro-block {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 768px) {
  .intro-block { grid-template-columns: 1fr 1fr; }
}

.intro-block__img-wrap {
  position: relative;
}

.intro-block__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* Decorative accent behind image */
.intro-block__img-wrap::before {
  content: '';
  position: absolute;
  inset: -12px -12px auto auto;
  width: 80px;
  height: 80px;
  border: 3px solid var(--color-gold-bright);
  border-radius: var(--radius-lg);
  opacity: 0.35;
  z-index: 0;
}

.intro-block__img-wrap::after {
  content: '';
  position: absolute;
  inset: auto -8px -8px auto;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  opacity: 0.15;
  z-index: 0;
}

.intro-block__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.intro-block__tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--color-gold-bright);
}

.intro-block__text h2 { margin-bottom: var(--space-5); }
.intro-block__text p  { color: var(--color-muted); }

/* ============================================================
   TRUST STATS
   ============================================================ */

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  justify-content: center;
}

.trust-item {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  transition: transform var(--duration-slow) var(--ease-out),
              box-shadow var(--duration-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold-bright));
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-item__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.trust-item__label {
  font-size: var(--text-sm);
  color: var(--color-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================================================
   HOURS & LOCATION (Dark Section)
   ============================================================ */

.info-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }

.info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-6);
  transition: background var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}

.info-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-red);
}

.info-card h3 {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold-bright);
  margin-bottom: var(--space-3);
  font-family: var(--font-body);
}

.info-card p,
.info-card a {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-sm);
  line-height: 1.7;
}
.info-card a:hover { color: var(--color-white); }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #8B1219 100%);
  padding: var(--space-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.cta-banner__content { position: relative; z-index: 1; }

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.cta-banner p {
  color: rgba(255,255,255,0.92);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #120605;
  color: rgba(255,255,255,0.6);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__grid {
  display: grid;
  gap: var(--space-10);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-10);
}

@media (min-width: 640px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.footer__brand-sub {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  margin-bottom: var(--space-4);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  transition: all var(--duration-base) var(--ease-out);
}

.footer__social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer h4 {
  color: var(--color-gold-bright);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
  font-family: var(--font-body);
}

.footer ul li {
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
}

.footer ul li a {
  color: rgba(255,255,255,0.55);
  transition: color var(--duration-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.footer ul li a:hover { color: var(--color-white); }

.footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: var(--space-6);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  background: linear-gradient(160deg, var(--color-dark) 0%, var(--color-dark-mid) 100%);
  padding: var(--space-16) 0 var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(196,30,44,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(161,98,7,0.08) 0%, transparent 50%);
}

.page-hero__content { position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-lg);
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================================
   MENU PAGE
   ============================================================ */

/* Reduced section padding on menu page */
.menu-page { padding: var(--space-8) 0; }
@media (min-width: 768px) { .menu-page { padding: var(--space-12) 0; } }

/* --- Two-panel layout (sidebar + content) --- */
.menu-layout { display: block; }

@media (min-width: 900px) {
  .menu-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--space-8);
    align-items: start;
  }
}

/* --- Desktop sidebar --- */
.menu-sidebar {
  display: none;
}

@media (min-width: 900px) {
  .menu-sidebar {
    display: block;
    position: sticky;
    top: calc(var(--nav-height) + var(--space-8));
    max-height: calc(100vh - var(--nav-height) - var(--space-16));
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
  }
  .menu-sidebar::-webkit-scrollbar { width: 4px; }
  .menu-sidebar::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: var(--radius-full);
  }
}

.menu-sidebar__inner {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5) 0;
}

.menu-sidebar__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted-light);
  padding: 0 var(--space-5) var(--space-4);
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: var(--space-2);
}

/* Sidebar link */
.menu-sidebar__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-muted);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
}

.menu-sidebar__link:hover {
  color: var(--color-dark);
  background: var(--color-light);
}

.menu-sidebar__link.active {
  color: var(--color-primary);
  background: var(--color-primary-subtle);
  border-left-color: var(--color-primary);
  font-weight: 700;
}

.menu-sidebar__count {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-muted-light);
  background: var(--color-light);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  min-width: 28px;
  text-align: center;
  transition: all var(--duration-fast) var(--ease-out);
}

.menu-sidebar__link.active .menu-sidebar__count {
  background: var(--color-primary);
  color: var(--color-white);
}

/* --- Mobile pill bar (horizontal, <900px only) --- */
.menu-nav--mobile {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  box-shadow: var(--shadow-xs);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-nav--mobile::-webkit-scrollbar { display: none; }

@media (min-width: 900px) { .menu-nav--mobile { display: none; } }

.menu-nav__inner {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  white-space: nowrap;
  min-width: max-content;
}

.menu-nav__btn {
  display: inline-flex;
  align-items: center;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  background: transparent;
  border: 1.5px solid var(--color-border);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  text-decoration: none;
  font-family: var(--font-body);
}
.menu-nav__btn:hover,
.menu-nav__btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-red);
}

/* Menu content column */
.menu-content { min-width: 0; }

/* Menu notice */
.menu-notice {
  background: var(--color-gold-light);
  border: 1px solid rgba(161,98,7,0.25);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  color: #78530A;
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  line-height: 1.55;
}

/* Menu sections */
.menu-section {
  margin-bottom: var(--space-12);
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.menu-section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-dark);
  margin-bottom: var(--space-1);
}

.menu-section__note {
  font-size: var(--text-sm);
  color: var(--color-muted);
  font-style: italic;
  display: block;
  margin-bottom: var(--space-4);
}

.menu-section__divider {
  height: 2px;
  background: linear-gradient(to right, var(--color-primary), var(--color-gold-bright), transparent);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

/* Buffet special card */
.menu-special-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  margin-bottom: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-red);
}

.menu-special-card h3 {
  color: var(--color-white);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}
.menu-special-card p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  margin: 0;
  line-height: 1.5;
}

.menu-special-card__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-white);
  white-space: nowrap;
  line-height: 1;
}
.menu-special-card__price span {
  font-size: var(--text-sm);
  opacity: 0.75;
  font-family: var(--font-body);
  font-weight: 600;
  display: block;
  margin-top: var(--space-1);
}

/* Menu items grid */
.menu-items {
  display: grid;
  gap: var(--space-1);
}
@media (min-width: 640px) { .menu-items { grid-template-columns: repeat(2, 1fr); } }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  transition: background var(--duration-fast) var(--ease-out);
  border: 1px solid transparent;
}

.menu-item:hover {
  background: var(--color-cream-dark);
  border-color: var(--color-border-light);
}

.menu-item:nth-child(odd) { background: var(--color-light); }
.menu-item:nth-child(odd):hover { background: var(--color-cream-dark); }

.menu-item__name {
  font-size: var(--text-base);
  color: var(--color-text);
  font-weight: 600;
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}

.menu-item__desc {
  font-size: var(--text-xs);
  color: var(--color-muted);
  font-weight: 400;
  display: block;
  margin-top: 2px;
  line-height: 1.4;
  font-style: italic;
}

.menu-item__hot {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.06em;
  vertical-align: middle;
  margin-left: var(--space-2);
}

.menu-item__price {
  font-weight: 700;
  color: var(--color-primary);
  font-size: var(--text-base);
  white-space: nowrap;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-story {
  display: grid;
  gap: var(--space-12);
  align-items: start;
}
.about-story .about-img {
  margin-top: 0;
}
@media (min-width: 768px) { .about-story { grid-template-columns: 5fr 4fr; } }

.about-story__body h2 { margin-bottom: var(--space-6); }
.about-story__body p  { color: var(--color-muted); }

.about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-img:not(:has(.family-carousel)) {
  box-shadow: var(--shadow-lg);
}
.about-img > img { width: 100%; object-fit: cover; display: block; }

/* Values cards */
.about-values {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .about-values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .about-values { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  border-top: 3px solid var(--color-primary);
  transition: transform var(--duration-slow) var(--ease-out),
              box-shadow var(--duration-slow) var(--ease-out);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary-subtle), var(--color-cream-dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: 1.5rem; color: var(--color-primary);
}

.value-card h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
  color: var(--color-dark);
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  position: relative;
  transition: transform var(--duration-slow) var(--ease-out),
              box-shadow var(--duration-slow) var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  color: var(--color-gold-bright);
  font-size: var(--text-lg);
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
}

.testimonial-card__quote {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-5);
  position: relative;
}

.testimonial-card__quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-primary-subtle);
  position: absolute;
  top: -1rem;
  left: -0.25rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card__author {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-dark);
}

.testimonial-card__meta {
  font-size: var(--text-xs);
  color: var(--color-muted-light);
  margin-top: var(--space-1);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  gap: var(--space-8);
  align-items: start;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 5fr 4fr; } }

/* Form card */
.form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}

.form-card h2 { margin-bottom: var(--space-2); }
.form-card > p {
  color: var(--color-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.form-group { margin-bottom: var(--space-5); }

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-2);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  min-height: 48px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out),
              background var(--duration-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(196,30,44,0.10);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-group .hint {
  font-size: var(--text-xs);
  color: var(--color-muted-light);
  margin-top: var(--space-2);
  display: block;
}

.form-row {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-submit {
  width: 100%;
  margin-top: var(--space-2);
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

/* Success */
.form-success { display: none; text-align: center; padding: var(--space-8) var(--space-5); }
.form-success.visible { display: block; }

.form-success__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: 1.75rem;
}

.form-success h3 { margin-bottom: var(--space-2); }
.form-success p   { color: var(--color-muted); }

/* Contact info panel */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-5);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-info-card__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-white);
  box-shadow: var(--shadow-red);
}

.contact-info-card h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted-light);
  margin-bottom: var(--space-1);
  font-family: var(--font-body);
}

.contact-info-card p,
.contact-info-card a {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.6;
}
.contact-info-card a {
  font-weight: 700;
  color: var(--color-primary);
}
.contact-info-card a:hover { color: var(--color-primary-dark); }

/* Map link card */
.map-link-card {
  background: var(--color-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  display: block;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.map-link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.map-link-card__preview {
  width: 100%;
  height: 160px;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity var(--duration-base);
}
.map-link-card:hover .map-link-card__preview { opacity: 0.7; }

.map-link-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-link-card__btn {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  box-shadow: var(--shadow-lg);
  transition: background var(--duration-fast);
}
.map-link-card:hover .map-link-card__btn {
  background: var(--color-primary-dark);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

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

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

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

/* ============================================================
   UTILITY
   ============================================================ */

.text-center { text-align: center; }
.text-red    { color: var(--color-primary); }
.text-gold   { color: var(--color-gold); }
.text-muted  { color: var(--color-muted); }

.mt-1 { margin-top: var(--space-2); }
.mt-2 { margin-top: var(--space-4); }
.mt-3 { margin-top: var(--space-6); }
.mt-4 { margin-top: var(--space-8); }
.mb-1 { margin-bottom: var(--space-2); }
.mb-2 { margin-bottom: var(--space-4); }
.mb-3 { margin-bottom: var(--space-6); }
.mb-4 { margin-bottom: var(--space-8); }

/* ============================================================
   CART SYSTEM
   ============================================================ */

/* ---- Add to Cart Button (menu items) ---- */

.menu-item__add {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item__add:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}
.menu-item__add:active { transform: scale(0.95); }

.menu-item__add--added {
  background: var(--color-success);
  pointer-events: none;
}

/* ---- Cart Badge (nav) ---- */

.nav__cart-badge {
  background: var(--color-gold-bright);
  color: var(--color-dark);
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: var(--space-2);
  padding: 0 4px;
  line-height: 1;
  vertical-align: middle;
  animation: badge-pop 0.3s var(--ease-out);
}

@keyframes badge-pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* ---- Cart Slide-Out Panel ---- */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 10, 9, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-base) var(--ease-out),
              visibility var(--duration-base);
}
.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background: var(--color-cream);
  z-index: 1101;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(28, 10, 9, 0.15);
}
.cart-panel.open { transform: translateX(0); }

.cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
  flex-shrink: 0;
}

.cart-panel__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.cart-panel__count {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.cart-panel__close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--color-cream-dark);
  color: var(--color-muted);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast);
}
.cart-panel__close:hover {
  background: var(--color-primary-subtle);
  color: var(--color-primary);
}

/* Cart items list */
.cart-panel__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4) var(--space-6);
}

.cart-panel__empty {
  text-align: center;
  padding: var(--space-12) var(--space-4);
  color: var(--color-muted);
}
.cart-panel__empty-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-3);
  opacity: 0.4;
}
.cart-panel__empty p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

/* Individual cart item */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border-light);
}
.cart-item:last-child { border-bottom: none; }

.cart-item__info {
  flex: 1;
  min-width: 0;
}
.cart-item__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 2px;
}
.cart-item__price {
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.cart-item__qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-dark);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast);
  font-family: var(--font-body);
}
.cart-item__qty-btn:hover {
  background: var(--color-cream-dark);
  border-color: var(--color-muted-light);
}

.cart-item__qty {
  font-size: var(--text-sm);
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  color: var(--color-dark);
}

.cart-item__remove {
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  color: var(--color-muted-light);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: all var(--duration-fast);
  margin-left: 4px;
}
.cart-item__remove:hover {
  color: var(--color-primary);
  background: var(--color-primary-subtle);
}

/* Cart footer (totals + CTA) */
.cart-panel__footer {
  border-top: 2px solid var(--color-border);
  background: var(--color-white);
  padding: var(--space-5) var(--space-6);
  flex-shrink: 0;
}

.cart-panel__totals {
  margin-bottom: var(--space-4);
}

.cart-panel__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-1) 0;
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.cart-panel__total-row--grand {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-dark);
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-border-light);
  margin-top: var(--space-2);
}

.cart-panel__call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-4);
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-out);
  box-shadow: var(--shadow-red);
}
.cart-panel__call-btn:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,30,44,0.38);
}

.cart-panel__call-note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-muted);
  margin-top: var(--space-3);
  line-height: 1.5;
}

.cart-panel__clear {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: var(--text-xs);
  font-family: var(--font-body);
  cursor: pointer;
  padding: var(--space-2) 0;
  margin-top: var(--space-2);
  transition: color var(--duration-fast);
}
.cart-panel__clear:hover { color: var(--color-primary); }

/* Order summary box */
.cart-panel__summary {
  background: var(--color-cream);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  margin-top: var(--space-3);
}
.cart-panel__summary-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: var(--space-2);
}
.cart-panel__summary-text {
  font-size: var(--text-xs);
  font-family: monospace;
  color: var(--color-text);
  white-space: pre-line;
  line-height: 1.6;
  user-select: all;
}

/* ---- Toast Notification ---- */

.sl-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  z-index: 1200;
  opacity: 0;
  transition: all var(--duration-base) var(--ease-out);
  pointer-events: none;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.sl-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- Mobile Cart Sticky Bar ---- */

.cart-mobile-bar {
  display: none;
  position: fixed;
  bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: var(--space-3) var(--space-5);
  box-shadow: 0 -4px 16px rgba(28,10,9,0.1);
}
.cart-mobile-bar.visible { display: block; }

.cart-mobile-bar__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-3) var(--space-5);
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: var(--shadow-red);
}

@media (min-width: 768px) {
  .cart-mobile-bar { display: none !important; }
}

/* Adjust body padding when cart bar is visible on mobile */
@media (max-width: 767px) {
  body.has-cart-items { padding-bottom: 120px; }
}

/* Print */
@media print {
  .nav, .mobile-call-bar, .hero, .cta-banner, .footer, .menu-nav,
  .cart-panel, .cart-overlay, .cart-mobile-bar, .sl-toast { display: none; }
  body { padding-bottom: 0; }
}
