/* ============================================================
   Luthi's Laden — ll.hrs77.de
   Design-Tokens übernommen von der bisherigen Seite (BeTheme):
   Domine (Überschriften), Lora (Text), Reenie Beanie (Handschrift),
   Creme/Orange/Gold-Palette, Dunkelgrün-Töne für Kreise & Abo
   ============================================================ */

:root {
  --bg: #FAF5EF;
  --bg-warm: #FAF5EF;
  --cream: #F5EBE1;
  --ink: #161922;
  --ink-soft: #3a3d46;
  --muted: #707070;
  --accent: #f0a44a;
  --accent-light: #ffc778;
  --btn: #EBAE59;
  --btn-hover: #FFC778;
  --green-dark: #052522;
  --green-1: #7AA5A0;
  --green-2: #1F5B58;
  --green-3: #092A29;
  --green-4: #358D89;
  --gold-1: #BF953F;
  --gold-2: #FCF6BA;
  --gold-3: #B38728;
  --gold-text: #D9B15C;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(22, 25, 34, 0.08);
  --shadow-lift: 0 18px 40px rgba(22, 25, 34, 0.14);
  --radius: 18px;
  --radius-btn: 25px;
  --font-head: "Domine", Georgia, serif;
  --font-body: "Lora", Georgia, serif;
  --font-hand: "Reenie Beanie", cursive;
  --container: min(1560px, 82vw);
  --header-h: 92px;
  --logo-gap: 210px;
}

* { box-sizing: border-box; }

::selection {
  background: var(--accent);
  color: #fff;
}

html {
  background-color: var(--bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background-color: var(--bg);
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h2 { font-size: clamp(32px, 5.5vw, 52px); }
h3 { font-size: clamp(23px, 3.4vw, 32px); letter-spacing: 0; font-weight: 500; }

p { margin: 0 0 1.2em; }

a { color: var(--ink); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

/* Handschrift-Akzente wie auf der alten Seite */
.hand {
  font-family: var(--font-hand);
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--ink);
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-hand);
  font-size: clamp(26px, 4vw, 36px);
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
  transform: rotate(-2deg);
}

/* Goldener Schriftzug (Mittags-Abo) */
.gold {
  background: linear-gradient(100deg, var(--gold-1) 10%, var(--gold-2) 48%, var(--gold-3) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  background-color: var(--btn);
  border: 1px solid var(--btn);
  border-radius: var(--radius-btn);
  padding: 16px 38px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover, .btn:focus-visible {
  background-color: var(--btn-hover);
  border-color: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn--ghost {
  background: transparent;
  border-color: var(--ink);
}

.btn--ghost:hover { background: var(--cream); border-color: var(--ink); }

.btn--wide { padding-left: clamp(48px, 10vw, 140px); padding-right: clamp(48px, 10vw, 140px); }

/* ---------- Header: Menü links, Logo mittig, Aktionen rechts ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  transition: box-shadow 0.3s ease;
}

/* Durchgehende Trennlinie – das Logo bringt seinen eigenen Hintergrund mit */
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: rgba(22, 25, 34, 0.12);
}

.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(22, 25, 34, 0.09); }

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: var(--header-h);
  max-width: none;
  padding: 0 clamp(22px, 2.5vw, 48px);
}

.nav__links {
  display: flex;
  gap: clamp(10px, 1.4vw, 26px);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav__links a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: right 0.25s ease;
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after,
.nav__links a.is-active::after { right: 0; }

.nav__home svg { width: 20px; height: 20px; display: block; }
.nav__home::after { display: none; }

/* Lucide-Icons: Stroke-Stil */
.icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Logo mittig, hängt unter die Header-Kante */
.nav__logo {
  position: relative;
  z-index: 5;
  align-self: start;
  margin-top: 6px;
  margin-bottom: -52px;
}

.nav__logo img { height: 138px; width: auto; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: flex-end;
}

.nav__findus { font-family: var(--font-head); font-size: 15px; font-weight: 600; white-space: nowrap; }

.nav__icon { color: var(--ink); transition: color 0.2s ease; }
.nav__icon svg { width: 19px; height: 19px; display: block; }
.nav__icon:hover { color: var(--accent); }

.nav__dash { width: 34px; height: 1px; background: var(--ink); opacity: 0.6; }

.nav__phone {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid rgba(22, 25, 34, 0.35);
  border-radius: var(--radius-btn);
  padding: 9px 18px;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.nav__phone svg { display: none; width: 22px; height: 22px; }

.nav__phone:hover { background: var(--btn); border-color: var(--btn); }

.nav__burger {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Erster Frame: Öffnungszeiten + Logo ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: clamp(70px, 8vw, 100px) 0 clamp(30px, 5vw, 55px);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  text-align: left;
}

.hero__heading {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 30px;
}

.hero__heading img { width: clamp(38px, 5vw, 54px); flex-shrink: 0; margin-top: 6px; }

.hero__logo img { width: min(460px, 100%); margin: 0 auto; }

.hero__arrow {
  width: 34px;
  margin: 34px auto 0;
  animation: bob 2.4s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Öffnungszeiten-Karten */
.hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hours__card--tall {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hours__card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px 18px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hours__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.hours__card .hand { color: var(--accent); font-size: 32px; }
.hours__card h3 { margin: 6px 0 4px; font-size: 22px; }
.hours__time {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin: 4px 0;
}
.hours__note { color: var(--muted); font-size: 14px; margin: 0; }

.hours__closed {
  display: inline-block;
  margin-top: 18px;
  background: var(--ink);
  color: #f5f2ec;
  border-radius: var(--radius-btn);
  padding: 8px 24px;
  font-family: var(--font-head);
  font-size: 15px;
}

.hours__extra { margin-top: 18px; font-style: italic; font-size: 15.5px; color: var(--ink-soft); }
.hours__extra p { margin-bottom: 0.6em; }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 9vw, 110px) 0; scroll-margin-top: var(--header-h); }
.section--warm { background: var(--bg-warm); }

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 60px);
}

.sep {
  display: block;
  width: auto;
  height: clamp(100px, 18vw, 150px);
  margin: 0 auto;
  opacity: 0.85;
}

/* ---------- Claim + Kreise ---------- */
.claim { padding-top: clamp(40px, 6vw, 70px); }

.claim__title {
  text-align: center;
  font-size: clamp(38px, 6.5vw, 72px);
  letter-spacing: -1px;
  display: table;
  margin: 0 auto clamp(40px, 6vw, 70px);
  padding-bottom: 14px;
  border-bottom: 5px solid var(--accent);
}

.circles {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(14px, 3vw, 44px);
  flex-wrap: wrap;
}

.circle {
  width: clamp(150px, 16vw, 185px);
  height: clamp(150px, 16vw, 185px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
  line-height: 1.3;
  box-shadow: var(--shadow-soft);
}

.circle--1 { background: var(--green-1); margin-top: 60px; }
.circle--2 { background: var(--green-2); margin-top: 110px; }
.circle--3 { background: var(--green-3); }
.circle--4 { background: var(--green-4); margin-top: 60px; }

.circles__stack { display: flex; flex-direction: column; align-items: center; }

.circles__note {
  margin-top: 26px;
  text-align: center;
}

.circles__note img { width: 20px; margin: 0 auto 6px; }
.circles__note .hand { font-size: 28px; display: block; line-height: 1.05; }

/* Reingeflogene Kreise */
.fly {
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.34, 1.45, 0.64, 1), opacity 0.7s ease;
}

.fly--1 { transform: translate(-160px, 120px) rotate(-14deg); }
.fly--2 { transform: translate(-60px, 200px) rotate(8deg); transition-delay: 0.15s; }
.fly--3 { transform: translate(40px, -180px) rotate(-8deg); transition-delay: 0.3s; }
.fly--4 { transform: translate(180px, 140px) rotate(14deg); transition-delay: 0.45s; }

.fly.is-visible { opacity: 1; transform: none; }

/* ---------- Über uns ---------- */
.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.about__text p:first-of-type::first-letter {
  font-family: var(--font-head);
  font-size: 3.4em;
  float: left;
  line-height: 0.85;
  padding: 4px 10px 0 0;
  color: var(--accent);
}

.about__byline {
  font-family: var(--font-hand);
  font-size: 26px;
  color: var(--muted);
  margin-bottom: 18px;
}

.about__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-content: start;
}
.about__photos img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__photos img:nth-child(1) {
  grid-column: 1 / -1;
  width: 86%;
  justify-self: center;
  transform: rotate(-1deg);
}
.about__photos img:nth-child(2) { transform: rotate(1.2deg); }
.about__photos img:nth-child(3) { transform: rotate(-1.2deg); }

/* ---------- Angebot ---------- */
.offer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.offer__card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.offer__card img { height: 210px; width: 100%; object-fit: cover; }
.offer__card .offer__body { padding: 26px 26px 30px; }
.offer__card h3 { font-size: 24px; }
.offer__card p { margin-bottom: 0; font-size: 16px; }

/* Buffet-Kategorien */
.buffet {
  max-width: 820px;
  margin: 0 auto;
}

.buffet__item {
  border-bottom: 1px solid rgba(22, 25, 34, 0.12);
}

.buffet__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 20px 6px;
  font-family: var(--font-head);
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 600;
}

.buffet__item summary::-webkit-details-marker { display: none; }

.buffet__item summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.buffet__item[open] summary::after { transform: rotate(45deg); }

.buffet__item .buffet__content {
  padding: 0 6px 22px;
  color: var(--ink-soft);
}

.buffet__novegan {
  text-align: center;
  margin-top: 34px;
  font-family: var(--font-hand);
  font-size: 32px;
  transform: rotate(-1deg);
}
.buffet__novegan strong { color: var(--accent); font-weight: 400; font-size: 1.2em; }

/* ---------- Galerie: Aus unserer Küche ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  grid-auto-flow: dense;
  gap: 18px;
}

.gallery__item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}

.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img { transform: scale(1.05); }

@media (max-width: 880px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
}

@media (max-width: 480px) {
  .gallery { gap: 12px; grid-auto-rows: 140px; }
}

/* Überleitung zum Abo-Block */
.abo-lead {
  text-align: center;
  margin-top: clamp(50px, 8vw, 90px);
}

.abo-lead .hand { display: block; line-height: 1.1; margin-bottom: 10px; }
.abo-lead img { width: 26px; margin: 0 auto 22px; }

/* ---------- Mittags-Abo (dunkelgrün) ---------- */
/* Lebendige Wellen-Kanten: SVG als gestreckter Hintergrund, damit sie auf
   jeder Bildschirmbreite randlos und ohne Lücken sitzen */
.wave {
  display: block;
  width: 100%;
  height: clamp(30px, 4.5vw, 57px);
  background-color: var(--bg);
  background-image: url("../assets/gruenuebergang.svg?v=3");
  background-size: 100.5% 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  /* Überlappt die grüne Nachbarsektion, damit keine Subpixel-Fuge entsteht */
  margin: -2px 0;
  position: relative;
  z-index: 1;
}

.wave--bottom { transform: rotate(180deg); }

.section--abo {
  background: var(--green-dark);
  color: #EFEAE0;
  margin: 0;
}

.section--abo .section__head p { color: #EFEAE0; }
.section--abo .eyebrow { color: var(--gold-text); }
.section--abo h2 { font-size: clamp(44px, 7vw, 80px); letter-spacing: 0; }

.abo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(26px, 4vw, 44px);
  max-width: 1040px;
  margin: 0 auto;
}

.abo__grid a {
  display: block;
  cursor: zoom-in;
  transition: transform 0.35s ease;
}

.abo__grid a:nth-child(odd) { transform: rotate(-2deg); }
.abo__grid a:nth-child(even) { transform: rotate(2deg); }
.abo__grid a:hover { transform: rotate(0deg) scale(1.02); }

.abo__grid img {
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  width: 100%;
}

.abo__hint {
  text-align: center;
  margin-top: 34px;
  color: var(--gold-text);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(5, 37, 34, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  cursor: zoom-out;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  font-family: var(--font-body);
}

/* ---------- Events (zentriert, wächst aus der Mitte) ---------- */
.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 380px));
  justify-content: center;
  gap: 24px;
  align-items: start;
}

.event {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event:hover { box-shadow: var(--shadow-lift); }

.event summary {
  list-style: none;
  cursor: pointer;
  padding: 24px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  align-items: center;
}

.event summary::-webkit-details-marker { display: none; }

.event__date {
  background: var(--cream);
  border: 1px solid var(--accent-light);
  border-radius: 12px;
  text-align: center;
  padding: 8px 4px;
  line-height: 1.15;
}

.event__date .d { font-family: var(--font-head); font-size: 24px; font-weight: 700; display: block; }
.event__date .m { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; display: block; }

.event__title { display: block; font-family: var(--font-head); font-size: 20px; font-weight: 600; line-height: 1.3; }
.event__meta { display: block; font-size: 14px; color: var(--muted); margin-top: 2px; }

.event__chev {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.event[open] .event__chev { transform: rotate(45deg); }

.event__body { padding: 0 24px 24px; }
.event__body img { border-radius: 12px; margin-bottom: 14px; max-height: 260px; width: 100%; object-fit: cover; }

.event__price {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2) 55%, var(--gold-3));
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-btn);
  padding: 6px 18px;
  margin-top: 10px;
}

.events__empty, .schaufenster__empty {
  text-align: center;
  padding: 40px 20px;
  border: 2px dashed var(--accent-light);
  border-radius: var(--radius);
  max-width: 560px;
  margin: 0 auto;
}
.events__empty .hand, .schaufenster__empty .hand { color: var(--accent); }

/* ---------- Schaufenster (zentriert) ---------- */
.schaufenster__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 300px));
  justify-content: center;
  gap: 24px;
}

.sf-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sf-card:hover { transform: translateY(-5px) rotate(-0.4deg); box-shadow: var(--shadow-lift); }

.sf-card img { height: 200px; width: 100%; object-fit: cover; }

.sf-card__body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.sf-card__body h3 { font-size: 21px; margin-bottom: 6px; }
.sf-card__body p { font-size: 15.5px; margin: 0 0 12px; color: var(--ink-soft); flex: 1; }

.sf-card__price {
  align-self: flex-start;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2) 55%, var(--gold-3));
  border-radius: var(--radius-btn);
  padding: 6px 18px;
}

/* Kacheln wachsen aus der Mitte */
.pop {
  opacity: 0;
  transform: scale(0.72);
  transition: transform 0.65s cubic-bezier(0.34, 1.45, 0.64, 1), opacity 0.5s ease;
}

.pop.is-visible { opacity: 1; transform: none; }

.pop--d1 { transition-delay: 0.12s; }
.pop--d2 { transition-delay: 0.24s; }

/* ---------- Kontakt ---------- */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.contact__card h2 { margin-bottom: 18px; }
.contact__list { list-style: none; margin: 0 0 26px; padding: 0; }
.contact__list li { margin-bottom: 12px; padding-left: 34px; position: relative; }
.contact__list svg {
  position: absolute; left: 0; top: 5px;
  width: 20px; height: 20px;
  color: var(--accent);
}
.contact__list a { text-decoration: none; }
.contact__list a:hover { color: var(--accent); }

.contact__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.contact__photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  transform: rotate(1.2deg);
}

/* OpenStreetMap-Karte */
.map { margin-top: clamp(36px, 6vw, 60px); }

.map__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 40vw, 420px);
  border: 0;
}

/* Fängt Scroll/Klicks ab, damit die Karte das Seiten-Scrollen nicht kapert.
   Erst nach einem Klick auf die Karte ist sie bedienbar (JS blendet aus). */
.map__overlay {
  position: absolute;
  inset: 0;
}

/* ---------- Footer (dunkelgrün wie das Mittags-Abo) ---------- */

.footer {
  background: var(--green-dark);
  color: #cfd8d2;
  text-align: center;
  padding: 44px 0 34px;
  font-size: 14.5px;
}

.footer img { height: 130px; margin: 0 auto 18px; opacity: 0.95; }
.footer a { color: #f5f2ec; text-decoration: none; }
.footer a:hover { color: var(--accent-light); }
.footer__credit { font-size: 12.5px; opacity: 0.75; }
.footer__legal { margin-top: 10px; }

/* ---------- Scroll-Reveal-Animationen ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

.reveal--d1 { transition-delay: 0.12s; }
.reveal--d2 { transition-delay: 0.24s; }
.reveal--d3 { transition-delay: 0.36s; }

/* fly/pop überschreiben das reveal-Grundverhalten */
.reveal.fly, .reveal.pop { transform: none; }
.reveal.fly:not(.is-visible) { opacity: 0; }
.fly--1.reveal:not(.is-visible) { transform: translate(-160px, 120px) rotate(-14deg); }
.fly--2.reveal:not(.is-visible) { transform: translate(-60px, 200px) rotate(8deg); }
.fly--3.reveal:not(.is-visible) { transform: translate(40px, -180px) rotate(-8deg); }
.fly--4.reveal:not(.is-visible) { transform: translate(180px, 140px) rotate(14deg); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .fly, .pop { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__arrow { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .nav__findus { display: none; }
}

@media (max-width: 1180px) {
  .nav__burger { display: block; position: relative; z-index: 95; }

  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 90;
  }

  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 24px; }
  .nav__home { display: none; }

  .nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav__dash { display: none; }
  .nav__logo { align-self: center; margin-top: 4px; margin-bottom: -30px; }
  .nav__logo img { height: 110px; }
  :root { --logo-gap: 130px; }
}

@media (max-width: 900px) {
  .container { max-width: none; }
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__logo { display: none; }
  .hero__heading { justify-content: center; text-align: center; }
  .hero__hours { text-align: center; }

  .about { grid-template-columns: 1fr; }
  .about__photos {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
  .about__photos img:nth-child(1) { grid-column: 1 / -1; }

  .circle--1, .circle--2, .circle--4 { margin-top: 0; }
  .circle--2 { margin-top: 40px; }
  .circles { gap: 18px; }
}

@media (max-width: 700px) {
  .nav__phone { padding: 8px 12px; font-size: 13px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .footer { font-size: 12px; padding: 32px 0 26px; }
  .footer img { height: 100px; }
  .footer__credit { font-size: 10.5px; }
  .nav__phone { padding: 8px; border: none; }
  .nav__phone span { display: none; }
  .nav__phone svg { display: block; }
  .about__photos { grid-template-columns: 1fr; }
  .about__photos img:nth-child(1) { grid-column: auto; }
  .hours { grid-template-columns: 1fr; }
  .hours__card--tall { grid-column: auto; grid-row: auto; }
  .circle { width: 150px; height: 150px; font-size: 18px; }
}
