/* ===========================================================
   Eat Istanbul — brand stylesheet
   Palette: warm charcoal, gold, cream, Turkish red accent
   =========================================================== */

:root {
  --charcoal:    #26221d;
  --charcoal-2:  #1a1713;
  --charcoal-3:  #100e0b;
  --gold:        #c9a24b;
  --gold-light:  #e3c77d;
  --gold-deep:   #a8843a;
  --cream:       #f6f1e7;
  --cream-2:     #efe7d6;
  --ink:         #2a2620;
  --muted:       #6b6356;
  --red:         #b3402f;
  --white:       #ffffff;

  --maxw: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px -20px rgba(20, 16, 10, 0.35);
  --shadow-soft: 0 10px 30px -16px rgba(20, 16, 10, 0.25);

  --font-display: 'Marcellus', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; margin: 0; letter-spacing: 0.2px; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold-light); }

.section-head { max-width: 640px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
.section-lead { margin-top: 16px; color: var(--muted); font-size: 1.05rem; }
.section-lead--light { color: rgba(246,241,231,0.72); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 13px 26px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.btn-gold { background: var(--gold); color: var(--charcoal-2); box-shadow: 0 10px 24px -10px rgba(201,162,75,0.7); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(246,241,231,0.5); }
.btn-ghost:hover { background: rgba(246,241,231,0.1); border-color: var(--cream); transform: translateY(-2px); }

.btn-ghost-dark { background: transparent; color: var(--ink); border-color: rgba(42,38,32,0.2); }
.btn-ghost-dark:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  /* soft scrim that reads on the dark hero and fades downward */
  background: linear-gradient(180deg, rgba(16,14,11,0.78) 0%, rgba(16,14,11,0.38) 55%, rgba(16,14,11,0) 100%);
  transition: box-shadow .35s var(--ease);
}
/* solid frosted bar fades in only once scrolled */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(26,23,19,0.92);
  backdrop-filter: blur(10px);
  opacity: 0; transition: opacity .35s var(--ease);
}
.site-header.scrolled::before { opacity: 1; }
.site-header.scrolled {
  box-shadow: 0 1px 0 rgba(201,162,75,0.18), var(--shadow-soft);
}
.nav-inner { display: flex; align-items: center; gap: 20px; height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { width: 48px; height: 48px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); color: var(--cream); font-size: 1.25rem; letter-spacing: 1px; }
.brand-tag { font-size: 0.66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: rgba(246,241,231,0.85); font-weight: 500; font-size: 0.95rem; position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.phone-link { display: flex; align-items: center; gap: 7px; color: var(--gold-light); font-weight: 600; font-size: 0.9rem; }
.phone-link:hover { color: var(--gold); }

/* mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s, opacity .3s; }
.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); }

.mobile-menu {
  display: flex; flex-direction: column; gap: 4px; padding: 14px 24px 26px;
  background: rgba(26,23,19,0.98); backdrop-filter: blur(10px);
}
/* the [hidden] attribute must win over display:flex */
.mobile-menu[hidden] { display: none; }
.mobile-menu a { color: var(--cream); padding: 13px 4px; font-weight: 500; border-bottom: 1px solid rgba(246,241,231,0.08); }
.mobile-menu a.btn { border-bottom: 0; margin-top: 12px; }
.phone-link--mobile { justify-content: flex-start; color: var(--gold-light); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative; overflow: hidden;
  margin-top: -76px; padding: 150px 0 110px;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(201,162,75,0.18), transparent 55%),
    linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-2) 55%, var(--charcoal-3) 100%);
  color: var(--cream);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at center, rgba(201,162,75,0.10) 0 1.5px, transparent 1.6px);
  background-size: 26px 26px;
  mask-image: radial-gradient(120% 80% at 70% 20%, #000 30%, transparent 75%);
  opacity: 0.5;
}
.hero-inner { position: relative; max-width: 820px; }
.hero-title { font-size: clamp(2.7rem, 7vw, 5rem); line-height: 1.04; margin-bottom: 22px; }
.hero-title .accent { color: var(--gold-light); font-style: italic; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(246,241,231,0.82); max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-locations {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 48px;
  border-top: 1px solid rgba(246,241,231,0.14); padding-top: 26px;
}
.hero-locations li {
  font-family: var(--font-display); font-size: 1.05rem; color: rgba(246,241,231,0.9);
  position: relative; padding-left: 20px;
}
.hero-locations li::before { content: "•"; position: absolute; left: 2px; color: var(--gold); }

.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); }
.hero-scroll span {
  display: block; width: 22px; height: 36px; border: 2px solid rgba(246,241,231,0.4); border-radius: 12px; position: relative;
}
.hero-scroll span::after {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: var(--gold-light); border-radius: 2px;
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0%{opacity:0;top:7px} 40%{opacity:1} 80%{opacity:0;top:18px} 100%{opacity:0} }

/* ===========================================================
   VALUE STRIP
   =========================================================== */
.strip { background: var(--charcoal-3); color: var(--cream); padding: 0; }
.strip-inner {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid rgba(201,162,75,0.18);
}
.strip-item { padding: 46px 30px; text-align: center; border-right: 1px solid rgba(246,241,231,0.07); }
.strip-item:last-child { border-right: 0; }
.strip-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.strip-item h3 { color: var(--gold-light); font-size: 1.35rem; margin-bottom: 8px; }
.strip-item p { color: rgba(246,241,231,0.7); font-size: 0.95rem; max-width: 260px; margin: 0 auto; }

/* ===========================================================
   STORY
   =========================================================== */
.story { padding: 110px 0; background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; }

.story-visual {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background:
    radial-gradient(110% 80% at 50% 0%, rgba(201,162,75,0.22), transparent 60%),
    linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-3) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow); overflow: hidden;
}
.story-visual::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,162,75,0.10) 0 1.5px, transparent 1.6px);
  background-size: 22px 22px; opacity: 0.6;
}
.story-emblem { width: 56%; position: relative; z-index: 1; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }
.story-visual-caption {
  position: relative; z-index: 1; margin-top: 22px; color: var(--gold-light);
  text-transform: uppercase; letter-spacing: 3px; font-size: 0.72rem; font-weight: 600;
}
.story-copy h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 22px; }
.story-copy p { color: #514a3f; margin-bottom: 18px; font-size: 1.06rem; }
.story-quote { font-style: italic; color: var(--charcoal); border-left: 3px solid var(--gold); padding-left: 18px; font-size: 1.12rem; }
.story-stats { display: flex; gap: 38px; margin-top: 36px; padding-top: 30px; border-top: 1px solid rgba(42,38,32,0.12); }
.story-stats div { display: flex; flex-direction: column; }
.story-stats strong { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold-deep); line-height: 1; }
.story-stats span { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }

/* ===========================================================
   MENU
   =========================================================== */
.menu { padding: 110px 0; background: var(--cream-2); position: relative; }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.menu-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 38px 36px;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(201,162,75,0.16);
}
.menu-card-title {
  font-size: 1.5rem; color: var(--charcoal); margin-bottom: 22px; padding-bottom: 14px;
  border-bottom: 2px solid var(--gold); display: inline-block;
}
.menu-list li { padding: 13px 0; border-bottom: 1px dashed rgba(42,38,32,0.12); }
.menu-list li:last-child { border-bottom: 0; }
.dish { display: block; font-family: var(--font-display); font-size: 1.12rem; color: var(--ink); }
.desc { display: block; font-size: 0.9rem; color: var(--muted); margin-top: 2px; }
.veg {
  font-style: normal; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.5px;
  background: #3c6b3c; color: #fff; padding: 2px 6px; border-radius: 5px; vertical-align: middle; margin-left: 4px;
}
.menu-foot { text-align: center; margin-top: 34px; color: var(--muted); font-size: 0.92rem; }

/* ===========================================================
   LOCATIONS
   =========================================================== */
.locations {
  padding: 110px 0; color: var(--cream);
  background:
    radial-gradient(100% 60% at 100% 0%, rgba(201,162,75,0.14), transparent 60%),
    linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-3) 100%);
}
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.loc-card {
  background: rgba(246,241,231,0.04); border: 1px solid rgba(201,162,75,0.22);
  border-radius: var(--radius); padding: 30px 26px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.loc-card:hover { transform: translateY(-6px); border-color: var(--gold); background: rgba(246,241,231,0.07); }
.loc-card h3 { font-size: 1.5rem; color: var(--cream); }
.loc-badge {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-light);
  margin: 6px 0 18px; font-weight: 600;
}
.loc-card address {
  font-style: normal; color: rgba(246,241,231,0.75); font-size: 0.95rem; line-height: 1.55; flex: 1;
}
.loc-hours { margin: 16px 0 6px; font-size: 0.92rem; color: rgba(246,241,231,0.9); }
.loc-hours strong { color: var(--gold-light); }
.loc-mode { margin: 0 0 18px; font-size: 0.82rem; color: rgba(246,241,231,0.6); }
.loc-mode--order { color: var(--gold-light); font-weight: 600; }
.loc-actions { display: flex; gap: 10px; }
.loc-actions .btn { flex: 1; }

/* ===========================================================
   CATERING
   =========================================================== */
.catering { padding: 110px 0; background: var(--cream); }
.catering-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.catering-copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.catering-copy > p { color: #514a3f; font-size: 1.06rem; }
.catering-points { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.catering-points li { position: relative; padding-left: 30px; color: var(--ink); }
.catering-points li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 20px; height: 20px;
  background: var(--gold); color: var(--charcoal-2); border-radius: 50%;
  display: grid; place-items: center; font-size: 0.7rem; font-weight: 700;
}

.catering-form {
  background: var(--white); border-radius: var(--radius-lg); padding: 38px 36px;
  box-shadow: var(--shadow); border: 1px solid rgba(201,162,75,0.18);
}
.catering-form h3 { font-size: 1.5rem; margin-bottom: 22px; color: var(--charcoal); }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--muted); margin-bottom: 6px; letter-spacing: 0.3px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid rgba(42,38,32,0.15); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink); background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.18); background: #fff;
}
.field textarea { resize: vertical; }
.form-note { margin-top: 14px; font-size: 0.9rem; text-align: center; min-height: 1.2em; }
.form-note.ok { color: #3c6b3c; }
.form-note.err { color: var(--red); }

/* ===========================================================
   ORDER
   =========================================================== */
.order {
  padding: 96px 0; text-align: center; color: var(--cream);
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(201,162,75,0.20), transparent 55%),
    linear-gradient(180deg, var(--charcoal-3) 0%, var(--charcoal-2) 100%);
}
.order h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 14px; }
.order-apps { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin: 36px 0 22px; }
.order-app {
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.5px;
  padding: 18px 40px; border-radius: 100px; border: 1.5px solid rgba(201,162,75,0.5);
  color: var(--cream); background: rgba(246,241,231,0.04);
  transition: transform .25s var(--ease), background .25s, border-color .25s, color .25s;
}
.order-app:hover { background: var(--gold); color: var(--charcoal-2); border-color: var(--gold); transform: translateY(-3px); }
.order-divider {
  text-transform: uppercase; letter-spacing: 2px; font-size: 0.78rem; font-weight: 600;
  color: rgba(246,241,231,0.55); margin: 38px 0 22px; position: relative;
}
.order-divider::before, .order-divider::after {
  content: ""; position: absolute; top: 50%; width: 60px; height: 1px; background: rgba(246,241,231,0.2);
}
.order-divider::before { right: calc(50% + 90px); }
.order-divider::after { left: calc(50% + 90px); }
.order-note { color: rgba(246,241,231,0.7); font-size: 0.95rem; }
.order-note a { color: var(--gold-light); font-weight: 600; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { background: var(--charcoal-3); color: rgba(246,241,231,0.75); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-mark { width: 70px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.95rem; max-width: 280px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--gold-light); font-weight: 600; font-size: 0.9rem; }
.footer-social a:hover { color: var(--gold); }
.footer-col h4 { font-family: var(--font-display); color: var(--cream); font-size: 1.1rem; margin-bottom: 16px; }
.footer-col a, .footer-hours { display: block; color: rgba(246,241,231,0.7); font-size: 0.92rem; padding: 5px 0; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(246,241,231,0.08); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 0.85rem; color: rgba(246,241,231,0.55); }

/* ===========================================================
   REVEAL ANIMATION
   =========================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-scroll span::after { animation: none; }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .story-grid { grid-template-columns: 1fr; gap: 44px; }
  .story-visual { max-width: 360px; margin: 0 auto; }
  .catering-grid { grid-template-columns: 1fr; gap: 40px; }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero { padding: 130px 0 90px; }
  .strip-inner { grid-template-columns: 1fr; }
  .strip-item { border-right: 0; border-bottom: 1px solid rgba(246,241,231,0.07); }
  .menu-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .story-stats { gap: 24px; }
  .hero-actions .btn { flex: 1; }
}

/* ===========================================================
   IMAGE-LED COMPONENTS (real photos)
   =========================================================== */
/* hero background photo */
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(160deg, rgba(18,15,11,0.84) 0%, rgba(18,15,11,0.6) 42%, rgba(14,11,8,0.92) 100%),
    url('../img/menu/skewer.jpg');
  background-size: cover; background-position: center;
}
.hero-pattern { z-index: 1; }
.hero-inner { z-index: 2; }
.hero-scroll { z-index: 2; }

/* story photo */
.story-visual--photo { padding: 0; overflow: hidden; }
.story-visual--photo::before { display: none; }
.story-visual--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story-visual-tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 1;
  background: rgba(16,14,11,0.82); color: var(--gold-light);
  padding: 9px 16px; border-radius: 100px; font-size: 0.7rem;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
}

/* image-led dish cards */
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dish-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(201,162,75,0.16);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dish-photo { aspect-ratio: 3 / 2; background-size: cover; background-position: center; transition: transform .55s var(--ease); }
.dish-card:hover .dish-photo { transform: scale(1.06); }
.dish-body { padding: 20px 24px 24px; }
.dish-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.dish-head h3 { font-size: 1.4rem; color: var(--charcoal); }
.dish-price { font-weight: 700; color: var(--gold-deep); white-space: nowrap; font-size: 0.98rem; }
.dish-body p { color: var(--muted); font-size: 0.92rem; }
.menu-cta { text-align: center; margin-top: 44px; }
.menu-cta .menu-foot { margin-top: 16px; }

/* gallery band */
.gallery { background: var(--charcoal-3); }
.gallery-strip { display: grid; grid-template-columns: repeat(6, 1fr); }
.gallery-img { aspect-ratio: 1 / 1; background-size: cover; background-position: center; transition: transform .5s var(--ease); }
.gallery-img:hover { transform: scale(1.05); position: relative; z-index: 1; }

@media (max-width: 900px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .dish-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

/* location subpage: single "this shop" card, centered */
.loc-grid--single{grid-template-columns:minmax(0,460px);justify-content:center;}
