/* ============================================================
   Alla Goccia — Drinking Hub · Marzabotto
   Fogli di stile · palette calda notturna · firma: la goccia
   ============================================================ */

/* ---------- Font auto-ospitati ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/jost.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Token ---------- */
:root {
  --espresso: #12100e;
  --carbone: #1b1712;
  --carbone-2: #241d15;
  --crema: #f3ebdd;
  --nebbia: #a79e8e;
  --ottone: #c69a4c;
  --ottone-chiaro: #e0bd7c;
  --rame: #a9633b;
  --bordeaux: #5a2233;
  --linea: rgba(243, 235, 221, 0.12);
  --linea-forte: rgba(243, 235, 221, 0.22);

  --serif: "Fraunces", "Georgia", "Times New Roman", serif;
  --sans: "Jost", "Futura", "Trebuchet MS", system-ui, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --sect: clamp(4.5rem, 11vw, 9rem);

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

/* ---------- Reset ---------- */
*,
*::before,
*::after { 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: 0.001ms !important; transition-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

body {
  background: var(--espresso);
  color: var(--crema);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  position: relative;
}

/* Bagliore ambrato + texture "da stampa" */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60vw 60vw at 82% -8%, rgba(198, 154, 76, 0.16), transparent 60%),
    radial-gradient(55vw 55vw at -10% 108%, rgba(90, 34, 51, 0.20), transparent 60%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; z-index: 1; padding-block: var(--sect); }
main { position: relative; z-index: 1; }

/* ---------- Tipografia ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.02; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ottone);
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
}
.eyebrow::before {
  content: "";
  width: 1.8em;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section-title {
  font-size: clamp(2rem, 1.2rem + 3.4vw, 3.6rem);
  margin-top: 0.6rem;
  max-width: 16ch;
}
.lead { color: var(--nebbia); max-width: 52ch; margin-top: 1.4rem; font-size: 1.05em; }

/* Goccia come glifo tipografico */
.drop-glyph { color: var(--ottone); font-style: normal; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--gutter);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(18, 16, 14, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--linea);
  padding-block: 0.75rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.7rem; color: var(--crema); text-decoration: none; }
.nav-brand svg { width: 30px; height: 38px; display: block; color: var(--ottone); }
.nav-brand .nb-name { font-family: var(--serif); font-size: 1.15rem; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: var(--crema);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.82;
  transition: opacity 0.25s, color 0.25s;
}
.nav-links a:hover { opacity: 1; color: var(--ottone-chiaro); }
.nav-cta { display: inline-flex; }
.nav-toggle { display: none; background: none; border: 0; color: var(--crema); cursor: pointer; }

/* ---------- Bottoni ---------- */
.btn {
  --bg: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--crema);
  padding: 0.95em 1.7em;
  border: 1px solid var(--ottone);
  border-radius: 2px;
  background: var(--bg);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { --bg: var(--ottone); color: #1a140a; font-weight: 600; }
.btn-solid:hover { --bg: var(--ottone-chiaro); }
.btn-ghost { border-color: var(--linea-forte); }
.btn-ghost:hover { border-color: var(--ottone); color: var(--ottone-chiaro); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 6rem;
  overflow: hidden;
}
.hero-inner {
  align-self: center;
  display: grid;
  gap: 1.6rem;
  text-align: center;
  justify-items: center;
}
.hero .wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: clamp(3.4rem, 1rem + 14vw, 11rem);
  line-height: 0.86;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero .wordmark .w2 { display: block; color: var(--ottone); font-style: italic; font-size: 0.5em; letter-spacing: 0.06em; text-transform: none; margin-top: 0.1em; }
.hero-tag { color: var(--nebbia); font-size: clamp(1rem, 0.9rem + 0.6vw, 1.35rem); max-width: 34ch; }
.hero-tag strong { color: var(--crema); font-weight: 400; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 0.6rem; }
.hero-meta {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 2rem;
  padding-block: 2rem 2.4rem;
  color: var(--nebbia);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.6em; }
.hero-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--ottone); }

/* Sfondo hero: foto d'atmosfera velata (il testo resta protagonista) */
.hero-inner, .hero-meta { position: relative; z-index: 1; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 87%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 87%, transparent 100%);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.5;
  filter: saturate(1.05) contrast(1.02);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(105% 80% at 50% 34%, rgba(18, 16, 14, 0.18), rgba(18, 16, 14, 0.72) 92%),
    linear-gradient(180deg, rgba(18, 16, 14, 0.72) 0%, rgba(18, 16, 14, 0.38) 42%, rgba(18, 16, 14, 0.96) 100%);
}

/* La goccia — firma animata */
.drop-sig { position: relative; width: 2px; height: 92px; margin-bottom: 0.4rem; }
.drop-sig .line { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(var(--ottone), transparent); opacity: 0.5; }
.drop-sig .bead {
  position: absolute;
  left: 50%;
  top: 0;
  width: 9px; height: 9px;
  margin-left: -4.5px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: radial-gradient(circle at 35% 30%, var(--ottone-chiaro), var(--ottone) 55%, var(--rame));
  box-shadow: 0 0 14px rgba(198, 154, 76, 0.7);
  animation: drop-fall 3.4s var(--ease) infinite;
}
.drop-sig .ripple {
  position: absolute;
  left: 50%; bottom: -4px;
  width: 40px; height: 12px;
  margin-left: -20px;
  border: 1px solid var(--ottone);
  border-radius: 50%;
  opacity: 0;
  animation: drop-ripple 3.4s var(--ease) infinite;
}
@keyframes drop-fall {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  12% { opacity: 1; }
  70% { transform: translateY(84px) scale(1); opacity: 1; }
  80% { transform: translateY(88px) scale(1.1, 0.7); opacity: 0.9; }
  86%, 100% { transform: translateY(90px) scale(0); opacity: 0; }
}
@keyframes drop-ripple {
  0%, 78% { transform: scale(0.2); opacity: 0; }
  84% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ---------- Manifesto ---------- */
.manifesto { text-align: center; }
.manifesto .big {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 1rem + 3.2vw, 3.1rem);
  line-height: 1.18;
  max-width: 20ch;
  margin-inline: auto;
}
.manifesto .big em { color: var(--ottone); font-style: italic; }
.manifesto .cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.4rem;
  margin-top: 3.6rem;
  text-align: left;
}
.manifesto .cols h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--crema); }
.manifesto .cols p { color: var(--nebbia); font-size: 0.98em; }
.manifesto .cols .n { display: block; color: var(--ottone); font-family: var(--sans); font-weight: 500; letter-spacing: 0.2em; font-size: 0.72rem; margin-bottom: 0.9rem; }

/* ---------- Divisore goccia ---------- */
.rule { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--linea-forte); }
.rule::before, .rule::after { content: ""; height: 1px; width: min(120px, 20vw); background: currentColor; }
.rule svg { width: 14px; height: 18px; color: var(--ottone); }

/* ---------- Signature ---------- */
.signature { background: var(--carbone); }
.sig-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.sig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: var(--linea);
  border: 1px solid var(--linea);
}
.sig-card {
  background: var(--carbone);
  padding: 2.2rem 1.9rem;
  transition: background 0.4s var(--ease);
  position: relative;
}
.sig-card:hover { background: var(--carbone-2); }
.sig-card .sig-tag { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ottone); }
.sig-card.is-best .sig-tag { color: var(--ottone-chiaro); }
.sig-card h3 { font-size: 1.75rem; margin: 0.7rem 0 0.6rem; }
.sig-card p { color: var(--nebbia); font-size: 0.94em; }

/* ---------- Cucina + menù ---------- */
.menu-wrap { display: grid; grid-template-columns: 1fr; gap: 3.5rem; margin-top: 3rem; }
.menu-col h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ottone);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--linea);
  margin-bottom: 1.2rem;
}
.menu-item { display: flex; align-items: baseline; gap: 0.9rem; padding: 0.55rem 0; }
.menu-item .mi-name { font-family: var(--serif); font-size: 1.18rem; color: var(--crema); white-space: normal; }
.menu-item .mi-name small { font-family: var(--sans); font-weight: 300; font-size: 0.72rem; letter-spacing: 0.02em; color: var(--nebbia); text-transform: none; white-space: normal; display: block; margin-top: 0.1rem; }
.menu-item .mi-dots { flex: 1; border-bottom: 1px dotted var(--linea-forte); transform: translateY(-4px); min-width: 1.5rem; }
.menu-item .mi-price { color: var(--ottone-chiaro); font-family: var(--sans); font-weight: 400; letter-spacing: 0.02em; white-space: nowrap; }
.menu-cats { margin-top: 3rem; }
.menu-cats .tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.menu-cats .tag {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crema);
  padding: 0.5em 1em;
  border: 1px solid var(--linea);
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.menu-cats .tag:hover { border-color: var(--ottone); color: var(--ottone-chiaro); }
.menu-note { color: var(--nebbia); font-size: 0.85rem; margin-top: 1.6rem; }

.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2.4rem 3.5rem; }

/* ---------- Galleria ---------- */
.gallery { background: var(--carbone); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(148px, 19vw, 216px);
  grid-auto-flow: dense;
  gap: 12px;
  margin-top: 3rem;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: linear-gradient(150deg, var(--carbone-2), var(--espresso));
  border: 1px solid var(--linea);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s var(--ease); }
.gal-item:hover img { transform: scale(1.06); }
.gal-item.feature { grid-column: span 2; grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }

/* ---------- Info ---------- */
.info-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); margin-top: 3rem; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: 0.8rem 0; border-bottom: 1px solid var(--linea); font-weight: 300; }
.hours th { font-family: var(--sans); font-weight: 400; letter-spacing: 0.04em; }
.hours td { color: var(--ottone-chiaro); text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.closed td { color: var(--rame); }
.hours tr.today th, .hours tr.today td { color: var(--crema); }
.hours tr.today th::after { content: "· oggi"; color: var(--ottone); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; margin-left: 0.6em; }

.contact-block { display: grid; gap: 1.6rem; align-content: start; }
.contact-item .ci-label { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ottone); }
.contact-item a, .contact-item p { color: var(--crema); text-decoration: none; font-size: 1.15rem; font-family: var(--serif); display: block; margin-top: 0.3rem; }
.contact-item a:hover { color: var(--ottone-chiaro); }
.socials { display: flex; gap: 1rem; }
.socials a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--linea); border-radius: 50%; color: var(--crema); transition: border-color 0.3s, color 0.3s, transform 0.3s; }
.socials a:hover { border-color: var(--ottone); color: var(--ottone-chiaro); transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; }

/* ---------- Footer ---------- */
.foot { border-top: 1px solid var(--linea); padding-block: 3.4rem; position: relative; z-index: 1; text-align: center; }
.foot .f-mark svg { width: 40px; height: 50px; color: var(--ottone); }
.hero-logo { margin: 0; line-height: 0; }
.hero-logo img { width: min(450px, 84vw); height: auto; display: block; filter: drop-shadow(0 4px 26px rgba(0, 0, 0, 0.5)); }
.f-logo { width: 210px; max-width: 62vw; height: auto; display: block; margin: 0 auto 1rem; opacity: 0.92; }
.foot .f-name { font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0.16em; text-transform: uppercase; margin: 0.8rem 0 0.3rem; }
.foot .f-sub { color: var(--nebbia); font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; }
.foot .f-legal { color: var(--nebbia); font-size: 0.76rem; margin-top: 2rem; opacity: 0.7; }

/* ============================================================
   Pagina MENÙ dedicata (menu.html)
   ============================================================ */
.menu-hero { padding-top: clamp(7rem, 9rem, 11rem); padding-bottom: clamp(1.5rem, 4vw, 3rem); text-align: center; }
.menu-back {
  display: inline-flex; align-items: center; gap: 0.5em;
  color: var(--nebbia); text-decoration: none;
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1.8rem; transition: color 0.25s;
}
.menu-back:hover { color: var(--ottone-chiaro); }
.menu-title { font-size: clamp(2.6rem, 1.4rem + 5vw, 5rem); text-transform: uppercase; letter-spacing: 0.02em; }
.menu-sub { color: var(--nebbia); max-width: 46ch; margin: 1rem auto 0; }

.menu-subnav {
  position: sticky; top: 0; z-index: 40;
  display: flex; justify-content: center; gap: clamp(1rem, 4vw, 3rem);
  padding: 1rem var(--gutter);
  background: rgba(18, 16, 14, 0.86);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-block: 1px solid var(--linea);
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-subnav::-webkit-scrollbar { display: none; }
.menu-subnav a {
  color: var(--crema); text-decoration: none; white-space: nowrap;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.78; transition: opacity 0.25s, color 0.25s;
}
.menu-subnav a:hover, .menu-subnav a.active { opacity: 1; color: var(--ottone-chiaro); }

.menu-section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.menu-cat-title {
  font-size: clamp(1.8rem, 1.1rem + 2.6vw, 2.8rem);
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
}
.menu-cat-title::after { content: ""; flex: 1; height: 1px; background: var(--linea); }

.menu-list { display: grid; gap: 0.2rem; max-width: 760px; }
.cocktail-item { display: grid; grid-template-columns: 1fr auto; gap: 0.2rem 1rem; padding: 1rem 0; border-bottom: 1px solid var(--linea); }
.cocktail-item .ci-name { font-family: var(--serif); font-size: 1.4rem; color: var(--crema); }
.cocktail-item .ci-badge { align-self: center; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: #1a140a; background: var(--ottone); padding: 0.3em 0.7em; border-radius: 2px; }
.cocktail-item .ci-badge.classic { color: var(--ottone-chiaro); background: transparent; border: 1px solid var(--linea-forte); }
.cocktail-item .ci-desc { grid-column: 1 / -1; color: var(--nebbia); font-size: 0.95rem; }

.vini-list { columns: 3 200px; column-gap: 2.5rem; }
.vini-list .vini-item { break-inside: avoid; padding: 0.6rem 0; border-bottom: 1px solid var(--linea); display: flex; align-items: baseline; justify-content: space-between; gap: 0.8rem; }
.vini-list .vini-item span { font-family: var(--serif); font-size: 1.12rem; color: var(--crema); }
.vini-list .vini-item i { color: var(--ottone); font-style: normal; font-size: 0.7rem; letter-spacing: 0.12em; }

/* Allergeni */
.mi-all { margin-left: 0.5em; font-family: var(--sans); font-weight: 500; font-size: 0.6rem; letter-spacing: 0.08em; color: var(--ottone); vertical-align: super; white-space: nowrap; }
.allergeni-legend { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 0.2rem 1.6rem; max-width: 760px; }
.all-item { display: flex; align-items: baseline; gap: 0.7em; color: var(--crema); font-size: 0.98rem; padding: 0.55rem 0; border-bottom: 1px solid var(--linea); }
.all-item b { color: var(--ottone); font-family: var(--sans); font-weight: 600; font-size: 0.78rem; min-width: 1.6em; text-align: right; }

/* Voce con dettaglio a tocco */
.menu-item.has-detail { cursor: pointer; }
.menu-item.has-detail:hover .mi-name, .menu-item.has-detail:focus-visible .mi-name { color: var(--ottone-chiaro); }
.menu-item.has-detail:focus-visible { outline: 1px solid var(--ottone); outline-offset: 3px; border-radius: 2px; }
.mi-prices { display: inline-flex; align-items: baseline; gap: 0.7rem; white-space: nowrap; }
.mi-glass { color: var(--nebbia); font-family: var(--sans); font-weight: 300; font-size: 0.8rem; }

/* Bevande in colonne */
.bev-cols { display: block; columns: 2 300px; column-gap: 3.5rem; }
.bev-cols .menu-col { break-inside: avoid; margin-bottom: 2.2rem; }
.bev-cols .mi-name { white-space: normal; }

/* Modale dettaglio */
.detail-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1.2rem; }
.detail-modal[hidden] { display: none; }
.dm-backdrop { position: absolute; inset: 0; background: rgba(8, 7, 6, 0.72); backdrop-filter: blur(4px); }
.dm-card { position: relative; z-index: 1; width: min(460px, 100%); max-height: 85vh; overflow-y: auto; background: var(--carbone); border: 1px solid var(--linea-forte); border-radius: 8px; padding: 2.2rem 2rem; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
.dm-close { position: absolute; top: 0.8rem; right: 1rem; background: none; border: 0; color: var(--nebbia); font-size: 1.7rem; line-height: 1; cursor: pointer; transition: color 0.2s; }
.dm-close:hover { color: var(--crema); }
.dm-name { font-family: var(--serif); font-size: 1.7rem; color: var(--crema); padding-right: 1.6rem; line-height: 1.1; }
.dm-price { color: var(--ottone-chiaro); font-family: var(--sans); margin-top: 0.5rem; }
.dm-desc { color: var(--nebbia); margin-top: 1.2rem; white-space: pre-line; line-height: 1.6; }
.dm-ing, .dm-all { margin-top: 1.3rem; color: var(--crema); font-size: 0.94rem; line-height: 1.7; }
.dm-all b { color: var(--ottone); }
.dm-label { display: block; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ottone); margin-bottom: 0.4rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    gap: 1.4rem;
    padding: 2rem var(--gutter) 2.4rem;
    background: rgba(18, 16, 14, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--linea);
  }
  .info-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item.wide { grid-column: span 2; }
}
@media (max-width: 520px) {
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { justify-content: center; }
  .menu-item .mi-name { white-space: normal; }
}
