/* ===== THEME TOKENS ===== */
:root {
  --bg: #FFFAF6;
  --bg-alt: #FFFAF6;
  --surface: #fff;
  --surface-alt: #FFF8F3;
  --text: #222;
  --text-muted: #555;
  --text-light: #777;
  --text-faint: #999;
  --text-desc: #888;
  --brand-blue: #004AAD;
  --brand-blue-light: rgba(0,74,173,0.78);
  --brand-blue-hover: rgba(0,74,173,0.08);
  --brand-red: #FF1616;
  --brand-red-hover: #e01010;
  --brand-orange: #F15A26;
  --border: #f0e8e0;
  --border-light: #e0d8d0;
  --card-shadow: rgba(0,74,173,0.07);
  --card-shadow-hover: rgba(0,74,173,0.14);
  --nav-bg: rgba(255, 250, 246, 0.9);
  --nav-bg-scrolled: rgba(255, 250, 246, 0.96);
  --nav-shadow: rgba(0,36,96,0.12);
  --nav-border: rgba(0,74,173,0.08);
  --hero-grad: linear-gradient(165deg, #FFFAF6 0%, #FFF5ED 35%, #EEF4FF 65%, #E8F0FE 100%);
  --hero-orb-red: rgba(255,22,22,0.07);
  --hero-orb-blue: rgba(0,74,173,0.07);
  --marquee-bg: #fff;
  --menu-tab-bg: #fff;
  --menu-tab-border: #e0d8d0;
  --menu-card-bg: #fff;
  --menu-card-img-grad: linear-gradient(135deg, #FDEFE3 0%, #e8f0fe 100%);
  --tag-bg: #FDEFE3;
  --tag-alt-bg: #e8f0fe;
  --about-visual-bg: linear-gradient(135deg, #004AAD 0%, #0060D0 100%);
  --logo-wrap-bg: #FDEFE3;
  --contact-bg: #002855;
  --contact-icon-bg: rgba(241,90,38,0.15);
  --contact-input-bg: rgba(255,255,255,0.08);
  --contact-input-border: rgba(255,255,255,0.12);
  --footer-bg: #001D3D;
  --footer-text: rgba(255,255,255,0.4);
  --footer-border: rgba(255,255,255,0.06);
  --loc-select-bg: rgba(255,255,255,0.85);
  --loc-select-border: rgba(0,74,173,0.16);
  --loc-color: rgba(0,74,173,0.65);
}

html[data-theme="dark"] {
  --bg: #0E1320;
  --bg-alt: #111827;
  --surface: #141B2D;
  --surface-alt: #1A2338;
  --text: #EAF0FF;
  --text-muted: #A8B4D4;
  --text-light: #8896B8;
  --text-faint: #6B7A9E;
  --text-desc: #8896B8;
  --brand-blue: #4B8DFF;
  --brand-blue-light: rgba(75,141,255,0.85);
  --brand-blue-hover: rgba(75,141,255,0.12);
  --brand-red: #FF3B3B;
  --brand-red-hover: #E02020;
  --brand-orange: #FF7A4A;
  --border: rgba(148,173,230,0.12);
  --border-light: rgba(148,173,230,0.15);
  --card-shadow: rgba(0,0,0,0.25);
  --card-shadow-hover: rgba(0,0,0,0.4);
  --nav-bg: rgba(14, 19, 32, 0.92);
  --nav-bg-scrolled: rgba(14, 19, 32, 0.97);
  --nav-shadow: rgba(0,0,0,0.35);
  --nav-border: rgba(148,173,230,0.08);
  --hero-grad: linear-gradient(165deg, #0E1320 0%, #111827 35%, #0F1729 65%, #111D33 100%);
  --hero-orb-red: rgba(255,59,59,0.06);
  --hero-orb-blue: rgba(75,141,255,0.06);
  --marquee-bg: #141B2D;
  --menu-tab-bg: #1A2338;
  --menu-tab-border: rgba(148,173,230,0.15);
  --menu-card-bg: #141B2D;
  --menu-card-img-grad: linear-gradient(135deg, #1A2338 0%, #162040 100%);
  --tag-bg: rgba(255,122,74,0.15);
  --tag-alt-bg: rgba(75,141,255,0.15);
  --about-visual-bg: linear-gradient(135deg, #1A2338 0%, #162040 100%);
  --logo-wrap-bg: rgba(255,250,246,0.1);
  --contact-bg: #0B1120;
  --contact-icon-bg: rgba(255,122,74,0.12);
  --contact-input-bg: rgba(255,255,255,0.05);
  --contact-input-border: rgba(255,255,255,0.08);
  --footer-bg: #080D18;
  --footer-text: rgba(255,255,255,0.35);
  --footer-border: rgba(255,255,255,0.04);
  --loc-select-bg: rgba(255,255,255,0.08);
  --loc-select-border: rgba(148,173,230,0.15);
  --loc-color: var(--text-muted);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nav-border);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  transition: box-shadow 0.25s, background 0.25s;
}
nav.scrolled {
  box-shadow: 0 6px 24px var(--nav-shadow);
  background: var(--nav-bg-scrolled);
}
.nav-logo {
  display: flex; align-items: center;
  flex: 1;
  min-width: 0;
}
.nav-logo img {
  height: 50px;
  width: auto;
}
.nav-center {
  display: flex; align-items: center; gap: 10px;
  flex: 0 0 auto;
}
.nav-center a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--brand-blue-light);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-center a:hover {
  color: var(--brand-blue);
  background: var(--brand-blue-hover);
}
.nav-right {
  display: flex; align-items: center; gap: 10px;
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}
.location-switcher {
  display: flex; align-items: center; gap: 6px;
  color: var(--loc-color);
}
.location-switcher svg {
  width: 14px; height: 14px; flex-shrink: 0;
}
.location-switcher select {
  border: 1px solid var(--loc-select-border);
  border-radius: 7px; padding: 5px 10px;
  font-family: 'Inter', sans-serif; font-size: 0.74rem; font-weight: 600;
  color: var(--brand-blue-light); background: var(--loc-select-bg);
  cursor: pointer; outline: none;
}
.location-switcher select:hover { border-color: var(--brand-blue); }

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--loc-select-border);
  border-radius: 7px;
  background: var(--loc-select-bg);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.hamburger:hover {
  border-color: var(--brand-blue);
}
.hamburger-line {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--brand-blue-light);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 24px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-link {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 24px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-link:hover {
  background: var(--brand-blue-hover);
}
.mobile-menu-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--loc-color);
}
.mobile-menu-location svg {
  width: 18px;
  height: 18px;
}
.mobile-menu-location select {
  border: 1px solid var(--loc-select-border);
  border-radius: 7px;
  padding: 8px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-blue-light);
  background: var(--loc-select-bg);
  cursor: pointer;
  outline: none;
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border: 1px solid var(--loc-select-border);
  border-radius: 7px;
  background: var(--loc-select-bg);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  color: var(--loc-color);
  flex-shrink: 0;
  padding: 0;
}
.theme-toggle:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}
.theme-toggle svg {
  width: 15px; height: 15px;
}
/* Light mode: show sun, hide moon */
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun  { display: block; }
/* Dark mode: show moon, hide sun */
html[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
html[data-theme="dark"] .theme-toggle .icon-sun  { display: none; }

/* ===== HERO ===== */
.hero {
  min-height: auto;
  display: flex; align-items: center; justify-content: center;
  padding: 102px 24px 48px;
  position: relative;
  overflow: hidden;
  background: var(--hero-grad);
  transition: background 0.3s;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--hero-orb-red) 0%, transparent 70%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--hero-orb-blue) 0%, transparent 70%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
}
.hero-logo {
  width: 240px; height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}
.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 24px;
  line-height: 1.7;
  font-weight: 500;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  padding: 15px 32px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.hero-cta.primary {
  background: var(--brand-red); color: #fff;
  box-shadow: 0 4px 20px rgba(255,22,22,0.3);
}
.hero-cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,22,22,0.4);
}
.hero-cta.secondary {
  background: var(--brand-blue); color: #fff;
  box-shadow: 0 4px 20px rgba(0,74,173,0.25);
}
.hero-cta.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,74,173,0.35);
}
.hero-cta svg { width: 16px; height: 16px; }

/* ===== HERO POPULAR ITEMS ===== */
.hero-popular {
  margin-top: 40px;
  width: 100%;
}
.hero-popular-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--brand-blue);
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}
.hero-popular-label::after {
  content: '';
  display: block;
  width: 50px; height: 3px;
  background: var(--brand-red);
  border-radius: 2px;
  margin: 10px auto 0;
}
.hero-popular-items {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 28px;
}
.popular-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 220px;
  background: var(--surface);
  border-radius: 20px;
  padding: 24px 16px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  box-shadow: 0 4px 16px var(--card-shadow);
  border: 1.5px solid var(--border);
}
.popular-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px var(--card-shadow-hover);
}
.popular-item.side {
  min-height: 250px;
}
.popular-item.center {
  min-height: 300px;
  border-color: rgba(255,22,22,0.15);
  box-shadow: 0 6px 24px rgba(255,22,22,0.1);
}
.popular-item.center:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(255,22,22,0.16);
}
.popular-item-img {
  position: relative;
  width: 160px;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface-alt);
}
.popular-item.center .popular-item-img {
  width: 180px;
  height: 135px;
}
.popular-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}
.popular-badge {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.popular-badge svg { display: none; }
.popular-badge.gold { background: #F59E0B; }
.popular-badge.green { background: #059669; }
.popular-badge.red { background: var(--brand-red); }
.popular-item-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.popular-item.center .popular-item-name {
  font-size: 1.1rem;
}
.popular-item-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 180px;
  font-weight: 500;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  padding: 0;
  overflow: hidden;
}
.marquee-bar {
  background: var(--marquee-bg);
  border-top: 3px solid var(--brand-red);
  border-bottom: 3px solid var(--brand-red);
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
  transition: background 0.3s;
}
.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 18s linear infinite;
}
.marquee-track span {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 18px;
  flex-shrink: 0;
}
.marquee-track .marquee-dot {
  padding: 0 10px;
  font-size: 1.1rem;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.promo-split {
  display: flex;
  min-height: 260px;
}
.promo-split-left {
  flex: 1;
  background: var(--brand-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  text-align: center;
  gap: 16px;
}
.promo-split-left h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.promo-split-left p {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
.promo-split-left .promo-cta {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 32px;
  margin-top: 4px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.promo-split-left .promo-cta:hover {
  background: #fff;
  color: var(--brand-red);
}
.promo-split-right {
  flex: 1;
  background: url('../images/fish-wings-combo.png') center/cover no-repeat;
  min-height: 280px;
}

/* ===== SECTION COMMON ===== */
section { padding: 60px 24px; }
.section-header {
  text-align: center;
  margin-bottom: 32px;
}
.section-header .label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--brand-orange);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}

/* ===== MENU ===== */
#menu { background: var(--bg-alt); transition: background 0.3s; }

.menu-nav {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.menu-nav button {
  border: none; cursor: pointer;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--menu-tab-bg);
  color: var(--text-muted);
  border: 2px solid var(--menu-tab-border);
  transition: all 0.2s;
}
.menu-nav button:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.menu-nav button.active {
  background: var(--brand-blue); color: #fff; border-color: var(--brand-blue);
}

.menu-category { display: none; }
.menu-category.active { display: block; }

.menu-category-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 4px;
}
.menu-category-sub {
  font-size: 0.82rem; color: var(--text-faint); font-weight: 500;
  margin-bottom: 24px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-card {
  background: var(--menu-card-bg);
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s, background 0.3s;
  position: relative;
}
.menu-card:hover {
  box-shadow: 0 6px 20px var(--card-shadow-hover);
  transform: translateY(-2px);
  border-color: var(--brand-orange);
}
.menu-card-img {
  width: 100%; height: 160px;
  background: var(--menu-card-img-grad);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-orange);
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  overflow: hidden;
  transition: background 0.3s;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.menu-card-img svg { width: 48px; height: 48px; opacity: 0.35; }
.menu-card-body {
  padding: 16px 18px 18px;
}
.menu-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 6px;
}
.menu-card-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.menu-card-price {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--brand-red);
  white-space: nowrap;
  margin-left: 8px;
}
.menu-card-desc {
  font-size: 0.8rem; color: var(--text-desc);
  margin-bottom: 10px;
  line-height: 1.4;
}
.menu-card-options {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.menu-card-options .tag {
  font-size: 0.68rem; font-weight: 600;
  background: var(--tag-bg); color: var(--brand-orange);
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}
.menu-card-options .tag.alt {
  background: var(--tag-alt-bg); color: var(--brand-blue);
}

/* Size variant (for items with small/large) */
.menu-card-sizes {
  display: flex; gap: 12px;
  margin-top: 8px;
}
.menu-card-sizes .size {
  font-size: 0.78rem; color: var(--text-muted);
}
.menu-card-sizes .size strong {
  color: var(--brand-red); font-weight: 700;
}

/* ===== MENU CTA BANNER ===== */
.menu-cta-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 24px;
  background: var(--about-visual-bg);
  transition: background 0.3s;
}
.menu-cta-text {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #fff;
}
.menu-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-red); color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem; font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(255,22,22,0.35);
}
.menu-cta-btn:hover {
  background: var(--brand-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,22,22,0.5);
}
.menu-cta-btn svg { width: 18px; height: 18px; }
@media (max-width: 480px) {
  .menu-cta-banner {
    flex-direction: column;
    gap: 14px;
    padding: 32px 20px;
    text-align: center;
  }
}

/* ===== ABOUT ===== */
#about {
  background: var(--bg-alt);
  transition: background 0.3s;
}
.about-content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text .label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--brand-orange);
  margin-bottom: 12px;
}
.about-text h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem; font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text h3 em { font-style: normal; color: var(--brand-red); }
.about-text p {
  font-size: 1rem; color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  justify-content: center;
}
.about-stat {
  text-align: center;
}
.about-stat .number {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--brand-orange);
}
.about-stat .label {
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-faint); text-transform: uppercase;
  letter-spacing: 1px;
}
.about-visual {
  background: var(--about-visual-bg);
  border-radius: 24px;
  padding: 48px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  color: #fff;
  min-height: 300px;
  transition: background 0.3s;
}
.about-visual .logo-wrap {
  width: 160px; height: 160px;
  background: var(--logo-wrap-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.about-visual .logo-wrap img {
  width: 130px; height: auto;
}
.about-visual h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem; font-weight: 700;
  margin-bottom: 8px;
}
.about-visual p {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ===== CONTACT ===== */
#contact {
  background: var(--contact-bg);
  color: #fff;
  transition: background 0.3s;
}
#contact .section-header h2 { color: #fff; }
#contact .section-header p { color: rgba(255,255,255,0.55); }
#contact .section-header .label { color: var(--brand-orange); }

.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info {
  display: flex; flex-direction: column; gap: 32px;
}
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--contact-icon-bg);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--brand-orange); }
.contact-item h4 {
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.contact-form {
  display: flex; flex-direction: column; gap: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--contact-input-bg);
  border: 1.5px solid var(--contact-input-border);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand-orange);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  align-self: flex-start;
  background: var(--brand-orange); color: #fff;
  border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}
.contact-form button:hover {
  background: #d94d1f;
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
footer {
  background: var(--footer-bg);
  padding: 32px 48px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--footer-border);
  transition: background 0.3s;
}
footer p {
  font-size: 0.8rem; color: var(--footer-text);
}
footer .footer-logo {
  display: flex; align-items: center;
}
footer .footer-logo img {
  height: 40px;
  width: auto;
  opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Nav: compact single row */
  nav {
    padding: 8px 14px;
    height: auto;
    flex-wrap: nowrap;
  }
  .nav-logo img { height: 40px; }
  .nav-center { display: none; }
  .nav-right { gap: 8px; }
  .location-switcher { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .theme-toggle { width: 28px; height: 28px; }

  /* Hero */
  .hero { padding: 86px 20px 36px; }
  .hero-logo { width: 180px; margin-bottom: 12px; }
  .hero p { font-size: 0.92rem; margin-bottom: 20px; }
  .hero-cta { font-size: 0.85rem; padding: 12px 24px; }

  /* Popular items: fit all 3 on mobile */
  .hero-popular { margin-top: 28px; }
  .hero-popular-label { font-size: 0.78rem; margin-bottom: 18px; }
  .hero-popular-items {
    flex-direction: row;
    align-items: flex-end;
    gap: 8px;
    justify-content: center;
    padding: 0 4px;
  }
  .popular-item {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 8px 16px;
    border-radius: 14px;
  }
  .popular-item.side { min-height: 195px; }
  .popular-item.center { min-height: 230px; }
  .popular-item-img { width: 100%; height: 80px; border-radius: 10px; margin-bottom: 10px; }
  .popular-item.center .popular-item-img { height: 95px; width: 100%; }
  .popular-item-name { font-size: 0.72rem; margin-bottom: 4px; }
  .popular-item.center .popular-item-name { font-size: 0.78rem; }
  .popular-item-desc { font-size: 0.62rem; max-width: none; }
  .popular-badge { font-size: 0.55rem; padding: 3px 8px; margin-bottom: 6px; }

  /* Promo */
  .promo-split { flex-direction: column; }
  .promo-split-right { min-height: 220px; }

  /* Sections */
  section { padding: 48px 16px; }
  .about-content { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form button { align-self: center; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .menu-card-img { height: 100px; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px 20px; }
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }

  /* Popular items: stack vertically on small phones */
  .hero-popular-items {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .popular-item {
    flex: 0 0 auto;
    width: min(280px, 100%);
    min-height: auto;
    padding: 16px 14px 20px;
  }
  .popular-item.center {
    order: -1;
    min-height: auto;
  }
  .popular-item.side {
    min-height: auto;
  }
  .popular-item-img {
    width: 100%;
    height: 120px;
  }
  .popular-item.center .popular-item-img {
    height: 140px;
    width: 100%;
  }
  .popular-item-name { font-size: 0.85rem; }
  .popular-item.center .popular-item-name { font-size: 0.95rem; }
  .popular-item-desc { font-size: 0.75rem; }
  .popular-badge { font-size: 0.65rem; padding: 4px 10px; }
}
