/* =========================================================================
   Marco Polo · Italienische Restaurants Berlin
   Design system & styles
   ========================================================================= */

/* ----------  Design tokens  ---------- */
:root {
  /* Brand palette – warm trattoria */
  --bordeaux:       #7c1d24;
  --bordeaux-dark:  #5e141a;
  --bordeaux-soft:  #8f2a31;
  --terracotta:     #b9603c;
  --gold:           #b8923f;
  --gold-light:     #d9b76a;
  --olive:          #3f6b4a;

  --cream:          #f6f1e8;
  --cream-deep:     #efe7d8;
  --ivory:          #fffdf8;
  --paper:          #fffbf3;

  --ink:            #241f1b;
  --ink-soft:       #4a423b;
  --muted:          #837868;
  --line:           #e4dac8;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(54, 38, 24, 0.06);
  --shadow-md: 0 14px 40px rgba(54, 38, 24, 0.12);
  --shadow-lg: 0 30px 70px rgba(54, 38, 24, 0.18);
  --radius:    14px;
  --radius-lg: 22px;

  /* Type */
  --display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --header-h: 78px;
}

/* ----------  Reset / base  ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 .4em;
  letter-spacing: .2px;
}
h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
p  { margin: 0 0 1rem; }

/* ----------  Layout helpers  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--cream-deep { background: var(--cream-deep); }
.section--ink {
  background:
    linear-gradient(rgba(28,20,16,.86), rgba(28,20,16,.9)),
    url("../images/ingredients.jpg") center/cover fixed;
  color: #e9e1d4;
}
.section--ink h2, .section--ink h3 { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section--ink .eyebrow { color: var(--gold-light); }

.section-head { max-width: 720px; margin-bottom: 3.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head p.lead { font-size: 1.12rem; color: var(--muted); margin-bottom: 0; }
.section--ink .section-head p.lead { color: #c9bfae; }

.lead { font-size: 1.12rem; }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 600;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary { background: var(--bordeaux); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--bordeaux-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: #2a1d05; }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { border-color: var(--bordeaux); color: var(--bordeaux); background: transparent; }
.btn--outline:hover { background: var(--bordeaux); color: #fff; transform: translateY(-2px); }
.btn--ghost-light { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--sm { padding: .6rem 1.15rem; font-size: .85rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; color: var(--bordeaux);
  border-bottom: 1.5px solid transparent; padding-bottom: 2px;
  transition: gap .2s ease, border-color .2s ease;
}
.link-arrow:hover { gap: .8rem; border-color: var(--bordeaux); }

/* ----------  Header / nav  ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease;
}
.site-header.scrolled {
  background: rgba(255, 251, 243, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--display); font-size: 1.5rem; font-weight: 700;
  color: var(--ink); letter-spacing: .5px;
}
.brand__tag {
  font-size: .58rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-top: 3px;
}
.site-header:not(.scrolled) .brand__name { color: #fff; }
.site-header:not(.scrolled) .brand__tag  { color: var(--gold-light); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; align-items: center; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.nav__list a {
  font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0;
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold); transition: width .25s ease;
}
.nav__list a:hover { color: var(--bordeaux); }
.nav__list a:hover::after { width: 100%; }
.site-header:not(.scrolled) .nav__list a { color: rgba(255,255,255,.92); }
.site-header:not(.scrolled) .nav__list a:hover { color: #fff; }

.nav__cta { display: inline-flex; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: none; background: transparent;
  position: relative; border-radius: 10px;
}
.nav-toggle span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink);
  transition: transform .3s ease, opacity .2s ease; border-radius: 2px;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ----------  Hero  ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
  padding-top: var(--header-h);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,13,9,.55) 0%, rgba(20,13,9,.35) 40%, rgba(20,13,9,.82) 100%);
}
.hero__inner { max-width: 760px; padding: 60px 0; }
.hero .tricolore { margin-bottom: 1.6rem; }
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero__lead { font-size: 1.25rem; color: rgba(255,255,255,.92); max-width: 560px; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__since {
  position: absolute; right: max(24px, calc((100vw - var(--container))/2 + 24px)); bottom: 42px;
  display: flex; align-items: center; gap: .8rem;
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.8);
}
.hero__since b { font-family: var(--display); font-size: 2.4rem; color: var(--gold-light); letter-spacing: 0; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px;
}
.scroll-cue::before {
  content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  background: #fff; border-radius: 2px; transform: translateX(-50%);
  animation: scrollcue 1.6s ease-in-out infinite;
}
@keyframes scrollcue { 0%,100% { opacity: 0; transform: translate(-50%,0); } 50% { opacity: 1; transform: translate(-50%,8px); } }

.tricolore { display: inline-flex; gap: 5px; }
.tricolore span { width: 26px; height: 5px; border-radius: 3px; }
.tricolore span:nth-child(1) { background: #1f7a4d; }
.tricolore span:nth-child(2) { background: #f3f0e7; }
.tricolore span:nth-child(3) { background: #c43b34; }

/* ----------  Stat strip  ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat__num { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--bordeaux); line-height: 1; }
.stat__label { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; }

/* ----------  Locations  ---------- */
.locations { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.loc-card {
  background: var(--ivory); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
}
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.loc-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.loc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.loc-card:hover .loc-card__media img { transform: scale(1.06); }
.loc-card__badge-floating {
  position: absolute; left: 16px; top: 16px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(4px);
  padding: .35rem .7rem; border-radius: 999px; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--bordeaux);
  box-shadow: var(--shadow-sm);
}
.loc-card__body { padding: 1.8rem 1.8rem 2rem; display: flex; flex-direction: column; flex: 1; }
.loc-card__name { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.loc-card__name h3 { margin: 0; }
.loc-card__district { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.loc-card__desc { color: var(--muted); margin: .8rem 0 1.2rem; }

.loc-meta { list-style: none; margin: 0 0 1.3rem; padding: 0; display: grid; gap: .55rem; }
.loc-meta li { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; }
.loc-meta svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--bordeaux); }
.loc-meta a:hover { color: var(--bordeaux); }

.loc-card__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--line); }

/* ----------  Google review badge  ---------- */
.g-badge {
  display: flex; align-items: center; gap: .9rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: .8rem 1rem; box-shadow: var(--shadow-sm); margin: 1.2rem 0;
}
.g-badge__logo { width: 30px; height: 30px; flex: none; }
.g-badge__main { display: flex; flex-direction: column; line-height: 1.15; }
.g-badge__top { display: flex; align-items: center; gap: .5rem; }
.g-badge__score { font-size: 1.25rem; font-weight: 700; color: var(--ink); font-family: var(--body); }
.g-stars { --pct: 100%; position: relative; display: inline-block; font-size: 1rem; line-height: 1; }
.g-stars span { letter-spacing: 2px; }
.g-stars .g-stars__empty { color: #d8cfbe; }
.g-stars .g-stars__fill {
  position: absolute; inset: 0; overflow: hidden; white-space: nowrap;
  width: var(--pct); color: #f5a623;
}
.g-badge__count { font-size: .82rem; color: var(--muted); }
.g-badge__count b { color: var(--ink-soft); }
.g-badge a { color: var(--bordeaux); font-weight: 600; }
.g-badge--inline { margin: 0; }

/* ----------  About  ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-figure { position: relative; }
.about-figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-figure .badge-est {
  position: absolute; right: -22px; bottom: -22px;
  width: 132px; height: 132px; border-radius: 50%;
  background: var(--bordeaux); color: #fff; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-md); border: 3px solid var(--gold-light);
}
.badge-est b { font-family: var(--display); font-size: 2rem; line-height: 1; display: block; }
.badge-est span { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; margin-top: 4px; }
.about-values { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 1rem; }
.about-values li { display: flex; gap: .9rem; align-items: flex-start; }
.about-values svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 3px; }
.about-values b { color: var(--ink); }

/* ----------  Menu  ---------- */
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem) clamp(2.5rem, 6vw, 5rem); }
.menu-cat__title { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.3rem; }
.menu-cat__title h3 { margin: 0; color: #fff; }
.menu-cat__title span { font-family: var(--display); color: var(--gold-light); font-size: 1.1rem; font-style: italic; }
.menu-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.menu-item { }
.menu-item__head { display: flex; align-items: baseline; gap: .8rem; }
.menu-item__name { font-weight: 600; color: #fff; font-size: 1.04rem; }
.menu-item__dots { flex: 1; border-bottom: 1px dotted rgba(255,255,255,.28); transform: translateY(-4px); }
.menu-item__desc { font-size: .9rem; color: #c2b8a8; margin: .25rem 0 0; }
.menu-note { text-align: center; margin-top: 3rem; color: #cbc1b1; font-size: .95rem; }

/* ----------  Gelato  ---------- */
.gelato-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.gelato-media { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.gelato-media img { border-radius: var(--radius); box-shadow: var(--shadow-sm); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.gelato-media img:first-child { margin-top: 28px; }
.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.4rem 0; }
.pill { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .45rem 1rem; font-size: .88rem; font-weight: 500; color: var(--ink-soft); }
.pill svg { width: 15px; height: 15px; color: var(--terracotta); vertical-align: -2px; margin-right: .35rem; }
.note-season {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: .5rem;
  background: #fff4e2; color: #9a5a1e; border: 1px solid #f0dcbf;
  padding: .6rem 1rem; border-radius: var(--radius); font-size: .9rem; font-weight: 500;
}

/* ----------  Events  ---------- */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.event-card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.event-card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-content: center;
  background: linear-gradient(135deg, var(--bordeaux), var(--terracotta)); color: #fff; margin-bottom: 1.2rem;
}
.event-card__icon svg { width: 26px; height: 26px; }
.event-card h3 { font-size: 1.35rem; }
.event-card p { color: var(--muted); margin-bottom: 0; }
.event-card b { color: var(--bordeaux); font-family: var(--display); font-size: 1.15rem; }

/* ----------  Delivery  ---------- */
.delivery-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }
.delivery-chip {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--ivory); border: 1px solid var(--line); border-radius: 999px;
  padding: .8rem 1.5rem; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.delivery-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.delivery-chip .dot { width: 9px; height: 9px; border-radius: 50%; }

/* ----------  Contact  ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.contact-card h3 { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.contact-card .loc-meta { margin-top: 1.2rem; }
.contact-map { border: 0; width: 100%; height: 200px; border-radius: var(--radius); margin-top: 1.4rem; filter: saturate(.92); }
.contact-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }

.reserve-band {
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.2rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  box-shadow: var(--shadow-md); margin-top: 2rem;
}
.reserve-band h3 { color: #fff; margin-bottom: .4rem; }
.reserve-band p { color: rgba(255,255,255,.85); margin: 0; }
.reserve-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ----------  Footer  ---------- */
.site-footer { background: #1c1410; color: #b9ad9c; padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.site-footer h4 { color: #fff; font-family: var(--body); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.2rem; }
.site-footer a:hover { color: var(--gold-light); }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__tag { color: var(--gold-light); }
.footer-brand p { margin: 1.2rem 0 1.4rem; font-size: .95rem; color: #9d9182; max-width: 30ch; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; font-size: .94rem; }
.footer-list strong { color: #e7ddcd; display: block; font-weight: 600; }
.footer-list span { color: #8d8273; font-size: .88rem; }
.socials { display: flex; gap: .7rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-content: center;
  background: rgba(255,255,255,.07); transition: background .25s ease, transform .25s ease;
}
.socials a:hover { background: var(--bordeaux); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 3.2rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem; color: #897e6f;
}
.footer-bottom a { color: #b9ad9c; }
.footer-bottom nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* ----------  Legal pages  ---------- */
.legal { padding-top: calc(var(--header-h) + 50px); }
.legal .container { max-width: 820px; }
.legal h1 { margin-bottom: 1.6rem; }
.legal h2 { font-size: 1.5rem; margin-top: 2.6rem; }
.legal h3 { font-size: 1.15rem; margin-top: 1.8rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal a { color: var(--bordeaux); text-decoration: underline; text-underline-offset: 3px; }
.legal address { font-style: normal; line-height: 1.8; }
.legal .callout {
  background: #fff7e9; border: 1px solid #f0dcbf; border-left: 4px solid var(--gold);
  padding: 1rem 1.3rem; border-radius: 10px; margin: 1.6rem 0; font-size: .95rem; color: #7c5a23;
}
.legal .back { display: inline-flex; margin-bottom: 2rem; }
mark.todo { background: #ffe9a8; color: #6b4e00; padding: 1px 6px; border-radius: 4px; font-weight: 600; }

/* ----------  Reveal on scroll  ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue::before { animation: none; }
  .loc-card:hover .loc-card__media img { transform: none; }
}

/* ----------  Responsive  ---------- */
@media (max-width: 960px) {
  .locations, .about-grid, .menu-grid, .gelato-grid, .contact-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-figure { max-width: 460px; margin-inline: auto; }
  .gelato-media { max-width: 460px; }
}

@media (max-width: 760px) {
  .nav { gap: 1rem; }
  .nav__list, .nav__cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav__list {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--paper); padding: 1rem 24px 1.6rem;
    box-shadow: var(--shadow-md); border-bottom: 1px solid var(--line);
  }
  .nav.open .nav__list a { width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
  .nav.open .nav__cta { display: flex; position: fixed; inset: auto 0 0 0; padding: 1rem 24px; background: var(--paper); }
  .nav.open .nav__cta .btn { width: 100%; }
  .stats { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__since { display: none; }
  .reserve-band { flex-direction: column; align-items: flex-start; }
  body { font-size: 16px; }
}
