/* ========================================
   FOODIE CRAFT — Design System & Styles
   Dark & Moody Craft Fast Food
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #0D0D0D;
  --bg-surface: #1A1A1A;
  --bg-light: #F5F0E8;
  --bg-card-light: #FFFFFF;
  --bg-surface-hover: #252525;
  --brand-red: #FC0404;
  --brand-yellow: #FCCB04;
  --brand-yellow-hover: #FFD83D;
  --kraft: #C8842A;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --text-muted: #666666;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-subheading: 'Karla', sans-serif;
  --font-body: 'Karla', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --gap-sm: 8px;
  --gap-md: 16px;
  --gap-lg: 24px;
  --gap-xl: 48px;
  --gap-2xl: 80px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

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

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Base --- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: var(--gap-lg);
  color: var(--text-primary);
}

.section-subtitle {
  font-family: var(--font-subheading);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: var(--text-secondary);
  max-width: 600px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-sm);
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--brand-yellow);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--brand-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(252, 203, 4, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--brand-yellow);
  color: var(--brand-yellow);
  transform: translateY(-2px);
}

.btn-red {
  background: var(--brand-red);
  color: var(--text-primary);
}

.btn-red:hover {
  background: #e00303;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(252, 4, 4, 0.3);
}

/* ========================================
   HEADER / NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.navbar-logo img {
  height: 48px;
  width: auto;
  transition: height var(--transition-medium);
}

.navbar.scrolled .navbar-logo img {
  height: 38px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: var(--gap-xl);
}

.navbar-links {
  display: flex;
  gap: var(--gap-lg);
}

.navbar-links a {
  font-family: var(--font-subheading);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-yellow);
  transition: width var(--transition-medium);
}

.navbar-links a:hover {
  color: var(--text-primary);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta .btn {
  padding: 10px 24px;
  font-size: 13px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   SECTION 1 — HERO (with parallax & particles)
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 110%;
  height: 120%;
  z-index: 0;
  will-change: transform;
  transition: transform 0.1s linear;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 40%, rgba(13,13,13,0.95) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.4) 0%, transparent 70%);
  z-index: 1;
}

/* Floating Particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--brand-yellow);
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}

/* Hero cinematic centered layout */
.hero-split {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
}

.hero-text {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 90px;
  height: auto;
  margin: 0 auto 20px;
  animation: fadeInDown 0.8s ease forwards, heroLogoPulse 3s ease-in-out 1.5s infinite;
  filter: drop-shadow(0 0 40px rgba(252, 203, 4, 0.4));
}

@keyframes heroLogoPulse {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(252, 203, 4, 0.4)); }
  50% { filter: drop-shadow(0 0 80px rgba(252, 203, 4, 0.7)) drop-shadow(0 0 120px rgba(200, 50, 30, 0.3)); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-line {
  display: block;
  overflow: hidden;
  padding-top: 0.15em;
}

.hero-line:nth-child(1) {
  animation: heroLineIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
  color: var(--text-primary);
}

.hero-line:nth-child(2) {
  animation: heroLineIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-line.highlight {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, #ff6b35 25%, var(--brand-red) 50%, #ff6b35 75%, var(--brand-yellow) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(252, 203, 4, 0.3));
  animation: heroLineIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both, gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: translateY(100%) skewY(3deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
  }
}

.hero-tagline {
  font-family: var(--font-subheading);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
  max-width: 550px;
  letter-spacing: 1px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s forwards;
  opacity: 0;
}

.hero-ctas .btn {
  flex: 1 1 0;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  justify-content: center;
  box-sizing: border-box;
}

/* Glowing CTA */
.btn-primary {
  background: var(--brand-yellow);
  color: var(--bg-primary);
  position: relative;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--brand-yellow);
  filter: blur(12px);
  opacity: 0;
  transition: opacity var(--transition-medium);
  z-index: -1;
}

.btn-primary:hover::before {
  opacity: 0.4;
}

.btn-red {
  background: var(--brand-red);
  color: #fff;
  position: relative;
}

.btn-red::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--brand-red);
  filter: blur(12px);
  opacity: 0;
  transition: opacity var(--transition-medium);
  z-index: -1;
}

.btn-red:hover::before {
  opacity: 0.4;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-sm);
  animation: bounce 2s infinite 2s;
}

.scroll-indicator span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.scroll-indicator .arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
}

/* ========================================
   MARQUEE STRIP
   ======================================== */
.marquee-strip {
  background: var(--brand-yellow);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marqueeScroll 20s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--bg-primary);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   SECTION 2 — BRAND MANIFESTO
   ======================================== */
.manifesto {
  background: #0D0D0D;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-2xl);
  align-items: center;
}

.manifesto-heading {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -2px;
}

.manifesto-heading .accent {
  color: var(--brand-red);
}

.manifesto-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--gap-lg);
}

.manifesto-text .highlight-line {
  color: var(--brand-yellow);
  font-weight: 600;
  font-size: 20px;
}

.kraft-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--kraft), var(--brand-yellow));
  margin-bottom: var(--gap-lg);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.kraft-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shimmer 2.5s infinite;
}

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

/* ========================================
   SECTION 3 — CATEGORY SHOWCASE
   ======================================== */
.categories {
  background: var(--bg-light);
}

.categories .section-header {
  text-align: center;
  margin-bottom: var(--gap-2xl);
}

.categories .section-title {
  color: var(--bg-primary);
}

.categories .section-subtitle {
  margin: 0 auto;
  color: #555;
}

/* Bento Grid Layout */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 200px;
  gap: var(--gap-md);
  margin-bottom: var(--gap-xl);
}

.bento-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card.bento-large {
  grid-column: 1;
  grid-row: span 3;
  min-height: auto;
  max-height: none;
}

.bento-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Card text */
.bento-card-text {
  position: relative;
  z-index: 2;
}

.bento-card-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.bento-large .bento-card-text h3 {
  font-size: clamp(32px, 4vw, 48px);
}

.bento-card-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}

.bento-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-yellow);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.bento-cta {
  display: inline-block;
  font-family: var(--font-subheading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.bento-cta.dark {
  color: #1a1a1a;
  border-color: rgba(0,0,0,0.3);
}

.bento-card:hover .bento-cta {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}

.bento-card:hover .bento-cta.dark {
  background: rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.5);
}

/* Food image in card */
.bento-card-img {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 135px;
  height: 135px;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35));
  border: 3px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.2);
}

.bento-large .bento-card-img {
  width: 286px;
  height: 286px;
  bottom: 20px;
  right: 20px;
  transform: none;
}

.bento-card:hover .bento-card-img {
  transform: scale(1.06);
}

.bento-large:hover .bento-card-img {
  transform: scale(1.06);
}

.category-cta {
  text-align: center;
}

/* Hero Video */
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   SECTION 4 — FEATURED PRODUCT
   ======================================== */
.featured {
  background: var(--bg-primary);
  overflow: hidden;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-2xl);
  align-items: center;
}

.featured-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.3);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-sm);
  background: var(--brand-red);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--gap-lg);
}

.featured-name {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: var(--gap-lg);
}

.featured-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--gap-xl);
}

.featured-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-xl);
}

.featured-ingredients span {
  background: var(--bg-surface);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================
   SECTION 5 — MENU (Glassmorphism 2026)
   ======================================== */
.menu {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

/* Ambient glow behind menu */
.menu::before {
  display: none;
}

.menu .section-title,
.menu .section-subtitle {
  color: var(--bg-primary);
}

.menu .section-subtitle {
  color: #555;
}

.menu .section-header {
  text-align: center;
  margin-bottom: var(--gap-xl);
}

.menu .section-subtitle {
  margin: 0 auto;
}

/* Branch Selector — pill style (light bg) */
.branch-selector {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: var(--gap-xl);
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.branch-btn {
  padding: 10px 24px;
  font-family: var(--font-subheading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
  border: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  background: transparent;
}

.branch-btn.active {
  color: var(--bg-primary);
  background: var(--brand-yellow);
  box-shadow: 0 4px 20px rgba(252, 203, 4, 0.3);
}

.branch-btn:hover:not(.active) {
  color: #333;
  background: rgba(0, 0, 0, 0.06);
}

/* Menu Layout — Sidebar + Content */
.menu-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--gap-lg);
  align-items: start;
}

/* Sidebar */
.menu-sidebar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 100px;
}

.menu-sidebar-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-family: var(--font-subheading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  text-align: left;
}

.sidebar-btn-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  flex-shrink: 0;
}

.sidebar-btn-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.menu-sidebar-btn.active {
  color: var(--bg-primary);
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  box-shadow: 0 4px 20px rgba(252, 203, 4, 0.3);
}

.menu-sidebar-btn.active .sidebar-btn-icon {
  background: rgba(0, 0, 0, 0.15);
}

.menu-sidebar-btn:hover:not(.active) {
  color: #333;
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.08);
}

/* Menu Content */
.menu-content {
  display: none;
}

.menu-content.active {
  display: block;
}

.menu-content-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--bg-primary);
  margin-bottom: var(--gap-lg);
  padding-bottom: var(--gap-sm);
  border-bottom: 2px solid rgba(252, 203, 4, 0.4);
}

/* Product Card Grid */
.menu-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-md);
}

/* Product Cards */
.menu-product-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card-light);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: menuCardIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  cursor: default;
}

.menu-product-card:hover {
  border-color: rgba(252, 203, 4, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

@keyframes menuCardIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-product-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(252, 203, 4, 0.12);
  border-radius: 12px;
  flex-shrink: 0;
}

.menu-product-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-yellow);
  stroke-width: 1.5;
  fill: none;
}

.menu-product-info {
  flex: 1;
  min-width: 0;
}

.menu-product-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.menu-product-card:hover .menu-product-name {
  color: var(--brand-red);
}

.menu-product-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

.menu-product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.menu-product-header .menu-product-name {
  margin-bottom: 0;
}

.menu-product-price {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #b8860b;
  background: linear-gradient(135deg, rgba(252, 203, 4, 0.15), rgba(252, 203, 4, 0.06));
  border: 1px solid rgba(252, 203, 4, 0.25);
  padding: 4px 10px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-product-sizes {
  display: flex;
  gap: 6px;
  margin: 6px 0 4px;
  flex-wrap: wrap;
}

.size-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #b8860b;
  background: linear-gradient(135deg, rgba(252, 203, 4, 0.12), rgba(252, 203, 4, 0.04));
  border: 1px solid rgba(252, 203, 4, 0.2);
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.size-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  background: #b8860b;
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.menu-price-note {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(252, 203, 4, 0.1), rgba(252, 203, 4, 0.04));
  border: 1px solid rgba(252, 203, 4, 0.2);
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #8a6d00;
  line-height: 1.4;
}

.menu-price-note svg {
  flex-shrink: 0;
  color: #b8860b;
}

/* ========================================
   SECTION 6 — BRANCHES / LOCATIONS
   ======================================== */
.branches {
  background: var(--bg-primary);
}

.branches .section-header {
  text-align: center;
  margin-bottom: var(--gap-2xl);
}

.branches .section-subtitle {
  margin: 0 auto;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
}

.branch-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.branch-card:hover {
  border-color: rgba(252, 203, 4, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.branch-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.branch-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.branch-card:hover .branch-card-img img {
  transform: scale(1.05);
}

.branch-card-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--gap-lg);
  font-size: 24px;
}

.branch-card-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 16px 20px var(--gap-md);
  line-height: 1.2;
}

.branch-card-info {
  flex: 1;
  margin: 0 20px var(--gap-lg);
}

.branch-card-info p {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-sm);
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: var(--gap-sm);
  line-height: 1.5;
}

.branch-card-info .info-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--kraft);
}

.branch-card-cta {
  margin: auto 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.branch-card-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg-surface);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gap-xl);
  margin-bottom: var(--gap-xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-md);
}

.footer-brand img {
  height: 44px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin-bottom: var(--gap-md);
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--brand-yellow);
}

.footer-social {
  display: flex;
  gap: var(--gap-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
  padding: 0;
}

.footer-social a:hover {
  background: var(--brand-red);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--text-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--gap-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Tilt effect */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.1s ease;
}

/* Glow line between sections */
.section-glow-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252, 203, 4, 0.2), var(--brand-yellow), rgba(252, 203, 4, 0.2), transparent);
  position: relative;
}

.section-glow-divider::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(252, 203, 4, 0.15), transparent);
  filter: blur(5px);
}

/* Parallax speed layer helper */
[data-speed] {
  will-change: transform;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   MOBILE NAV OVERLAY
   ======================================== */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gap-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--brand-yellow);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  
  .bento-card.bento-large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 260px;
  }
  
  .bento-large .bento-card-img {
    width: 160px;
    height: 160px;
  }
  
  .menu-layout {
    grid-template-columns: 180px 1fr;
  }
  
  .branches-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .branches-grid .branch-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    justify-self: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .navbar-menu {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }
  
  .hero-logo {
    width: 80px;
    margin-bottom: 24px;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-xl);
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  
  .bento-card.bento-large {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 200px;
  }
  
  .bento-large .bento-card-img {
    width: 140px;
    height: 140px;
  }
  
  .bento-card {
    min-height: 140px;
  }
  
  .bento-card-img {
    width: 90px;
    height: 90px;
  }
  
  .bento-card-text h3 {
    font-size: 20px;
  }
  
  .bento-large .bento-card-text h3 {
    font-size: 24px;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-xl);
  }
  
  .featured-image {
    aspect-ratio: 4 / 3;
  }
  
  .menu-layout {
    grid-template-columns: 1fr;
  }
  
  .menu-sidebar {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: static;
    gap: 8px;
    padding-bottom: 8px;
  }
  
  .menu-sidebar::-webkit-scrollbar {
    display: none;
  }
  
  .menu-sidebar-btn {
    white-space: nowrap;
    padding: 10px 14px;
    font-size: 12px;
  }
  
  .sidebar-btn-icon {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
  
  .menu-card-grid {
    grid-template-columns: 1fr;
  }
  
  .branch-selector {
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    width: auto;
    max-width: 340px;
    padding: 8px;
  }
  
  .branch-btn {
    width: 100%;
    text-align: center;
    border-radius: 12px;
    padding: 12px 16px;
    box-sizing: border-box;
  }
  
  .branches-grid {
    grid-template-columns: 1fr;
  }
  
  .branches-grid .branch-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }
  
  .scroll-indicator {
    bottom: 24px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  
  .bento-card.bento-large {
    grid-column: span 1;
    min-height: 180px;
  }
  
  .bento-card {
    min-height: 120px;
  }
  
  .bento-card-img {
    width: 80px;
    height: 80px;
  }
  
  .bento-large .bento-card-img {
    width: 120px;
    height: 120px;
  }
}

/* ========================================
   SVG Icon Helpers
   ======================================== */
.icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.icon-inline svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.branch-card-info .icon-inline svg {
  width: 16px;
  height: 16px;
  stroke: var(--kraft);
  flex-shrink: 0;
  margin-top: 2px;
}

.bento-badge .icon-inline svg {
  width: 14px;
  height: 14px;
  stroke: var(--brand-yellow);
  fill: var(--brand-yellow);
}

.featured-badge .icon-inline svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-primary);
  fill: var(--text-primary);
}

.hero-ctas .icon-inline svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   ACCESSIBILITY — Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .marquee-track {
    animation: none;
  }

  .particle {
    display: none;
  }
}
