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

:root {
  --gold: #F5C800;
  --red: #E03030;
  --cyan: #5BC8D0;
  --bg: #0d0d0d;
  --bg2: #141414;
  --bg3: #1a1a1a;
  --text: #f0f0f0;
  --muted: #888;
  --border: rgba(245,200,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  padding-top: env(safe-area-inset-top);
  height: 72px;
  background: rgba(13,13,13,0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: height 0.3s;
}
nav.scrolled { height: 58px; background: rgba(13,13,13,0.98); }
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-order-btn {
  background: var(--gold);
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-order-btn:hover { background: #ffd633; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 10px; min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: #000;
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.85rem 2rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #ffd633; transform: translateY(-2px); }
.btn-outline {
  border: 1px solid var(--gold); color: var(--gold);
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.85rem 2rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  background: transparent;
}
.btn-outline:hover { background: rgba(245,200,0,0.08); transform: translateY(-2px); }

/* ── SECTIONS SHARED ── */
section { padding: 6rem 4rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 0.75rem;
}
.section-tag::before { content: ''; display: block; width: 20px; height: 2px; background: var(--red); }
h2.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--gold);
  line-height: 1.1; margin-bottom: 1rem;
}
.section-intro { font-size: 1rem; color: var(--muted); max-width: 540px; font-weight: 300; line-height: 1.8; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  padding: 9rem 4rem 4rem;
  text-align: center;
  background: url('images/background.png') center / cover no-repeat fixed;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.68);
}
/* Disable fixed on mobile — iOS doesn't support background-attachment:fixed well */
@media (max-width: 900px) {
  .page-hero { background-attachment: scroll; }
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero .section-tag { justify-content: center; }
.page-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1rem; color: var(--muted);
  font-weight: 300; line-height: 1.8;
  max-width: 480px; margin: 0 auto;
}

/* ── HERO (home) ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 8rem 4rem 4rem;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(245,200,0,0.03) 0, rgba(245,200,0,0.03) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(245,200,0,0.03) 0, rgba(245,200,0,0.03) 1px, transparent 0, transparent 50%);
  background-size: 40px 40px;
}
.hero-glow {
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(224,48,48,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--cyan);
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--gold);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}
.hero-title-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 3rem; justify-content: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--gold);
  display: block;
}
.stat-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── HOME FEATURES ── */
.features-section { background: var(--bg2); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
  max-width: 1000px; margin-left: auto; margin-right: auto;
}
.feature-card {
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  background: var(--bg3);
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: rgba(245,200,0,0.35); transform: translateY(-3px); }
.feature-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.feature-card h3 { font-size: 1rem; font-weight: 600; color: var(--gold); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.85rem; color: var(--muted); font-weight: 300; line-height: 1.6; }

/* ── HOME MENU PREVIEW ── */
.menu-preview-section { background: var(--bg); }
.preview-items {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
  max-width: 1000px; margin-left: auto; margin-right: auto;
}
.preview-card {
  border: 1px solid var(--border);
  background: var(--bg3);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.preview-card:hover { border-color: rgba(245,200,0,0.35); transform: translateY(-3px); }
.preview-card-img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.preview-card-img::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(245,200,0,0.025) 0, rgba(245,200,0,0.025) 1px, transparent 0, transparent 20px);
}
.preview-card-img span { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; position: relative; z-index: 1; }
.preview-card-body { padding: 1.25rem; }
.preview-card-body h3 { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.preview-card-body p { font-size: 0.8rem; color: var(--muted); font-weight: 300; margin-bottom: 0.75rem; }
.preview-price { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--gold); }
.preview-cta { margin-top: 3rem; text-align: center; max-width: 1000px; margin-left: auto; margin-right: auto; }

/* ── ORDER CTA BANNER ── */
.order-banner {
  background: var(--gold);
  padding: 4rem;
  text-align: center;
}
.order-banner h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #000;
  margin-bottom: 0.5rem;
}
.order-banner p { color: #333; font-size: 1rem; margin-bottom: 2rem; }
.order-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.btn-dark {
  background: #000; color: var(--gold);
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.85rem 2rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  min-height: 44px;
  line-height: 1.4;
}
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }
@media (max-width: 560px) {
  .order-banner-buttons { flex-direction: column; align-items: center; }
  .order-banner-buttons .btn-dark {
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
  }
}

/* ── HOME CONTACT TEASER ── */
.contact-teaser { background: var(--bg2); }
.contact-teaser-inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem; max-width: 900px; margin: 3rem auto 0;
}
.teaser-block { text-align: center; padding: 1.5rem; border: 1px solid var(--border); background: var(--bg3); }
.teaser-block .icon { font-size: 1.8rem; margin-bottom: 0.75rem; display: block; }
.teaser-block h4 { font-size: 0.8rem; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.teaser-block p { font-size: 0.85rem; color: var(--muted); font-weight: 300; line-height: 1.6; }
.teaser-block a { color: var(--cyan); text-decoration: none; }
.teaser-block a:hover { text-decoration: underline; }

/* ── ABOUT ── */
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.about-image-wrap { position: relative; }
.about-image-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: url('../images/background.png') center / cover no-repeat;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.about-image-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 60%);
}
.about-accent-box {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); padding: 1.5rem;
  width: 140px; text-align: center;
}
.about-accent-box strong {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem; font-weight: 900;
  color: #000; display: block; line-height: 1;
}
.about-accent-box span { font-size: 0.65rem; color: #333; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.about-text { padding-left: 1rem; }
.about-text p { color: var(--muted); margin-bottom: 1.25rem; font-weight: 300; line-height: 1.9; }
.about-text p strong { color: var(--text); font-weight: 500; }
.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.value-card {
  border: 1px solid var(--border);
  padding: 1.2rem; background: var(--bg3);
}
.value-icon { font-size: 1.3rem; margin-bottom: 0.5rem; display: block; }
.value-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--gold); margin-bottom: 0.25rem; }
.value-card p { font-size: 0.8rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ── MENU ── */
.menu-inner { max-width: 1000px; margin: 0 auto; }
.menu-tabs {
  display: flex; gap: 0; flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem; margin-top: 2.5rem;
}
.menu-tab {
  padding: 0.75rem 1.75rem;
  background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.menu-tab:hover { color: var(--text); }
.menu-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-section-note {
  font-style: italic; font-size: 0.85rem;
  color: var(--cyan); margin-bottom: 1.5rem;
  padding: 0.75rem 1rem; border-left: 2px solid var(--cyan);
  background: rgba(91,200,208,0.05);
}
.menu-items { list-style: none; }
.menu-item {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: rgba(245,200,0,0.025); margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem; }
.item-info { flex: 1; }
.item-name { font-weight: 600; font-size: 0.95rem; color: var(--text); display: block; margin-bottom: 0.2rem; }
.item-desc { font-size: 0.8rem; color: var(--muted); font-weight: 300; }
.item-note { font-size: 0.75rem; color: var(--cyan); margin-top: 0.2rem; display: block; }
.item-price { font-family: 'Cinzel', serif; font-weight: 700; font-size: 1rem; color: var(--gold); white-space: nowrap; padding-top: 0.1rem; }
.item-sizes { display: flex; gap: 0.75rem; flex-direction: column; align-items: flex-end; }
.size-row { display: flex; gap: 0.5rem; align-items: center; }
.size-label { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.05em; }
.size-price { font-family: 'Cinzel', serif; font-weight: 700; font-size: 0.9rem; color: var(--gold); }

/* ── GALLERY ── */
.gallery-inner { max-width: 1100px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  position: relative; overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; }
.gallery-img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  display: block; transition: transform 0.4s ease;
}
.gallery-item:first-child .gallery-img { aspect-ratio: 21/10; }
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-placeholder {
  width: 100%; aspect-ratio: 16/10;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.gallery-item:first-child .gallery-placeholder { aspect-ratio: 21/10; }
.gallery-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(245,200,0,0.025) 0, rgba(245,200,0,0.025) 1px, transparent 0, transparent 20px);
}
.gallery-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.4rem;
  background: rgba(0,0,0,0.55); opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; }
.gallery-label span {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
}
.gallery-ph-text { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; position: relative; z-index: 1; text-align: center; }
.gallery-cta { margin-top: 2rem; text-align: center; }
.gallery-cta a { color: var(--cyan); font-size: 0.85rem; text-decoration: none; font-weight: 500; letter-spacing: 0.05em; }
.gallery-cta a:hover { text-decoration: underline; }

/* ── ORDER ── */
.order-inner { max-width: 900px; margin: 0 auto; }
.order-platforms {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.platform-card {
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  background: var(--bg2);
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}
.platform-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.platform-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 1rem;
  font-weight: 700; font-family: 'Cinzel', serif;
}
.platform-name { font-weight: 600; font-size: 1rem; color: var(--text); margin-bottom: 0.4rem; }
.platform-desc { font-size: 0.8rem; color: var(--muted); }
.order-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(91,200,208,0.2);
  background: rgba(91,200,208,0.04);
  display: flex; align-items: center; gap: 1rem;
}
.order-note p { font-size: 0.85rem; color: var(--muted); margin: 0; }
.order-note strong { color: var(--cyan); }

/* ── CONTACT ── */
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; max-width: 1000px; margin: 0 auto;
}
.contact-info { margin-top: 2.5rem; }
.contact-block { margin-bottom: 2rem; }
.contact-block h4 {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 0.6rem;
}
.contact-block p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; font-weight: 300; }
.contact-block a { color: var(--cyan); text-decoration: none; }
.contact-block a:hover { text-decoration: underline; }
.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 0.3rem 1.5rem; font-size: 0.85rem; }
.hours-grid .day { color: var(--muted); }
.hours-grid .time { color: var(--text); font-weight: 500; }
.map-placeholder {
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  background: var(--bg3);
  height: 320px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  position: relative; overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(245,200,0,0.02) 0, rgba(245,200,0,0.02) 1px, transparent 0, transparent 25px);
}
.map-icon { font-size: 2.5rem; position: relative; z-index: 1; }
.map-placeholder p { font-size: 0.8rem; color: var(--muted); position: relative; z-index: 1; text-align: center; max-width: 220px; }
.map-placeholder a { color: var(--gold); font-size: 0.8rem; text-decoration: none; position: relative; z-index: 1; font-weight: 600; letter-spacing: 0.05em; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 0.55rem;
  color: var(--muted); font-size: 0.8rem; font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.social-link:hover { color: var(--text); border-color: rgba(245,200,0,0.3); }
.social-link svg { width: 22px; height: 22px; flex-shrink: 0; display: block; }
.social-link.instagram:hover { border-color: rgba(225,48,108,0.4); }
.social-link.facebook:hover  { border-color: rgba(24,119,242,0.4); }

/* ── FOOTER ── */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 2.5rem 4rem;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 900;
  color: var(--gold); letter-spacing: 0.05em;
}
.footer-logo span { color: var(--red); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: var(--muted); font-size: 0.8rem; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: #555; }

/* ── DIVIDER ── */
.divider { display: flex; align-items: center; gap: 1rem; margin: 2rem 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.divider-icon { color: var(--gold); font-size: 1.2rem; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; height: 64px; }
  nav.scrolled { height: 52px; }
  .nav-logo img { height: 44px; }
  .nav-links, .nav-order-btn { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--bg2); padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 0; z-index: 999;
  }
  .nav-links.open li a {
    font-size: 1rem;
    display: block;
    padding: 0.85rem 0;
    min-height: 44px;
    display: flex; align-items: center;
  }
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  #hero { padding: 7rem 1.5rem 4rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-text { padding-left: 0; }
  .contact-inner { grid-template-columns: 1fr; }
  .order-platforms { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }
  .footer-links a { min-height: 44px; display: inline-flex; align-items: center; }
  .about-values { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .preview-items { grid-template-columns: 1fr; }
  .contact-teaser-inner { grid-template-columns: 1fr; }
  .order-banner { padding: 3rem 1.5rem; }
  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.5rem;
    border-bottom: none;
    margin: 1.5rem 0 1.75rem;
    padding: 0.25rem 0.5rem;
    scroll-snap-type: x proximity;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 24px), transparent 100%);
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab {
    flex-shrink: 0;
    white-space: nowrap;
    min-height: 42px;
    padding: 0.55rem 1.1rem;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg2);
    margin-bottom: 0;
    scroll-snap-align: start;
  }
  .menu-tab:hover { background: var(--bg3); color: var(--text); border-color: rgba(245,200,0,0.3); }
  .menu-tab.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    border-bottom-color: var(--gold);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(245,200,0,0.25);
  }
  .btn-primary, .btn-outline { padding: 1rem 2rem; min-height: 44px; }
  .platform-card { padding: 1.5rem 1.25rem; }
  body { padding-bottom: env(safe-area-inset-bottom); }
}
@media (max-width: 480px) {
  nav { padding: 0 1rem; height: 58px; }
  nav.scrolled { height: 48px; }
  .nav-logo img { height: 38px; }
  .nav-links.open { top: 58px; }
  section { padding: 3rem 1rem; }
  .page-hero { padding: 6rem 1rem 2.5rem; }
  #hero { padding: 6rem 1rem 3rem; }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.5rem; }
  .order-platforms { grid-template-columns: 1fr; gap: 1rem; }
  .menu-tab { padding: 0.55rem 1rem; font-size: 0.72rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  footer { padding: 1.5rem 1rem; gap: 1.25rem; }
}
@media (max-width: 375px) {
  .hero-title { font-size: 2.4rem; }
  h2.section-title { font-size: 1.8rem; }
  .page-hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
}
