@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1c1c1c;
  --gold: #D4A843;
  --gold-light: #E8C874;
  --gold-dark: #B8922F;
  --red: #C0392B;
  --green: #27AE60;
  --text: #f0f0f0;
  --text-muted: #888;
  --text-dim: #555;
  --white: #ffffff;
  --border: rgba(212,168,67,0.15);
  --border-subtle: rgba(255,255,255,0.06);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 32px rgba(212,168,67,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-height: 72px;
  --container: min(1200px, 92%);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ===== GRAIN OVERLAY ===== */
body::before {
  content: '';
  position: fixed; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ===== TOPBAR ===== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.topbar.scrolled { background: rgba(10,10,10,0.95); box-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.topbar-inner {
  width: var(--container); margin: 0 auto;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-circle {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--bg);
}
.brand-text h1 { font-family: var(--font-display); font-size: 18px; font-weight: 700; line-height: 1.1; color: var(--white); }
.brand-text span { font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; }
.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: var(--transition); position: relative;
}
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: var(--transition);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.topbar-cta { display: flex; align-items: center; gap: 16px; }
.topbar-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--gold);
}
.topbar-phone svg { width: 18px; height: 18px; }
.cart-bubble {
  position: relative; width: 42px; height: 42px;
  border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-bubble:hover { border-color: var(--gold); background: rgba(212,168,67,0.1); }
.cart-bubble svg { width: 20px; height: 20px; color: var(--text); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); color: var(--bg);
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0); transition: var(--transition);
}
.cart-badge.show { opacity: 1; transform: scale(1); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; margin-top: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('img/hero-spit.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: var(--container); margin: 0 auto;
  padding: 120px 0 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,67,0.12); border: 1px solid rgba(212,168,67,0.3);
  border-radius: var(--radius-pill); padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--gold);
  margin-bottom: 24px; animation: fadeUp 0.8s ease both;
}
.hero-badge .stars { color: var(--gold); letter-spacing: 2px; }
.hero-text h2 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; line-height: 1.05; color: var(--white);
  margin-bottom: 20px; animation: fadeUp 0.8s ease 0.1s both;
}
.hero-text h2 em { font-style: normal; color: var(--gold); }
.hero-text p {
  font-size: 17px; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 32px; animation: fadeUp 0.8s ease 0.2s both;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.3s both; }
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-img {
  width: 400px; height: 400px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--gold);
  box-shadow: 0 0 60px rgba(212,168,67,0.2);
  animation: float 6s ease-in-out infinite;
}
.hero-ring {
  position: absolute; width: 440px; height: 440px; border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.2);
  animation: spin 20s linear infinite;
}
.hero-ring::before {
  content: '🏆 Bester Kebap Leoben 🏆';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--bg-card); border: 1px solid var(--gold);
  border-radius: var(--radius-pill); padding: 6px 16px;
  font-size: 11px; font-weight: 600; color: var(--gold); white-space: nowrap;
}
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 12px;
  animation: fadeUp 0.8s ease 0.6s both;
}
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease infinite; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 600; transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg); box-shadow: 0 4px 20px rgba(212,168,67,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,67,0.4); }
.btn-outline {
  border: 1.5px solid var(--border); color: var(--text);
  background: rgba(255,255,255,0.03);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,168,67,0.08); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn-ghost { color: var(--gold); padding: 14px 0; }
.btn-ghost:hover { color: var(--gold-light); }
.btn-ghost svg { transition: var(--transition); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-card); }
.section-stone { background: #111; }
.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-header .tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; color: var(--white); line-height: 1.15;
}
.section-header p { font-size: 16px; color: var(--text-muted); margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== MARQUEE ===== */
.marquee {
  background: var(--gold); color: var(--bg);
  padding: 14px 0; overflow: hidden; white-space: nowrap;
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  letter-spacing: 1px;
}
.marquee-inner {
  display: inline-flex; animation: marquee 30s linear infinite;
}
.marquee-inner span { padding: 0 40px; }

/* ===== USP GRID ===== */
.usp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  width: var(--container); margin: 0 auto;
}
.usp-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; transition: var(--transition);
}
.usp-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.usp-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(212,168,67,0.1); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.usp-icon svg { width: 28px; height: 28px; color: var(--gold); }
.usp-card h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.usp-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== MENU PREVIEW ===== */
.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  width: var(--container); margin: 0 auto;
}
.menu-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); position: relative;
}
.menu-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.menu-card-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: var(--transition);
}
.menu-card:hover .menu-card-img { transform: scale(1.05); }
.menu-card-img-wrap { overflow: hidden; position: relative; }
.menu-card-price {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--bg);
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700;
}
.menu-card-body { padding: 20px; }
.menu-card-body h3 { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.menu-card-body p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.menu-card-tags { display: flex; gap: 6px; margin-top: 12px; }
.menu-tag {
  font-size: 11px; padding: 4px 10px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06); color: var(--text-muted);
}
.menu-tag.veggie { background: rgba(39,174,96,0.15); color: #27AE60; }
.menu-tag.hot { background: rgba(192,57,43,0.15); color: #E74C3C; }
.menu-cta { padding: 0 20px 20px; }

/* ===== STORY ===== */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  width: var(--container); margin: 0 auto;
}
.story-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); position: relative;
}
.story-img::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid var(--gold); border-radius: var(--radius-lg);
  opacity: 0; transition: var(--transition);
}
.story-img:hover::after { opacity: 1; }
.story-img img { width: 100%; height: 400px; object-fit: cover; }
.story-text h3 { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.story-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.story-text .highlight {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--radius); padding: 12px 20px;
  font-size: 14px; color: var(--gold); margin-top: 16px;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  width: var(--container); margin: 0 auto;
}
.review-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition);
}
.review-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--bg);
}
.review-name { font-size: 14px; font-weight: 600; color: var(--white); }
.review-date { font-size: 12px; color: var(--text-dim); }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-style: italic; }

/* ===== HOURS ===== */
.hours-card {
  max-width: 500px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.hours-card h3 { font-family: var(--font-display); font-size: 24px; color: var(--white); text-align: center; margin-bottom: 24px; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border-subtle);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-size: 14px; color: var(--text); }
.hours-row .time { font-size: 14px; color: var(--gold); font-weight: 600; }
.hours-row.closed .time { color: var(--red); }

/* ===== MAP ===== */
.map-wrap {
  width: var(--container); margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 400px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-card); border-top: 1px solid var(--border-subtle);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  width: var(--container); margin: 0 auto;
}
.footer-brand .brand-circle { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-top: 12px; }
.footer h4 { font-size: 13px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; color: var(--text-muted); transition: var(--transition); }
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 0; margin-top: 40px;
  text-align: center; font-size: 12px; color: var(--text-dim);
}
.footer-bottom a { color: var(--gold); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: var(--transition); animation: pulse 2s ease infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 30px; height: 30px; }

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 2000; opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: -420px; width: 400px; height: 100vh;
  background: var(--bg-card); border-left: 1px solid var(--border-subtle);
  z-index: 2001; transition: 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--border-subtle);
}
.cart-drawer-header h3 { font-family: var(--font-display); font-size: 20px; color: var(--white); }
.cart-close { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.cart-close:hover { border-color: var(--gold); color: var(--gold); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border-subtle); }
.cart-item-img { width: 64px; height: 64px; border-radius: var(--radius); object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.cart-item-info .price { font-size: 14px; color: var(--gold); font-weight: 600; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.cart-item-qty button {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--transition);
}
.cart-item-qty button:hover { border-color: var(--gold); color: var(--gold); }
.cart-item-qty span { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-footer {
  padding: 20px 24px; border-top: 1px solid var(--border-subtle);
}
.cart-total {
  display: flex; justify-content: space-between; margin-bottom: 16px;
  font-size: 16px; font-weight: 600;
}
.cart-total .amount { color: var(--gold); }
.cart-footer .btn { width: 100%; }

/* ===== SPEISEKARTE PAGE ===== */
.page-hero {
  padding: 140px 0 60px; text-align: center;
  background: linear-gradient(180deg, #111 0%, var(--bg) 100%);
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px);
  font-weight: 800; color: var(--white);
}
.page-hero p { font-size: 16px; color: var(--text-muted); margin-top: 12px; }
.menu-filter {
  display: flex; justify-content: center; gap: 10px; margin-top: 32px;
  flex-wrap: wrap; padding: 0 20px;
}
.filter-btn {
  padding: 10px 22px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle); font-size: 13px; font-weight: 500;
  color: var(--text-muted); transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold); color: var(--gold);
  background: rgba(212,168,67,0.1);
}
.menu-full-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px; width: var(--container); margin: 0 auto;
}
.menu-full-card {
  display: flex; gap: 16px; padding: 16px;
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); transition: var(--transition);
}
.menu-full-card:hover { border-color: var(--gold); }
.menu-full-card img { width: 100px; height: 100px; border-radius: var(--radius); object-fit: cover; flex-shrink: 0; }
.menu-full-info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.menu-full-info h4 { font-size: 15px; font-weight: 600; color: var(--white); }
.menu-full-info p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.menu-full-bottom { display: flex; justify-content: space-between; align-items: center; }
.menu-full-price { font-size: 16px; font-weight: 700; color: var(--gold); }
.add-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; transition: var(--transition);
}
.add-btn:hover { transform: scale(1.1); box-shadow: var(--shadow-gold); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes toast {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%);
  background: var(--bg-card); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 14px 24px;
  font-size: 14px; color: var(--gold); z-index: 3000;
  animation: toast 0.4s ease; box-shadow: var(--shadow-gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-text { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .usp-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 85vh; }
  .section { padding: 60px 0; }
  .topbar-phone span { display: none; }
  .cart-drawer { width: 100%; right: -100%; }
}

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