/* ================================================================
   LIDO DELLA POLIZIA — Design v2.0
   Ispirazione: Scorpios Mykonos · Soho House Beach · Nikki Beach
   Filosofia: editoriale, cinematografico, asimmetrico, senza box
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Space+Grotesk:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:       #0a0a08;
  --ink2:      #1c1c18;
  --cream:     #f5f0e8;
  --cream2:    #ede8dd;
  --gold:      #b8960a;
  --gold2:     #d4ae2e;
  --azure:     #1a5f7a;
  --azure2:    #0d3d52;
  --sand:      #c8b89a;
  --white:     #fafaf7;
  --muted:     #6b6558;

  --ff-head:  'Playfair Display', Georgia, serif;
  --ff-serif: 'DM Serif Display', Georgia, serif;
  --ff-body:  'Space Grotesk', system-ui, sans-serif;

  --max:   1380px;
  --ease:  cubic-bezier(.16,1,.3,1);
  --ease2: cubic-bezier(.34,1.56,.64,1);
}

[data-theme="dark"] {
  --ink:    #f0ece2;
  --ink2:   #d4cfbf;
  --cream:  #0e0e0c;
  --cream2: #161612;
  --white:  #111110;
  --muted:  #9a9485;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;  /* custom cursor */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Custom cursor ────────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 99999; pointer-events: none;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 8px; height: 8px; background: var(--white);
  border-radius: 50%; position: absolute;
  transform: translate(-50%, -50%);
  transition: transform .1s;
}
.cursor-ring {
  width: 36px; height: 36px; border: 1px solid var(--white);
  border-radius: 50%; position: absolute;
  transform: translate(-50%, -50%);
  transition: transform .18s var(--ease), width .3s var(--ease), height .3s var(--ease);
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 56px; height: 56px; }

/* ── Navbar ───────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 1.5rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  mix-blend-mode: difference;
  transition: padding .4s var(--ease);
}
#navbar.scrolled { padding: 1rem 2.5rem; mix-blend-mode: normal; }
#navbar.scrolled { background: rgba(10,10,8,.92); backdrop-filter: blur(20px); }

.nav-logo {
  font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700;
  color: var(--white); letter-spacing: .12em; text-transform: uppercase;
}
.nav-logo em { font-style: italic; font-weight: 400; color: var(--gold2); }

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.85); font-size: .75rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold2); transition: width .3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-menu-btn {
  background: none; border: 1px solid rgba(255,255,255,.3); color: #fff;
  font-family: var(--ff-body); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; padding: .5rem 1.25rem; border-radius: 50px; cursor: none;
  transition: all .2s;
}
.nav-menu-btn:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); }

.dark-toggle {
  background: none; border: none; color: rgba(255,255,255,.7); cursor: none;
  font-size: .75rem; font-family: var(--ff-body); letter-spacing: .08em;
  padding: .4rem .75rem; transition: color .2s;
}
.dark-toggle:hover { color: #fff; }

/* Mobile nav fullscreen */
.mobile-nav {
  position: fixed; inset: 0; z-index: 800; background: var(--ink2);
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: flex-end; padding: 4rem;
  opacity: 0; pointer-events: none;
  transition: opacity .45s var(--ease);
  overflow: hidden;
}
.mobile-nav::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(26,95,122,.3), transparent 60%);
  pointer-events: none;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-links { list-style: none; }
.mobile-nav-links li { overflow: hidden; margin-bottom: .25rem; }
.mobile-nav-links a {
  display: block; font-family: var(--ff-head); font-size: clamp(3rem, 8vw, 5.5rem);
  font-style: italic; color: rgba(255,255,255,.12); line-height: 1.1;
  transform: translateY(120%); transition: transform .55s var(--ease), color .3s;
  letter-spacing: -.01em;
}
.mobile-nav.open .mobile-nav-links a { transform: translateY(0); color: rgba(255,255,255,.9); }
.mobile-nav.open .mobile-nav-links li:nth-child(1) a { transition-delay:.05s; }
.mobile-nav.open .mobile-nav-links li:nth-child(2) a { transition-delay:.10s; }
.mobile-nav.open .mobile-nav-links li:nth-child(3) a { transition-delay:.15s; }
.mobile-nav.open .mobile-nav-links li:nth-child(4) a { transition-delay:.20s; }
.mobile-nav.open .mobile-nav-links li:nth-child(5) a { transition-delay:.25s; }
.mobile-nav-links a:hover { color: var(--gold2); }
.mobile-nav-meta {
  position: absolute; top: 2.5rem; right: 3rem;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: .35rem; }
.hamburger span { display: block; width: 22px; height: 1px; background: #fff; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  height: 100svh; min-height: 680px; position: relative; overflow: hidden;
  display: grid; align-items: end;
}
.hero-bg {
  position: absolute; inset: -15%;
  background:
    url('../images/hero.jpg') center/cover no-repeat,
    url('../images/hero-placeholder.svg') center/cover no-repeat,
    linear-gradient(160deg, #0d3d52 0%, #1a5f7a 50%, #072d42 100%);
  will-change: transform;
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,8,.98) 0%, rgba(10,10,8,.6) 30%, rgba(10,10,8,.1) 65%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; width: 100%;
  padding: 0 4vw clamp(4rem,10vh,7rem);
  display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 4rem;
}
.hero-left { }
.hero-eyebrow {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold2); font-weight: 500; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .75rem;
  animation: fadeUp .7s var(--ease) .2s both;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold2); }
.hero-h1 {
  font-family: var(--ff-head); font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 900; line-height: .95; letter-spacing: -.02em;
  color: #fff; margin-bottom: 2rem;
  animation: fadeUp .9s var(--ease) .35s both;
}
.hero-h1 em { font-style: italic; font-weight: 400; color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.5); }
.hero-h1 .gold { color: var(--gold2); -webkit-text-stroke: 0; }

.hero-right { display: flex; flex-direction: column; align-items: flex-end; gap: 2rem; }
.hero-desc {
  font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,.7);
  max-width: 320px; text-align: right;
  animation: fadeUp .9s var(--ease) .5s both;
}
.hero-actions {
  display: flex; flex-direction: column; align-items: flex-end; gap: .75rem;
  animation: fadeUp .9s var(--ease) .65s both;
}
.btn-hero-main {
  display: inline-flex; align-items: center; gap: .75rem;
  background: var(--gold); color: var(--ink2);
  font-family: var(--ff-body); font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 1rem 2rem; border: none; cursor: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background .2s, transform .2s var(--ease);
}
.btn-hero-main:hover { background: var(--gold2); transform: translateX(4px); }
.btn-hero-ghost {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5); border: none; background: none;
  cursor: none; display: flex; align-items: center; gap: .5rem; transition: color .2s;
}
.btn-hero-ghost:hover { color: rgba(255,255,255,.9); }
.btn-hero-ghost::after { content: '→'; transition: transform .2s; }
.btn-hero-ghost:hover::after { transform: translateX(4px); }

/* Ticker bottom */
.hero-ticker {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  border-top: 1px solid rgba(255,255,255,.08);
  overflow: hidden; padding: .85rem 0;
}
.hero-ticker-inner {
  display: flex; gap: 4rem; white-space: nowrap;
  animation: ticker 20s linear infinite;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.35); font-weight: 400;
}
.hero-ticker-inner span { flex-shrink: 0; }
.hero-ticker-inner em { color: var(--gold2); font-style: normal; margin: 0 1rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }

/* ── MANIFESTO / ABOUT ────────────────────────────────────── */
#manifesto {
  padding: clamp(6rem,14vw,12rem) 4vw;
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start;
}
.manifesto-label {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); padding-top: .6rem;
  position: sticky; top: 8rem;
}
.manifesto-label::before { content: '01'; display: block; font-size: 2.5rem; font-family: var(--ff-head); color: var(--sand); letter-spacing: -.04em; line-height: 1; margin-bottom: .5rem; font-weight: 700; opacity: .4; }
.manifesto-body { }
.manifesto-quote {
  font-family: var(--ff-head); font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-style: italic; font-weight: 400; line-height: 1.2;
  color: var(--ink); margin-bottom: 3rem; letter-spacing: -.01em;
}
.manifesto-quote strong { font-weight: 700; font-style: normal; color: var(--azure); }
.manifesto-text {
  font-size: 1.05rem; line-height: 1.8; color: var(--muted);
  columns: 2; column-gap: 3rem;
}
.manifesto-text p + p { margin-top: 1.2rem; }

/* ── SERVIZI — lista editoriale ───────────────────────────── */
#services {
  background: var(--ink2); color: var(--cream);
  padding: clamp(5rem,10vw,9rem) 4vw;
}
.services-header {
  max-width: var(--max); margin: 0 auto 5rem;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.services-header h2 {
  font-family: var(--ff-head); font-size: clamp(2.5rem,5vw,4.5rem);
  font-weight: 900; letter-spacing: -.025em; line-height: .95;
}
.services-header h2 em { font-style: italic; font-weight: 400; color: var(--gold2); }
.services-header-sub { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); max-width: 200px; text-align: right; line-height: 1.7; }

.services-list { max-width: var(--max); margin: 0 auto; }
.service-item {
  display: grid; grid-template-columns: 3rem 1fr auto;
  align-items: center; gap: 2rem;
  padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .35s var(--ease); cursor: none;
}
.service-item:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.service-item:hover { padding-left: 1rem; }
.service-num {
  font-family: var(--ff-head); font-size: .75rem; color: rgba(255,255,255,.2);
  letter-spacing: .1em; font-weight: 700;
}
.service-info { }
.service-name {
  font-family: var(--ff-head); font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700; letter-spacing: -.01em; line-height: 1;
  transition: color .3s;
}
.service-item:hover .service-name { color: var(--gold2); }
.service-desc { font-size: .85rem; color: rgba(255,255,255,.4); margin-top: .35rem; line-height: 1.55; max-width: 500px; }
.service-tag {
  font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.1);
  padding: .35rem .85rem; border-radius: 50px;
  transition: all .3s;
}
.service-item:hover .service-tag { color: var(--gold2); border-color: var(--gold2); }

/* ── GALLERY — full bleed immersiva ──────────────────────── */
#gallery { overflow: hidden; }
.gallery-intro {
  padding: clamp(4rem,8vw,7rem) 4vw 2rem;
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.gallery-intro h2 {
  font-family: var(--ff-head); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900; letter-spacing: -.02em;
}
.gallery-intro .gallery-count { font-size: .7rem; letter-spacing: .18em; color: var(--muted); text-transform: uppercase; }

/* Scroll orizzontale filmstrip */
.gallery-strip {
  display: flex; gap: 1rem; padding: 2rem 4vw 4rem;
  overflow-x: auto; scrollbar-width: none;
  cursor: grab;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-strip:active { cursor: grabbing; }
.gallery-frame {
  flex-shrink: 0; border-radius: 2px; overflow: hidden;
  position: relative; background: var(--cream2);
}
.gallery-frame:nth-child(odd)  { width: clamp(280px,40vw,520px); height: 380px; }
.gallery-frame:nth-child(even) { width: clamp(200px,28vw,360px); height: 380px; align-self: flex-end; margin-bottom: 0; margin-top: 2rem; }
.gallery-frame:nth-child(3)    { height: 460px; margin-top: -2rem; }
.gallery-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: 4rem; background: var(--cream2);
  color: var(--sand); user-select: none;
}
.gallery-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-frame:hover img { transform: scale(1.04); }
.gallery-label {
  position: absolute; bottom: 1rem; left: 1rem;
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.6); pointer-events: none;
}

/* ── ORARI — layout split screen ─────────────────────────── */
#hours {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh;
}
.hours-visual {
  background: var(--azure2); position: relative; overflow: hidden;
  min-height: 400px;
}
.hours-visual-bg {
  position: absolute; inset: 0;
  background:
    url('../images/hero.jpg') center/cover no-repeat,
    url('../images/hero-placeholder.svg') center/cover no-repeat;
  opacity: .25; transform: scale(1.05);
}
.hours-visual-content {
  position: relative; z-index: 2; padding: 5rem 4rem; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hours-visual h2 {
  font-family: var(--ff-head); font-size: clamp(2.5rem,4vw,4rem);
  font-weight: 900; color: #fff; letter-spacing: -.02em; line-height: 1;
}
.hours-visual h2 em { color: var(--gold2); font-style: italic; font-weight: 400; }
.hours-visual-sub { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 1rem; }

.hours-data { background: var(--cream2); padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; gap: 0; }
.hours-entry {
  padding: 2rem 0; border-bottom: 1px solid rgba(10,10,8,.08);
  display: grid; grid-template-columns: 1fr auto;
  align-items: baseline; gap: 1rem;
  transition: transform .3s var(--ease);
}
.hours-entry:first-child { border-top: 1px solid rgba(10,10,8,.08); }
.hours-entry:hover { transform: translateX(.75rem); }
.hours-name { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700; letter-spacing: -.01em; }
.hours-sub  { font-size: .78rem; color: var(--muted); letter-spacing: .06em; margin-top: .2rem; }
.hours-time { font-size: .82rem; letter-spacing: .1em; text-align: right; color: var(--azure); font-weight: 600; }

/* ── MENU DIGITALE ─────────────────────────────────────────── */
#menu-section { background: var(--cream); }

.menu-hero {
  background: var(--ink2); padding: clamp(4rem,8vw,7rem) 4vw clamp(3rem,5vw,5rem);
  position: relative; overflow: hidden;
}
.menu-hero::after {
  content: 'MENU'; position: absolute; right: 4vw; bottom: -2rem;
  font-family: var(--ff-head); font-size: clamp(8rem,18vw,18rem);
  font-weight: 900; color: rgba(255,255,255,.03); letter-spacing: -.04em;
  line-height: 1; pointer-events: none; user-select: none;
}
.menu-hero-inner { max-width: var(--max); margin: 0 auto; }
.menu-hero-label { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold2); margin-bottom: 1.25rem; display: flex; align-items: center; gap: .75rem; }
.menu-hero-label::before { content: ''; width: 24px; height: 1px; background: var(--gold2); }
.menu-hero h2 { font-family: var(--ff-head); font-size: clamp(2.8rem,5.5vw,5rem); font-weight: 900; color: #fff; letter-spacing: -.025em; line-height: .95; margin-bottom: 2.5rem; }
.menu-hero h2 em { font-style: italic; font-weight: 400; color: var(--gold2); }

/* Search + pills */
.menu-controls {
  max-width: var(--max); margin: 0 auto;
  padding: 2.5rem 4vw 0;
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
}
.menu-search {
  flex: 1; min-width: 220px;
  display: flex; align-items: center; gap: .75rem;
  border-bottom: 1.5px solid rgba(10,10,8,.15); padding: .6rem 0;
}
.menu-search input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--ff-body); font-size: 1rem; color: var(--ink);
}
.menu-search input::placeholder { color: var(--muted); }
.menu-search-icon { color: var(--muted); font-size: 1rem; }

.cat-pills {
  display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none;
  padding-bottom: .25rem; max-width: var(--max); margin: 0 auto; padding: 1.5rem 4vw 0;
}
.cat-pills::-webkit-scrollbar { display: none; }
.cat-pill {
  flex-shrink: 0; padding: .45rem 1.15rem; border: 1.5px solid var(--sand);
  border-radius: 50px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 500; color: var(--muted); background: transparent; cursor: none;
  transition: all .25s;
}
.cat-pill:hover { border-color: var(--azure); color: var(--azure); }
.cat-pill.active { background: var(--ink2); border-color: var(--ink2); color: var(--cream); }

/* Menu items — layout editoriale, NO card box */
#menu-items-container {
  max-width: var(--max); margin: 0 auto;
  padding: 4rem 4vw 6rem;
}
.menu-cat-section { margin-bottom: 5rem; }
.menu-cat-heading {
  font-family: var(--ff-head); font-size: clamp(2rem,4vw,3.5rem);
  font-weight: 900; letter-spacing: -.02em; line-height: 1;
  margin-bottom: 2.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(10,10,8,.08);
  display: flex; align-items: baseline; gap: 1rem; color: var(--ink);
}
.menu-cat-heading em { font-style: italic; font-weight: 400; color: var(--muted); font-size: 55%; letter-spacing: .05em; }

/* Item row — no card */
.menu-item-row {
  display: grid; grid-template-columns: 1fr auto;
  align-items: baseline; gap: 1rem;
  padding: 1.4rem 0; border-bottom: 1px solid rgba(10,10,8,.06);
  transition: all .3s var(--ease); position: relative;
}
.menu-item-row::before {
  content: ''; position: absolute; left: -1.5rem; top: 0; bottom: 0;
  width: 2px; background: var(--gold); transform: scaleY(0); transform-origin: top;
  transition: transform .3s var(--ease);
}
.menu-item-row:hover { transform: translateX(.75rem); }
.menu-item-row:hover::before { transform: scaleY(1); }
.menu-item-row.unavailable { opacity: .4; }

.item-main { display: flex; flex-direction: column; gap: .35rem; }
.item-name { font-family: var(--ff-head); font-size: 1.25rem; font-weight: 700; letter-spacing: -.01em; line-height: 1.15; color: var(--ink); }
.item-desc { font-size: .85rem; color: var(--muted); line-height: 1.55; max-width: 55ch; }
.item-badges-row { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .25rem; }
.item-badge {
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; padding: .18rem .6rem; border-radius: 50px;
}
.badge-new    { background: rgba(184,150,10,.12); color: var(--gold); }
.badge-recmd  { background: rgba(26,95,122,.1); color: var(--azure); }
.badge-spicy  { background: rgba(180,40,30,.1); color: #b42820; }
.badge-veg    { background: rgba(30,120,50,.1); color: #1e7832; }
.badge-gf     { background: rgba(100,100,100,.1); color: var(--muted); }
.badge-unavail{ background: rgba(180,40,30,.1); color: #b42820; }

.item-right { display: flex; flex-direction: column; align-items: flex-end; gap: .35rem; }
.item-price { font-family: var(--ff-head); font-size: 1.35rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.item-price-currency { font-size: .75rem; color: var(--muted); font-weight: 400; font-family: var(--ff-body); vertical-align: super; margin-right: .15rem; }
.item-featured-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* Con immagine (opzionale, solo se presente) */
.menu-item-with-img {
  display: grid; grid-template-columns: 1fr 100px;
  gap: 1.5rem; align-items: center;
  padding: 1.2rem 0; border-bottom: 1px solid rgba(10,10,8,.06);
  transition: all .3s var(--ease);
}
.menu-item-with-img:hover { transform: translateX(.5rem); }
.menu-item-thumb { width: 100px; height: 72px; border-radius: 4px; overflow: hidden; background: var(--cream2); flex-shrink: 0; }
.menu-item-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Skeleton */
.skel-item { padding: 1.4rem 0; border-bottom: 1px solid rgba(10,10,8,.06); }
.skel-line { height: 1rem; border-radius: 3px; background: linear-gradient(90deg,var(--cream2) 25%,var(--sand) 50%,var(--cream2) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; margin-bottom: .5rem; }
.skel-line.short { width: 45%; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* QR pill */
.menu-qr-pill {
  display: inline-flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px; padding: .6rem 1.25rem .6rem .85rem;
  font-size: .75rem; color: rgba(255,255,255,.6); letter-spacing: .08em;
  transition: all .25s;
}
.menu-qr-pill:hover { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.menu-qr-icon { font-size: 1.1rem; }

/* ── CONTATTI ─────────────────────────────────────────────── */
#contact { background: var(--ink2); color: var(--cream); padding: clamp(5rem,10vw,9rem) 4vw; }
.contact-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 8rem; align-items: start; }

.contact-left { position: sticky; top: 8rem; }
.contact-label { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.contact-title { font-family: var(--ff-head); font-size: clamp(2.5rem,4.5vw,4rem); font-weight: 900; letter-spacing: -.02em; line-height: .95; margin-bottom: 2rem; }
.contact-title em { font-style: italic; font-weight: 400; color: var(--gold2); }
.contact-tagline { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,.45); max-width: 28ch; }

.contact-right { display: flex; flex-direction: column; gap: 0; }
.contact-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 1.75rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: transform .3s var(--ease);
}
.contact-line:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.contact-line:hover { transform: translateX(.5rem); }
.c-label { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.c-val { font-size: 1rem; color: rgba(255,255,255,.85); text-align: right; }
.c-val a { color: var(--sea-light, #5bc4dc); transition: color .2s; }
.c-val a:hover { color: var(--gold2); }

.social-strip { display: flex; gap: 1rem; margin-top: 3rem; }
.social-link {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.5);
  padding: .65rem 1.25rem; border-radius: 50px; transition: all .25s;
}
.social-link:hover { border-color: var(--gold2); color: var(--gold2); }

.map-embed { margin-top: 3rem; border-radius: 4px; overflow: hidden; height: 280px; border: 1px solid rgba(255,255,255,.08); }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--ink); padding: 3rem 4vw;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; letter-spacing: .06em; color: rgba(255,255,255,.7); }
.footer-center { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.25); text-align: center; }
.footer-right { font-size: .72rem; color: rgba(255,255,255,.3); text-align: right; line-height: 1.6; }
.footer-right a { color: rgba(255,255,255,.3); transition: color .2s; }
.footer-right a:hover { color: var(--gold2); }

/* ── Float CTA ────────────────────────────────────────────── */
#float-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  background: var(--gold); color: var(--ink2);
  font-family: var(--ff-body); font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .85rem 1.5rem; border: none; cursor: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transform: translateY(80px); opacity: 0;
  transition: all .5s var(--ease2);
  box-shadow: 0 8px 28px rgba(184,150,10,.35);
}
#float-cta.visible { transform: none; opacity: 1; }
#float-cta:hover { background: var(--gold2); }

/* ── REVEAL animations ────────────────────────────────────── */
.reveal, .reveal-left, .reveal-right, .reveal-up {
  opacity: 0; transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal       { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up    { transform: translateY(20px); }
.reveal.in, .reveal-left.in, .reveal-right.in, .reveal-up.in { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; } .d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; } .d4 { transition-delay: .28s; }
.d5 { transition-delay: .35s; } .d6 { transition-delay: .42s; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { align-items: flex-start; }
  .hero-desc  { text-align: left; }
  .hero-actions { align-items: flex-start; }
  #manifesto { grid-template-columns: 1fr; gap: 3rem; }
  .manifesto-label { position: static; }
  .manifesto-text { columns: 1; }
  #hours { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 4rem; }
  .contact-left { position: static; }
  .services-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
}
@media (max-width: 768px) {
  #navbar { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  body { cursor: auto; }
  .cursor { display: none; }
  .service-item { grid-template-columns: 2.5rem 1fr; }
  .service-tag { display: none; }
  .menu-controls { flex-direction: column; gap: 1rem; }
  .gallery-frame:nth-child(odd), .gallery-frame:nth-child(even), .gallery-frame:nth-child(3) { width: 75vw; height: 260px; margin-top: 0; align-self: auto; }
  .hero-h1 { font-size: clamp(3rem,12vw,5rem); }
  footer { flex-direction: column; text-align: center; }
  .footer-right { text-align: center; }
  #float-cta { bottom: 1rem; right: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-up { transition: none !important; opacity: 1 !important; transform: none !important; }
  .hero-bg, .hero-ticker-inner { animation: none !important; }
  .cursor { display: none; }
  body { cursor: auto; }
}
