/* =========================================================
   SPRITZ.59 — Onepager Stylesheet
   ========================================================= */

:root {
  /* Brand */
  --coral: #DC7C6F;
  --coral-dark: #C76152;
  --coral-soft: #F2B7AE;
  --green: #2E3D2E;
  --green-deep: #1F2A1F;
  --cream: #F5EFE3;
  --cream-soft: #FBF7EE;
  --ink: #1A1A1A;
  --muted: #6E6A66;
  --line: rgba(0,0,0,.08);
  --line-light: rgba(255,255,255,.18);

  /* Type */
  --ff-display: "Fraunces", Georgia, serif;
  --ff-ui: "Familjen Grotesk", "Inter", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --container: 1280px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-1: 0 6px 18px rgba(20, 20, 20, .08);
  --shadow-2: 0 20px 60px rgba(20, 20, 20, .14);
  --t: cubic-bezier(.2,.7,.2,1);

  /* Header heights */
  --nav-h: 96px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--coral-dark);
  padding: 6px 12px;
  border: 1px solid var(--coral);
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow--light {
  color: #fff;
  border-color: rgba(255,255,255,.55);
}

.h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.01em;
  margin: 0 0 22px;
  color: var(--green);
}
.h2 em { font-style: italic; font-weight: 700; color: var(--coral); }
.h2--light { color: #fff; }
.h2--light em { color: var(--coral-soft); }

.h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 28px);
  margin: 28px 0 10px;
  color: var(--green);
}

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  margin: 0 0 14px;
}
p { margin: 0 0 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--t), background .25s var(--t), color .25s var(--t), border-color .25s var(--t), box-shadow .25s var(--t);
  white-space: nowrap;
  text-align: center;
}
.btn__icon { font-size: 16px; line-height: 1; }
.btn--solid {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 22px rgba(220, 124, 111, .35);
}
.btn--solid:hover { background: var(--coral-dark); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--ghost:hover { background: var(--green); color: #fff; }
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn--ghost-light:hover { background: #fff; color: var(--green); }
.btn--lg { padding: 17px 28px; font-size: 16px; }
.btn--sm { padding: 9px 14px; font-size: 13px; }
.btn--icon-only {
  padding: 14px 16px;
  min-width: 56px;
}
.btn--icon-only .btn__icon { font-size: 18px; }

/* ============================================================
   NAV — transparent, Logo zentriert, Menü links + rechts
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 18px 0;
  transition: padding .35s var(--t), background .35s var(--t), backdrop-filter .35s var(--t), box-shadow .35s var(--t);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__links {
  display: flex;
  gap: 32px;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  color: #fff;
}
.nav__links--left { justify-content: flex-end; }
.nav__links--right { justify-content: flex-start; }
.nav__links a {
  position: relative;
  padding: 8px 4px;
  color: inherit;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
  transition: color .25s var(--t), text-shadow .25s var(--t);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px;
  bottom: 2px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--t);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__logo {
  display: block;
  width: 92px;
  height: 92px;
  transition: width .35s var(--t), height .35s var(--t), transform .35s var(--t);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.25));
}
.nav__logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.nav__logo:hover { transform: scale(1.04); }

/* Scrolled state (after leaving hero) */
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(251, 247, 238, .9);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
}
.nav.is-scrolled .nav__logo { width: 60px; height: 60px; filter: none; }
.nav.is-scrolled .nav__links { color: var(--green-deep); }
.nav.is-scrolled .nav__links a { text-shadow: none; }

/* Burger */
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(0,0,0,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: #fff;
  transition: transform .25s var(--t), opacity .2s var(--t);
}
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 27px; }
.nav.is-scrolled .nav__burger { background: #fff; border-color: var(--line); }
.nav.is-scrolled .nav__burger span { background: var(--green-deep); }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile dropdown — alle 4 Menüpunkte in einem Panel */
.nav__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--pad) 22px;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .02em;
  box-shadow: 0 18px 36px rgba(0,0,0,.10);
}
.nav__mobile a {
  display: block;
  padding: 14px 8px;
  color: var(--green-deep);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a:last-child { border-bottom: 0; }
.nav__mobile a:hover { color: var(--coral); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,42,31,.30) 0%, rgba(31,42,31,.55) 60%, rgba(31,42,31,.85) 100%),
    radial-gradient(60% 60% at 70% 30%, rgba(220,124,111,.25), transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 120px;
}
.hero__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 110px);
  line-height: .96;
  letter-spacing: -.02em;
  margin: 6px 0 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.hero__title em { font-style: italic; color: var(--coral-soft); }
.hero__sub {
  font-size: clamp(16px, 1.5vw, 20px);
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.92);
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__marquee {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  background: var(--coral);
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.2);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--ff-ui);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 14px;
}
.marquee__track span { padding-right: 8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Section base ---------- */
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--dark { background: var(--green); color: #fff; }
.section--cream { background: var(--cream); }
.section__header { max-width: 720px; margin: 0 0 56px; }
.section__header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__intro { font-size: 17px; color: var(--muted); }
.section__intro--light { color: rgba(255,255,255,.78); }

/* ---------- KONZEPT ---------- */
.konzept__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.konzept__text .claim {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  color: var(--coral-dark);
  margin: 18px 0 30px;
  border-left: 3px solid var(--coral);
  padding-left: 16px;
}
.usp-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.usp-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.usp-list span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--coral); color: #fff;
  font-family: var(--ff-display); font-weight: 700; font-size: 13px;
}

.konzept__media { position: relative; }
.konzept__img-main {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-2);
}
.konzept__img-detail {
  position: absolute;
  width: 42%;
  aspect-ratio: 3/4;
  bottom: -40px; left: -30px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 8px solid var(--cream-soft);
  box-shadow: var(--shadow-1);
}
.konzept__badge {
  position: absolute;
  right: -30px; top: -30px;
  width: 130px;
  transform: rotate(-12deg);
  opacity: .95;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.15));
  animation: spin 24s linear infinite;
}
@keyframes spin { to { transform: rotate(348deg); } }

/* ============================================================
   PANINIS — Slider hochkant mit Mouseover-Overlay
   ============================================================ */
.paninis { position: relative; }
.paninis::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--coral), #f0b6a8, var(--coral));
}

.panini-slider {
  position: relative;
  margin: 0 0 48px;
}
.slider__viewport {
  overflow: hidden;
  margin: 0 -8px;
  padding: 12px 8px 30px;
}
.slider__track {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 22px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.slider__track::-webkit-scrollbar { display: none; }

.panini-card {
  flex: 0 0 calc((100% - 66px) / 4);
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 2/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  cursor: pointer;
  isolation: isolate;
}
.panini-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--t), filter .35s var(--t);
}
.panini-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,42,31,0) 35%, rgba(31,42,31,.85) 100%);
  transition: opacity .35s var(--t);
  z-index: 1;
}
.panini-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 4;
  background: var(--coral);
  color: #fff;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
}
.panini-card__price {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 4;
  background: #fff;
  color: var(--green);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .01em;
}
.panini-card__title {
  position: absolute;
  left: 18px; right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  transition: opacity .25s var(--t), transform .35s var(--t);
}
.panini-card__title h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

/* Hover-Overlay */
.panini-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 22px;
  background: linear-gradient(180deg, rgba(46,61,46,.0) 0%, rgba(46,61,46,.55) 40%, rgba(31,42,31,.94) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity .35s var(--t);
}
.panini-card__overlay h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  margin: 0 0 6px;
  letter-spacing: -.01em;
  transform: translateY(8px);
  transition: transform .45s var(--t);
}
.panini-card__overlay p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
  transform: translateY(12px);
  transition: transform .55s var(--t);
}
.panini-card__overlay em { color: var(--coral-soft); font-style: normal; font-weight: 600; }

.panini-card:hover > img,
.panini-card:focus-within > img { transform: scale(1.06); filter: saturate(1.08); }
.panini-card:hover .panini-card__title,
.panini-card:focus-within .panini-card__title { opacity: 0; transform: translateY(10px); }
.panini-card:hover .panini-card__overlay,
.panini-card:focus-within .panini-card__overlay { opacity: 1; }
.panini-card:hover .panini-card__overlay h3,
.panini-card:hover .panini-card__overlay p,
.panini-card:focus-within .panini-card__overlay h3,
.panini-card:focus-within .panini-card__overlay p { transform: none; }
.panini-card:hover::after,
.panini-card:focus-within::after { opacity: 0; }

/* Slider arrows */
.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  border: 1px solid var(--line);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: grid; place-items: center;
  box-shadow: var(--shadow-1);
  transition: transform .25s var(--t), background .25s var(--t);
}
.slider__arrow:hover { background: var(--coral); color: #fff; }
.slider__arrow--prev { left: -18px; }
.slider__arrow--next { right: -18px; }

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.slider__dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .25s var(--t), transform .25s var(--t);
}
.slider__dots button.is-active { background: var(--coral); transform: scale(1.4); }

.paninis__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.paninis__hours {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 22px auto 0;
  padding: 8px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: rgba(255,255,255,.85);
  font-size: 13.5px;
  letter-spacing: .02em;
  text-align: center;
}
.paninis__hours strong { color: var(--coral-soft); font-weight: 600; }
.paninis__actions + .paninis__hours { margin-top: 22px; }
.paninis .container > .paninis__hours {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.paninis__note {
  margin: 18px 0 0;
  text-align: center;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  letter-spacing: .02em;
}

/* ---------- EXTRAS ---------- */
.extras__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.extras__media img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-2);
}
.snacks {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.snacks li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-ui);
  font-size: 17px;
}
.snacks em { font-style: normal; font-weight: 700; color: var(--coral-dark); }

/* ---------- CATERING ---------- */
.catering__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.catering__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 24px;
}
.catering__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-1);
}
.catering__form h3 { margin-top: 0; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form__field { display: block; margin-bottom: 14px; }
.form__field > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--green);
  letter-spacing: .02em;
}
.form__field em { font-style: normal; color: var(--muted); font-weight: 400; }
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: var(--cream-soft);
  color: var(--ink);
  transition: border-color .2s var(--t), background .2s var(--t);
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: #fff;
}
.form__hint { margin: 14px 0 0; font-size: 13px; color: var(--muted); }

/* ============================================================
   INSTAGRAM — Live-Feed via Behold.so
   ============================================================ */
.insta__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* Behold-Widget Theming (offiziell unterstützte CSS-Variablen) */
.insta__widget behold-widget {
  --behold-row-gap: 10px;
  --behold-column-gap: 10px;
  --behold-border-radius: 12px;
  --behold-background-color: transparent;
  --behold-hover-brightness: .78;
  --behold-hover-saturation: 1.1;
  --behold-transition-duration: .35s;

  --behold-overlay-color: rgba(31, 42, 31, .55);
  --behold-overlay-opacity-hover: 1;

  --behold-username-color: #fff;
  --behold-username-font-size: 13px;
  --behold-username-font-weight: 600;

  --behold-caption-color: #fff;
  --behold-caption-font-size: 13px;

  --behold-icon-color: #fff;
  --behold-icon-size: 28px;

  display: block;
  width: 100%;
  min-height: 240px;
}

/* sanftes Skeleton während das Widget lädt */
.insta__widget {
  position: relative;
  border-radius: 12px;
}
.insta__widget::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(46,61,46,.04) 30%, rgba(46,61,46,.08) 50%, rgba(46,61,46,.04) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
  border-radius: 12px;
  z-index: 0;
  pointer-events: none;
  opacity: .6;
}
.insta__widget:has(behold-widget [class]) ::before,
.insta__widget:has(behold-widget img) ::before { display: none; }
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}
.insta__widget behold-widget { position: relative; z-index: 1; }

/* ---------- BESUCH ---------- */
.besuch__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.besuch__badge { display: grid; place-items: center; }
.besuch__badge img {
  max-width: 360px;
  width: 100%;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.10));
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--green);
  color: rgba(255,255,255,.85);
  padding-top: 70px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.1fr 0.9fr;
  gap: 36px;
  padding-bottom: 50px;
}
.footer__brand { max-width: 320px; }
.footer__logo { width: 72px; height: 72px; border-radius: 50%; margin-bottom: 16px; }
.footer__claim {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  color: #fff;
  margin: 0;
}
.footer h4 {
  font-family: var(--ff-ui);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin: 0 0 14px;
}
.footer a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer a:hover { border-color: var(--coral); }
.footer p { color: rgba(255,255,255,.78); margin: 0; line-height: 1.8; }
.footer__note {
  margin-top: 10px !important;
  font-size: 12.5px !important;
  font-style: italic;
  color: rgba(255,255,255,.55) !important;
  line-height: 1.55 !important;
}
.footer__note a {
  color: var(--coral-soft);
  border-bottom: 1px solid rgba(242, 183, 174, .3);
}
.footer__note a:hover { color: #fff; border-color: var(--coral); }

.footer__bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
}
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

/* ============================================================
   MODAL (Speisekarte PDF)
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,28,20,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn .25s var(--t);
}
.modal__panel {
  position: relative;
  width: min(960px, 96vw);
  height: 92vh;
  max-height: 92vh;
  background: var(--cream-soft);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  animation: pop .35s var(--t);
}
@media (max-width: 820px) {
  .modal { padding: 0; }
  .modal__panel {
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: none; }
}
.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.modal__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  color: var(--green);
}
.modal__actions { display: flex; gap: 10px; align-items: center; }
.modal__close {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--green);
  transition: background .2s var(--t), transform .2s var(--t);
}
.modal__close:hover { background: var(--coral); color: #fff; transform: rotate(90deg); }
.modal__body {
  flex: 1;
  min-height: 0;
  background: #1d271d;
  position: relative;
  display: flex;
  flex-direction: column;
}
.modal__scroll {
  flex: 1;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-x pan-y pinch-zoom;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 18px;
  background:
    radial-gradient(ellipse at top, rgba(46,61,46,.2), transparent 70%),
    #1d271d;
}
.modal__scroll img {
  width: 100%;
  max-width: 760px;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
  background: #fff;
  user-select: none;
  -webkit-user-drag: none;
}
.modal__hint {
  margin: 0;
  text-align: center;
  padding: 10px 12px;
  background: rgba(0,0,0,.45);
  color: rgba(255,255,255,.7);
  font-size: 12.5px;
  letter-spacing: .02em;
}
@media (min-width: 821px) {
  .modal__hint { display: none; }
}
.modal__error {
  margin: auto;
  padding: 40px 28px;
  text-align: center;
  color: #fff;
}
.modal__error p { margin: 0 0 14px; }
.modal__error strong { color: var(--coral-soft); }
.modal__error .btn { margin-top: 6px; }

/* ---------- Order Modal (Gastronovi Pickup) ---------- */
.modal__panel--order {
  background: #fff;
}
.modal__body--order {
  flex: 1;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  position: relative;
}
.order__notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px clamp(16px, 3vw, 24px) 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--green-deep);
}
.order__notice strong { color: var(--green); margin-right: 4px; }
.order__notice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--coral-soft);
  font-size: 16px;
}
.order__widget {
  padding: 0;
  min-height: 480px;
}
/* Gastronovi-Widget Reset: volle Breite und höhere min-height für sauberes Rendering */
.order__widget iframe {
  width: 100% !important;
  min-height: 600px !important;
  border: 0;
  display: block;
}
.order__widget > *:not(.order__loading) {
  max-width: 100% !important;
}

.order__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  color: var(--muted);
  font-size: 14.5px;
  text-align: center;
  padding: 24px;
  transition: opacity .35s var(--t), visibility .35s var(--t);
  z-index: 2;
}
.order__loading.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.order__loading p { margin: 0; max-width: 320px; }
.order__loading .btn { margin-top: 10px; }
.order__spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--line);
  border-top-color: var(--coral);
  animation: spin360 .9s linear infinite;
}
@keyframes spin360 {
  to { transform: rotate(360deg); }
}

/* lock body scroll */
body.modal-open { overflow: hidden; }

/* =========================================================
   COOKIE BANNER & INSTAGRAM CONSENT PLACEHOLDER
   ========================================================= */
.cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  padding: 16px;
  pointer-events: none;
  transform: translateY(140%);
  transition: transform .45s var(--t);
}
.cookie.is-open { transform: translateY(0); }
.cookie__inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px clamp(20px, 3vw, 30px);
  box-shadow: 0 24px 60px rgba(20,20,20,.18);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  pointer-events: auto;
}
.cookie__text {
  flex: 1;
  min-width: 0;
}
.cookie__text h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
  margin: 0 0 6px;
}
.cookie__text p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}
.cookie__text strong { color: var(--green); }
.cookie__text a {
  color: var(--coral-dark);
  border-bottom: 1px solid rgba(199,97,82,.35);
}
.cookie__text a:hover { color: var(--coral); border-color: var(--coral); }
.cookie__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Insta-Consent-Placeholder */
.insta__consent {
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: clamp(28px, 4vw, 42px) clamp(20px, 4vw, 36px);
  text-align: center;
  color: var(--ink);
  max-width: 580px;
  margin: 0 auto;
}
.insta__consent-icon {
  display: inline-flex;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral-dark);
  align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.insta__consent h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--green);
  margin: 0 0 8px;
}
.insta__consent p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.insta__consent a { color: var(--coral-dark); border-bottom: 1px solid rgba(199,97,82,.4); }
.insta__consent a:hover { color: var(--coral); border-color: var(--coral); }
.insta__consent-foot {
  margin-top: 16px !important;
  font-size: 13px !important;
}

@media (max-width: 720px) {
  .cookie__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie__actions { width: 100%; }
  .cookie__actions .btn { flex: 1; padding: 12px 16px; font-size: 14px; }
}

/* =========================================================
   SUBPAGES (Impressum / Datenschutz)
   ========================================================= */
.is-subpage { padding-top: 96px; }   /* Platz für fixed Header */

.page-head {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  padding: clamp(40px, 7vw, 80px) 0 clamp(20px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
}
.page-head__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 4px 0 0;
  color: var(--green);
}

.legal {
  background: var(--cream-soft);
  padding: clamp(40px, 6vw, 70px) 0 clamp(60px, 8vw, 100px);
}
.legal__container { max-width: 820px; }
.legal__block { margin-bottom: clamp(28px, 4vw, 44px); }
.legal__block:last-of-type { margin-bottom: 16px; }

.legal h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--green);
  padding-top: 4px;
}
.legal h3 {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .01em;
  margin: 22px 0 6px;
  color: var(--green-deep);
}
.legal p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 12px;
}
.legal p strong { color: var(--green); }
.legal a {
  color: var(--coral-dark);
  border-bottom: 1px solid rgba(199, 97, 82, .35);
  transition: color .2s var(--t), border-color .2s var(--t);
  word-break: break-word;
}
.legal a:hover { color: var(--coral); border-color: var(--coral); }

.legal__back {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal__back .btn { border-bottom: 0; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .panini-card { flex: 0 0 calc((100% - 44px) / 3); }
  .insta__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 820px) {
  /* Desktop-Nav-Links ausblenden, Burger einblenden */
  .nav__links { display: none; }
  .nav__inner {
    /* Logo links, freier Raum dazwischen, Burger rechts */
    grid-template-columns: auto 1fr auto;
  }
  .nav__logo {
    grid-column: 1;
    justify-self: start;
    width: 64px;
    height: 64px;
  }
  .nav__burger {
    display: inline-grid;
    grid-column: 3;
    justify-self: end;
  }
  .nav.is-scrolled .nav__logo { width: 50px; height: 50px; }

  /* Mobile Dropdown ein-/ausklappen */
  .nav.is-open { background: var(--cream-soft); }
  .nav.is-open .nav__mobile { display: flex; }

  .hero__title { font-size: clamp(44px, 12vw, 80px); }

  .konzept__grid,
  .extras__grid,
  .catering__grid,
  .besuch__grid {
    grid-template-columns: 1fr;
  }
  .konzept__media { order: -1; }
  .konzept__img-detail { display: none; }
  .konzept__badge { width: 92px; top: -16px; right: -10px; }

  .panini-card { flex: 0 0 70%; }
  .slider__arrow { display: none; }

  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .nav__logo { width: 64px; height: 64px; }
  .insta__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .order__notice { font-size: 13px; padding: 10px 12px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
