/* ============================================================
   CAPRICCIO — Vineria Ristorante Pizzeria, Hamburg
   Design: "Dolce Vita Editorial" — Elfenbein-Papier, Nero,
   Chianti-Rot, Doppellinien-Motiv der Original-Speisekarte.
   ============================================================ */

@font-face {
  font-family: "Italiana";
  src: url("assets/fonts/capriccio-italiana-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant";
  src: url("assets/fonts/capriccio-cormorant-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant";
  src: url("assets/fonts/capriccio-cormorant-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("assets/fonts/capriccio-jost-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
}

@font-face {
  font-family: "Caveat";
  src: url("assets/fonts/capriccio-caveat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Monsieur La Doulaise";
  src: url("assets/fonts/capriccio-monsieur-la-doulaise-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --paper: #f4efe5;
  --paper-deep: #e9e0cf;
  --paper-card: #fcf8ef;
  --ink: #18130f;
  --ink-soft: #4a4136;
  --nero: #14100c;
  --nero-2: #211a14;
  --rosso: #a1262b;
  --rosso-bright: #ef8a83;
  --oliva: #5f6547;
  --oro: #6f592f;
  --line: rgba(28, 24, 19, 0.55);
  --line-faint: rgba(28, 24, 19, 0.16);

  --font-script: "Monsieur La Doulaise", cursive;
  --font-display: "Italiana", serif;
  --font-serif: "Cormorant", "Cormorant Garamond", serif;
  --font-ui: "Jost", "Futura", sans-serif;
  --font-hand: "Caveat", cursive;

  --wrap: min(1220px, 92vw);
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Papier-Korn über allem */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

::selection { background: var(--rosso); color: var(--paper); }

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

a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 4000;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--rosso);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

:focus-visible {
  outline: 3px solid var(--rosso);
  outline-offset: 4px;
}

body.menu-open { overflow: hidden; }

/* ---------- Typo-Bausteine ---------- */

.script { font-family: var(--font-script); font-weight: 400; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--rosso);
}

h1, h2, h3 { font-weight: 400; }

.h-display {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.h-section {
  font-family: var(--font-display);
  font-size: clamp(31px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lead {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Doppellinien-Motiv wie auf der Original-Karte */
.rule-double {
  height: 7px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  width: 130px;
}
.rule-double.center { margin-inline: auto; }
.on-dark .rule-double { border-color: rgba(243, 238, 228, 0.6); }

/* ---------- Topbar + Navigation ---------- */

.topbar {
  background: var(--nero);
  color: var(--paper);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
}
.topbar a { color: var(--paper); border-bottom: 1px solid rgba(243,238,228,0.4); }
.topbar .dot { color: var(--rosso-bright); margin: 0 10px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  /* kein backdrop-filter: er würde die Nav zum Containing Block des
     mobilen fixed-Overlays machen (Menü hinge sichtbar im Hero) */
  background: color-mix(in srgb, var(--paper) 97%, var(--ink));
  border-bottom: 1px solid var(--line-faint);
}
.nav-inner {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .script { font-size: 36px; color: var(--ink); }
.brand small {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--rosso);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active, .nav-links a[aria-current="page"] { color: var(--rosso); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  min-height: 48px;
  transition: background-color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn:disabled { cursor: not-allowed; opacity: 0.5; transform: none; }
.btn.solid { background: var(--rosso); border-color: var(--rosso); color: #fdfaf3; }
.btn.solid:hover { background: var(--ink); border-color: var(--ink); }
.btn.on-dark { border-color: rgba(243,238,228,0.7); color: var(--paper); }
.btn.on-dark:hover { background: var(--paper); color: var(--nero); }
.btn.small { padding: 10px 18px; font-size: 12px; }

.nav .btn { padding: 11px 22px; font-size: 12px; }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--ink);
  margin: 6px auto;
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: min(88vh, 920px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 40%;
  animation: kenburns 26s var(--ease-out) forwards;
}
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 48%, rgba(20,16,12,0.04) 0%, rgba(20,16,12,0.28) 58%, rgba(20,16,12,0.5) 100%),
    linear-gradient(180deg, rgba(20,16,12,0.6) 0%, rgba(20,16,12,0.24) 38%, rgba(20,16,12,0.82) 100%);
}
.hero-frame {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(244,239,229,0.42);
  pointer-events: none;
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(243,238,228,0.2);
}
.hero-inner { padding: 120px 20px; max-width: 900px; }
.hero .eyebrow { color: var(--paper); opacity: 0.85; }
.hero-script {
  font-family: var(--font-script);
  font-size: clamp(84px, 15vw, 190px);
  line-height: 0.9;
  margin: 10px 0 6px;
  text-shadow: 0 6px 42px rgba(0,0,0,0.42);
}
.hero-sub {
  font-family: var(--font-ui);
  font-size: clamp(12px, 1.6vw, 16px);
  letter-spacing: 0.55em;
  text-transform: uppercase;
  margin: 22px 0 14px;
}
.hero-claim {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px);
  opacity: 0.95;
  margin-top: 18px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }

.hero-badge {
  position: absolute;
  right: clamp(30px, 6vw, 70px);
  bottom: clamp(34px, 7vw, 80px);
  width: 148px; height: 148px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 5;
  animation: spin 26s linear infinite;
}
.hero-badge svg { position: absolute; inset: 0; overflow: visible; }
.hero-badge text {
  font-family: var(--font-ui);
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  fill: var(--paper);
}
.hero-badge .star {
  animation: spin-rev 26s linear infinite;
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--paper);
}
.hero-badge:hover .star { color: var(--rosso-bright); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-rev { to { transform: rotate(-360deg); } }

/* Ticker */
.ticker {
  background: var(--rosso);
  color: #f8f2e6;
  overflow: hidden;
  padding: 13px 0;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 36s linear infinite;
}
.ticker span {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 18px;
}
.ticker i { font-style: normal; font-family: var(--font-serif); padding-right: 36px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Sektionen ---------- */

section { position: relative; }
.wrap { width: var(--wrap); margin-inline: auto; }
.section-pad { padding: clamp(76px, 9.5vw, 136px) 0; }

.section-head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 70px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-head .rule-double { margin-top: 26px; }
.section-head.center .rule-double { margin-inline: auto; }

/* Benvenuti / Editorial Split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split-media { position: relative; }
.split-media .ph-main {
  width: 82%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: 0 30px 70px -30px rgba(28,24,19,0.5);
}
.split-media .ph-over {
  position: absolute;
  right: 0;
  bottom: -60px;
  width: 52%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border: 6px solid var(--paper);
  box-shadow: 0 26px 60px -24px rgba(28,24,19,0.55);
}
.split-media .script-note {
  position: absolute;
  top: -34px;
  right: 4%;
  font-family: var(--font-hand);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--rosso);
  transform: rotate(-5deg);
}
.split-copy p + p { margin-top: 20px; }
.split-copy .lead { margin-bottom: 24px; }

.host-sign {
  margin-top: 34px;
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.host-sign .script { font-size: 44px; color: var(--rosso); }
.host-sign small {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.stat-row {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-faint);
}
.stat {
  padding: 22px 18px 0 0;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 1;
}
.stat span {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Cucina-Karten ---------- */

.cucina { background: var(--paper-deep); }
.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.dish {
  background: var(--paper-card);
  border: 1px solid rgba(28,24,19,0.2);
  padding: 12px 12px 24px;
  box-shadow: 0 18px 40px -34px rgba(28,24,19,0.55);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.dish:hover { transform: translateY(-8px); box-shadow: 0 30px 50px -28px rgba(28,24,19,0.45); }
.dish:nth-child(even) { translate: 0 34px; }
.dish img { aspect-ratio: 3 / 3.6; object-fit: cover; filter: saturate(1.04); }
.dish:first-child img { object-position: center 66%; }
.dish:nth-child(4) img { object-position: center 66%; }
.dish h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  margin: 18px 14px 4px;
  line-height: 1.25;
}
.dish em {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 14px 12px;
}
.dish .price {
  margin: 0 14px;
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--rosso);
}
.cucina-cta { text-align: center; margin-top: 80px; }

/* ---------- Tagesempfehlung (Nero) ---------- */

.giorno {
  background: var(--nero);
  color: var(--paper);
  overflow: hidden;
}
.giorno::before {
  content: "Oggi";
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-script);
  font-size: clamp(180px, 30vw, 420px);
  color: rgba(243,238,228,0.045);
  pointer-events: none;
  line-height: 1;
}
.giorno .eyebrow { color: var(--rosso-bright); }
.giorno-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(243,238,228,0.16);
  border-bottom: 1px solid rgba(243,238,228,0.16);
}
.giorno-item {
  padding: 34px 30px;
  border-right: 1px solid rgba(243,238,228,0.16);
}
.giorno-item:last-child { border-right: 0; }
.giorno-item .hand {
  font-family: var(--font-hand);
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.25;
  color: #f6efdf;
}
.giorno-item .price {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-ui);
  letter-spacing: 0.18em;
  font-size: 14px;
  color: var(--rosso-bright);
}
.giorno-note {
  margin-top: 26px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  opacity: 0.75;
}
.giorno-status {
  grid-column: 1 / -1;
  padding: 34px 30px;
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.5;
}
.giorno-status a { border-bottom: 1px solid rgba(243,238,228,0.5); }

/* ---------- Senza Glutine ---------- */

.senza { background: var(--oliva); color: #f2f0e4; }
.senza .eyebrow { color: #e8dfc4; }
.senza-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(26px, 4vw, 54px);
  margin-top: 10px;
}
.senza-item { border-top: 1px solid rgba(242,240,228,0.35); padding-top: 22px; }
.senza-item .num {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.2em;
  opacity: 0.75;
}
.senza-item h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 10px 0 8px;
}
.senza-item p { font-size: 15.5px; opacity: 0.92; }

/* ---------- Stimmen ---------- */

.voci-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.voce {
  background: var(--paper-card);
  border: 1px solid rgba(28,24,19,0.2);
  padding: 44px 36px 34px;
  position: relative;
  box-shadow: 0 22px 55px -44px rgba(28,24,19,0.58);
}
.voce::before {
  content: "\201E";
  position: absolute;
  top: -6px;
  left: 18px;
  font-family: var(--font-serif);
  font-size: 90px;
  line-height: 1;
  color: var(--rosso);
}
.voce p {
  font-family: var(--font-serif);
  font-size: 19.5px;
  line-height: 1.55;
}
.voce footer {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.voce .stars { color: var(--rosso); letter-spacing: 3px; font-size: 13px; margin-bottom: 4px; }
.voci-src {
  text-align: center;
  margin-top: 34px;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}
.voci-src .btn { margin-top: 18px; letter-spacing: 0.16em; }

/* ---------- Galerie ---------- */

.galleria { background: var(--paper-deep); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 98px;
  gap: 12px;
}
.gal-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s;
}
.gal-grid a { overflow: hidden; display: block; }
.gal-grid a:hover img { transform: scale(1.05); filter: saturate(1.1); }
.g1 { grid-column: span 5; grid-row: span 4; }
.g2 { grid-column: span 4; grid-row: span 2; }
.g3 { grid-column: span 3; grid-row: span 2; }
.g4 { grid-column: span 3; grid-row: span 2; }
.g5 { grid-column: span 4; grid-row: span 2; }
.g6 { grid-column: span 7; grid-row: span 3; }
.g7 { grid-column: span 5; grid-row: span 3; }

/* ---------- A Casa Banner ---------- */

.acasa {
  background: var(--nero);
  color: var(--paper);
}
.acasa-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.acasa-media { position: relative; }
.acasa-media img {
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7);
}
.acasa-media .stamp {
  position: absolute;
  top: -28px; right: -20px;
  background: var(--rosso);
  color: #f8f2e6;
  font-family: var(--font-hand);
  font-size: 24px;
  padding: 12px 22px;
  transform: rotate(4deg);
  box-shadow: 0 16px 30px -12px rgba(0,0,0,0.5);
}
.acasa .eyebrow { color: var(--rosso-bright); }
.acasa p.lead { color: rgba(243,238,228,0.85); }
.acasa-points { list-style: none; margin: 28px 0 36px; }
.acasa-points li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(243,238,228,0.14);
  font-size: 15.5px;
  letter-spacing: 0.06em;
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.acasa-points li::before { content: "—"; color: var(--rosso-bright); }

/* ---------- Kontakt ---------- */

.contatto-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contatto-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: 0 34px 78px -34px rgba(28,24,19,0.58);
}
.orari { margin: 26px 0 30px; }
.orari-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-faint);
  font-size: 15.5px;
}
.orari-row b { font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; font-size: 13px; }
.orari-row .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.orari-row.closed span:last-child { color: var(--rosso); font-style: italic; font-family: var(--font-serif); font-size: 17px; }
.info-line { display: flex; gap: 12px; align-items: baseline; padding: 6px 0; font-size: 16px; }
.info-line b {
  font-weight: 400;
  min-width: 108px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contatto .btn { margin-top: 26px; margin-right: 12px; }
.maps-card {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding: 26px;
  background: var(--paper-card);
  border: 1px solid var(--line-faint);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.maps-card:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -34px rgba(28,24,19,0.55); }
.maps-card strong {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
}
.maps-card strong span { color: var(--rosso); font-family: var(--font-ui); font-size: 14px; letter-spacing: 0.12em; }
.maps-card > span:not(.eyebrow) { color: var(--ink-soft); font-size: 14px; }
.maps-card b { margin-top: 8px; color: var(--rosso); font-size: 12px; font-weight: 400; letter-spacing: 0.17em; text-transform: uppercase; }

/* ---------- Footer ---------- */

footer.site {
  background: var(--nero);
  color: var(--paper);
  padding: 70px 0 34px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(243,238,228,0.14);
}
.foot-brand .script { font-size: 56px; }
.foot-brand small {
  display: block;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 10px;
  opacity: 0.7;
  margin-top: 6px;
}
footer.site h4 {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rosso-bright);
  font-weight: 400;
  margin-bottom: 16px;
}
footer.site p, footer.site a { font-size: 15px; opacity: 0.9; line-height: 1.9; }
footer.site a:hover { color: var(--rosso-bright); }
.foot-base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  opacity: 0.65;
}
.foot-base a { border-bottom: 1px solid rgba(243,238,228,0.35); margin-right: 18px; }

/* ---------- Unterseiten: Kopf ---------- */

.page-head {
  background: var(--nero);
  color: var(--paper);
  text-align: center;
  padding: clamp(70px, 10vw, 120px) 20px clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: attr(data-word);
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  font-family: var(--font-script);
  font-size: clamp(150px, 28vw, 380px);
  color: rgba(243,238,228,0.05);
  white-space: nowrap;
  pointer-events: none;
}
.page-head .eyebrow { color: var(--rosso-bright); }
.page-head h1 { margin: 14px 0 18px; }
.page-head .lead { color: rgba(243,238,228,0.8); max-width: 640px; margin-inline: auto; }
.page-head .rule-double { margin: 26px auto 0; border-color: rgba(243,238,228,0.5); }

/* ---------- Speisekarte ---------- */

.menu-section { padding: clamp(56px, 8vw, 90px) 0 0; }
.menu-section:last-of-type { padding-bottom: clamp(70px, 9vw, 110px); }
.menu-head { text-align: center; margin-bottom: 40px; }
.menu-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.menu-head .it {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--rosso);
}
.menu-head .note {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 16.5px;
  margin-top: 6px;
}
.menu-head .rule-double { margin: 20px auto 0; }

.menu-cols {
  columns: 2;
  column-gap: clamp(50px, 6vw, 90px);
  max-width: 1020px;
  margin-inline: auto;
}
.menu-cols.single { columns: 1; max-width: 720px; }
.menu-item {
  break-inside: avoid;
  padding: 13px 0;
}
.menu-item .row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.menu-item .name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
}
.menu-item .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-5px); min-width: 24px; }
.menu-item .price {
  font-family: var(--font-ui);
  font-size: 15.5px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.menu-item .it {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15.5px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.menu-item .tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oliva);
  border: 1px solid color-mix(in srgb, var(--oliva) 45%, transparent);
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: 2px;
}
.menu-item .allergens {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.menu-note-block {
  max-width: 720px;
  margin: 44px auto 0;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16.5px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line-faint);
  padding-top: 24px;
}
.menu-note-block a,
.legal a { border-bottom: 1px solid currentColor; }

/* Aperitivo-Band */
.aperitivo { background: var(--nero); color: var(--paper); margin-top: clamp(60px, 9vw, 100px); }
.aperitivo .eyebrow { color: var(--rosso-bright); }
.apero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(243,238,228,0.16);
}
.apero {
  padding: 30px 26px 34px;
  border-right: 1px solid rgba(243,238,228,0.16);
}
.apero:last-child { border-right: 0; }
.apero h3 { font-family: var(--font-display); font-size: 21px; text-transform: uppercase; letter-spacing: 0.06em; }
.apero p { font-family: var(--font-serif); font-style: italic; font-size: 15.5px; opacity: 0.8; margin: 8px 0 16px; }
.apero .price { color: var(--rosso-bright); font-size: 15px; letter-spacing: 0.12em; }

/* Wein-Karten */
.vini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.vino {
  border: 1px solid var(--line-faint);
  background: var(--paper-card);
  padding: 34px 30px;
  text-align: center;
}
.vino .region {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--oro);
}
.vino h3 { font-family: var(--font-display); font-size: 26px; text-transform: uppercase; margin: 10px 0 4px; }
.vino em { font-family: var(--font-serif); font-size: 15.5px; color: var(--ink-soft); display: block; margin-bottom: 18px; }
.vino .sizes {
  display: flex;
  justify-content: center;
  gap: 26px;
  border-top: 1px solid var(--line-faint);
  padding-top: 16px;
  font-size: 15px;
  letter-spacing: 0.06em;
}
.vino .sizes b { font-weight: 400; color: var(--rosso); }

/* ---------- Lieferservice ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 50px);
}
.step { border-top: 1px solid var(--line); padding-top: 22px; position: relative; }
.step .num {
  font-family: var(--font-script);
  font-size: 58px;
  color: var(--rosso);
  line-height: 1;
}
.step h3 { font-family: var(--font-serif); font-size: 23px; margin: 12px 0 8px; }
.step p { font-size: 15.5px; color: var(--ink-soft); }

.order-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.order-cat { margin-bottom: 34px; }
.order-cat h3 {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.order-cat h3 em { font-family: var(--font-serif); font-size: 15px; color: var(--rosso); letter-spacing: 0; text-transform: none; }
.order-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-faint);
}
.order-item .n { font-family: var(--font-serif); font-size: 18.5px; font-weight: 500; }
.order-item .i { font-family: var(--font-serif); font-style: italic; font-size: 14.5px; color: var(--ink-soft); }
.order-item .p { font-size: 14.5px; letter-spacing: 0.06em; white-space: nowrap; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.qty button {
  width: 44px; height: 44px;
  background: none;
  border: none;
  font-family: var(--font-ui);
  font-size: 17px;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.25s;
}
.qty button:hover { background: var(--ink); color: var(--paper); }
.qty button:disabled { cursor: not-allowed; opacity: 0.42; background: transparent; color: var(--ink); }
.qty output {
  width: 42px;
  text-align: center;
  font-size: 15px;
  border-inline: 1px solid var(--line-faint);
  line-height: 44px;
}

.cart {
  position: sticky;
  top: 120px;
  background: var(--nero);
  color: var(--paper);
  padding: 34px 30px;
}
.cart h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.06em;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cart h3 .script { font-size: 30px; color: var(--rosso-bright); text-transform: none; }
.cart-lines { margin: 20px 0; min-height: 60px; }
.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(243,238,228,0.14);
  font-size: 14.5px;
}
.cart-line .q { color: var(--rosso-bright); min-width: 30px; }
.cart-line .nm { flex: 1; font-family: var(--font-serif); font-size: 16px; }
.cart-empty { font-family: var(--font-serif); font-style: italic; opacity: 0.65; padding: 12px 0 4px; }
.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 14px 0 4px;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cart-total b { font-family: var(--font-display); font-size: 24px; font-weight: 400; }
.cart .btn { width: 100%; margin-top: 14px; }
.cart-hint { font-size: 12.5px; opacity: 0.65; margin-top: 14px; line-height: 1.6; }
.order-note {
  margin-top: 22px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15.5px;
}

/* Copy-Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 26px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-out);
  z-index: 3000;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 760px; margin-inline: auto; padding: clamp(60px, 8vw, 90px) 20px; }
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 7vw, 40px);
  line-height: 1.08;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  margin-bottom: 30px;
}
.legal h2 { font-family: var(--font-serif); font-size: 24px; margin: 34px 0 10px; }
.legal p { margin: 10px 0; color: var(--ink-soft); }
.legal .ph { background: rgba(169,42,46,0.08); border: 1px dashed var(--rosso); padding: 2px 8px; color: var(--rosso); }

/* ---------- Reveals ---------- */
.reveal { opacity: 1; transform: none; }
.has-js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.68s var(--ease-out), transform 0.68s var(--ease-out); }
.has-js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.06s; }
.reveal.d2 { transition-delay: 0.12s; }
.reveal.d3 { transition-delay: 0.18s; }
.reveal.d4 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg, .ticker-track, .hero-badge, .hero-badge .star { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .dish:nth-child(even) { translate: 0 0; }
  .giorno-grid, .senza-grid, .voci-grid, .vini-grid { grid-template-columns: 1fr 1fr; }
  .apero-grid { grid-template-columns: 1fr 1fr; }
  .apero:nth-child(2) { border-right: 0; }
  .apero:nth-child(-n+2) { border-bottom: 1px solid rgba(243,238,228,0.16); }
  .giorno-item:nth-child(3) { border-top: 1px solid rgba(243,238,228,0.16); }
  .giorno-item:nth-child(2) { border-right: 0; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    font-size: 18px;
    transform: translateY(-102%);
    visibility: hidden;
    transition: transform 0.5s var(--ease-out), visibility 0s 0.5s;
    z-index: 1000;
  }
  .nav-links.open {
    transform: none;
    visibility: visible;
    transition: transform 0.5s var(--ease-out);
  }
  .nav-links.simple-nav {
    position: static;
    inset: auto;
    flex-direction: row;
    justify-content: flex-end;
    gap: 0;
    background: transparent;
    transform: none;
    visibility: visible;
    transition: none;
  }
  .nav-links a { font-size: 16px; }
  .nav-links.simple-nav a { font-size: 11px; letter-spacing: 0.14em; }
  .burger { display: block; }
  .nav .btn.reserve { display: none; }
  .split, .acasa-grid, .contatto-grid, .order-layout { grid-template-columns: 1fr; }
  .split-media { margin-bottom: 50px; }
  .menu-cols { columns: 1; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .gal-grid { grid-auto-rows: 70px; }
  .g1 { grid-column: span 12; grid-row: span 3; }
  .g2, .g3, .g4, .g5 { grid-column: span 6; grid-row: span 2; }
  .g6, .g7 { grid-column: span 12; grid-row: span 3; }
  .cart { position: static; }
  .hero-badge { display: none; }
  .nav-inner { padding: 12px 0; }
  .burger { width: 44px; height: 44px; }
}

@media (max-width: 560px) {
  .giorno-grid, .senza-grid, .voci-grid, .vini-grid, .steps-grid, .apero-grid, .dish-grid { grid-template-columns: 1fr; }
  .giorno-item, .apero { border-right: 0; border-bottom: 1px solid rgba(243,238,228,0.16); }
  .host-sign { flex-direction: column; align-items: flex-start; gap: 2px; }
  .host-sign .script { white-space: nowrap; font-size: 40px; line-height: 1.12; }
  .host-sign small { margin-top: 3px; }
  .stat-row { grid-template-columns: repeat(3, 1fr); }
  .stat { padding-right: 8px; }
  .stat b { font-size: 30px; }
  .stat span { font-size: 9.5px; letter-spacing: 0.12em; }
  .section-pad { padding: 68px 0; }
  .section-head { margin-bottom: 42px; }
  .hero-inner { padding: 76px 14px; }
  .hero-frame { inset: 12px; }
  .hero-frame::after { inset: 5px; }
  .hero-script { font-size: clamp(78px, 25vw, 102px); }
  .hero-sub { letter-spacing: 0.38em; }
  .hero-claim { max-width: 320px; margin-inline: auto; }
  .topbar { font-size: 11px; line-height: 1.45; padding: 8px 10px; }
  .brand .script { font-size: 34px; }
  .brand small { font-size: 9.5px; letter-spacing: 0.34em; }
  .split-media { margin-bottom: 84px; }
  .split-media .ph-main { width: 100%; }
  .split-media .ph-over { bottom: -52px; width: 58%; }
  .split-media .script-note { top: -40px; right: 0; }
  .hero { min-height: 88svh; }
  .hero-ctas .btn { padding: 14px 22px; font-size: 12px; }
  .acasa-media .stamp { right: 0; font-size: 20px; }
  .order-item { grid-template-columns: 1fr auto; }
  .order-item .p { grid-column: 1; }
  .order-item .qty { grid-row: 1 / span 2; align-self: center; }
  .contatto .btn { margin-right: 0; width: 100%; }
  .info-line { flex-direction: column; gap: 2px; }
  .foot-base { flex-direction: column; gap: 10px; }
  .foot-base a { margin-right: 12px; }
  .tages-blatt { padding: 34px 20px; }
  .print-actions .btn { width: 100%; margin: 6px 0 !important; }
  .gal-grid { gap: 8px; grid-auto-rows: 64px; }
  .voce { padding: 38px 28px 30px; }
  footer.site { padding-top: 58px; }
}
