/* ============================================================
   PIADINA LAB — clone of piadinainfo.wixsite.com/piadina
   Warm, hand-made, Italian-soul brand. Cream + burnt orange.
   ============================================================ */

:root {
  --cream:        #fff5f0;   /* page background */
  --cream-2:      #f6e9df;   /* alt section bg  */
  --tan:          #e8dac5;   /* warm accent     */
  --orange:       #d06010;   /* brand orange — large display only */
  --orange-deep:  #b5500a;   /* AA-safe orange for small text/links/buttons (>=4.5:1 on cream & white) */
  --orange-darker:#8f3f06;   /* hover / active */
  --brown:        #33302c;   /* dark text       */
  --brown-soft:   #4a4036;
  --muted:        #7b6e60;
  --white:        #ffffff;

  --maxw: 1180px;
  --radius: 14px;
  --shadow: 0 14px 40px rgba(58, 40, 20, .12);
  --shadow-sm: 0 6px 18px rgba(58, 40, 20, .10);

  --ff-head: 'Quicksand', 'Trebuchet MS', sans-serif;
  --ff-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--brown);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }

a { color: var(--orange-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange-darker); }

/* Visible keyboard focus for all interactive elements */
:focus-visible { outline: 3px solid var(--orange-deep); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  color: var(--brown);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
}

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

.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.bg-cream-2 { background: var(--cream-2); }
.bg-tan { background: var(--tan); }

.eyebrow {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--orange-deep);
  margin: 0 0 14px;
}

.lead { font-size: 1.18rem; color: var(--brown-soft); }
.muted { color: var(--muted); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .82rem;
  padding: 15px 38px;
  border-radius: 999px;
  border: 2px solid var(--orange-deep);
  background: var(--orange-deep);
  color: #fff;
  cursor: pointer;
  transition: all .22s ease;
}
.btn:hover { background: var(--orange-darker); border-color: var(--orange-darker); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--orange-deep); }
.btn--ghost:hover { background: var(--orange-deep); color: #fff; }
.btn--light { background: #fff; border-color: #fff; color: var(--orange-deep); }
.btn--light:hover { background: var(--cream); border-color: var(--cream); color: var(--orange-darker); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 245, 240, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(208, 96, 16, .14);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand img { height: 30px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a,
.nav-links .more-trigger {
  font-family: var(--ff-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
  color: var(--brown);
  padding: 10px 16px;
  border-radius: 999px;
}
.nav-links .more-trigger { background: none; border: 0; cursor: pointer; }
.nav-links a:hover,
.nav-links .more-trigger:hover,
.nav-links a[aria-current="page"] { color: var(--orange-deep); }
.nav-links .has-menu { position: relative; }
.nav-links .has-menu > .more-trigger::after { content: " ▾"; font-size: .7em; opacity: .7; display: inline-block; transition: transform .2s ease; }
.nav-links .has-menu.open > .more-trigger::after { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%; right: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  list-style: none; margin: 8px 0 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease;
}
.nav-links .has-menu:hover .dropdown,
.nav-links .has-menu:focus-within .dropdown,
.nav-links .has-menu.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; border-radius: 8px; letter-spacing: .08em; }
.dropdown a:hover { background: var(--cream); }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--brown);
  margin: 5px 0; border-radius: 2px; transition: .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); }

/* ============================================================
   HERO (slideshow)
   ============================================================ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slides .slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.06);
  animation: heroKen 40s infinite;
}
.hero-slides .slide:nth-child(1){ animation-delay: 0s; }
.hero-slides .slide:nth-child(2){ animation-delay: 8s; }
.hero-slides .slide:nth-child(3){ animation-delay: 16s; }
.hero-slides .slide:nth-child(4){ animation-delay: 24s; }
.hero-slides .slide:nth-child(5){ animation-delay: 32s; }
@keyframes heroKen {
  0%   { opacity: 0; transform: scale(1.04); }
  3%   { opacity: 1; }
  18%  { opacity: 1; }
  22%  { opacity: 0; }
  100% { opacity: 0; transform: scale(1.22); }
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(30,20,12,.55), rgba(30,20,12,.2) 80%),
    linear-gradient(180deg, rgba(35,24,14,.55), rgba(35,24,14,.72));
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; padding: 40px 24px; }
.hero-logo { height: 64px; width: auto; margin: 0 auto 26px; filter: drop-shadow(0 6px 18px rgba(0,0,0,.35)); }
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  text-shadow: 0 4px 24px rgba(0,0,0,.35);
  margin-bottom: .35em;
}
.hero p {
  font-size: clamp(1.05rem, 2.3vw, 1.4rem);
  font-weight: 300;
  max-width: 620px; margin: 0 auto 32px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

/* ============================================================
   LAB / FEATURE SECTIONS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.feature-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); letter-spacing: .01em; }
.feature-sub { font-size: 1.15rem; color: var(--brown-soft); margin-bottom: 1.4em; }

.claim-band {
  background: var(--orange);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: 46px 28px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.claim-band h2 { color: #fff; font-size: clamp(1.4rem, 3.4vw, 2.1rem); letter-spacing: .04em; }
.claim-band p { margin: .4em 0 0; font-weight: 300; font-size: 1.08rem; opacity: .96; }
.claim-band .skate {
  position: absolute; right: 22px; bottom: -26px; width: 150px;
  filter: invert(1) drop-shadow(0 6px 12px rgba(0,0,0,.2));
  opacity: .9;
  transform: rotate(-6deg);
}

.pills { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pills li {
  background: #fff; border: 1px solid var(--tan);
  border-radius: 999px; padding: 10px 20px;
  font-family: var(--ff-head); font-weight: 600; font-size: .92rem; color: var(--brown-soft);
  box-shadow: var(--shadow-sm);
}

/* ---------- Story ---------- */
.story-text p { margin: 0 0 1.1em; color: var(--brown-soft); }
.story-text p:first-of-type { font-size: 1.18rem; color: var(--brown); }
.signature { font-family: var(--ff-head); font-weight: 700; color: var(--orange-deep); margin-top: 1em; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head {
  background: var(--cream-2);
  text-align: center;
  padding: 84px 24px 70px;
  border-bottom: 1px solid rgba(208,96,16,.12);
}
.page-head h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
.page-head p { max-width: 760px; margin: 1em auto 0; color: var(--brown-soft); font-size: 1.12rem; font-weight: 300; }

/* ============================================================
   MENU
   ============================================================ */
.menu-hours {
  text-align: center;
  margin: 0 auto 8px;
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--brown);
}
.menu-hours .closed { color: var(--orange-deep); }
.menu-hours small { display:block; color: var(--muted); font-weight: 400; letter-spacing:.04em; }

.menu-section { margin-top: 64px; }
.menu-section-head { text-align: center; max-width: 720px; margin: 0 auto 34px; }
.menu-section-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  color: var(--orange);
  display: inline-block;
  position: relative;
}
.menu-section-head h2::after {
  content:""; display:block; width: 56px; height: 3px; background: var(--tan);
  margin: 14px auto 0; border-radius: 3px;
}
.menu-section-head p { color: var(--brown-soft); font-weight: 300; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 26px;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-card .thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.menu-card .thumb img { width:100%; height:100%; object-fit: cover; }
.menu-card .body { padding: 18px 20px 22px; display:flex; flex-direction:column; flex:1; }
.menu-card .row { display:flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.menu-card h3 { font-size: 1.2rem; margin: 0; }
.menu-card .price {
  font-family: var(--ff-head); font-weight: 700; color: var(--orange-deep);
  white-space: nowrap; font-size: 1.1rem;
}
.menu-card .desc { color: var(--muted); font-size: .96rem; margin: 8px 0 0; }

/* compact list (drinks / aperitivos) */
.menu-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px),1fr)); gap: 14px 40px; }
.menu-line {
  display:flex; align-items:baseline; gap: 10px;
  padding: 12px 0; border-bottom: 1px dashed rgba(123,110,96,.3);
}
.menu-line .name { font-family: var(--ff-head); font-weight: 600; color: var(--brown); min-width: 0; overflow-wrap: anywhere; }
.menu-line .dots { flex:1; border-bottom: 1px dotted rgba(123,110,96,.4); transform: translateY(-4px); }
.menu-line .price { font-family: var(--ff-head); font-weight:700; color: var(--orange-deep); white-space:nowrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.contact-card {
  background: #fff; border-radius: var(--radius); padding: 34px 28px;
  box-shadow: var(--shadow-sm); text-align: center;
}
.contact-card .ico {
  width: 54px; height: 54px; margin: 0 auto 16px;
  display:flex; align-items:center; justify-content:center;
  background: var(--cream); border-radius: 50%; color: var(--orange-deep);
}
.contact-card h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .14em; color: var(--orange-deep); }
.contact-card p { margin: .3em 0; color: var(--brown-soft); }
.map {
  display: block; position: relative;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map img { width: 100%; height: 420px; object-fit: cover; transition: transform .4s ease; }
.map:hover img { transform: scale(1.03); }
.map-pill {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  background: #fff; color: var(--orange-deep);
  font-family: var(--ff-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .08em; padding: 11px 22px; border-radius: 999px;
  box-shadow: var(--shadow); white-space: nowrap;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta {
  background: var(--brown);
  color: var(--cream);
  text-align: center;
  padding: 76px 24px;
}
.cta h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.5rem); }
.cta p { color: #e9ddcf; font-weight: 300; max-width: 560px; margin: 0 auto 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #2b2620;
  color: #e9ddcf;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-grid img.flogo { height: 28px; margin-bottom: 18px; }
.site-footer h4 {
  color: #fff; text-transform: uppercase; letter-spacing: .16em;
  font-size: .82rem; margin-bottom: 14px;
}
.site-footer p, .site-footer a { color: #cdbfae; font-size: .96rem; margin: .25em 0; }
.site-footer a:hover { color: var(--orange); }
.socials { display:flex; gap: 12px; margin-top: 6px; }
.socials a img { width: 38px; height: 38px; border-radius: 50%; }
.socials a { transition: transform .2s ease; }
.socials a:hover { transform: translateY(-3px); }
.footer-bottom {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center; font-size: .85rem; color: #9c8e7d;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 64px 0; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); padding: 10px 16px 18px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 8px; }
  .nav-links .has-menu .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: transparent; padding: 0 0 0 14px; margin: 0;
  }
  .nav-links .has-menu > .more-trigger::after { content: ""; }
  .nav-links .more-trigger { text-align: left; width: 100%; }
  .hero { min-height: 78vh; }
  .claim-band .skate { width: 100px; right: 8px; bottom: -20px; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slides .slide { animation: none; }
  .hero-slides .slide:first-child { opacity: 1; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ============================================================
   RICH SECTIONS & ANIMATIONS  (faithful Wix-style motion)
   ============================================================ */

/* Header shrink on scroll */
.site-header { transition: background .3s ease, box-shadow .3s ease, height .3s ease; }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(58,40,20,.10); background: rgba(255,245,240,.97); }
.site-header.is-scrolled .nav { height: 64px; }
.nav { transition: height .3s ease; }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="zoom"]  { transform: scale(.9); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Hero scroll-down indicator ---------- */
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; color: #fff; opacity: .85;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--ff-head); font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
}
.hero-scroll .mouse {
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.8); border-radius: 14px;
  position: relative;
}
.hero-scroll .mouse::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  background: #fff; border-radius: 2px; transform: translateX(-50%);
  animation: wheel 1.6s infinite;
}
@keyframes wheel { 0%{opacity:0;transform:translate(-50%,0)} 30%{opacity:1} 100%{opacity:0;transform:translate(-50%,14px)} }

/* ---------- Marquee (scrolling photo strip) ---------- */
.marquee {
  overflow: hidden; background: var(--brown);
  padding: 0; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  flex: 0 0 auto; width: 320px; height: 220px; margin: 0;
}
.marquee-item img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.96); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Parallax band ---------- */
.parallax-band {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: #fff; padding: 130px 24px; isolation: isolate;
}
.parallax-band__bg {
  position: absolute; inset: -12% 0; z-index: -2;
  background-size: cover; background-position: center;
  transform: translate3d(0, var(--py, 0), 0) scale(1.12);
  will-change: transform;
}
.parallax-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(30,20,12,.62), rgba(30,20,12,.72));
}
.parallax-band .band-inner { max-width: 820px; }
.parallax-band h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.6rem); letter-spacing: .03em; text-shadow: 0 3px 18px rgba(0,0,0,.4); }
.parallax-band p { color: #f3e7da; font-weight: 300; font-size: 1.12rem; margin: .6em auto 0; max-width: 640px; }

/* ---------- Mascot feature ---------- */
.mascot-row { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.mascot-wrap { display: flex; justify-content: center; position: relative; }
.mascot {
  width: min(420px, 80%); filter: drop-shadow(0 26px 30px rgba(58,40,20,.28));
  animation: floaty 5.5s ease-in-out infinite;
}
.mascot-wrap::before {
  content: ""; position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%);
  width: 58%; height: 26px; background: radial-gradient(ellipse, rgba(58,40,20,.22), transparent 70%);
  border-radius: 50%; animation: shadowPulse 5.5s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0) rotate(-3deg); } 50%{ transform: translateY(-18px) rotate(2deg); } }
@keyframes shadowPulse { 0%,100%{ transform: translateX(-50%) scale(1); opacity:.85 } 50%{ transform: translateX(-50%) scale(.82); opacity:.5 } }

/* ---------- Decorative monogram watermark ---------- */
.watermark {
  position: absolute; pointer-events: none; opacity: .05; z-index: 0;
  width: 360px; right: -40px; top: -40px;
}
.has-watermark { position: relative; }
.has-watermark > .container { position: relative; z-index: 1; }

/* ---------- Stats row ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--ff-head); font-weight: 700; color: var(--orange); font-size: clamp(2.2rem, 5vw, 3rem); line-height: 1; }
.stat-label { font-family: var(--ff-head); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--muted); margin-top: 8px; }

/* ---------- Gallery (hover zoom) ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery .tile { position: relative; overflow: hidden; border-radius: 12px; aspect-ratio: 1/1; box-shadow: var(--shadow-sm); }
.gallery .tile.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.gallery .tile:hover img { transform: scale(1.1); }
.gallery .tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(40,28,16,.35));
  opacity: 0; transition: opacity .4s ease;
}
.gallery .tile:hover::after { opacity: 1; }

@media (max-width: 900px) {
  .mascot-row { grid-template-columns: 1fr; gap: 28px; }
  .mascot-row .mascot-wrap { order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .stats { gap: 16px; }
  .parallax-band { padding: 96px 24px; }
}
@media (max-width: 520px) {
  .marquee-item { width: 230px; height: 165px; }
  .watermark { width: 220px; }
}

/* menu-card stagger reveal */
.menu-grid [data-reveal]:nth-child(2){ transition-delay:.08s; }
.menu-grid [data-reveal]:nth-child(3){ transition-delay:.16s; }
.menu-grid [data-reveal]:nth-child(4){ transition-delay:.24s; }
.menu-grid [data-reveal]:nth-child(5){ transition-delay:.32s; }
.contact-grid [data-reveal]:nth-child(2){ transition-delay:.1s; }
.contact-grid [data-reveal]:nth-child(3){ transition-delay:.2s; }
