/* =========================================================
   Pizzeria / Eiscafé Sorrento, Pfullendorf (Demo)
   Sonnige Amalfi-Stimmung: Mittelmeerblau als Leitfarbe,
   Limoncello-Gelb und Terrakotta als Akzente, Creme als Grund.
   Fonts lokal (DSGVO): Prata (Display), Schibsted Grotesk (Body),
   Allura (nur Wortmarke "Sorrento").
   ========================================================= */

/* ---------- Fonts (lokal gehostet, DSGVO) ---------- */
@font-face {
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/prata-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Schibsted Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/schibstedgrotesk-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Allura";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/allura-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Palette + Tokens ---------- */
:root {
  /* Amalfi-Markenbasis */
  --azur:       #1E6F9F;   /* Leitfarbe: Mittelmeer-/Azurblau */
  --azur-deep:  #0E5A8A;   /* tiefer fuer Hover/Kontrast */
  --azur-night: #0B3F60;   /* tiefe Tinte fuer dunkle Flaechen */
  --azur-200:   #A9D4EC;   /* helles Azur auf dunklem Grund */
  --lemon:      #F2C94C;   /* Limoncello-/Zitronengelb */
  --lemon-soft: #F7DD86;   /* weicheres Gelb */
  --terra:      #C0392B;   /* Terrakotta/Tomaten-Rot, warmer Akzent */
  --terra-deep: #9E2C20;   /* dunkler Terrakotta */
  --olive:      #6E7F4E;   /* mediterranes Olivgruen (Basilikum) */
  --cream:      #F6EFDD;   /* Creme/Sandstein, heller Grund */
  --cream-soft: #EFE5CB;   /* zweiter Cremeton */
  --surface:    #FDFAF1;   /* fast weisser, warmer Kartenton */

  --text:       #3E2C23;   /* Espresso-Braun statt Schwarz */
  --muted:      #6E5A4C;   /* gedaempfter Brauntext */
  --hairline:   rgba(62, 44, 35, 0.16);
  --hairline-2: rgba(62, 44, 35, 0.08);

  --maxw: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 16px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 18px 50px -24px rgba(11, 63, 96, 0.45);
  --shadow-card: 0 1px 2px rgba(11, 63, 96, 0.05), 0 14px 40px -28px rgba(11, 63, 96, 0.5);

  --font-display: "Prata", Georgia, "Times New Roman", serif;
  --font-body: "Schibsted Grotesk", system-ui, sans-serif;
  --font-script: "Allura", "Prata", cursive;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.68;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--azur-night);
  margin: 0;
  hyphens: manual;
}
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* feine Papier-/Grain-Textur, fix, performant */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  background: var(--azur-night);
  color: #e4f0f8;
  font-size: 0.74rem;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 0.5rem var(--pad);
  position: relative;
  z-index: 60;
}
.demo-bar strong { color: var(--lemon); font-weight: 600; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 239, 221, 0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline-2);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand .emblem { width: 46px; height: 46px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-script {
  font-family: var(--font-script);
  font-size: 2.15rem;
  color: var(--azur-deep);
  line-height: 0.78;
  margin-bottom: 2px;
}
.brand-sub {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--terra);
  font-weight: 700;
}
.nav-links { display: flex; align-items: center; gap: 0.3rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0.8rem;
  border-radius: 9px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover { color: var(--azur-deep); background: rgba(30, 111, 159, 0.08); }
.nav-links a.active { color: var(--azur-deep); }
.nav-cta {
  margin-left: 0.45rem;
  background: var(--terra);
  color: #fff !important;
  border-radius: 999px !important;
  padding: 0.6rem 1.25rem !important;
  font-weight: 600 !important;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease) !important;
}
.nav-cta:hover { background: var(--terra-deep) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--hairline);
  border-radius: 11px;
  background: transparent;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--azur-night);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-primary { background: var(--terra); color: #fff; }
.btn-primary:hover { background: var(--terra-deep); transform: translateY(-2px); }
.btn-primary .pin {
  width: 26px; height: 26px; border-radius: 999px;
  background: rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease);
}
.btn-primary:hover .pin { transform: translateX(3px); }
.btn-azur { background: var(--azur); color: #fff; }
.btn-azur:hover { background: var(--azur-deep); transform: translateY(-2px); }
.btn-azur .pin {
  width: 26px; height: 26px; border-radius: 999px;
  background: rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease);
}
.btn-azur:hover .pin { transform: translateX(3px); }
.btn-ghost { background: transparent; color: var(--azur-deep); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--azur); background: rgba(30,111,159,0.06); }
.btn-on-dark { background: var(--lemon); color: var(--azur-night); }
.btn-on-dark:hover { background: var(--lemon-soft); transform: translateY(-2px); }
.btn-on-dark .pin {
  width: 26px; height: 26px; border-radius: 999px;
  background: rgba(11,63,96,0.14);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease);
}
.btn-on-dark:hover .pin { transform: translateX(3px); }
.btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(246,239,221,0.42); }
.btn-outline-light:hover { border-color: var(--cream); background: rgba(246,239,221,0.1); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--terra);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--lemon);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--lemon); }
.eyebrow.on-dark::before { background: var(--lemon); }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-head { max-width: 680px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
.section-head p { color: var(--muted); margin-top: 1.1rem; font-size: 1.08rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* dekorative Wellen-/Sonnenlinie als Trenner */
.wave-line { display: block; width: 100%; height: auto; color: var(--azur-200); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(242,201,76,0.34), transparent 56%),
    radial-gradient(95% 80% at 2% 108%, rgba(192,57,43,0.22), transparent 55%),
    linear-gradient(158deg, var(--azur-deep) 0%, var(--azur-night) 82%);
  color: #eaf3fa;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 50% 30%, rgba(255,247,224,0.06) 0, transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; padding-block: clamp(4rem, 10vw, 7rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  letter-spacing: -0.01em;
  line-height: 1.04;
}
.hero h1 .accent {
  font-family: var(--font-script);
  color: var(--lemon);
  font-size: 1.28em;
  line-height: 0.7;
  display: inline-block;
}
.hero-lead {
  color: #cfe1ee;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  margin-top: 1.6rem;
  max-width: 42ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.3rem 2.4rem;
  margin-top: 2.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(234,243,250,0.16);
}
.hero-meta .item { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-meta .k { font-family: var(--font-display); font-size: 1.28rem; color: var(--cream); }
.hero-meta .l { font-size: 0.8rem; color: #a9c6da; letter-spacing: 0.02em; }

/* Hero-Karte: Golf-von-Neapel / Sonnen-Emblem */
.hero-card {
  position: relative;
  background: linear-gradient(160deg, rgba(246,239,221,0.08), rgba(246,239,221,0.02));
  border: 1px solid rgba(246,239,221,0.16);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), var(--shadow-soft);
}
.hero-card .scene { width: 100%; height: auto; }
.hero-card .cap {
  margin-top: 1.4rem;
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.92rem; color: #cfe1ee;
}
.hero-card .cap b { color: var(--cream); font-weight: 600; }

/* Bewertungs-Badge */
.rating-badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: rgba(246,239,221,0.1);
  border: 1px solid rgba(246,239,221,0.2);
  border-radius: 999px;
  padding: 0.5rem 1rem 0.5rem 0.6rem;
  margin-bottom: 1.6rem;
}
.rating-badge .stars { display: inline-flex; gap: 2px; color: var(--lemon); }
.rating-badge .txt { font-size: 0.84rem; color: #d6e6f1; }
.rating-badge .txt b { color: var(--cream); font-weight: 600; }

/* ---------- Highlights (asymmetrisches Bento) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.9rem, 1.6vw, 1.3rem);
}
.tile {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 2px rgba(11,63,96,0.06), 0 22px 48px -26px rgba(11,63,96,0.55);
}
.tile h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.tile p { color: var(--muted); font-size: 0.99rem; }
.tile .ic {
  width: 48px; height: 48px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(30,111,159,0.1);
  color: var(--azur-deep);
  margin-bottom: 1.1rem;
}
.tile.span-7 { grid-column: span 7; }
.tile.span-5 { grid-column: span 5; }
.tile.span-6 { grid-column: span 6; }
.tile.span-4 { grid-column: span 4; }
.tile.span-8 { grid-column: span 8; }
.tile.span-12 { grid-column: span 12; }

.tile.lemon .ic { background: rgba(242,201,76,0.22); color: #9a7a16; }
.tile.olive .ic { background: rgba(110,127,78,0.16); color: #51603a; }
.tile.terra .ic { background: rgba(192,57,43,0.1); color: var(--terra); }

/* Feature-Kachel auf dunklem azur Grund */
.tile.feature {
  background:
    radial-gradient(95% 130% at 100% 0%, rgba(242,201,76,0.3), transparent 56%),
    linear-gradient(155deg, var(--azur) 0%, var(--azur-night) 100%);
  color: #eaf3fa;
  display: flex; flex-direction: column; justify-content: space-between;
}
.tile.feature h3 { color: var(--cream); font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.tile.feature p { color: #cfe1ee; }
.tile.feature .ic { background: rgba(246,239,221,0.14); color: var(--cream); }
.tile.feature .more {
  margin-top: 1.4rem; display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--lemon); font-weight: 600; font-size: 0.95rem;
}
.tile.feature .more svg { transition: transform 0.25s var(--ease); }
.tile.feature:hover .more svg { transform: translateX(4px); }

/* ---------- Baender ---------- */
.surface-band { background: var(--surface); border-block: 1px solid var(--hairline-2); }
.cream-band { background: var(--cream-soft); }

/* ---------- Split mit dunkler Tafel ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.split.flip > :first-child { order: 2; }
.panel-dark {
  background:
    radial-gradient(80% 95% at 0% 0%, rgba(242,201,76,0.2), transparent 60%),
    linear-gradient(155deg, var(--azur) 0%, var(--azur-night) 100%);
  border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3.2rem);
  color: #eaf3fa; position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.panel-dark::after {
  content: ""; position: absolute; right: -50px; bottom: -50px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,201,76,0.16), transparent 65%);
}
.panel-dark .script {
  font-family: var(--font-script); font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  color: var(--lemon); line-height: 0.8; display: block; margin-bottom: 0.6rem;
}
.panel-dark h3 { color: var(--cream); font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 0.8rem; }
.panel-dark p { color: #cfe1ee; position: relative; }
.panel-dark .tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; position: relative; }
.panel-dark .pill {
  font-size: 0.82rem; font-weight: 600; color: var(--cream);
  border: 1px solid rgba(246,239,221,0.32); border-radius: 999px;
  padding: 0.4rem 0.95rem;
}
.feature-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.9rem; }
.feature-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--text); }
.feature-list .chk {
  width: 26px; height: 26px; flex: none; border-radius: 8px;
  background: rgba(30,111,159,0.12); color: var(--azur-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.lede { color: var(--muted); font-size: 1.1rem; }

/* ---------- Oeffnungszeiten ---------- */
.hours-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hours-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--azur);
}
.hours-list { list-style: none; margin: 1.4rem 0 0; padding: 0; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: 0.75rem 0; border-bottom: 1px dashed var(--hairline);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { font-weight: 600; color: var(--azur-night); }
.hours-list .time { color: var(--muted); font-size: 0.96rem; text-align: right; }
.hours-list li.rest .time { color: var(--terra); font-weight: 600; }
.hours-note {
  margin-top: 1.2rem; font-size: 0.86rem; color: var(--muted);
  background: rgba(242,201,76,0.16); border-radius: 12px; padding: 0.8rem 1rem;
}

/* ---------- Speisekarte / Kategorien ---------- */
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.menu-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.4vw, 2.1rem);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(11,63,96,0.06), 0 22px 48px -26px rgba(11,63,96,0.55); }
.menu-card .ix {
  font-family: var(--font-display);
  color: var(--azur-200); font-size: 1.7rem; line-height: 1;
}
.menu-card h3 { font-size: 1.4rem; margin: 0.6rem 0 0.5rem; }
.menu-card p { color: var(--muted); font-size: 0.96rem; }
.menu-card .ic {
  position: absolute; top: clamp(1.6rem,2.4vw,2.1rem); right: clamp(1.6rem,2.4vw,2.1rem);
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(30,111,159,0.1); color: var(--azur-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.menu-card.highlight {
  background:
    radial-gradient(90% 130% at 100% 0%, rgba(242,201,76,0.28), transparent 56%),
    linear-gradient(155deg, var(--azur) 0%, var(--azur-night) 100%);
  color: #eaf3fa;
}
.menu-card.highlight h3 { color: var(--cream); }
.menu-card.highlight p { color: #cfe1ee; }
.menu-card.highlight .ix { color: var(--lemon); }
.menu-card.highlight .ic { background: rgba(246,239,221,0.16); color: var(--cream); }

/* ehrlicher Karten-Hinweis */
.menu-note {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--cream-soft);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  border-left: 4px solid var(--lemon);
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
}
.menu-note .ic { color: var(--azur-deep); flex: none; margin-top: 2px; }
.menu-note p { color: var(--text); }
.menu-note strong { color: var(--azur-night); }

/* ---------- CTA-Band ---------- */
.cta-band {
  background:
    radial-gradient(85% 130% at 100% 0%, rgba(242,201,76,0.28), transparent 56%),
    linear-gradient(155deg, var(--azur), var(--azur-night));
  color: #eaf3fa; border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(2.4rem, 5vw, 4rem);
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-soft);
}
.cta-band h2 { color: var(--cream); font-size: clamp(1.7rem, 3.4vw, 2.6rem); max-width: 22ch; }
.cta-band p { color: #cfe1ee; margin-top: 0.7rem; max-width: 44ch; }

/* ---------- Kontakt / Formular ---------- */
.contact-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact-info h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.info-list { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1.2rem; }
.info-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-list .ic {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: rgba(30,111,159,0.1); color: var(--azur-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.info-list .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 700; }
.info-list a, .info-list span.val { font-weight: 500; color: var(--text); font-size: 1.02rem; }
.info-list a:hover { color: var(--azur-deep); }

/* Formular: integriert in warme dunkle Karte */
.form-card {
  background:
    radial-gradient(78% 95% at 100% 0%, rgba(242,201,76,0.22), transparent 56%),
    linear-gradient(160deg, var(--azur) 0%, var(--azur-night) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.4vw, 2.6rem);
  color: #eaf3fa;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.08), var(--shadow-soft);
}
.form-card h3 { color: var(--cream); font-size: 1.55rem; margin-bottom: 0.4rem; }
.form-card .hint { color: #bcd6e6; font-size: 0.9rem; margin-bottom: 1.5rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-size: 0.76rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: #bcd6e6; font-weight: 600; margin-bottom: 0.45rem;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(246,239,221,0.08);
  border: 1px solid rgba(246,239,221,0.2);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.82rem 1rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #9cbdd2; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--lemon);
  background: rgba(246,239,221,0.14);
}
.field textarea { resize: vertical; min-height: 122px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-card .btn-on-dark { background: var(--lemon); color: var(--azur-night); }
.form-card .btn-on-dark:hover { background: var(--lemon-soft); }
.form-note { font-size: 0.78rem; color: #94b6cc; margin-top: 1rem; line-height: 1.5; }

/* ---------- Map-Link ---------- */
.map-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.6rem; color: var(--azur-deep); font-weight: 600; font-size: 0.96rem;
  padding: 0.7rem 1.1rem; border: 1px solid var(--hairline); border-radius: 999px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.map-link:hover { border-color: var(--azur); background: rgba(30,111,159,0.06); }

/* ---------- Inhaltsseiten-Hero ---------- */
.page-hero {
  background:
    radial-gradient(95% 120% at 90% -20%, rgba(242,201,76,0.3), transparent 58%),
    linear-gradient(158deg, var(--azur-deep), var(--azur-night));
  color: #eaf3fa;
  overflow: hidden;
}
.page-hero .wrap { padding-block: clamp(3.5rem, 8vw, 6rem); }
.page-hero h1 { color: var(--cream); font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 20ch; }
.page-hero h1 .accent { font-family: var(--font-script); color: var(--lemon); font-size: 1.2em; line-height: 0.7; display: inline-block; }
.page-hero p { color: #cfe1ee; margin-top: 1.1rem; max-width: 56ch; font-size: 1.08rem; }
.breadcrumb { font-size: 0.82rem; color: #a9c6da; margin-bottom: 1.1rem; }
.breadcrumb a:hover { color: var(--cream); }

/* ---------- Prosa / Story-Bloecke ---------- */
.prose { max-width: 700px; }
.prose p { color: var(--muted); margin-bottom: 1.2rem; font-size: 1.07rem; }
.prose p strong { color: var(--text); font-weight: 600; }
.prose h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin: 2.4rem 0 1rem; }

.story-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.story-figure {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(72% 80% at 30% 18%, rgba(242,201,76,0.3), transparent 60%),
    linear-gradient(150deg, var(--azur) 0%, var(--azur-deep) 55%, var(--azur-night) 100%);
  min-height: 340px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
}
.story-figure .scene { width: 72%; height: auto; }
.story-figure .cap {
  position: absolute; left: 1.5rem; bottom: 1.3rem;
  font-family: var(--font-script); color: var(--cream); font-size: 2.4rem; line-height: 0.8;
  text-shadow: 0 2px 14px rgba(0,0,0,0.3);
}

/* ---------- Note-Box ---------- */
.note-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--olive);
}
.note-box p { color: var(--muted); font-size: 0.99rem; }
.note-box strong { color: var(--text); }

/* ---------- Erlebnis-Galerie (Eiscafé/Terrasse, CSS-Motive) ---------- */
.exp-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.9rem, 1.6vw, 1.3rem);
}
.exp-card {
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  min-height: 230px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-card);
}
.exp-card h3 { font-size: 1.45rem; margin-bottom: 0.4rem; }
.exp-card p { font-size: 0.97rem; }
.exp-card .motif { position: absolute; top: 1.2rem; right: 1.2rem; opacity: 0.85; }
.exp-card.span-7 { grid-column: span 7; }
.exp-card.span-5 { grid-column: span 5; }
.exp-card.span-6 { grid-column: span 6; }
.exp-card.span-4 { grid-column: span 4; }
.exp-card.span-8 { grid-column: span 8; }

.exp-sky {
  background:
    radial-gradient(85% 120% at 80% 0%, rgba(242,201,76,0.34), transparent 56%),
    linear-gradient(155deg, var(--azur) 0%, var(--azur-night) 100%);
  color: #eaf3fa;
}
.exp-sky h3 { color: var(--cream); }
.exp-sky p { color: #cfe1ee; }
.exp-lemon {
  background: linear-gradient(155deg, var(--lemon) 0%, #E5B43A 100%);
  color: #5a4310;
}
.exp-lemon h3 { color: #4a3608; }
.exp-lemon p { color: #6a4f12; }
.exp-cream {
  background: var(--surface);
}
.exp-cream h3 { color: var(--azur-night); }
.exp-cream p { color: var(--muted); }
.exp-terra {
  background: linear-gradient(155deg, var(--terra) 0%, var(--terra-deep) 100%);
  color: #fbe7e3;
}
.exp-terra h3 { color: #fff; }
.exp-terra p { color: #fbe0db; }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 760px; }
.legal h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
.legal h2 { font-size: 1.45rem; margin-top: 2.6rem; margin-bottom: 0.7rem; }
.legal h3 { font-size: 1.12rem; margin-top: 1.6rem; margin-bottom: 0.4rem; }
.legal p, .legal li { color: var(--muted); margin-bottom: 0.9rem; }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--azur-deep); font-weight: 500; }
.legal a:hover { text-decoration: underline; }
.datenschutz-title { word-break: normal; }
.callout {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--azur);
  margin: 1.6rem 0;
}
.callout p { color: var(--text); margin-bottom: 0.5rem; }
.callout .tag {
  display: inline-block; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.14em; font-weight: 700; color: var(--azur-deep); margin-bottom: 0.6rem;
}
.placeholder-pill {
  display: inline-block;
  background: rgba(242,201,76,0.24);
  color: #8a6c12;
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--azur-night);
  color: #b6cee0;
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(246,239,221,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-brand .emblem { width: 48px; height: 48px; }
.footer-brand .brand-script { color: var(--lemon); }
.footer-brand .brand-sub { color: var(--azur-200); }
.footer-about { color: #93b3c8; font-size: 0.95rem; max-width: 42ch; }
.footer-col h4 {
  font-family: var(--font-display); color: var(--cream); font-size: 1.1rem;
  letter-spacing: 0; margin: 0 0 1rem; font-weight: 400;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a, .footer-col span { color: #b6cee0; font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--lemon); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem;
  justify-content: space-between; align-items: center;
  padding-top: 1.5rem; font-size: 0.82rem; color: #7ea2bb;
}
.footer-bottom .legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--lemon); }

/* ---------- Reveal-Animationen (CSS-only, scroll-driven) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: reveal 0.85s var(--ease) forwards;
    animation-delay: var(--d, 0s);
    animation-timeline: view();
    animation-range: entry 0% cover 22%;
  }
}
@keyframes reveal { to { opacity: 1; transform: none; } }
.no-vt .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); animation: none; }
.no-vt .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 470px; }
  .split { grid-template-columns: 1fr; }
  .split.flip > :first-child { order: 0; }
  .hours-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .tile.span-7, .tile.span-5, .tile.span-6, .tile.span-4, .tile.span-8 { grid-column: span 12; }
  .exp-card.span-7, .exp-card.span-5, .exp-card.span-6, .exp-card.span-4, .exp-card.span-8 { grid-column: span 12; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 350px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.2rem;
    background: var(--cream);
    padding: 6rem 1.4rem 2rem;
    box-shadow: -22px 0 60px rgba(11,63,96,0.22);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s var(--ease), visibility 0.4s var(--ease);
    border-left: 1px solid var(--hairline);
  }
  .nav-links.open { transform: translateX(0); visibility: visible; }
  .nav-links a { padding: 0.9rem 1rem; font-size: 1.05rem; border-radius: 10px; }
  .nav-links a.active { background: rgba(30,111,159,0.08); }
  .nav-cta { margin: 0.6rem 0 0; text-align: center; justify-content: center; display: flex; }
  .nav-toggle { display: block; z-index: 55; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(11,63,96,0.42);
    opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
    z-index: 40;
  }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .brand-script { font-size: 1.85rem; }
  .hero-meta { gap: 1.1rem 1.6rem; }
}
