﻿/* ââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   M22 Beef & Chips â m22burgers.pl
   Paleta menu M22: cream paper Â· czarny Â· bright red
   Inter bold uppercase Â· Mobile-first
   ââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */

:root {
  /* TÅa */
  --bg:        #F7F2E8;   /* cream papier (jak menu) */
  --bg-2:      #FDF9F0;   /* jaÅniejszy cream pod sekcje */
  --surface:   #FFFFFF;   /* karty, formularz */
  --surface-2: #F0EADC;   /* subtle warmer */

  /* Tekst */
  --text:      #111111;   /* near-black */
  --text-soft: #4A4A4A;
  --text-mute: #8A8A8A;

  /* Akcent â czerwony z menu */
  --accent:    #E63946;
  --accent-2:  #F2545B;   /* hover */
  --accent-dk: #C42935;   /* pressed */

  /* Linie */
  --line:        rgba(0,0,0,0.10);
  --line-strong: rgba(0,0,0,0.22);
  --line-black:  #111111;

  /* Cienie */
  --shadow-sm: 0 4px 14px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.14);

  /* Inne */
  --radius:    10px;
  --radius-lg: 16px;
  --maxw:      1240px;
  --header-h:  68px;
  --sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
strong, b { font-weight: 700; color: var(--text); }
em { font-style: normal; color: var(--accent); font-weight: 800; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ââââââ Typografia ââââââ */
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0 0 18px;
  text-transform: uppercase;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 9vw, 5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 6vw, 3.2rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); letter-spacing: -0.01em; }

p { margin: 0 0 14px; color: var(--text-soft); font-size: 1rem; line-height: 1.6; }
.lead { font-size: clamp(1.05rem, 2.4vw, 1.25rem); color: var(--text); font-weight: 500; margin-bottom: 18px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.eyebrow-light { color: var(--text-mute); }

/* ââââââ Buttons ââââââ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(230,57,70,0.35); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-black); }
.btn-ghost:hover { background: var(--text); color: var(--bg); transform: translateY(-2px); }

.btn-large { padding: 17px 34px; font-size: 1rem; }
.btn-sm    { padding: 9px 16px; font-size: 0.78rem; }
.btn-block { width: 100%; }

.btn-club {
  background: var(--text);
  color: var(--bg);
  padding: 9px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.btn-club:hover { background: var(--accent); color: #fff; }
.btn-club-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(230,57,70,0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(230,57,70,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(230,57,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
}

/* ââââââ Header ââââââ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s;
}
.site-header.scrolled {
  background: var(--bg);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 14px;
  min-width: 0;
}
.brand { display: flex; align-items: center; flex-shrink: 0; min-width: 0; }
.brand-logo {
  height: 46px; width: 46px;
  object-fit: contain;
  display: block;
  background: var(--bg);
  border-radius: 10px;
  padding: 5px;
}
.nav { display: flex; gap: 26px; flex: 1; justify-content: center; min-width: 0; }
.nav a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  transition: color 0.15s;
}
.nav a:hover { color: var(--accent); }
.nav a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.25s;
}
.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 24px 20px;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    transform: translateY(calc(-100% - var(--header-h) - 16px));
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
    box-shadow: var(--shadow-md);
  }
  .nav.open { transform: translateY(0); }
  .nav a { font-size: 1.15rem; padding: 10px 0; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .btn-club { display: none; }
}

/* ââââââ Hero â dark dramatic (kontrast wobec reszty cream) ââââââ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
  background: #0a0a0a;
  color: #F7F2E8;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(10,10,10,0.72) 70%),
    linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 55%, rgba(10,10,10,0.6) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, transparent 28%, rgba(10,10,10,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 50px;
  padding-bottom: 80px;
}
.hero .eyebrow { color: var(--accent); }
.hero h1 { color: #F7F2E8; margin-bottom: 22px; overflow-wrap: break-word; text-wrap: balance; }
.hero h1 em { display: inline-block; color: var(--accent); }
.hero-sub {
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  color: rgba(247,242,232,0.92);
  font-weight: 500;
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta .btn-ghost { color: #F7F2E8; border-color: rgba(247,242,232,0.45); }
.hero-cta .btn-ghost:hover { background: #F7F2E8; color: #111; border-color: #F7F2E8; }

.hero-scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 22px; height: 38px;
  border: 2px solid rgba(247,242,232,0.35);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.hero-scroll span {
  width: 2px; height: 7px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollHint 1.8s infinite;
}

/* Header nad ciemnym hero â jaÅniejsze logo i nav-toggle */
.site-header:not(.scrolled) {
  background: transparent;
}
.site-header:not(.scrolled) .nav a { color: #F7F2E8; }
.site-header:not(.scrolled) .nav-toggle span { background: #F7F2E8; }
.site-header:not(.scrolled) .btn-club { background: rgba(247,242,232,0.12); color: #F7F2E8; border: 1px solid rgba(247,242,232,0.25); }
.site-header:not(.scrolled) .btn-club:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Przelacznik jezyka — zawsze widoczny w naglowku (tez na mobile, poza hamburgerem) */
.nav-lang { display: inline-flex; align-items: center; white-space: nowrap; flex: none; text-decoration: none; }
.site-header:not(.scrolled) .nav-lang { color: #F7F2E8; border-color: rgba(247,242,232,0.55); }
@media (max-width: 880px) { .nav-lang { margin-left: auto; margin-right: 6px; } }
@keyframes scrollHint {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@media (max-width: 600px) { .hero-scroll { display: none; } }

/* ââââââ Sekcje base ââââââ */
.section { padding: 90px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head-left { text-align: left; max-width: none; margin: 0 0 36px; }
.section-sub { font-size: clamp(1rem, 2.2vw, 1.12rem); color: var(--text-soft); font-weight: 500; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
}

/* ââââââ Menu ââââââ */
.section-menu { background: var(--bg-2); }
.menu-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.menu-tile {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  aspect-ratio: 1/1.41;
}
.menu-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.menu-tile img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.menu-tile-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  color: #fff;
  padding: 26px 16px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .menu-tiles { grid-template-columns: 1fr; gap: 14px; }
  .menu-tile { aspect-ratio: 1/1.41; max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ââââââ Gallery ââââââ */
.section-gallery { padding-bottom: 90px; background: var(--bg); }
.gallery-strip {
  display: flex;
  gap: 14px;
  padding: 0 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.gallery-strip::-webkit-scrollbar { height: 5px; }
.gallery-strip::-webkit-scrollbar-track { background: transparent; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }
.gallery-item {
  flex: 0 0 auto;
  width: 320px; height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.06); }
@media (max-width: 600px) { .gallery-item { width: 80vw; height: 100vw; max-height: 400px; } }

/* ââââââ O nas ââââââ */
.section-about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 2px solid var(--line-black);
}
.about-stats > div { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.35;
}
.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-visual { aspect-ratio: 1/1; max-width: 500px; margin: 0 auto; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

/* ââââââ Klub M22 (sekcja) ââââââ */
.section-club {
  background: var(--text);
  color: var(--bg);
  text-align: center;
}
.section-club h2, .section-club p { color: var(--bg); }
.section-club h2 em { color: var(--accent); }
.section-club .eyebrow { color: var(--accent); }
.club-inner { max-width: 700px; margin: 0 auto; }
.club-inner p { color: rgba(247,242,232,0.85); font-size: clamp(1rem, 2.2vw, 1.12rem); margin-bottom: 28px; }
.section-club .btn-primary { background: var(--accent); color: #fff; }
.section-club .btn-primary:hover { background: var(--accent-2); }
.club-fineprint { font-size: 0.82rem; color: rgba(247,242,232,0.55); margin-top: 16px; }

/* ââââââ Lokalizacje ââââââ */
.section-locations { background: var(--bg-2); }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.location {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
}
.location:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow-md); }
.location-map { aspect-ratio: 16/9; background: var(--surface-2); position: relative; }
.location-map iframe { width: 100%; height: 100%; border: 0; }
.location-body { padding: 24px 24px 28px; }
.location-body h3 { margin-bottom: 4px; }
.location-type {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.location-addr { color: var(--text-soft); margin-bottom: 16px; font-weight: 500; }
.location-cta { display: flex; gap: 8px; flex-wrap: wrap; }

@media (max-width: 880px) { .locations-grid { grid-template-columns: 1fr; } }

/* ââââââ Opinie ââââââ */
.section-reviews { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1100px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin: 0 auto; }
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, transform 0.25s;
}
.review:hover { border-color: var(--accent); transform: translateY(-3px); }
.review-head { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0;
  flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.review-meta strong { color: var(--text); font-size: 0.92rem; font-weight: 700; }
.review-meta span { color: var(--text-mute); font-size: 0.76rem; }
.stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 0.1em; flex-shrink: 0; }
.review p {
  font-size: 1rem;
  color: var(--text);
  margin: 0;
  line-height: 1.55;
  flex: 1;
  font-weight: 400;
}
.review cite {
  font-style: normal;
  color: var(--text-mute);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.reviews-cta { margin-top: 36px; display: flex; justify-content: center; }

@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; }
  .review { padding: 22px 18px; }
  .review-head { flex-wrap: wrap; }
  .stars { width: 100%; }
}

/* ââââââ Rezerwacja / Kontakt ââââââ */
.section-contact { background: var(--bg-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-list li { color: var(--text-soft); font-weight: 500; }
.contact-list a { color: var(--accent); font-weight: 700; transition: color 0.15s; }
.contact-list a:hover { color: var(--accent-dk); }
.contact-key {
  color: var(--text-mute);
  margin-right: 6px;
  min-width: 90px;
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.field input, .field select {
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  border-radius: 8px;
  padding: 11px 13px;
  color: var(--text);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 500;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  width: 100%;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(230,57,70,0.15);
}
.field input::placeholder { color: var(--text-mute); font-weight: 400; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr 90px;
  gap: 12px;
}
.field-narrow { min-width: 0; }

/* ââââââ Rezerwacja â sloty godzinowe ââââââ */
.field-row-2 { grid-template-columns: 1fr 120px; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(86px, 1fr)); gap: 8px; }
.slot-hint { grid-column: 1 / -1; color: var(--text-mute); font-size: 0.9rem; margin: 4px 0; }
.slot { position: relative; background: var(--bg); border: 1.5px solid var(--line-strong); border-radius: 10px; padding: 12px 6px 10px; cursor: pointer; transition: border-color .15s, background .15s; display: flex; flex-direction: column; align-items: center; gap: 4px; min-height: 64px; justify-content: center; }
.slot:hover { border-color: var(--accent); }
.slot .slot-h { font-size: 1.05rem; font-weight: 800; color: var(--text); letter-spacing: .02em; }
.slot.sel { background: var(--accent); border-color: var(--accent); }
.slot.sel .slot-h { color: #fff; }
.slot.disabled { opacity: .45; cursor: not-allowed; border-style: dashed; }
.slot.disabled:hover { border-color: var(--line-strong); }
.slot-tag { font-size: 0.6rem; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; color: var(--accent); line-height: 1.1; text-align: center; }
.slot.sel .slot-tag { color: #fff; }
.slot-tag.full { color: var(--text-mute); }
@media (max-width: 540px) { .field-row-2 { grid-template-columns: 1fr 96px; } }
/* walidacja — podswietlenie brakujacego pola */
.field.invalid input, .field.invalid select { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(230,57,70,0.16); }
.field.invalid .field-label { color: var(--accent); }
.slot-grid.invalid { outline: 2px solid var(--accent); outline-offset: 5px; border-radius: 10px; }

.form-status { margin: 4px 0 0; font-size: 0.92rem; min-height: 1.4em; font-weight: 500; }
.form-status.ok  { color: #1e8a3e; }
.form-status.err { color: var(--accent); }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 24px 20px; }
}
@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .field-row .field-narrow { grid-column: 1 / -1; }
  .field-row .field-narrow input { max-width: 140px; }
}

/* ââââââ Footer ââââââ */
.site-footer {
  background: var(--text);
  color: var(--bg);
  padding: 56px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1.4fr 1fr;
  gap: 36px;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-logo { height: 54px; width: 54px; object-fit: contain; display: block; background: var(--bg); border-radius: 50%; padding: 6px; }
.footer-brand p { font-size: 0.85rem; color: rgba(247,242,232,0.7); margin: 0; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  font-size: 0.82rem;
  color: rgba(247,242,232,0.8);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 16px; justify-content: flex-end; }
.footer-social a {
  font-size: 0.8rem;
  color: rgba(247,242,232,0.8);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.footer-social a:hover { color: var(--accent); }
.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(247,242,232,0.15);
  margin-top: 28px;
  padding-top: 22px;
  font-size: 0.76rem;
  color: rgba(247,242,232,0.5);
  text-align: center;
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .footer-brand { align-items: center; }
  .footer-social { justify-content: center; }
}

/* âââââââââââââââââââââââââââââââââââââââââââââ
   MOBILE FIXES â anti-overflow + scroll-margin
   âââââââââââââââââââââââââââââââââââââââââââââ */
.hero, .section, [id] { scroll-margin-top: calc(var(--header-h) + 10px); }

@media (max-width: 420px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .brand-logo { height: 42px; width: 42px; }
  .header-inner { gap: 10px; }
  .hero-content { padding-top: 30px; padding-bottom: 60px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .menu-cta, .location-cta { flex-direction: column; align-items: stretch; }
  .hero h1 { font-size: clamp(26px, 8vw, 34px); }
  .menu-cta .btn, .location-cta .btn, .reviews-cta .btn { width: 100%; white-space: normal; text-wrap: balance; }
}

@media (max-width: 540px) {
  h1, h2, h3 { overflow-wrap: break-word; hyphens: manual; text-wrap: balance; }
}

/* ââââââ Reduced motion ââââââ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
