/* =========================================================
   KäLa – Der Käsladen · Gunzenhausen
   Statische Info-Website · Stylesheet
   Markenfarben lt. Briefing:
     Salbeigrün  #A8BFA6  (Primary – Flächen, Buttons, Highlights)
     Creme       #F3EFE6  (Background)
     Holzbraun   #3A2F2A  (Text/Tiefe – Überschriften, Footer)
     Orange      #FF9E00  (Akzent / CTA – Logo)
========================================================= */

:root {
  --cream: #f3efe6;
  --cream-deep: #ece5d6;
  --paper: #fbf9f3;
  --sage: #a8bfa6;
  --sage-soft: #c2d3c0;
  --sage-deep: #7e9a7c;
  --orange: #ff9e00;
  --orange-deep: #e88a00;
  --wood: #3a2f2a;
  --wood-soft: #6a5d52;
  --line: #e3dac9;
  --white: #ffffff;

  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 16px 40px rgba(58, 47, 42, 0.12);
  --shadow-sm: 0 6px 18px rgba(58, 47, 42, 0.08);

  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-script: "Sacramento", cursive;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font-body);
  color: var(--wood);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, iframe, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.14; color: var(--wood); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem; cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn--primary { background: var(--orange); color: var(--wood); box-shadow: var(--shadow-sm); }
.btn--primary:hover { transform: translateY(-2px); background: var(--orange-deep); color: #fff; }
.btn--sage { background: var(--sage-deep); color: #fff; }
.btn--sage:hover { transform: translateY(-2px); background: #6c886a; }
.btn--ghost { background: transparent; color: var(--wood); border-color: var(--wood); }
.btn--ghost:hover { background: var(--wood); color: var(--cream); transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(243, 239, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; line-height: 1; }
.brand__logo { height: 58px; width: auto; display: block; }
.brand__word { font-family: var(--font-head); font-style: italic; font-weight: 700; font-size: 1.7rem; color: var(--orange); letter-spacing: .5px; }
.brand__sub { font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--wood-soft); margin-top: 3px; font-weight: 600; }

.nav__links { list-style: none; display: flex; align-items: center; gap: 26px; }
.nav__links a { font-weight: 500; color: var(--wood-soft); font-size: .98rem; transition: color .15s ease; }
.nav__links a:hover { color: var(--orange-deep); }
.nav__cta { background: var(--orange); color: var(--wood) !important; padding: 10px 20px; border-radius: 999px; font-weight: 600; }
.nav__cta:hover { background: var(--orange-deep); color: #fff !important; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--wood); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-deep) 55%, var(--sage-soft) 130%);
}
.hero__inner {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: center;
  padding-block: 84px 96px;
}
.hero__eyebrow { display: inline-block; font-size: .78rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; color: var(--sage-deep); margin-bottom: 18px; }
.hero__word { font-family: var(--font-head); font-style: italic; font-weight: 700; color: var(--orange); font-size: clamp(3.6rem, 9vw, 6rem); line-height: .95; }
.hero__logo { margin: 0 0 14px; }
.hero__logo img { width: min(460px, 92%); height: auto; }
.hero__title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: 6px 0 8px; }
.hero__tag { font-family: var(--font-script); color: var(--sage-deep); font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 18px; }
.hero__lead { font-size: 1.12rem; color: var(--wood-soft); max-width: 480px; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta { margin-top: 28px; font-size: .95rem; color: var(--wood-soft); display: flex; gap: 22px; flex-wrap: wrap; }
.hero__meta strong { color: var(--wood); }

.hero__visual { position: relative; }
.hero__photo {
  aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__badge {
  position: absolute; bottom: -22px; left: -22px;
  width: 124px; height: 124px; border-radius: 50%;
  background: var(--orange); color: var(--wood);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; line-height: 1.2;
  box-shadow: var(--shadow); transform: rotate(-8deg); padding: 12px;
  border: 3px solid var(--cream);
}

/* ---------- Vollbreites Bild-Band ---------- */
.showband {
  position: relative; color: #fff; text-align: center; overflow: hidden;
  background: var(--wood);
}
.showband__bg { position: absolute; inset: 0; overflow: hidden; }
.showband__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: kenburns 22s ease-in-out infinite alternate; }
.showband__overlay { position: absolute; inset: 0; background: linear-gradient(rgba(58,47,42,.5), rgba(58,47,42,.62)); }
.showband__content { position: relative; padding-block: 104px; }
.showband .script { color: var(--orange); font-size: clamp(2rem, 5vw, 3rem); line-height: 1; }
.showband h2 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 3rem); margin: 2px 0 16px; }
.showband__lead { max-width: 540px; margin: 0 auto 28px; color: rgba(255,255,255,.92); font-size: 1.1rem; }

/* ---------- Quote band ---------- */
.band {
  background: var(--sage-deep); color: #fff; text-align: center;
  padding-block: 56px;
}
.band p { font-family: var(--font-head); font-style: italic; font-size: clamp(1.3rem, 3vw, 1.9rem); max-width: 820px; margin-inline: auto; }
.band .script { color: #fff; }
.band__script { display: inline-block; margin-top: 12px; font-style: normal; font-size: clamp(1.7rem, 4.5vw, 2.6rem); line-height: 1; }

/* ---------- Sections ---------- */
.section { padding-block: 92px; }
.section--alt { background: var(--cream-deep); }
.section--paper { background: var(--paper); }
.section__head { max-width: 680px; margin-bottom: 46px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: .78rem; font-weight: 700; color: var(--orange-deep); margin-bottom: 12px; }
/* Schmuck-Linien links/rechts der zentrierten Eyebrow (Speisekarten-Look) */
.section__head--center .section__eyebrow { display: inline-flex; align-items: center; gap: 14px; }
.section__head--center .section__eyebrow::before,
.section__head--center .section__eyebrow::after {
  content: ""; width: 40px; height: 1.5px; background: var(--orange); border-radius: 2px;
}
/* Oliven­zweig-Flourish unter zentrierten Titeln */
.flourish { width: 84px; height: 26px; margin: 6px auto 0; display: block; color: var(--sage-deep); fill: none; stroke: var(--sage-deep); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.flourish--orange { color: var(--orange); stroke: var(--orange); }
.section__title { font-size: clamp(2rem, 4.2vw, 2.9rem); margin-bottom: 16px; }
.section__intro { color: var(--wood-soft); font-size: 1.08rem; }

/* ---------- Über uns ---------- */
.about { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.about__collage { position: relative; }
.about__photo-main { aspect-ratio: 4/5; }
.about__photo-sub {
  position: absolute; right: -16px; bottom: -36px; width: 54%;
  aspect-ratio: 4/5; border: 7px solid var(--cream); box-shadow: var(--shadow);
  transform: rotate(3deg);
}
.about__text p { color: var(--wood-soft); margin-bottom: 16px; }
.about__text p:first-of-type { font-size: 1.16rem; color: var(--wood); }
.about__sign { font-family: var(--font-script); color: var(--orange); font-size: 1.9rem; margin-top: 6px; }

/* Foto-Platzhalter (bis echte Bilder da sind) */
.ph {
  border-radius: var(--radius); border: 2px dashed var(--sage-deep);
  background: repeating-linear-gradient(45deg, #fff 0 14px, #f6f2e9 14px 28px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--sage-deep); font-weight: 600; gap: 4px; padding: 18px;
}
.ph small { color: var(--wood-soft); font-weight: 400; }

/* Foto-Slot: zeigt echtes Bild – fällt auf Platzhalter zurück, falls Datei fehlt */
.shot { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--cream-deep); }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot__ph {
  position: absolute; inset: 0; display: none;
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 4px; padding: 18px; font-weight: 600;
  color: #fff; background: linear-gradient(150deg, var(--sage), var(--sage-deep));
}
.shot__ph small { color: rgba(255,255,255,.85); font-weight: 400; }
.shot.is-missing img { display: none; }
.shot.is-missing .shot__ph { display: flex; }

/* ---------- Sortiment Icon-Grid ---------- */
.sortiment { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tile {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 24px 16px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--sage); }
.tile:hover .tile__icon { transform: rotate(-4deg) scale(1.06); }
.tile__icon {
  width: 46px; height: 46px; display: block; margin: 0 auto 10px;
  color: var(--orange-deep); fill: none; stroke: var(--orange-deep);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s ease, stroke-dashoffset 1.1s ease;
}
.tile h3 { font-size: 1.02rem; font-family: var(--font-body); font-weight: 600; }
.tile p { font-size: .85rem; color: var(--wood-soft); margin-top: 2px; }

/* ---------- Frühstück & Brotzeit ---------- */
.fr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fr-card { aspect-ratio: 4/5; border-radius: var(--radius); }
.fr-card img { transition: transform .5s ease; }
.fr-card:hover img { transform: scale(1.05); }
.fr-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 32px 20px 16px; color: #fff;
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 600;
  background: linear-gradient(transparent, rgba(58,47,42,.78));
}

/* ---------- Sommerkarte (Menü) ---------- */
.menu__photo { aspect-ratio: 2 / 1; border-radius: var(--radius); margin-bottom: 32px; box-shadow: var(--shadow-sm); }
.menu { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; }
.menu__card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 36px 34px;
}
.menu__card--drinks { background: linear-gradient(160deg, #fff7ec, #fdeccf); }
.menu__kicker { font-family: var(--font-script); color: var(--orange); font-size: 2rem; line-height: 1; }
.menu__title { font-size: 1.5rem; margin: 2px 0 6px; }
.menu__note { font-size: .9rem; color: var(--wood-soft); margin-bottom: 22px; }
.dish { display: flex; gap: 14px; padding: 16px 0; border-top: 1px dashed var(--line); }
.dish:first-of-type { border-top: 0; padding-top: 4px; }
.dish__no {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--sage-deep); color: #fff; font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.dish__body h4 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dish__body p { font-size: .92rem; color: var(--wood-soft); margin-top: 2px; }
.pill { font-size: .68rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--orange-deep); background: #fff2da; border-radius: 999px; padding: 3px 10px; }
.drink { padding: 13px 0; border-top: 1px dashed rgba(58,47,42,.16); }
.drink:first-of-type { border-top: 0; }
.drink h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; }
.drink p { font-size: .9rem; color: var(--wood-soft); }
.menu__extra { margin-top: 22px; padding-top: 18px; border-top: 1px dashed rgba(58,47,42,.16); }
.menu__extra span { display: inline-block; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; font-size: .85rem; margin: 4px 6px 0 0; }
.menu__foot { text-align: center; margin-top: 30px; font-family: var(--font-script); color: var(--orange); font-size: 1.7rem; }

/* ---------- Partner & Lieferanten ---------- */
.partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.partner {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.partner:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.partner__tag { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--sage-deep); font-weight: 700; margin-bottom: 6px; }
.partner h3 { font-size: 1.3rem; margin-bottom: 10px; }
.partner p { color: var(--wood-soft); font-size: .96rem; flex: 1; }
.partner a { margin-top: 16px; color: var(--orange-deep); font-weight: 600; font-size: .95rem; align-self: flex-start; }
.partner a:hover { text-decoration: underline; }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery .shot { border-radius: var(--radius-sm); aspect-ratio: 4/5; }
.gallery .shot img { transition: transform .5s ease; }
.gallery .shot:hover img { transform: scale(1.06); }

/* ---------- Käseplatten-CTA ---------- */
.platten-cta { text-align: center; margin-top: 44px; }
.platten-cta > p { font-family: var(--font-head); font-size: 1.35rem; color: var(--wood); margin-bottom: 20px; }
.platten-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.platten-cta__hint { font-size: .92rem; color: var(--wood-soft); margin-top: 18px; }

/* ---------- Eindrücke aus dem Laden (gerahmte Foto-Optik) ---------- */
.laden-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.laden-shot { aspect-ratio: 4/5; border: 9px solid #fff; border-radius: 6px; box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease; }
.laden-shot img { transition: transform .6s ease; }
.laden-shot:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 24px 54px rgba(58, 47, 42, .20); }
.laden-shot:hover img { transform: scale(1.05); }

/* ---------- Besuch / Öffnungszeiten + Anfahrt ---------- */
.visit { display: grid; grid-template-columns: 1fr 1.3fr; gap: 30px; align-items: stretch; }
.visit__box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.visit__box h3 { font-size: 1.35rem; margin-bottom: 16px; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: 11px 0; text-align: left; border-bottom: 1px solid var(--line); font-size: .98rem; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours th { font-weight: 600; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; color: var(--wood-soft); }
.hours .is-closed { color: var(--orange-deep); }
.visit__addr { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.visit__addr p { color: var(--wood-soft); margin-bottom: 14px; }
.visit__addr strong { color: var(--wood); display: block; font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 4px; }
.visit__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 420px; }
.visit__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }
.mapconsent {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(150deg, var(--sage-soft), var(--sage));
  position: relative;
}
.mapconsent.is-loaded { background: none; }
.mapconsent__inner { max-width: 360px; padding: 28px; }
.mapconsent__pin { font-size: 2.6rem; display: block; margin-bottom: 6px; }
.mapconsent__inner h3 { color: var(--wood); font-size: 1.3rem; margin-bottom: 8px; }
.mapconsent__inner p { color: var(--wood); font-size: .92rem; margin-bottom: 18px; opacity: .85; }

/* ---------- Kontakt ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.contact__intro p { color: var(--wood-soft); }
.reviews { display: inline-flex; align-items: center; gap: 14px; margin-top: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 14px 22px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.reviews:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.reviews__stars { color: #f5b50a; font-size: 1.25rem; letter-spacing: 2px; }
.reviews__txt strong { color: var(--wood); }
.reviews__txt small { color: var(--wood-soft); }
.contact__items { display: flex; flex-direction: column; gap: 14px; }
.contact__item {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
}
.contact__item:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.contact__icon { font-size: 1.5rem; }
.contact__item small { color: var(--wood-soft); }

/* ---------- Footer ---------- */
.footer { background: var(--wood); color: #e9e1d5; padding-block: 56px 30px; }
.footer__inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 30px; }
.footer__logo { height: 68px; width: auto; display: block; margin-bottom: 8px; }
.footer__brand .brand__word { color: var(--orange); }
.footer__brand .brand__sub { color: #b9ac9d; }
.footer__brand p { color: #c0b4a4; margin-top: 14px; font-size: .95rem; }
.footer h4 { font-family: var(--font-body); font-size: .85rem; letter-spacing: 1.5px; text-transform: uppercase; color: #b9ac9d; margin-bottom: 14px; }
.footer__col a, .footer__col p { display: block; color: #e0d7c9; font-size: .96rem; margin-bottom: 9px; }
.footer__col a:hover { color: var(--orange); }
.footer__copy { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; margin-top: 16px; font-size: .88rem; color: #a99d8e; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer__copy a:hover { color: var(--orange); }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px) scale(.98); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Animationen (passend zum handgemachten Deli-Stil)
========================================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.15) translate(1.5%, -1.5%); } }
@keyframes badgePop { from { opacity: 0; transform: rotate(-8deg) scale(.3); } to { opacity: 1; transform: rotate(-8deg) scale(1); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* Hero-Auftritt (choreografiert, reines CSS) */
.hero__text > * { opacity: 0; animation: fadeUp .8s cubic-bezier(.2,.7,.2,1) forwards; }
.hero__text > *:nth-child(1) { animation-delay: .10s; }
.hero__text > *:nth-child(2) { animation-delay: .20s; }
.hero__text > *:nth-child(3) { animation-delay: .32s; }
.hero__text > *:nth-child(4) { animation-delay: .42s; }
.hero__text > *:nth-child(5) { animation-delay: .52s; }
.hero__text > *:nth-child(6) { animation-delay: .62s; }
.hero__text > *:nth-child(7) { animation-delay: .72s; }
.hero__visual { opacity: 0; animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) .35s forwards; }
.hero__photo img { animation: kenburns 20s ease-in-out 1s infinite alternate; }
.hero__badge { animation: badgePop .7s cubic-bezier(.2,1.5,.4,1) .9s backwards; }

/* „Von Hand gezeichnete" Linien-Icons & Olivenzweige (nur mit JS aktiv) */
html.js .tile__icon { stroke-dasharray: 300; stroke-dashoffset: 300; }
html.js .flourish { stroke-dasharray: 520; stroke-dashoffset: 520; transition: stroke-dashoffset 1.2s ease; }
html.js .tile__icon.is-drawn, html.js .flourish.is-drawn { stroke-dashoffset: 0; }

/* Laufband */
.marquee { overflow: hidden; background: var(--wood); padding: 16px 0; }
.marquee__track { display: flex; align-items: center; width: max-content; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee__track span { font-family: var(--font-head); font-style: italic; font-size: 1.35rem; color: #f1e9da; padding: 0 26px; }
.marquee__track .dot { color: var(--orange); font-style: normal; font-size: 1rem; padding: 0; }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* Nav-Unterstreichung beim Hover */
.nav__links a:not(.nav__cta) { position: relative; }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px;
  background: var(--orange); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
}
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }

/* sanftes Schweben der Hero-„Schön dass du da bist"-Plakette nach dem Auftritt */
@media (hover: hover) {
  .hero__badge:hover { animation: badgePop .7s ease backwards, floaty 3s ease-in-out infinite; }
}

/* Schwebende Deko-Olivenzweige im Zitat-Band */
.band { position: relative; overflow: hidden; }
.band > .container { position: relative; z-index: 2; }
.band__leaf { position: absolute; z-index: 1; width: 150px; height: auto; fill: none; stroke: #fff; opacity: .16; pointer-events: none; }
.band__leaf--1 { top: -14px; left: 4%; transform: rotate(-12deg); animation: floaty 8s ease-in-out infinite; }
.band__leaf--2 { bottom: -18px; right: 5%; width: 190px; transform: rotate(168deg); animation: floaty 10s ease-in-out 1s infinite; }

/* „Nach oben"-Button */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 80;
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--orange); color: var(--wood); font-size: 1.4rem; line-height: 1;
  box-shadow: var(--shadow); opacity: 0; transform: translateY(16px) scale(.8);
  pointer-events: none; transition: opacity .3s ease, transform .3s ease, background .2s ease;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--orange-deep); color: #fff; transform: translateY(-3px); }

/* Dezenter Glanz über Haupt-Buttons beim Hover */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -75%; width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.btn--primary:hover::after { animation: sheen .75s ease; }
@keyframes sheen { from { left: -75%; } to { left: 125%; } }

/* Intro-Auftritt (Preloader mit Logo) */
.intro {
  position: fixed; inset: 0; z-index: 200; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  animation: introOut .7s ease 1.5s forwards;
}
.intro__logo { width: min(340px, 74vw); height: auto; animation: introPop 1.1s cubic-bezier(.2,.8,.2,1) both; }
@keyframes introPop { 0% { opacity: 0; transform: scale(.82) translateY(14px); } 55% { opacity: 1; } 100% { opacity: 1; transform: none; } }
@keyframes introOut { to { opacity: 0; visibility: hidden; } }

/* Scroll-Fortschrittsbalken */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 90;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
}

/* Header schrumpft beim Scrollen */
.nav { transition: height .28s ease; }
.brand__logo { transition: height .28s ease; }
.site-header.is-scrolled .nav { height: 58px; }
.site-header.is-scrolled .brand__logo { height: 40px; }

/* 3D-Tilt-Karten (Maus folgt) */
.tilt { transform-style: preserve-3d; will-change: transform; }

/* Barrierefreiheit: Bewegung reduzieren */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .hero__text > *, .hero__visual { opacity: 1 !important; transform: none !important; }
  html.js .tile__icon, html.js .flourish { stroke-dashoffset: 0 !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 420px; }
  .sortiment { grid-template-columns: repeat(3, 1fr); }
  .menu { grid-template-columns: 1fr; }
  .partners { grid-template-columns: 1fr 1fr; }
  .about, .visit, .contact { grid-template-columns: 1fr; }
  .about__media { order: 2; }
  .about__photo-sub { position: static; width: 62%; margin: 16px auto 0; transform: rotate(2deg); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .laden-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--cream);
    border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav__links.is-open { max-height: 460px; }
  .nav__links li { width: 100%; border-top: 1px solid var(--line); }
  .nav__links a { display: block; padding: 16px 24px; }
  .section { padding-block: 64px; }
  .showband { background-attachment: scroll; }
  .showband__content { padding-block: 72px; }
  .fr-grid { grid-template-columns: 1fr; }
  .menu__photo { aspect-ratio: 16/10; }
  .laden-grid { gap: 16px; }
  .sortiment { grid-template-columns: repeat(2, 1fr); }
  .partners { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .platten-cta__btns { flex-direction: column; align-items: center; }
  .platten-cta__btns .btn { width: 100%; max-width: 340px; white-space: normal; }
  .hero__meta { gap: 14px 18px; }
  .about__photo-main { max-width: 460px; margin-inline: auto; }
}

/* Sehr kleine Geräte (≤400px) */
@media (max-width: 400px) {
  .container { padding-inline: 18px; }
  .hero__word, .hero__logo img { max-width: 100%; }
  .gallery { gap: 10px; }
  .laden-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 20px; font-size: .92rem; }
}
