/* ============================================================================
   PIZZERIA FILIPO — core design system + landing page
   Aesthetic: "coastal osteria at night" — deep Adriatic navy, gold & cream
   (from the logo) against fiery wood-fired-oven photography, with an ember
   accent. Display: Fraunces. Body: Hanken Grotesk.
   ==========================================================================*/

/* ------------------------------------------------------------------ TOKENS */
:root {
  --navy-950: #0a1120;
  --navy-900: #0d1727;   /* page background */
  --navy-850: #111f34;
  --navy-800: #152741;   /* raised cards */
  --navy-750: #1a2f4e;
  --navy-700: #21395c;
  --navy-600: #2c4571;

  --gold:        #e8c652;
  --gold-bright: #f5da84;
  --gold-deep:   #c9a227;
  --cream:       #f6ecc9;
  --cream-dim:   #ddd2b2;

  --ember:        #e4622a;
  --ember-bright: #ff7d3a;

  --text:  #e9e1cb;                 /* warm off-white body */
  --muted: rgba(233, 225, 203, .60);
  --faint: rgba(233, 225, 203, .40);
  --line:  rgba(232, 198, 82, .18);  /* gold hairline */
  --line-soft: rgba(246, 236, 201, .09);

  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-script: "Caveat", "Segoe Script", cursive;

  --maxw: 1200px;
  --pad: clamp(1.2rem, 4vw, 3rem);
  --radius: 5px;
  --radius-lg: 8px;

  --shadow: 0 24px 60px -24px rgba(0, 0, 0, .7);
  --shadow-gold: 0 20px 60px -20px rgba(232, 198, 82, .28);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* -------------------------------------------------------------------- BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* layered atmosphere: deep radial glows + subtle grain vignette */
  background-image:
    radial-gradient(1100px 700px at 82% -8%, rgba(228, 98, 42, .16), transparent 60%),
    radial-gradient(900px 600px at 8% 4%, rgba(44, 69, 113, .40), transparent 55%),
    radial-gradient(1000px 900px at 50% 118%, rgba(232, 198, 82, .07), transparent 60%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
::selection { background: var(--gold); color: var(--navy-950); }

/* film-grain overlay */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------- LAYOUT */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { position: relative; }
.section { padding-block: clamp(4.5rem, 10vw, 8rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before {
  content: ""; width: 3px; height: 15px; border-radius: 1px;
  background: var(--gold); box-shadow: 0 0 0 3px rgba(232,198,82,.14);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ""; width: 3px; height: 15px; border-radius: 1px;
  background: var(--gold); box-shadow: 0 0 0 3px rgba(232,198,82,.14);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-optical-sizing: auto;
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--cream);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 1rem; }
.section-head p { margin-top: 1.1rem; color: var(--muted); font-size: 1.06rem; }

.lead { color: var(--cream-dim); }

/* ---------------------------------------------------------------- BUTTONS */
.btn {
  --bg: var(--gold);
  position: relative;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 800; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase;
  background: var(--bg); color: var(--navy-950);
  border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn:active { transform: translateY(-1px); }
/* enamel-sign inner keyline on filled buttons */
.btn--ember, .btn:not(.btn--ghost) { box-shadow: inset 0 0 0 1px rgba(255,255,255,.22); }
.btn--ember { --bg: var(--ember); color: #fff; }
.btn--ember:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), 0 18px 44px -16px rgba(228, 98, 42, .6); }
.btn:not(.btn--ghost):hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), var(--shadow-gold); }
.btn--ghost {
  background: transparent; color: var(--cream);
  border-color: var(--line); box-shadow: none;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); box-shadow: none; }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------------------------------------------------------------- NAVBAR */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  transition: background .4s var(--ease), backdrop-filter .4s, border-color .4s, padding .4s var(--ease);
  border-bottom: 1px solid transparent;
  padding-block: 1.1rem;
}
.nav.scrolled {
  background: rgba(10, 17, 32, .78);
  backdrop-filter: blur(14px) saturate(1.2);
  border-color: var(--line-soft);
  padding-block: .65rem;
}
.nav__inner { display: flex; align-items: center; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand img { width: 46px; height: 46px; transition: transform .5s var(--ease); }
.brand:hover img { transform: rotate(-8deg) scale(1.05); }
.brand__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.25rem; color: var(--cream); letter-spacing: .01em; line-height: 1;
}
.brand__name span { display: block; font-family: var(--font-body); font-size: .6rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 1.8rem; }
.nav__links .langsw { display: none; } /* only shown inside the mobile menu */
.nav__links a {
  font-size: .92rem; font-weight: 600; color: var(--cream-dim); white-space: nowrap;
  position: relative; padding: .3rem 0; transition: color .3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .32s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 1rem; }

/* language switcher — segmented control */
.langsw { display: inline-flex; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: rgba(255,255,255,.02); }
.langsw button {
  display: inline-flex; align-items: center; gap: .38rem;
  padding: .4rem .62rem; font-size: .72rem; font-weight: 800; letter-spacing: .08em;
  color: var(--muted); border-right: 1px solid var(--line); transition: all .22s var(--ease);
}
.langsw button:last-child { border-right: none; }
.langsw button .flag { width: 20px; height: 13px; border-radius: 1.5px; display: block; flex: none; box-shadow: 0 0 0 1px rgba(0,0,0,.25); overflow: hidden; }
.langsw button .flag svg { display: block; width: 100%; height: 100%; }
.langsw button[aria-pressed="true"] { background: var(--gold); color: var(--navy-950); }
.langsw button:hover[aria-pressed="false"] { color: var(--cream); background: rgba(255,255,255,.05); }

/* mobile nav toggle */
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); position: relative; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--cream);
  transform: translate(-50%, -50%); transition: transform .3s var(--ease), opacity .3s;
}
.nav__toggle span::before { transform: translate(-50%, -8px); }
.nav__toggle span::after { transform: translate(-50%, 6px); }
body.nav-open .nav__toggle span { background: transparent; }
body.nav-open .nav__toggle span::before { transform: translate(-50%, -50%) rotate(45deg); }
body.nav-open .nav__toggle span::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------------------------------------------------------------- HERO */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 6rem; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; transform: scale(1.08); }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(10,17,32,.94) 0%, rgba(10,17,32,.80) 38%, rgba(13,23,39,.42) 70%, rgba(228,98,42,.18) 100%),
    linear-gradient(0deg, var(--navy-900) 2%, transparent 42%);
}
.hero__ember { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }

.hero__content { max-width: 680px; }
.hero__eyebrow { margin-bottom: 1.4rem; }
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 8.5vw, 6.4rem); line-height: .94; letter-spacing: -.035em;
  color: var(--cream);
  text-shadow: 0 6px 40px rgba(0,0,0,.5);
}
.hero h1 .fire { color: var(--gold-bright); }
.hero__tag { margin-top: .6rem; font-family: var(--font-script); font-weight: 600; font-size: clamp(1.7rem, 4vw, 2.9rem); color: var(--gold-bright); line-height: 1.1; }
.hero__sub { margin-top: 1.2rem; font-size: clamp(1.05rem, 2.2vw, 1.24rem); color: var(--cream-dim); max-width: 34em; }
.hero__overline { font-family: var(--font-body); font-size: .8rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.hero__cta { margin-top: 2.3rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__reviews { margin-top: 2.4rem; display: flex; align-items: center; gap: .9rem; }
.stars { color: var(--gold); letter-spacing: .1em; font-size: 1.05rem; }
.hero__reviews span { font-size: .9rem; color: var(--muted); }
.hero__reviews b { color: var(--cream); font-weight: 700; }

.scrolldown {
  position: absolute; bottom: 1.7rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem; z-index: 2;
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--faint);
}
.scrolldown .mouse { width: 1px; height: 40px; background: var(--line); position: relative; overflow: hidden; }
.scrolldown .mouse::before { content: ""; position: absolute; left: 0; top: -14px; width: 1px; height: 14px; background: var(--gold); animation: scrollmouse 1.8s var(--ease) infinite; }
@keyframes scrollmouse { 0% { transform: translateY(0); } 100% { transform: translateY(54px); } }

/* embers */
.ember {
  position: absolute; bottom: -10px; width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle, var(--ember-bright), var(--ember) 60%, transparent 70%);
  filter: blur(.3px); opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: .9; }
  70% { opacity: .7; }
  100% { transform: translateY(-80vh) translateX(var(--drift, 20px)) scale(.3); opacity: 0; }
}

/* ---------------------------------------------------------------- MARQUEE */
.marquee {
  border-block: 1px solid var(--line); background: var(--navy-950);
  overflow: hidden; padding-block: 1.1rem;
}
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: scrollx 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-script); font-weight: 600; font-size: 1.9rem; color: var(--cream);
  display: inline-flex; align-items: center; gap: 3rem; white-space: nowrap;
}
.marquee__track span::after { content: "✦"; color: var(--gold); font-family: var(--font-body); font-size: .7rem; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------- ABOUT */
.about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about__text p + p { margin-top: 1.1rem; }
.about__owner { margin-top: 1.8rem; display: flex; align-items: center; gap: .9rem; }
.about__owner .sig { font-family: var(--font-script); font-weight: 700; font-size: 2rem; color: var(--gold-bright); line-height: 1; }
.about__owner small { display: block; color: var(--faint); text-transform: uppercase; letter-spacing: .2em; font-size: .66rem; }

.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.about__media::before {
  content: ""; position: absolute; inset: -14px -14px 26px 26px; z-index: -1; border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: clamp(3rem, 6vw, 4.5rem); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; background: var(--line-soft); }
.stat { background: var(--navy-850); padding: 1.8rem 1.4rem; text-align: center; }
.stat b { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.7rem); color: var(--gold-bright); display: block; line-height: 1; }
.stat span { display: block; margin-top: .5rem; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }

/* ---------------------------------------------------------------- OVEN */
.oven { background: var(--navy-950); border-block: 1px solid var(--line-soft); }
.oven__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.oven__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.oven__media img { aspect-ratio: 3/4; object-fit: cover; width: 100%; transition: transform 1.2s var(--ease); }
.oven__media:hover img { transform: scale(1.06); }
.oven__media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 40%, rgba(255,125,58,.28), transparent 55%); mix-blend-mode: screen; }
.oven__tags { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }
.tag { display: inline-flex; align-items: center; gap: .55rem; padding: .5rem .95rem; border: 1px solid var(--line); border-radius: 3px; font-size: .8rem; font-weight: 600; color: var(--cream-dim); letter-spacing: .01em; transition: border-color .3s, color .3s; }
.tag:hover { border-color: var(--gold); color: var(--cream); }
.tag::before { content: ""; width: 6px; height: 6px; border-radius: 1px; background: var(--ember); box-shadow: 0 0 8px var(--ember-bright); }

/* ---------------------------------------------------------------- MENU PREVIEW */
.menuprev__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.menucats { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.menucat {
  border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.3rem 1.4rem;
  background: linear-gradient(160deg, var(--navy-850), var(--navy-900));
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.menucat:hover { transform: translateY(-4px); border-color: var(--line); background: linear-gradient(160deg, var(--navy-800), var(--navy-850)); }
.menucat h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; color: var(--cream); }
.menucat p { font-size: .8rem; color: var(--muted); margin-top: .2rem; }
.menucat .from { font-size: .78rem; color: var(--gold); white-space: nowrap; font-weight: 700; }

.qrcard {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem;
  background: linear-gradient(165deg, var(--navy-800), var(--navy-950));
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1.2rem;
  box-shadow: var(--shadow);
}
.qrcard__frame { background: var(--cream); padding: 14px; border-radius: 6px; box-shadow: var(--shadow-gold); }
.qrcard__frame img { width: 180px; height: 180px; }
.qrcard h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; color: var(--cream); }
.qrcard p { font-size: .86rem; color: var(--muted); }

/* ---------------------------------------------------------------- GALLERY */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.gcell { position: relative; overflow: hidden; border-radius: var(--radius); }
.gcell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gcell:hover img { transform: scale(1.08); }
.gcell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,17,32,.5), transparent 60%); opacity: .5; transition: opacity .4s; }
.gcell:hover::after { opacity: .1; }
.gcell--tall { grid-row: span 2; }
.gcell--wide { grid-column: span 2; }

/* ---------------------------------------------------------------- VISIT */
.visit { background: var(--navy-950); border-top: 1px solid var(--line-soft); }
.visit__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); }
.infocard { border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.6rem 1.7rem; background: var(--navy-850); margin-bottom: 1rem; }
.infocard h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .18em; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }

.hours { list-style: none; }
.hours li { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px dashed var(--line-soft); font-size: .95rem; }
.hours li:last-child { border-bottom: none; }
.hours li.is-today { color: var(--cream); }
.hours li.is-today .day { color: var(--gold-bright); font-weight: 700; }
.hours .day { color: var(--cream-dim); }
.hours .closed { color: var(--ember-bright); }
.badge-open { display: inline-flex; align-items: center; gap: .5rem; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: .32rem .7rem; border-radius: 3px; margin-left: auto; }
.badge-open.open { background: rgba(84, 190, 120, .16); color: #7fd7a0; }
.badge-open.closed { background: rgba(228, 98, 42, .16); color: var(--ember-bright); }
.badge-open .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }

.contact-line { display: flex; align-items: flex-start; gap: .8rem; padding: .55rem 0; font-size: .96rem; }
.contact-line svg { flex: none; width: 18px; height: 18px; color: var(--gold); margin-top: 2px; }
.contact-line a:hover { color: var(--gold-bright); }
.services { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }

.mapwrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); min-height: 340px; height: 100%; box-shadow: var(--shadow); }
.mapwrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.3) contrast(1.05); }
.mapconsent {
  height: 100%; min-height: 340px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem; text-align: center; padding: 2rem;
  background: linear-gradient(165deg, var(--navy-800), var(--navy-950));
}
.mapconsent svg { width: 40px; height: 40px; color: var(--gold); }
.mapconsent h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--cream); }
.mapconsent p { color: var(--muted); font-size: .85rem; max-width: 40ch; line-height: 1.5; }
.mapconsent .btn { margin-top: .3rem; }
.mapconsent__ext { color: var(--gold); font-size: .82rem; font-weight: 700; border-bottom: 1px solid transparent; transition: border-color .25s; }
.mapconsent__ext:hover { border-color: var(--gold); }

/* ---------------------------------------------------------------- FOOTER */
.footer { border-top: 1px solid var(--line); padding-block: 3.5rem 2.5rem; background: var(--navy-950); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer .brand img { width: 64px; height: 64px; }
.footer__tagline { color: var(--muted); margin-top: 1rem; font-size: .92rem; max-width: 32ch; }
.footer h4 { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer ul { list-style: none; display: grid; gap: .55rem; }
.footer a, .footer li { font-size: .92rem; color: var(--cream-dim); }
.footer a:hover { color: var(--gold-bright); }
.footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: var(--faint); }
.footer__bottom a { color: var(--faint); }
.footer__bottom a:hover { color: var(--gold); }
.footer__legal { display: flex; gap: 1.3rem; flex-wrap: wrap; }

/* ---------------------------------------------------------------- REVEAL */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal-stagger].in > * { opacity: 1; transform: none; }

/* ---------------------------------------------------------------- RESPONSIVE */
@media (max-width: 940px) {
  .about__grid, .oven__grid, .menuprev__grid, .visit__grid { grid-template-columns: 1fr; }
  .oven__media { max-width: 460px; }
  .about__media { max-width: 460px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-auto-rows: 170px; }
}
@media (max-width: 820px) {
  .nav__actions .langsw { display: none; }
  .nav__toggle { display: block; }
  .nav__links {
    display: flex; position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 0; padding: 1rem var(--pad) 2rem;
    background: rgba(10,17,32,.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .45s var(--ease); align-items: stretch; visibility: hidden;
  }
  body.nav-open .nav__links { transform: none; visibility: visible; }
  .nav__links a { padding: 1rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; white-space: normal; }
  .nav__links .langsw { display: inline-flex; align-self: flex-start; margin-top: 1rem; }
  .menucats { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gcell--wide { grid-column: span 2; }
}
@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
}
