/* Casa Bellucci — Sizilianische Sommerterrasse */

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--rot, 0deg)); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes stamp-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@font-face {
  font-family: "Billion Miracles";
  src: url("../fonts/BillionMiracles.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Base tokens (warm Sicilian sandstone palette) */
  --bg: #FFF9F0;
  --surface: #FAF3E5;
  --surface-2: #F4E9D2;
  --sandstone: #E8D5B7;
  --ink: #2B1F12;
  --ink-2: #4A3826;
  --ink-muted: #7A6852;
  --border: #E2D4BC;
  --hair: #D6C5A8;

  /* Accent — overridden by tweak */
  --accent: #E0B92E;        /* lemon-deep */
  --accent-2: #F4D03F;      /* lemon */
  --accent-ink: #2B1F12;    /* text on accent */
  --accent-soft: #FFF4C9;   /* tinted bg */

  /* Type — overridden by tweak */
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Montserrat", Arial, sans-serif;
  --font-script: "Allura", cursive;
  --font-logo-script: "Billion Miracles", "Allura", cursive;
  --font-mono: "Montserrat", Arial, sans-serif;

  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 22px;

  --shadow-soft: 0 10px 30px -18px rgba(60, 40, 18, 0.25);
  --shadow-warm: 0 30px 60px -30px rgba(120, 70, 20, 0.35);

  /* Glas-Divs (Foto-Overlay-Glasflaechen) — ZENTRALE OPTIK / SINGLE SOURCE OF TRUTH.
     Hier einmal aendern -> ALLE Glas-Overlays auf Bildern aendern sich mit.
     Referenz: das Hero-Glas-Panel (.image-hero-copy auf Tablet/Mobile).
     Angewendet in der zentralen .glass-Regel am ENDE von vivid.css.
     Material kommt NUR von hier; Groesse/Position/Padding bleibt pro Element. */
  --glass-bg:
    radial-gradient(circle at 78% 0%, rgba(231, 187, 72, 0.10), transparent 40%),
    rgba(255, 250, 241, 0.42);
  --glass-blur: blur(2px);
  --glass-border: 1px solid rgba(255, 255, 255, 0.72);
  --glass-radius: 6px; /* identisch zum weissen Deko-Rahmen (::before, 6px) */
  --glass-shadow: 0 24px 64px -36px rgba(62, 39, 18, 0.42);
}

/* Accent palettes */
[data-accent="lemon"] {
  --accent: #E0B92E;
  --accent-2: #F4D03F;
  --accent-ink: #2B1F12;
  --accent-soft: #FFF4C9;
}
[data-accent="terracotta"] {
  --accent: #B96A4D;
  --accent-2: #D88565;
  --accent-ink: #FFF9F0;
  --accent-soft: #F7DDD0;
}
[data-accent="medblue"] {
  --accent: #1B4F72;
  --accent-2: #2F6B92;
  --accent-ink: #FFF9F0;
  --accent-soft: #D5E2EC;
}

/* Font pairings */
[data-font="classic"] {
  --font-display: "Playfair Display", serif;
  --font-body: "Montserrat", Arial, sans-serif;
}
[data-font="modern"] {
  --font-display: "Playfair Display", serif;
  --font-body: "Montserrat", Arial, sans-serif;
}
[data-font="couture"] {
  --font-display: "Playfair Display", serif;
  --font-body: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ------- Typography helpers ------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 0.98;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.script {
  font-family: var(--font-script);
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--accent);
  font-style: italic;
  line-height: 1;
}
.lede {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 56ch;
}

/* ------- Layout helpers ------- */
.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.wrap-tight {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
section {
  padding: 120px 0;
  position: relative;
}
.section-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.section-eyebrow::before {
  display: none;
}

/* ------- Buttons — Typographic Style ------- */
.btn {
  display: inline-flex;
  align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 4px;
  border-radius: 0;
  background: none;
  border: none;
  position: relative;
  overflow: visible;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.btn .arrow-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn:hover .arrow-icon {
  transform: translateX(3px);
}
.btn-primary {
  color: var(--ink);
}
.btn-primary::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn-primary:hover { color: var(--accent); }
.btn-primary:hover::after {
  transform: scaleX(1);
}
.btn-ghost {
  color: var(--ink-muted);
  font-weight: 500;
}
.btn-ghost::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn-ghost:hover { color: var(--ink); }
.btn-ghost:hover::after {
  transform: scaleX(1);
}
.btn-dark {
  color: var(--bg);
}
.btn-dark::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn-dark:hover { color: var(--accent-2); }
.btn-dark:hover::after {
  transform: scaleX(1);
}

/* ------- Header ------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 210;
  padding: 22px 0;
  transition: background .45s ease, padding .35s ease, box-shadow .35s ease, color .35s ease;
  color: #FFF9F0;
}
.site-header .nav-links a { color: rgba(255,249,240,0.85); }
.site-header .nav-links a:hover { color: #FFF9F0; }
.site-header .nav-links a::after { background: var(--accent-2); }
.site-header .lang-switch button { color: rgba(255,249,240,0.5); }
.site-header .lang-switch button.active { color: #FFF9F0; }
.site-header .lang-switch .sep { color: rgba(255,249,240,0.3); }
.site-header .brand { color: #FFF9F0; }
@media (min-width: 881px) {
  .site-header:not(.is-scrolled) .brand .bellucci { color: #FFF9F0; }
}
.site-header .burger { color: #FFF9F0; }
.site-header.is-scrolled .burger { color: var(--ink); }

.site-header.is-scrolled {
  background: rgba(255, 249, 240, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
  color: var(--ink);
}
.site-header.is-scrolled .nav-links a { color: var(--ink-muted); }
.site-header.is-scrolled .nav-links a:hover { color: var(--ink); }
.site-header.is-scrolled .nav-links a::after { background: var(--accent); }
.site-header.is-scrolled .lang-switch button { color: var(--ink-muted); }
.site-header.is-scrolled .lang-switch button.active { color: var(--ink); }
.site-header.is-scrolled .lang-switch .sep { color: var(--ink-muted); }
.site-header.is-scrolled .brand { color: var(--ink); }
.site-header.is-scrolled .burger { color: var(--ink); }

/* When mobile nav A is open, burger must be visible above dark overlay */
.site-header:has(.burger.is-open) {
  background: transparent !important;
  box-shadow: none !important;
}
.site-header:has(.burger.is-open) .burger { color: #FFF9F0 !important; }
.site-header:has(.burger.is-open) .brand,
.site-header:has(.burger.is-open) > .wrap > a > .flag-bar { opacity: 0; visibility: hidden; transition: opacity 0.25s ease; }

/* Header CTA — light on hero, transitions on scroll */
.site-header .btn.header-cta {
  color: #FFF9F0;
  transition: all 0.35s ease;
}
.site-header .btn.header-cta::after {
  background: var(--accent-2);
}
.site-header .btn.header-cta:hover { color: var(--accent-2); }
.site-header.is-scrolled .btn.header-cta {
  color: var(--ink);
}
.site-header.is-scrolled .btn.header-cta::after {
  background: var(--accent);
}
.site-header.is-scrolled .btn.header-cta:hover { color: var(--accent); }
.site-header .row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.brand {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.01em;
  display: flex; align-items: baseline; gap: 6px;
}
.brand .first { font-style: italic; font-weight: 400; }
.brand .last { font-weight: 600; }
.nav-links {
  display: flex; gap: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.header-right { display: flex; align-items: center; gap: 18px; }
.lang-switch {
  display: flex; gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.lang-switch button { padding: 4px 6px; opacity: 0.55; transition: opacity .2s; }
.lang-switch button.active { opacity: 1; color: var(--ink); font-weight: 600; }
.lang-switch button:hover { opacity: 1; }
.lang-switch .sep { opacity: 0.4; }

.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  position: relative;
  z-index: 201;
}
.burger span {
  position: relative;
  width: 22px; height: 2px; background: currentColor;
  display: block;
  transition: background 0.2s ease 0.15s;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 2px; background: currentColor;
  transition: top 0.2s ease 0.15s, bottom 0.2s ease 0.15s, transform 0.2s ease;
}
.burger span::before { top: -7px; }
.burger span::after { bottom: -7px; }
/* Animated X state */
.burger.is-open span { background: transparent; transition-delay: 0s; }
.burger.is-open span::before {
  top: 0;
  transform: rotate(45deg);
  transition: top 0.2s ease, transform 0.2s ease 0.15s;
}
.burger.is-open span::after {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 0.2s ease, transform 0.2s ease 0.15s;
}

@media (max-width: 880px) {
  .nav-links, .lang-switch { display: none; }
  .burger { display: inline-flex; }
}

/* =========================================
   MOBILE NAV — OPTION A: Full-Screen Overlay
   ========================================= */
.mobile-nav-a {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; flex-direction: column;
  justify-content: flex-start;
  background: var(--ink);
  color: #FFF9F0;
  padding: 90px 32px 32px;
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path 0.65s cubic-bezier(0.65, 0, 0.35, 1);
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
}
.mobile-nav-a.open {
  clip-path: circle(150% at calc(100% - 40px) 40px);
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav-a .nav-items {
  display: flex; flex-direction: column; gap: 0;
}
.mobile-nav-a .nav-item {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,249,240,0.08);
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.25s ease;
  color: rgba(255,249,240,0.85);
  text-decoration: none;
}
.mobile-nav-a.open .nav-item {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav-a.open .nav-item:nth-child(1) { transition-delay: 0.2s; }
.mobile-nav-a.open .nav-item:nth-child(2) { transition-delay: 0.26s; }
.mobile-nav-a.open .nav-item:nth-child(3) { transition-delay: 0.32s; }
.mobile-nav-a.open .nav-item:nth-child(4) { transition-delay: 0.38s; }
.mobile-nav-a.open .nav-item:nth-child(5) { transition-delay: 0.44s; }
.mobile-nav-a.open .nav-item:nth-child(6) { transition-delay: 0.5s; }
.mobile-nav-a .nav-item:hover { color: var(--accent-2); }
.mobile-nav-a .nav-item .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  opacity: 0.7;
  min-width: 28px;
}
.mobile-lang-switch {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
}
.mobile-nav-a.open .mobile-lang-switch {
  opacity: 1;
  transform: translateY(0);
}
.mobile-lang-switch button {
  width: 44px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,249,240,0.28);
  background: rgba(255,249,240,0.06);
  color: rgba(255,249,240,0.72);
  font: 600 12px/1 var(--font-body);
  letter-spacing: 0;
  transition: border-color .2s, background .2s, color .2s;
}
.mobile-lang-switch button.active {
  border-color: rgba(255,249,240,0.8);
  background: rgba(255,249,240,0.18);
  color: #FFF9F0;
}
.mobile-lang-switch button:focus-visible {
  outline: 2px solid #FFF9F0;
  outline-offset: 3px;
}
.mobile-nav-a .nav-cta {
  margin-top: 28px;
  display: flex;
  align-items: center; justify-content: space-between; gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 18px 0 14px;
  border-bottom: 2px solid var(--accent-2);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease 0.55s, transform 0.4s ease 0.55s, color 0.25s ease;
  text-decoration: none;
  width: 100%;
  max-width: 480px;
}
.mobile-nav-a.open .nav-cta {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav-a .nav-cta:hover { color: #FFF9F0; }
.mobile-nav-a .nav-meta {
  margin-top: 20px;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,249,240,0.42);
  display: flex; flex-direction: row; flex-wrap: wrap;
  gap: 6px 18px;
  opacity: 0;
  transition: opacity 0.4s ease 0.6s;
}
.mobile-nav-a .nav-meta span { position: relative; }
.mobile-nav-a .nav-meta span + span::before {
  content: "·";
  position: absolute;
  left: -12px;
  color: rgba(255,249,240,0.28);
}
.mobile-nav-a.open .nav-meta { opacity: 1; }
.mobile-nav-a .close-btn {
  position: absolute;
  top: 22px; right: 22px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,249,240,0.6);
  font-size: 24px;
  z-index: 2;
  transition: color 0.25s ease, transform 0.25s ease;
}
.mobile-nav-a .close-btn:hover { color: #FFF9F0; transform: rotate(90deg); }

@media (min-width: 881px) {
  .mobile-nav-a { display: none !important; }
}

/* ------- HERO ------- */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

/* V1 Editorial */
.hero-v1 .grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-v1 h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 138px);
  margin: 22px 0 8px;
  line-height: 0.92;
  font-weight: 500;
}
.hero-v1 h1 .it { font-style: italic; font-weight: 400; }
.hero-v1 .sub-script {
  font-family: var(--font-script);
  font-size: clamp(32px, 4vw, 56px);
  color: var(--accent);
  display: block;
  margin: -12px 0 22px 12px;
  transform: rotate(-3deg);
  transform-origin: left center;
}
.hero-v1 .tag {
  max-width: 38ch;
  margin: 28px 0 32px;
  font-size: 20px;
  color: var(--ink-2);
}
.hero-v1 .cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-v1 .meta-row {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; gap: 40px; flex-wrap: wrap;
}
.hero-v1 .meta-row .item { display: flex; flex-direction: column; gap: 4px; }
.hero-v1 .meta-row .k {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.hero-v1 .meta-row .v { font-family: var(--font-display); font-size: 17px; }
.hero-v1 .img-stack {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}
.hero-v1 .img-stack img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-v1 .badge {
  position: absolute;
  top: -28px; right: -28px;
  width: 132px; height: 132px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.4;
  font-weight: 500;
  transform: rotate(8deg);
  z-index: 2;
  box-shadow: var(--shadow-warm);
}

/* ------- About / Story ------- */
.about {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 500;
  margin: 16px 0 18px;
  line-height: 0.98;
}
.about h2 .it { font-style: italic; font-weight: 400; }
.about p { font-size: 16px; color: var(--ink-2); margin: 0 0 16px; }
.about .signature {
  margin-top: 32px;
  display: flex; align-items: center; gap: 18px;
}
.about .signature .script {
  font-family: var(--font-script);
  color: var(--accent);
  font-size: 38px;
  line-height: 1;
}
.about .signature .who {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.about .img-col {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}
.about .img-col img { width: 100%; height: 100%; object-fit: cover; }
.about .stat-strip {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about .stat {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.about .stat:last-child { border-right: 0; }
.about .stat .n {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}
.about .stat .l {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 6px;
}

/* ------- All-Day Concept ------- */
.all-day {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,249,240,0.98) 0%, rgba(250,241,229,0.96) 100%);
  border-top: 0;
}
.all-day::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43,31,18,0.18), transparent);
}
.all-day-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}
.all-day-copy {
  max-width: 620px;
}
.all-day h2 {
  max-width: 9ch;
  margin-top: 14px;
  font-size: clamp(36px, 4.4vw, 60px);
}
.all-day-copy > p {
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.55;
}
.dayline {
  margin-top: 42px;
  border-top: 1px solid rgba(43,31,18,0.16);
}
.day-moment {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  column-gap: 28px;
  padding: 26px 0 24px;
  border-bottom: 1px solid rgba(43,31,18,0.13);
}
.day-moment:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.day-moment::before {
  content: "";
  position: absolute;
  left: 118px;
  top: -1px;
  width: 38px;
  height: 1px;
  background: var(--accent);
  transform: translateX(28px);
}
.moment-time {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 8px;
}
.day-moment h3 {
  font-family: var(--font-display);
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 500;
  line-height: 1.04;
  margin: 0 0 8px;
}
.day-moment p {
  grid-column: 2;
  margin: 0;
  max-width: 40ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}
.all-day-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0.95fr 1.05fr;
  gap: 16px;
  height: clamp(520px, 42vw, 660px);
}
.all-day-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(43,31,18,0.14);
}
.all-day-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.all-day-photo.morning {
  grid-column: 1;
  grid-row: 1;
}
.all-day-photo.midday {
  grid-column: 2;
  grid-row: 1;
}
.all-day-photo.evening {
  grid-column: 1 / -1;
  grid-row: 2;
}
.all-day-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,249,240,0.86);
  text-shadow: 0 1px 14px rgba(0,0,0,0.38);
}

/* ------- Menu ------- */
.menu h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 500;
  margin: 12px 0 8px;
  line-height: 0.95;
}
.menu h2 .it { font-style: italic; font-weight: 400; }
.menu .top {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
  margin-bottom: 48px;
}
.menu .top .lede { max-width: 38ch; }
.menu .tabs {
  display: flex; gap: 4px;
  padding: 6px;
  background: var(--surface);
  border-radius: 999px;
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.menu .tab {
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
  transition: all .2s;
  white-space: nowrap;
}
.menu .tab.active {
  background: var(--ink);
  color: var(--bg);
}
.menu .tab:hover:not(.active) { color: var(--ink); }
.menu .grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 36px;
}
.menu .dishes { display: flex; flex-direction: column; gap: 0; }
.menu .dish {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px dashed var(--hair);
  align-items: baseline;
}
.menu .dish:last-child { border-bottom: 0; }
.menu .dish .name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
}
.menu .dish .name .it { font-style: italic; font-weight: 400; }
.menu .dish .desc {
  font-size: 16px;
  color: var(--ink-muted);
  margin-top: 4px;
  max-width: 48ch;
}
.menu .dish .price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.menu .dish .price::before { content: "€ "; }
.menu .dish.signature::before {
  content: "Signature";
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 8px; border-radius: 4px;
  display: inline-block;
  width: max-content;
  grid-column: 1 / -1;
  margin-bottom: 2px;
}
.menu .panel {
  position: sticky; top: 110px;
  display: flex; flex-direction: column; gap: 20px;
}
.menu .panel .img {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sandstone);
}
.menu .panel .img img { width: 100%; height: 100%; object-fit: cover; }
.menu .panel .note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.menu .panel .note h4 {
  font-family: var(--font-display);
  font-size: 22px; margin: 0 0 8px;
  font-weight: 500;
}
.menu .panel .note p { font-size: 16px; color: var(--ink-muted); margin: 0 0 14px; }
.menu .panel .download {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid var(--ink);
  width: max-content;
}

/* ------- Signature Moments ------- */
.signature-menu {
  background:
    radial-gradient(ellipse at 80% 18%, rgba(244,208,63,0.12), transparent 38%),
    linear-gradient(180deg, rgba(255,249,240,1) 0%, rgba(248,237,222,0.96) 100%);
  overflow: hidden;
}
.signature-menu-head {
  max-width: 620px;
  margin-bottom: clamp(42px, 6vw, 76px);
}
.signature-menu-title h2 {
  /* Maximal so breit wie der Intro-Absatz darunter (dessen max-width: 50ch ~ 530px),
     damit Headline und Fliesstext links buendig dieselbe Spaltenbreite teilen. */
  max-width: 530px;
}
.signature-menu-head > p {
  max-width: 50ch;
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}
.signature-menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: stretch;
}
.signature-menu-hero {
  position: relative;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--sandstone);
  box-shadow: 0 28px 90px rgba(43,31,18,0.16);
}
.signature-menu-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(43,31,18,0.62) 100%),
    linear-gradient(90deg, rgba(43,31,18,0.18), transparent 45%);
}
.signature-menu-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.signature-menu-hero:hover img {
  transform: scale(1.06);
}
.signature-menu-hero figcaption {
  position: absolute;
  left: clamp(22px, 3vw, 38px);
  bottom: clamp(22px, 3vw, 36px);
  z-index: 2;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 0.98;
  color: rgba(255,249,240,0.96);
}
.signature-menu-hero figcaption span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.signature-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(43,31,18,0.16);
}
.signature-item {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(43,31,18,0.14);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s ease;
}
.signature-item:hover {
  background: rgba(244,208,63,0.08);
}
.signature-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.signature-item h3 {
  margin: 0 0 5px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.03;
  font-weight: 500;
}
.signature-item p {
  margin: 0;
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
}
.signature-open {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
  transition: color 0.25s ease, transform 0.25s ease;
}
.signature-item:hover .signature-open {
  color: var(--accent);
  transform: translateX(4px);
}
.signature-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 22px;
}
.menu-viewer {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(31,20,12,0.72);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s ease, -webkit-backdrop-filter 0.34s ease, backdrop-filter 0.34s ease;
}
.menu-viewer.open {
  opacity: 1;
  pointer-events: auto;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.menu-viewer-card {
  position: relative;
  width: min(900px, 100%);
  height: min(880px, calc(100dvh - 36px));
  display: flex;
  flex-direction: column;
  background: #FFF9F0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 44px 120px rgba(0,0,0,0.38);
  transform: translateY(26px) scale(0.97);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.menu-viewer.open .menu-viewer-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.menu-viewer-head {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 18px);
  padding: 14px clamp(16px, 2.4vw, 22px);
  border-bottom: 1px solid rgba(43,31,18,0.10);
  background: linear-gradient(180deg, #FFFCF6 0%, rgba(255,249,240,0.96) 100%);
}
.menu-viewer-eyebrow {
  flex: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-right: clamp(10px, 1.6vw, 18px);
  border-right: 1px solid rgba(43,31,18,0.12);
}
.menu-viewer-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}
.menu-viewer-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(43,31,18,0.16);
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.menu-viewer-tab:hover {
  background: rgba(43,31,18,0.05);
  border-color: rgba(43,31,18,0.28);
}
.menu-viewer-tab.is-active {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  box-shadow: 0 6px 16px rgba(224,185,46,0.32);
}
.menu-viewer-frame {
  flex: 1;
  width: 100%;
  min-height: 0;
  border: 0;
  background: var(--sandstone);
}
.menu-viewer-fallback {
  padding: 12px clamp(18px, 2.5vw, 24px);
  border-top: 1px solid rgba(43,31,18,0.12);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.menu-viewer-fallback a {
  color: var(--ink-2);
  text-decoration: none;
}
.menu-viewer-fallback a:hover {
  color: var(--accent);
}
.menu-viewer-close {
  flex: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(43,31,18,0.16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease, transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-viewer-close:hover {
  background: var(--ink);
  color: #FFF9F0;
  border-color: var(--ink);
  transform: rotate(90deg);
}
.menu-viewer-close svg {
  display: block;
}
@media (max-width: 640px) {
  .menu-viewer-card {
    height: calc(100dvh - 18px);
    width: 100%;
    border-radius: 12px;
  }
  .menu-viewer-head {
    gap: 10px;
    padding: 12px 14px;
  }
  .menu-viewer-eyebrow {
    display: none;
  }
  .menu-viewer-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .menu-viewer-tab {
    font-size: 10px;
    padding: 9px 12px;
    letter-spacing: 0.12em;
    text-align: center;
  }
}

/* ------- Terrasse ------- */
.terrace {
  padding: 0;
  background:
    radial-gradient(circle at 78% 10%, rgba(245,195,72,0.28), transparent 32%),
    radial-gradient(circle at 12% 64%, rgba(214,156,44,0.18), transparent 34%),
    linear-gradient(135deg, #FFF9F0 0%, #F5E7B8 44%, #D8A83F 100%);
  color: var(--ink);
  overflow: hidden;
}
.terrace-stage {
  position: relative;
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  /* Single column, CTA zuletzt: Bild, dann Panel, dann Aktionen. */
  grid-template-areas:
    "photo"
    "panel"
    "actions";
  align-items: center;
  gap: clamp(24px, 3.2vw, 46px);
  padding: clamp(84px, 9vw, 128px) clamp(24px, 6vw, 86px);
}
.terrace-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,249,240,0.9) 0%, rgba(248,232,180,0.68) 36%, rgba(221,170,58,0.18) 100%),
    linear-gradient(180deg, rgba(140,91,18,0.04) 0%, rgba(140,91,18,0.16) 100%);
}
.terrace-bg::before {
  content: "";
  position: absolute;
  inset: -10% -8% auto auto;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,82,0.36), transparent 62%);
  filter: blur(10px);
}
.terrace-bg::after {
  content: "Bellucci";
  position: absolute;
  right: -0.08em;
  bottom: -0.28em;
  font-family: var(--font-script);
  font-size: clamp(150px, 22vw, 360px);
  line-height: 1;
  color: rgba(255,249,240,0.2);
  pointer-events: none;
}
.terrace-actions {
  grid-area: actions;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-self: center;
  margin-top: -8px;
}
.terrace-actions .btn:hover {
  color: var(--ink);
}
.terrace-actions .btn::after {
  background: var(--accent);
}
.terrace-photo {
  grid-area: photo;
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(1080px, 100%);
  margin: 0;
  min-height: clamp(560px, 58vw, 720px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(60,31,18,0.34);
  transform: rotate(-1.4deg);
}
.terrace-photo::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,249,240,0.72);
  border-radius: 6px;
  z-index: 2;
  pointer-events: none;
}
.terrace-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.08) contrast(1.02);
}
.terrace-photo figcaption {
  position: absolute;
  left: 24px;
  right: auto;
  bottom: 24px;
  max-width: min(84%, 460px);
  z-index: 3;
  display: flex;
  /* Label oben, Headline darunter (vertikal gestapelt), kompakte Glasflaeche. */
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  align-items: flex-start;
  padding: 18px 22px;
  color: var(--ink);
  /* Glas-Material (bg, Rand, Radius, Blur, Schatten) zentral via --glass-* Tokens
     (Single-Source-Regel am Ende von vivid.css). */
}
.terrace-photo figcaption span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.terrace-photo figcaption h2 {
  max-width: 16ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(27px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 0.98;
  text-align: left;
}
.terrace-panel {
  grid-area: panel;
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(720px, 100%);
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(43,31,18,0.12);
  border-radius: 8px;
  background: rgba(255,249,240,0.84);
  box-shadow: 0 24px 80px rgba(46,74,39,0.18);
}
.terrace-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.16;
  color: rgba(43,31,18,0.92);
}
.terrace-quote span {
  display: block;
  color: #5F7F45;
  font-size: 58px;
  line-height: 0.55;
  margin-bottom: 12px;
}
.terrace-moments {
  margin-top: 30px;
  border-top: 1px solid rgba(43,31,18,0.14);
}
.terrace-moment {
  display: grid;
  /* Breitere Zeit-Spalte traegt die groessere, klarer lesbare Uhrzeit-Typo. */
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(43,31,18,0.12);
}
.terrace-moment:last-child {
  border-bottom: 0;
}
.terrace-moment span {
  font-family: var(--font-mono);
  /* Groesser und kontrastreicher, damit die Uhrzeit klar lesbar ist. */
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(43,31,18,0.74);
}
.terrace-moment strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}

/* ------- Wine ------- */
.wine {
  background: var(--surface);
}
.wine .top { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 48px; }
/* Wine-CTA: Pfeil nur auf Mobile (Regel im 600px-Block), Desktop ohne Pfeil. */
.wine-cta-arrow { display: none; }
.wine h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 500;
  margin: 12px 0 0;
}
.wine h2 .it { font-style: italic; font-weight: 400; }
.wine .regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wine .region {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.wine .region .label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.wine .region h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  margin: 0;
}
.wine .region p { font-size: 16px; color: var(--ink-muted); margin: 0; line-height: 1.5; }
.wine .region .list {
  margin-top: 8px;
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--hair);
}
.wine .region .list .row {
  display: flex; justify-content: space-between;
  font-family: var(--font-body);
  font-size: 17px;
}
.wine .region .list .row .v { font-style: italic; }
.wine .region .list .row .p { font-variant-numeric: tabular-nums; color: var(--accent); font-weight: 600; }

/* ------- Gallery ------- */
.gallery h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 500;
  margin: 12px 0 0;
}
.gallery h2 .it { font-style: italic; font-weight: 400; }
.gallery .top {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
  margin-bottom: 36px;
}
.gallery .grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}
.gallery .tile { overflow: hidden; border-radius: 8px; cursor: pointer; position: relative; }
.gallery .tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery .tile:hover img { transform: scale(1.06); }
.gallery .tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43,31,18,0.35) 100%);
  opacity: 0;
  transition: opacity .3s;
}
.gallery .tile:hover::after { opacity: 1; }
.gallery .tile.t1 { grid-column: span 2; grid-row: span 2; }
.gallery .tile.t2 { grid-column: span 2; grid-row: span 1; }
.gallery .tile.t3 { grid-column: span 2; grid-row: span 2; }
.gallery .tile.t4 { grid-column: span 2; grid-row: span 1; }
.gallery .tile.t5 { grid-column: span 2; grid-row: span 1; }
.gallery .tile.t6 { grid-column: span 2; grid-row: span 1; }
.gallery .tile.t7 { grid-column: span 3; grid-row: span 1; }
.gallery .tile.t8 { grid-column: span 3; grid-row: span 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 12, 5, 0.92);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 5vw;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%; max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
}
.lightbox .close, .lightbox .nav {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,249,240,0.12);
  color: #FFF9F0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,249,240,0.2);
  transition: background .2s;
}
.lightbox .close:hover, .lightbox .nav:hover { background: rgba(255,249,240,0.25); }
.lightbox .close { top: 24px; right: 24px; }
.lightbox .nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .nav.next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ------- Reservation ------- */
.reservation {
  background: var(--sandstone);
}
.reservation-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.reservation h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 500;
  line-height: 0.95;
  margin: 12px 0 18px;
  max-width: 10ch;
}
.reservation h2 .it {
  font-style: italic;
  font-weight: 400;
}
.reservation .lede {
  max-width: 58ch;
}
.reservation-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 24px 60px rgba(43, 31, 18, 0.08);
}
.reservation-line {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.reservation-line:first-child {
  border-top: 0;
  padding-top: 0;
}
.reservation-line span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.reservation-line a,
.reservation-line strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.25;
}
.reservation-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.reservation-actions .btn {
  min-width: 0;
  justify-content: center;
  text-align: center;
  font-size: 14px;
}

/* ------- Press ------- */
.press {
  background: var(--sandstone);
  padding: 80px 0;
}
.press .inner {
  display: flex; gap: 60px; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.press h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  margin: 0;
  color: var(--ink);
  max-width: 24ch;
}
.press h3::before {
  content: "“";
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 56px;
  line-height: 0;
  display: block;
  margin-bottom: 18px;
}
.press .logos {
  display: flex; gap: 36px; flex-wrap: wrap; align-items: center;
  flex: 1;
  justify-content: flex-end;
}
.press .logo {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.65;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.press .logo.serif-italic { font-style: italic; }
.press .logo.sans {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ------- Contact ------- */
.contact {
  background: var(--bg);
}
.contact .grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: stretch;
}
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 500;
  margin: 12px 0 18px;
  line-height: 0.95;
}
.contact h2 .it { font-style: italic; font-weight: 400; }
.contact .info { display: flex; flex-direction: column; gap: 28px; }
.contact .info .block {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.contact .info .block .k {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.contact .info .block .v {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.35;
}
.contact .info .block .v.muted { color: var(--ink-2); font-style: italic; }
.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.contact-actions .btn {
  min-width: 0;
  justify-content: center;
  text-align: center;
  font-size: 14px;
}
.contact .map {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sandstone);
  min-height: 520px;
  position: relative;
  background-image: url("../images/contact-map.jpg");
  background-size: cover;
  background-position: center;
}
.contact .map::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,249,240,0) 50%, rgba(43,31,18,0.5) 100%);
}
.contact .map .pin {
  position: absolute;
  top: 38%; left: 48%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  z-index: 2;
}
.contact .map .pin .dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.contact .map .pin .pulse {
  position: absolute; top: 0; left: 50%;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  transform: translate(-50%, 0);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: translate(-50%, 0) scale(1); opacity: 1; }
  100% { transform: translate(-50%, 0) scale(3); opacity: 0; }
}
.contact .map .pin .label {
  margin-top: 4px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  /* Glas-Material zentral via --glass-* Tokens (Regel am Ende von vivid.css). */
}
.contact .map .corner {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  z-index: 2;
}

/* ------- Footer ------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 10%, rgba(255,249,240,0.72), transparent 30%),
    linear-gradient(135deg, #FFF9F0 0%, #F5E7B8 42%, #E0B92E 100%);
  color: var(--ink);
  padding: clamp(38px, 5vw, 58px) 0 24px;
}
.site-footer::before {
  display: none;
}
.footer-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.site-footer .btn { color: var(--ink); }
.site-footer .btn::after { background: var(--accent); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(4, minmax(150px, 1fr));
  gap: clamp(24px, 4vw, 52px);
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.footer-mark {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.footer-mark .script {
  display: block;
  font-family: var(--font-logo-script);
  color: var(--accent-2);
  font-size: 1.08em;
  line-height: 0.54;
  text-transform: none;
  transform: translateX(-0.05em);
}
.footer-brand p {
  max-width: 28ch;
  color: var(--ink-muted);
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.55;
}
.site-footer h5 {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col a,
.footer-col .line {
  display: block;
  font-family: var(--font-body);
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--ink);
}
.footer-col a:hover { color: var(--accent); }
.footer-socials a {
  border-top: 1px solid var(--border);
  padding: 14px 0;
  margin: 0;
}
.footer-socials a:last-child { border-bottom: 1px solid var(--border); }
.footer-socials span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.footer-socials strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
}
.site-footer .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  flex-wrap: wrap;
  gap: 18px;
}
.site-footer .bottom a:hover { color: var(--accent); }
.site-footer .bottom .legal { display: flex; gap: 24px; }

/* Subpages: reservation and legal routes migrated from the live WordPress site */
.subpage {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  padding-top: 132px;
}

/* Die erste Sektion sitzt direkt unter dem fixed Header. .subpage raeumt den
   Header bereits via padding-top frei, daher das zusaetzliche section-Top-Padding
   (120px) kappen, damit ueber dem Hero keine ueberdimensionierte Leere entsteht. */
.subpage > section:first-child {
  padding-top: clamp(24px, 4vw, 44px);
}

/* Hero-Sektion der Content-Unterseiten: den eigenen Gradient bis ganz nach oben
   (hinter den fixed Header) ziehen, damit kein Paper-Band und keine sichtbare
   Kante zwischen .subpage-Hintergrund und Hero entsteht. Das negative margin-top
   hebt das padding-top von .subpage (132px) wieder auf, padding-top raeumt den
   Header frei. Gilt auch fuer die Reservierungs-Hero (.reservation-full), damit
   dort kein Paper-Band zwischen Header und Gold-Gradient sichtbar bleibt. */
.subpage > section.all-day:first-child,
.subpage.booking-page > section.reservation-full:first-child {
  margin-top: -132px;
  padding-top: clamp(92px, 4vw + 64px, 128px);
}

.booking-page .reservation {
  padding-top: 52px;
}

.reservation-full {
  min-height: auto;
}

.reservation-widget-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quandoo-widget-shell {
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

#quandoo-booking-widget {
  min-height: 540px;
}

.subpage-info {
  padding: 28px 0 96px;
  background: var(--paper);
}

.subpage-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.subpage-info-grid > div,
.legal-wrap {
  border: 1px solid rgba(35, 46, 33, 0.12);
  background: rgba(255, 249, 240, 0.72);
  box-shadow: 0 24px 70px rgba(35, 46, 33, 0.08);
}

.subpage-info-grid > div {
  padding: 28px;
}

.subpage-info h2 {
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: 0;
}

.subpage-info p {
  margin: 0 0 10px;
  color: var(--ink-2);
  line-height: 1.7;
}

.subpage-info a,
.legal-content a {
  color: var(--accent);
  text-decoration: none;
}

.subpage-info a:hover,
.legal-content a:hover {
  color: var(--ink);
}

.legal-page,
.thanks-page {
  padding-bottom: 96px;
}

.legal-wrap {
  max-width: 980px;
  padding: 56px;
}

.subpage-eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.legal-wrap h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.subpage-meta {
  margin: 18px 0 34px;
  font-size: 13px;
  color: var(--ink-2);
}

.legal-content {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink);
  /* Lange URLs (z.B. Facebook-/Google-Datenschutzlinks) umbrechen lassen,
     sonst sprengen sie auf Mobile den Viewport und erzeugen Querscrollen. */
  overflow-wrap: anywhere;
}

.legal-content a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin: 0 0 18px;
}

.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content h5,
.legal-content h6 {
  margin: 36px 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  text-transform: none;
}

.legal-content h2 { font-size: clamp(26px, 4vw, 40px); }
.legal-content h3 { font-size: 24px; }
.legal-content h4,
.legal-content h5,
.legal-content h6 { font-size: 18px; }

.legal-content strong {
  color: var(--ink);
  font-weight: 600;
}

/* ------- Lemon decorative SVG ------- */
.lemon-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

/* ============================================
   POSTKARTE / EDITORIAL VOCABULARY
   ============================================ */

/* Italian flag accent (vertical bar 3-color) */
.flag-bar {
  display: inline-flex;
  height: 22px;
  width: 6px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.flag-bar > i {
  flex: 1;
  display: block;
}
.flag-bar > i:nth-child(1) { background: #008C45; }
.flag-bar > i:nth-child(2) { background: #F4F5F0; }
.flag-bar > i:nth-child(3) { background: #CD212A; }
.flag-bar.h { width: 22px; height: 6px; flex-direction: row; }
.flag-bar.h > i { height: 100%; width: auto; }
.flag-bar.lg { height: 56px; width: 14px; }
.flag-bar.xl { height: 90px; width: 22px; }

/* Postal stamp (circular) */
.postal-stamp {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  color: var(--ink);
  background: transparent;
}
.postal-stamp::before, .postal-stamp::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px dashed var(--ink);
  opacity: 0.5;
}
.postal-stamp::after {
  inset: 10px;
  border-style: solid;
  border-width: 1px;
  opacity: 0.3;
}
.postal-stamp svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.postal-stamp .center {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 1;
}
.postal-stamp.rotating .label-circle { animation: stamp-spin 60s linear infinite; transform-origin: center; }

/* Ticket / Stempel rect */
.rect-stamp {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  background: rgba(255,249,240,0.7);
  transform: rotate(-2deg);
  position: relative;
  white-space: nowrap;
}
.rect-stamp::before {
  content: "";
  position: absolute; inset: 3px;
  border: 1px dashed var(--ink);
  border-radius: 2px;
  opacity: 0.5;
}
.rect-stamp .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

/* Brand mark (calligraphic Casa stacked above serif Bellucci) */
.brand {
  display: inline-flex !important;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.9;
  position: relative;
  gap: 0;
}
.brand .casa {
  font-family: var(--font-logo-script);
  font-size: 1.05em;
  color: var(--accent);
  line-height: 0.7;
  margin-left: 0.15em;
  margin-bottom: -0.18em;
  transform: rotate(-3deg);
  transform-origin: left bottom;
  z-index: 1;
  font-weight: 400;
}
.brand .bellucci {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.78em;
  text-transform: uppercase;
  line-height: 1;
}

/* ============================================
   ABOUT — MAGAZIN SPREAD WITH OVERLAPPING IMAGES
   ============================================ */
.about-spread .grid {
  grid-template-columns: 1fr 1.1fr !important;
}
.about-spread .img-col {
  position: relative;
  aspect-ratio: auto;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  min-height: 560px;
}
.about-spread .img-col .ph {
  position: absolute;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow-warm);
}
.about-spread .img-col .ph img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-spread .img-col .ph-main {
  top: 0; left: 10%;
  width: 65%; aspect-ratio: 4/5;
  z-index: 2;
  transform: rotate(-2deg);
}
.about-spread .img-col .ph-acc {
  bottom: 0; right: 0;
  width: 55%; aspect-ratio: 4/5;
  z-index: 3;
  transform: rotate(3deg);
  box-shadow: var(--shadow-warm);
}
.about-spread .img-col .ph-small {
  top: 38%; left: 0;
  width: 35%; aspect-ratio: 1/1;
  z-index: 4;
  transform: rotate(-5deg);
  padding: 8px 8px 32px;
  background: #FFF9F0;
  border-radius: 0;
}
.about-spread .img-col .ph-small img { border-radius: 0; }
.about-spread .img-col .ph-small .cap {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
}
.about-spread .img-col .stamp-float {
  position: absolute;
  top: 4%; right: 8%;
  z-index: 5;
}

/* big quote pull */
.about-spread .pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.25;
  margin: 32px 0 28px;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
  color: var(--ink);
  font-weight: 400;
}

@media (max-width: 980px) {
  .about-spread .img-col { min-height: 420px; }
  .about-spread .img-col .ph-main { left: 0; width: 78%; }
  .about-spread .img-col .ph-acc { width: 60%; }
  .about-spread .img-col .ph-small { width: 40%; top: 50%; }
}

/* ============================================
   PRESS — POSTCARD STAMP STYLE
   ============================================ */
.press-cards {
  background: var(--surface);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.press-cards .inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.press-cards .row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.press-cards .row:last-child { border-bottom: 0; }
.press-cards .row .outlet {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  width: 220px;
}
.press-cards .row .outlet.italic { font-style: italic; }
.press-cards .row .outlet.caps {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.press-cards .row .q {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  color: var(--ink);
}
.press-cards .row .date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.press-cards .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.press-cards h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 500;
  margin: 12px 0 0;
}
.press-cards h2 .it { font-style: italic; font-weight: 400; }
.press-cards .stamp-floater {
  position: absolute;
  top: 80px; right: 5%;
  opacity: 0.6;
}

@media (max-width: 880px) {
  .press-cards .row { grid-template-columns: 1fr; gap: 12px; }
  .press-cards .row .outlet { width: auto; }
}

/* ============================================
   Hero V1 brand update — bigger script
   ============================================ */
.hero-v1 h1 .script-overlay {
  display: block;
  font-family: var(--font-logo-script);
  color: var(--accent);
  font-size: 0.55em;
  line-height: 0.5;
  font-weight: 400;
  margin-bottom: -0.15em;
  margin-left: -0.05em;
}

/* Make existing hero v1 more lively */
.hero-v1 .badge {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  line-height: 1.2;
}

/* Decorative ribbon for transitions */
.section-divider {
  height: 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.section-divider .track {
  display: flex; gap: 50px;
  align-items: center;
  height: 100%;
  animation: ticker 60s linear infinite;
  width: max-content;
  font-family: var(--font-script);
  font-size: 38px;
  color: var(--ink-muted);
  white-space: nowrap;
  opacity: 0.7;
}
.section-divider .track .lemon-dot {
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50% 60% 50% 60%;
  display: inline-block;
  transform: rotate(20deg);
}

/* ------- Scroll Reveal (JS class-based) ------- */
.auto-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.auto-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ------- Responsive ------- */
@media (max-width: 980px) {
  section { padding: 80px 0; }
  .hero-v1 .grid, .about .grid, .menu .grid, .contact .grid, .wine .regions, .reservation-inner, .subpage-info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .all-day-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .all-day h2 {
    max-width: 11ch;
  }
  .all-day-media {
    min-height: 560px;
  }
  .signature-menu-head,
  .signature-menu-grid {
    grid-template-columns: 1fr;
  }
  .signature-menu-hero {
    min-height: 520px;
  }
  .terrace-stage {
    grid-template-columns: 1fr;
    /* Mobile-Reihenfolge: Bild, Panel, dann CTA zuletzt. */
    grid-template-areas:
      "photo"
      "panel"
      "actions";
    min-height: auto;
    padding: 92px 28px 76px;
  }
  .terrace-photo {
    min-height: 520px;
    /* Keine Drehung unter Desktop, vermeidet Kanten-Overflow. */
    transform: none;
  }
  .terrace-panel {
    max-width: 560px;
    margin: 0 auto;
  }
  .about .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .about .stat:nth-child(2) { border-right: 0; }
  .gallery .grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; }
  .gallery .tile.t1, .gallery .tile.t3 { grid-column: span 2; grid-row: span 2; }
  .gallery .tile.t2, .gallery .tile.t4, .gallery .tile.t5, .gallery .tile.t6 { grid-column: span 2; grid-row: span 1; }
  .gallery .tile.t7, .gallery .tile.t8 { grid-column: span 4; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu .top, .wine .top, .gallery .top, .press .inner { flex-direction: column; align-items: flex-start; }
  .menu .panel { position: static; }
}
@media (max-width: 600px) {
  .wrap, .wrap-tight { padding: 0 22px; }
  .hero { padding-top: 110px; }
  .hero-v1 .meta-row { gap: 24px; }
  .all-day-copy > p {
    font-size: 16px;
  }
  .dayline {
    margin-top: 32px;
  }
  .day-moment {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0 22px;
  }
  .day-moment::before {
    left: 0;
    transform: none;
  }
  .day-moment p {
    grid-column: auto;
    font-size: 16px;
  }
  .all-day-media {
    grid-template-rows: 210px 310px;
    gap: 12px;
    min-height: 532px;
  }
  .about .stat-strip { grid-template-columns: 1fr; }
  .about .stat { border-right: 0; border-bottom: 1px solid var(--border); }
  .about .stat:last-child { border-bottom: 0; }
  .gallery .grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery .tile { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery .tile.t1, .gallery .tile.t3 { grid-column: span 2 !important; grid-row: span 2 !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu .tabs { width: 100%; justify-content: flex-start; overflow-x: auto; }
  .signature-menu-head {
    gap: 20px;
    margin-bottom: 32px;
  }
  .signature-menu-title h2 {
    max-width: none;
  }
  .signature-menu-grid {
    gap: 28px;
  }
  .signature-menu-hero {
    min-height: 300px;
  }
  .signature-item {
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
    padding: 24px 0;
  }
  .signature-item:hover {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }
  .signature-label {
    grid-column: 1 / -1;
  }
  .signature-item p {
    font-size: 16px;
  }
  .signature-open {
    align-self: start;
    padding-top: 8px;
    font-size: 9px;
  }
  .signature-actions {
    flex-wrap: nowrap;
    gap: 26px;
  }
  .signature-actions .btn {
    width: auto;
    font-size: 14px;
  }
  .terrace-stage {
    min-height: auto;
    padding: 92px 20px 60px;
    gap: 30px;
  }
  .terrace-bg {
    background:
      linear-gradient(180deg, rgba(255,249,240,0.94) 0%, rgba(250,232,174,0.78) 42%, rgba(221,170,58,0.34) 100%);
  }
  .terrace-actions .btn {
    font-size: 14px;
    letter-spacing: 0.12em;
    padding: 0 0 12px;
  }
  .terrace-panel {
    margin: 0;
    padding: 22px;
  }
  .terrace-quote {
    font-size: 24px;
  }
  .terrace-moment {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .dish-pop {
    padding: 14px;
  }
  .dish-pop-card {
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 28px);
    overflow-y: auto;
  }
  .dish-pop-card figure {
    min-height: 0;
    aspect-ratio: 4 / 4.5;
  }
  .dish-pop-copy {
    padding: 28px 24px 30px;
  }
  .dish-pop-copy h3 {
    font-size: clamp(38px, 12vw, 58px);
  }
  .dish-pop-copy p {
    font-size: 16px;
  }
  /* Legal-Karte auf Mobile rahmenlos: kein Border/Schatten, transparent.
     Der enge Rahmen mit 0 Innenabstand oben/unten wirkte sonst gequetscht. */
  .legal-wrap {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 22px;
  }
  /* H1 auf Mobile deutlich kleiner: lange Titel wie "Datenschutzerklaerung"
     passen sonst kaum in den Viewport. overflow-wrap als Sicherheitsnetz. */
  .legal-wrap h1 {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }
  /* Wine-CTA auf Mobile: Mindestgroesse 14px (sonst faellt .btn auf 11px)
     und der Pfeil kehrt zurueck. */
  .wine .top .btn {
    font-size: 14px;
  }
  .wine-cta-arrow {
    display: inline-block;
  }
}

/* ============================================
   MOBILE OVERHAUL — phone-first details
   ============================================ */

@media (max-width: 880px) {
  /* Header — hide CTA, show burger */
  .nav-links, .lang-switch { display: none; }
  .burger { display: inline-flex; }
  .site-header .header-right > .btn { display: none; }
  .site-header .row { gap: 12px; }
  .site-header .brand .casa { font-size: 1.6em; }
  .site-header .brand .bellucci { font-size: 0.9em; letter-spacing: 0; }

  /* Section paddings */
  section { padding: 64px 0; }
  .all-day { padding-top: 118px; }
  .signature-menu { padding-top: 118px; }
  .wrap, .wrap-tight { padding: 0 20px; }

  /* Eyebrow + headers */
  .section-eyebrow { margin-bottom: 14px; }
  .section-eyebrow::before { width: 24px; }

  /* HERO V1 — Editorial split */
  .hero-v1 { padding-top: 100px; padding-bottom: 60px; }
  .hero-v1 .grid { gap: 32px; }
  .hero-v1 h1 { font-size: clamp(56px, 16vw, 88px); }
  .hero-v1 .sub-script { font-size: clamp(28px, 9vw, 44px); }
  .hero-v1 .tag { font-size: 17px; margin: 20px 0 24px; }
  .hero-v1 .cta-row { gap: 10px; }
  .hero-v1 .cta-row .btn { font-size: 13px; }
  .hero-v1 .meta-row { gap: 18px; margin-top: 32px; padding-top: 18px; }
  .hero-v1 .meta-row .item { gap: 2px; }
  .hero-v1 .meta-row .v { font-size: 15px; }
  .hero-v1 .img-stack { max-width: 320px; margin: 0 auto; }
  .hero-v1 .badge { width: 100px; height: 100px; top: -14px; right: -14px; font-size: 10.5px; }
  .hero-v1 svg { display: none; }  /* hide bg lemon branches on mobile */

  /* About spread */
  .about h2 { font-size: clamp(36px, 4.4vw, 60px); }
  .about p { font-size: 16px; }
  .about-spread .img-col { min-height: 420px; margin-top: 8px; }
  .about-spread .img-col .ph-main { left: 0; width: 78%; }
  .about-spread .img-col .ph-acc { width: 60%; }
  .about-spread .img-col .ph-small { width: 42%; top: 50%; padding: 6px 6px 22px; }
  .about-spread .img-col .ph-small .cap { font-size: 13px; bottom: 4px; }
  .about-spread .img-col .stamp-float { transform: scale(0.7); transform-origin: top right; }
  .about-spread .pull-quote { font-size: 22px; padding-left: 18px; margin: 24px 0 22px; }
  .about .signature .script { font-size: 32px !important; }
  .about .signature .who { font-size: 10px; }

  /* Menu */
  .menu h2 { font-size: clamp(36px, 4.4vw, 60px); }
  .menu .top { gap: 22px; margin-bottom: 28px; }
  .menu .tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 5px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .menu .tabs::-webkit-scrollbar { display: none; }
  .menu .tab { padding: 10px 16px; font-size: 10.5px; letter-spacing: 0.14em; }
  .menu .tab span { display: none; }
  .menu .grid { gap: 32px; }
  .menu .dish { padding: 18px 0; gap: 12px; }
  .menu .dish .name { font-size: 22px; }
  .menu .dish .desc { font-size: 14.5px; }
  .menu .dish .price { font-size: 19px; }
  .menu .panel .img { aspect-ratio: 4/3; }

  /* Terrace */
  .terrace-stage {
    min-height: auto;
    padding: 88px 18px 56px;
    gap: 28px;
  }
  .terrace-bg {
    background:
      linear-gradient(180deg, rgba(255,249,240,0.94) 0%, rgba(250,232,174,0.78) 42%, rgba(221,170,58,0.34) 100%);
  }
  .terrace-bg::after {
    font-size: 132px;
    right: -0.12em;
    bottom: -0.16em;
  }
  .terrace-actions {
    gap: 18px;
    margin-top: 0;
  }
  .terrace-photo {
    min-height: 430px;
    transform: none;
  }
  .terrace-photo::before {
    inset: 10px;
  }
  .terrace-photo figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    /* Ab Mobile nutzt die Glasflaeche die volle Bildbreite (left/right 18px),
       daher die 84%/460px-Begrenzung aus der Basisregel hier aufheben. */
    max-width: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    row-gap: 0;
    padding: 18px;
  }
  .terrace-photo figcaption h2 {
    max-width: 14ch;
    font-size: 30px;
    text-align: left;
  }
  .terrace-panel {
    margin: 0;
    padding: 22px;
  }
  .terrace-quote {
    font-size: 24px;
  }
  .terrace-moment {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  /* Wine */
  .wine h2 { font-size: clamp(36px, 4.4vw, 60px); }
  .wine .top { gap: 20px; margin-bottom: 28px; }
  .wine .region { padding: 22px; }
  .wine .region h3 { font-size: 24px; }
  .wine .region p { font-size: 16px; }
  .wine .region .list .row { font-size: 15.5px; }

  .gallery h2 { font-size: clamp(36px, 4.4vw, 60px); }

  .reservation h2 { font-size: clamp(36px, 4.4vw, 60px); }
  .reservation-card { padding: 24px; }
  .reservation-line a,
  .reservation-line strong { font-size: 20px; }
  .reservation-actions .btn {
    justify-content: center;
  }

  /* Lightbox */
  .lightbox { padding: 16px; }
  .lightbox .close { width: 40px; height: 40px; top: 14px; right: 14px; font-size: 18px; }
  .lightbox .nav { width: 40px; height: 40px; font-size: 20px; }
  .lightbox .nav.prev { left: 8px; }
  .lightbox .nav.next { right: 8px; }

  /* Press */
  .press-cards { padding: 64px 0; }
  .press-cards .head h2 { font-size: clamp(36px, 4.4vw, 60px); }
  .press-cards .row { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .press-cards .row .outlet { width: auto; font-size: 16px; }
  .press-cards .row .outlet.caps { font-size: 12px; }
  .press-cards .row .q { font-size: 18px; }
  .press-cards .row .date { font-size: 10px; }
  .press-cards .stamp-floater { display: none; }

  /* Contact */
  .contact h2 { font-size: clamp(36px, 4.4vw, 60px); }
  .contact .info .block .v { font-size: 18px; }
  .contact .map { min-height: 360px; }

  /* Footer */
  .site-footer { padding: 38px 0 22px; }
  .footer-cta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .footer-cta .btn { justify-content: center; font-size: 14px; }
  .footer-grid { gap: 30px; padding-bottom: 28px; }
  .footer-mark { font-size: 36px; }
  .site-footer h5 { margin-bottom: 10px; }
  .site-footer .bottom { font-size: 10px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .site-footer .bottom .legal { gap: 16px; }

  /* Mobile nav drawer fonts */
  .mobile-nav { padding: 90px 22px 32px; }
  .mobile-nav a { font-size: 30px; padding: 12px 0; }
}

@media (max-width: 480px) {
  .wrap, .wrap-tight { padding: 0 18px; }
  section { padding: 56px 0; }

  /* Hero V1 button row stays compact */
  .hero-v1 h1 { font-size: 56px; }
  .hero-v1 .meta-row { grid-template-columns: 1fr 1fr; display: grid; gap: 16px; }
  .hero-v1 .meta-row .item:nth-child(3) { grid-column: 1 / -1; }

  /* About — kill the overlap on tiny screens */
  .about-spread .img-col {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
  }
  .about-spread .img-col .ph,
  .about-spread .img-col .ph-main,
  .about-spread .img-col .ph-acc,
  .about-spread .img-col .ph-small {
    position: static !important;
    width: 100% !important;
    transform: none !important;
    aspect-ratio: 4/5 !important;
  }
  .about-spread .img-col .ph-main { grid-column: 1 / -1; aspect-ratio: 16/10 !important; }
  .about-spread .img-col .stamp-float {
    position: absolute;
    top: 8px; right: 8px;
    transform: scale(0.55);
    transform-origin: top right;
  }

  /* Contact map smaller */
  .contact .map { min-height: 280px; }
  .contact .info .block { padding: 16px 0; }

  /* Terrace info chips one column */
  .terrace .copy .features { grid-template-columns: 1fr; }

  /* Buttons full-width-ish on tiny screens */
  .btn { padding: 12px 18px; font-size: 11px; }
  .reservation-actions .btn { font-size: 14px; }
  .contact-actions .btn { font-size: 14px; }
}
