/* ===== RESET & VARS ===== */
:root {
  --bg: #111416;
  --surface: #1a1e22;
  --surface2: #22282e;
  --ink: #f0ede8;
  --muted: #8a9199;
  --line: rgba(240,237,232,.1);
  --accent: #ff6a2a;
  --sea: #1a8ab5;
  --sea-light: #2ba8d8;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.3);
  --shadow: 0 8px 32px rgba(0,0,0,.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.5);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --max: 1200px;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

/* ===== TOPBAR ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 28px;
  background: rgba(17,20,22,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px;
  height: 32px;
  color: var(--accent);
  flex-shrink: 0;
}
.brand-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.brand-text {
  font-weight: 900;
  letter-spacing: .1em;
  font-size: .88rem;
  color: var(--ink);
  line-height: 1;
}
.brand-tagline {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  gap: 4px;
}
.desktop-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s, background .2s;
}
.desktop-nav a:hover {
  color: var(--ink);
  background: var(--surface2);
}

.header-actions { display: flex; align-items: center; gap: 10px; }

.lang-toggle {
  background: var(--surface2);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  letter-spacing: .06em;
}
.lang-toggle:hover { background: var(--surface); }

.call-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: .88rem;
  font-weight: 700;
  transition: opacity .2s, transform .2s;
}
.call-chip:hover { opacity: .9; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 88vw);
  background: var(--surface);
  z-index: 99;
  padding: calc(var(--header-h) + 24px) 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid var(--line);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer nav { display: flex; flex-direction: column; gap: 4px; }
.drawer-link {
  padding: 14px 16px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.drawer-link:hover { background: var(--surface2); }
.drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.drawer-contact a {
  font-size: .95rem;
  font-weight: 700;
  color: var(--accent);
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ===== SHARED ===== */
.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  border: 2px solid transparent;
  transition: transform .2s, opacity .2s, background .2s, border-color .2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-solid:hover { opacity: .9; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); background: rgba(255,255,255,.05); }
.btn-lg { min-height: 58px; padding: 0 30px; font-size: 1rem; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 0 48px;
  padding: 64px 28px 40px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
}
.hero::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 5% 10%, rgba(255,106,42,.14) 0%, transparent 38%),
    radial-gradient(ellipse at 95% 85%, rgba(26,138,181,.12) 0%, transparent 36%),
    radial-gradient(ellipse at 60% 50%, rgba(255,160,80,.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.hero-left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s ease;
}
.hero-img-wrap:hover img { transform: scale(1.04); }

.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(17,20,22,.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
}

.scroll-hint {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  animation: bounce 2s ease-in-out infinite;
  padding-top: 8px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 800;
  color: var(--muted);
}

.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: .92;
  letter-spacing: .02em;
  margin: 12px 0 20px;
}
.hero-content h1 span { display: block; }
.outline {
  -webkit-text-stroke: 1.5px var(--accent);
  color: transparent;
}
.hero-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--muted);
  flex: 1;
  min-width: 140px;
}
.badge-card svg { color: var(--sea); flex-shrink: 0; }
.badge-card.accent { background: rgba(255,106,42,.12); border-color: rgba(255,106,42,.25); }
.badge-card.accent svg { color: var(--accent); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ===== IDENTITY STRIP ===== */
.identity-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  padding: 0;
}
.identity-strip-inner {
  display: flex;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.identity-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px 18px 0;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.identity-strip-item svg { color: var(--accent); flex-shrink: 0; }
.identity-strip-sep {
  width: 1px;
  height: 20px;
  background: var(--line);
  flex-shrink: 0;
  margin-right: 28px;
}

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 28px;
  border-top: 1px solid var(--line);
}
.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-text p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-text .btn { margin-top: 12px; }

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.stat-card strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ink);
}
.stat-card span { font-size: .8rem; color: var(--muted); }
.stat-card.accent-stat {
  background: var(--accent);
  border-color: var(--accent);
}
.stat-card.accent-stat strong,
.stat-card.accent-stat span { color: #fff; }

/* ===== MENU ===== */
.menu-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 28px;
  border-top: 1px solid var(--line);
}
.menu-header {
  max-width: 640px;
  margin-bottom: 36px;
}
.menu-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 10px;
}
.menu-header p { color: var(--muted); }

/* Featured image banner */
.menu-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
  height: 320px;
  box-shadow: var(--shadow);
  background-color: var(--surface);
}
.menu-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transition: transform .6s ease;
}
.menu-featured:hover img { transform: scale(1.03); }
.menu-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,16,22,.88) 0%, rgba(11,16,22,.5) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 44px;
  gap: 10px;
}
.menu-featured-tag {
  display: inline-flex;
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 5px 12px;
  border-radius: 999px;
}
.menu-featured-overlay h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  color: #fff;
  margin: 0;
}
.menu-featured-overlay p {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  margin: 0;
}

/* Tabs */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.tab-btn {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.tab-btn:hover { color: var(--ink); background: var(--surface2); }
.tab-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.menu-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.menu-item:hover {
  border-color: rgba(255,106,42,.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.menu-item.hidden { display: none; }

.item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.item-icon { font-size: 1.8rem; line-height: 1; }
.item-badge {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 999px;
}
.item-badge.bestseller { background: rgba(255,106,42,.18); color: var(--accent); }
.item-badge.special { background: rgba(26,138,181,.2); color: var(--sea-light); }

.menu-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}
.menu-item p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.item-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  margin-top: 6px;
}

.menu-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .83rem;
  color: var(--muted);
}
.menu-note svg { flex-shrink: 0; color: var(--muted); }

/* ===== HOURS ===== */
.hours-block {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.hours-title {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  padding: 16px 20px 10px;
  border-bottom: 1px solid var(--line);
}
.hours-grid { padding: 6px 0; }
.hours-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: .88rem;
  transition: background .15s;
}
.hours-row:hover { background: var(--surface2); }
.hours-row.highlight { background: rgba(255,106,42,.06); }
.hours-day { font-weight: 600; color: var(--ink); }
.hours-open { color: var(--muted); font-variant-numeric: tabular-nums; }
.hours-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}
.hours-dot.open { background: #3ecf8e; box-shadow: 0 0 6px rgba(62,207,142,.5); }

/* ===== FAQ ===== */
.faq-section {
  border-top: 1px solid var(--line);
  padding: 80px 28px;
}
.faq-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.faq-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(255,106,42,.4); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .25s ease;
}
.faq-item[open] summary svg { transform: rotate(180deg); color: var(--accent); }
.faq-item p {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
  margin: 0;
}
.faq-item p a { color: var(--accent); font-weight: 600; }
.faq-item p strong { color: var(--ink); }

/* QR block inside FAQ */
.qr-block {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-top: 16px;
}
.qr-text { flex: 1; }
.qr-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}
.qr-text p { color: var(--muted); font-size: .92rem; line-height: 1.7; margin-bottom: 20px; }
.qr-canvas-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
#qrcode canvas, #qrcode img {
  border-radius: 12px;
  display: block;
}
.qr-url {
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .06em;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.sticky-call, .sticky-menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 700;
}
.sticky-call { background: var(--accent); color: #fff; }
.sticky-menu { background: var(--surface2); color: var(--ink); border: 1px solid var(--line); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 260px;
}
.cookie-text svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.cookie-text p { font-size: .85rem; color: var(--muted); line-height: 1.6; margin: 0; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--accent); color: #fff;
  border: none; border-radius: 999px;
  padding: 10px 20px; font-size: .85rem; font-weight: 700; cursor: pointer;
  transition: opacity .2s;
}
.btn-cookie-accept:hover { opacity: .9; }
.btn-cookie-reject {
  background: transparent; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; font-size: .85rem; font-weight: 600; cursor: pointer;
  transition: color .2s, border-color .2s;
}
.btn-cookie-reject:hover { color: var(--ink); border-color: var(--ink); }

/* ===== QR PRINT MODAL ===== */
.qr-print-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.qr-print-modal[hidden] { display: none; }
.qr-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 299;
  background: rgba(0,0,0,.7);
}
.qr-modal-inner {
  position: relative;
  z-index: 301;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.qr-modal-card {
  background: #fff;
  color: #111;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 340px;
  box-shadow: var(--shadow-lg);
}
.qr-logo { width: 48px; height: 40px; }
.qr-modal-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: .1em;
  color: #111;
  margin: 0;
}
.qr-modal-sub { font-size: .85rem; color: #666; font-weight: 600; margin: 0; }
.qr-modal-addr { font-size: .78rem; color: #888; margin: 0; }
#qrPrintCode canvas, #qrPrintCode img { border-radius: 8px; }
.qr-modal-actions { display: flex; gap: 12px; }

@media print {
  body > *:not(.qr-print-modal) { display: none !important; }
  .qr-modal-inner { position: static; }
  .qr-modal-actions { display: none; }
  .qr-modal-overlay { display: none; }
  .qr-print-modal { position: static; padding: 0; }
}

/* ===== LOCATION ===== */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 28px;
  border-top: 1px solid var(--line);
}
.location-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 28px;
}
.loc-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.5;
}
.loc-detail:last-of-type { border-bottom: none; }
.loc-detail svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.loc-detail a { color: var(--ink); font-weight: 600; }
.loc-detail a:hover { color: var(--accent); }
.loc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  background: var(--surface);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) invert(5%);
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  border-top: 1px solid var(--line);
  padding: 80px 28px;
}
.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .02em;
  margin-bottom: 16px;
}
.cta-inner p { color: var(--muted); font-size: 1.05rem; margin-bottom: 32px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 28px;
  background: var(--surface);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand .logo-icon { width: 32px; height: 26px; color: var(--accent); }
.footer-brand-name {
  font-weight: 900;
  letter-spacing: .1em;
  font-size: .88rem;
  line-height: 1;
}
.footer-brand-sub {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.footer-nav a {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .85rem;
  color: var(--muted);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--ink); }
.footer-address { font-size: .84rem; color: var(--muted); }
.footer-copy { font-size: .8rem; color: var(--muted); opacity: .6; }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 48px;
  height: 48px;
  background: var(--surface2);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .2s;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 40px;
  }
  .hero-left { grid-column: 1; grid-row: 1; }
  .hero-visual { grid-column: 1; grid-row: 2; }
  .hero-img-wrap { aspect-ratio: 16/9; }
  .scroll-hint { grid-row: 3; }
}

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .location-section { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .qr-block { flex-direction: column; text-align: center; gap: 28px; padding: 28px 24px; }
}

@media (max-width: 720px) {
  .identity-strip-inner { overflow-x: auto; padding-bottom: 2px; }
  .identity-strip-item { font-size: .72rem; padding-right: 20px; }
  .identity-strip-sep { margin-right: 20px; }
  .mobile-sticky-cta.visible { display: flex; }
  .back-top { bottom: 80px; }
  .cookie-banner { padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
  .topbar { padding: 0 16px; }
  .desktop-nav { display: none; }
  .brand-tagline { display: none; }
  .call-chip span { display: none; }
  .call-chip { padding: 9px 13px; }
  .hamburger { display: flex; }
  .hero { padding: 32px 16px 28px; gap: 28px; }
  .hero-content h1 { font-size: clamp(3.4rem, 16vw, 5.6rem); }
  .about, .menu-section, .location-section, .contact-cta, .footer { padding-left: 16px; padding-right: 16px; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: row; }
  .badge-card { min-width: 0; flex: 1; }
  .menu-featured { height: 240px; }
  .menu-featured-overlay { padding: 24px 28px; background: linear-gradient(180deg, rgba(11,16,22,.6) 0%, rgba(11,16,22,.92) 100%); }
  .about-stats-row { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 480px) {
  .hero-badges { flex-direction: column; }
  .about-stats-row { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { text-align: center; }
  .loc-actions { flex-direction: column; }
  .menu-featured { height: 220px; }
  .menu-featured-overlay { padding: 20px; background: linear-gradient(180deg, rgba(11,16,22,.55) 0%, rgba(11,16,22,.95) 100%); }
  .menu-featured-overlay h3 { font-size: 2.2rem; }
  .menu-featured-overlay p { display: none; }
}
