/* ============================================================
   Bäckerei Moos – Website Relaunch
   Design-System aus dem Creative-Storyboard
   Schriften: Azo Sans (UI/Text) & Kestrel Script (Akzent)
   Kestrel Script: Font made from OnlineWebFonts.com, CC BY 4.0
   ============================================================ */

/* ---------- Webfonts (selbst gehostet) ---------- */
@font-face{ font-family:"Azo Sans"; font-style:normal; font-weight:300; font-display:swap;
  src:url("../assets/fonts/AzoSans-Light.woff") format("woff"); }
@font-face{ font-family:"Azo Sans"; font-style:normal; font-weight:400; font-display:swap;
  src:url("../assets/fonts/AzoSans-Regular.woff") format("woff"); }
@font-face{ font-family:"Azo Sans"; font-style:normal; font-weight:500; font-display:swap;
  src:url("../assets/fonts/AzoSans-Medium.woff") format("woff"); }
@font-face{ font-family:"Azo Sans"; font-style:normal; font-weight:700; font-display:swap;
  src:url("../assets/fonts/AzoSans-Bold.woff") format("woff"); }
@font-face{ font-family:"Azo Sans"; font-style:normal; font-weight:800; font-display:swap;
  src:url("../assets/fonts/AzoSans-Black.woff") format("woff"); }
@font-face{ font-family:"Azo Sans"; font-style:normal; font-weight:900; font-display:swap;
  src:url("../assets/fonts/AzoSans-Black.woff") format("woff"); }
@font-face{ font-family:"Kestrel Script"; font-style:normal; font-weight:400; font-display:swap;
  src:url("../assets/fonts/KestrelScript.woff2") format("woff2"),
      url("../assets/fonts/KestrelScript.woff") format("woff"); }

/* ---------- Design Tokens ---------- */
:root {
  --forest:      #2f3d21;   /* dunkelstes Grün – Header/Footer */
  --forest-800:  #384a27;
  --forest-700:  #46602f;
  --moss:        #5f7d38;   /* mittleres Grün – "Moos" */
  --moss-500:    #6e8f42;
  --gold:        #e7b23e;   /* Senf/Gold-Akzent */
  --gold-600:    #d59f2b;
  --cream:       #f3ecd7;   /* Creme-Hintergrund */
  --cream-50:    #faf5e9;
  --sand:        #e7dcc0;
  --ink:         #23231d;   /* fast-schwarz Text */
  --ink-soft:    #4c4c40;
  --paper:       #ffffff;

  --radius:      18px;
  --radius-sm:   12px;
  --radius-lg:   26px;
  --shadow:      0 18px 40px -18px rgba(30,40,20,.45);
  --shadow-soft: 0 10px 30px -16px rgba(30,40,20,.35);
  --maxw:        1240px;
  --gutter:      clamp(16px, 4vw, 40px);

  --font-ui:     "Azo Sans";
  --font-script: "Kestrel Script";
  --font-hand:   "Kestrel Script";
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, h4 { margin: 0; line-height: 1.05; font-weight: 800; letter-spacing: -0.01em; }

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

/* ---------- Reusable atoms ---------- */
.eyebrow {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--moss);
  display: inline-block;
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold); }

.section { padding-block: clamp(56px, 8vw, 104px); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  color: var(--forest);
  line-height: 1;
}
.section-title.on-dark { color: var(--cream); }
.lead { font-size: 1.08rem; color: var(--ink-soft); margin-top: 16px; }

.hand {
  font-family: var(--font-hand);
  font-weight: 700;
  color: var(--moss);
  line-height: 1.05;
}

.btn {
  --btn-bg: var(--forest);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 800;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: var(--shadow-soft);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn .arrow {
  width: 26px; height: 26px; border-radius: 999px;
  background: var(--gold); color: var(--forest);
  display: grid; place-items: center;
  font-size: 1rem; font-weight: 900;
  transition: transform .18s ease;
}
.btn:hover .arrow { transform: translateX(3px); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--forest); }
.btn--gold .arrow { background: var(--forest); color: var(--gold); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--cream);
  border: 2px solid rgba(243,236,215,.55);
  box-shadow: none;
}
.btn--ghost .arrow { background: rgba(243,236,215,.18); color: var(--cream); }
.btn--light { --btn-bg: var(--cream); --btn-fg: var(--forest); }
.btn--light .arrow { background: var(--moss); color: #fff; }
.btn--sm { padding: 10px 16px; font-size: .85rem; }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }

.arrow-round {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--moss); color: #fff;
  display: grid; place-items: center;
  font-weight: 900; transition: transform .18s ease, background .18s ease;
  flex: none;
}
.arrow-round:hover { background: var(--gold); color: var(--forest); transform: translateX(3px); }

/* ---------- Wordmark / Logo ---------- */
.wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.wordmark .kicker {
  font-size: .58rem; font-weight: 800; letter-spacing: .34em;
  text-transform: uppercase; color: var(--gold); padding-left: 4px;
}
.wordmark .name {
  font-family: var(--font-script);
  font-size: 2.1rem; color: var(--cream);
  margin-top: -2px;
}
.header .wordmark .name { color: var(--cream); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.topbar {
  background: var(--forest-800);
  color: var(--cream);
  font-size: .82rem;
  border-bottom: 1px solid rgba(243,236,215,.12);
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 40px; gap: 16px; flex-wrap: wrap;
}
.topbar a { color: var(--cream); opacity: .85; }
.topbar a:hover { opacity: 1; color: var(--gold); }
.topbar .tag { font-family: var(--font-hand); font-size: 1.25rem; color: var(--gold); }

.header {
  position: sticky; top: 0; z-index: 2000;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 4px 18px -12px rgba(30,40,20,.35);
  border-bottom: 1px solid rgba(47,61,33,.08);
}
.header .container {
  display: flex; align-items: center; gap: 24px;
  min-height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; min-width: 0; }
.brand img {
  width: auto;
  height: clamp(38px, 4vw, 52px);
  max-width: none;
  object-fit: contain;
}
.nav { margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.nav li { position: relative; display: flex; }
/* Trennstriche zwischen den Menüpunkten (wie in der Vorlage) */
.nav li:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  height: 16px; width: 1px; background: rgba(47,61,33,.22);
}
.nav a {
  position: relative; display: block; padding: 10px 14px;
  font-weight: 700; font-size: .82rem; letter-spacing: .02em;
  text-transform: uppercase; color: var(--forest); white-space: nowrap;
  transition: color .18s ease;
}
/* animierte Unterstreichung beim Hover */
.nav a::before {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px;
  height: 2px; background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav a:hover::before, .nav a.active::before { transform: scaleX(1); }
.nav a:hover, .nav a.active { color: var(--forest); }
.header .btn--gold { flex: none; }
.header__social { display: flex; align-items: center; gap: 6px; margin-left: 10px; }
.hicon {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; color: var(--forest);
  background: var(--cream); transition: background .18s ease, color .18s ease, transform .18s ease;
}
.hicon svg { width: 19px; height: 19px; display: block; }
.hicon:hover { background: var(--moss); color: #fff; transform: translateY(-2px); }
.nav-toggle {
  display: none; margin-left: auto;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--cream); border: none; color: var(--forest);
  cursor: pointer;
}
@media (max-width: 1500px) and (min-width: 1081px) {
  .header .container { gap: 12px; }
  .nav a { padding-inline: 8px; font-size: .76rem; }
  .nav a::before { left: 8px; right: 8px; }
  .header__social { margin-left: 0; }
  .header .btn--sm { padding-inline: 12px; gap: 8px; }
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--forest);
  margin-inline: auto; position: relative; transition: .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { 
  position: relative;
  min-height: min(58vh, 560px);
  display: flex; align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: right center;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(30,40,20,.92) 0%, rgba(30,40,20,.72) 42%, rgba(30,40,20,.25) 100%),
    linear-gradient(0deg, rgba(30,40,20,.55), rgba(30,40,20,0) 45%);
}
.hero .container { position: relative; z-index: 2; padding-block: 64px; }
.hero__inner { max-width: 640px; }
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  text-transform: uppercase;
  line-height: .96;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--gold); }
.hero p.sub {
  margin: 22px 0 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(243,236,215,.9);
}
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero__badge {
  position: absolute; right: clamp(16px,4vw,64px); bottom: 40px; z-index: 2;
  font-family: var(--font-hand); font-size: 1.7rem; color: var(--cream);
  transform: rotate(-6deg); text-align: center; opacity: .92;
}
.hero__badge small { display: block; font-family: var(--font-ui); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; opacity: .7; }

/* ============================================================
   ANGEBOTE (nimm 2)
   ============================================================ */
.deals { background: var(--cream); }
.deals .section-head { display: flex; flex-direction: column; align-items: center; text-align: center; margin-inline: auto; }
.deals .section-title .save { color: var(--gold); }
.deal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.deal {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid rgba(47,61,33,.06);
}
.deal:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.deal__img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.deal__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.deal:hover .deal__img img { transform: scale(1.06); }
.deal__day {
  position: absolute; top: 12px; left: 12px;
  background: var(--forest); color: var(--cream);
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.deal__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.deal__name { font-weight: 800; font-size: 1.02rem; color: var(--forest); line-height: 1.15; }
.deal__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.deal__price { font-size: 1.25rem; font-weight: 800; color: var(--moss); }
.deal.is-today { outline: 3px solid var(--gold); }
.deal.is-today .deal__day { background: var(--gold); color: var(--forest); }
.deal__today-tag {
  display: none;
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-600);
}
.deal.is-today .deal__today-tag { display: block; }

/* ============================================================
   LIEBLINGE
   ============================================================ */
.lieblinge { background: var(--cream-50); }
.lieblinge__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 40px;
}
.lieblinge__head .txt { max-width: 620px; }
.fav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fav {
  position: relative; border-radius: var(--radius);
  overflow: hidden; min-height: 360px; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-soft);
  color: #fff;
}
.fav img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fav::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(30,40,20,.92) 6%, rgba(30,40,20,.35) 46%, rgba(30,40,20,.05) 78%);
}
.fav:hover img { transform: scale(1.07); }
.fav__body { position: relative; z-index: 2; padding: 22px; }
.fav__title { font-size: 1.5rem; margin-bottom: 6px; }
.fav__desc { font-size: .92rem; color: rgba(255,255,255,.85); line-height: 1.4; max-width: 30ch; }
.fav__go {
  position: absolute; z-index: 2; top: 18px; right: 18px;
}

/* ============================================================
   MARQUEE (Lieblinge-Produkte & Team laufen durch)
   ============================================================ */
.marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track {
  display: flex; gap: 20px; width: max-content;
  animation: marquee-scroll var(--marquee-dur, 46s) linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.p-card {
  position: relative; flex: 0 0 auto;
  width: 300px; height: 380px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft); color: #fff;
  display: flex; align-items: flex-end;
}
.p-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.p-card::after { content:""; position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(30,40,20,.9) 4%, rgba(30,40,20,.28) 46%, rgba(30,40,20,0) 74%); }
.p-card:hover img { transform: scale(1.06); }
.p-card__body { position: relative; z-index: 2; padding: 20px; }
.p-card__title { font-size: 1.35rem; margin-bottom: 4px; }
.p-card__desc { font-size: .88rem; color: rgba(255,255,255,.85); max-width: 26ch; }

/* Team marquee (nur Fotos, keine Namen) */
.t-card {
  flex: 0 0 auto; width: 260px; height: 320px;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft);
  position: relative;
}
.t-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.t-card::after { content:""; position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(30,40,20,.35), rgba(30,40,20,0) 40%); }
.t-card:hover img { transform: scale(1.05); }

/* ============================================================
   HANDWERK BAND
   ============================================================ */
.band {
  position: relative; color: var(--cream); overflow: hidden;
}
.band__bg { position: absolute; inset: 0; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; }
.band__bg::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(30,40,20,.9) 0%, rgba(30,40,20,.7) 45%, rgba(30,40,20,.35) 100%);
}
.band .container { position: relative; z-index: 2; padding-block: clamp(70px, 10vw, 128px); }
.band__inner { max-width: 560px; }
.band h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); text-transform: uppercase; }
.band h2 .script { font-family: var(--font-hand); text-transform: none; color: var(--gold); display:block; font-size: 1.15em; font-weight: 700; }
.band p { margin: 20px 0 28px; font-size: 1.08rem; color: rgba(243,236,215,.9); }

/* ============================================================
   FAMILIE / PHILOSOPHIE
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3.4; object-fit: cover; width: 100%; }
.split__media .stamp {
  position: absolute; right: -14px; bottom: -14px;
  background: var(--gold); color: var(--forest);
  font-family: var(--font-hand); font-size: 1.5rem; font-weight: 700;
  padding: 14px 22px; border-radius: 16px; box-shadow: var(--shadow-soft);
  transform: rotate(-4deg); line-height: 1;
}
.values { display: flex; gap: 26px; margin-top: 30px; flex-wrap: wrap; }
.value { display: flex; flex-direction: column; gap: 8px; max-width: 150px; }
.value .ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--moss); color: #fff; display: grid; place-items: center;
}
.value b { color: var(--forest); font-size: .98rem; }
.value span { font-size: .84rem; color: var(--ink-soft); }
.split .hand-note { font-family: var(--font-hand); font-size: 1.9rem; color: var(--moss); margin: 6px 0 18px; }

/* ============================================================
   FILIALEN
   ============================================================ */
.filialen { background: var(--forest); color: var(--cream); }
.filialen .section-title { color: var(--cream); }
.filialen .lead { color: rgba(243,236,215,.8); }
.filialen__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: stretch; }
.filialen__grid > * { min-width: 0; }

.filsearch {
  display: flex; align-items: center; gap: 10px; background: rgba(243,236,215,.08);
  border: 1px solid rgba(243,236,215,.16); border-radius: 999px;
  padding: 8px 8px 8px 18px; margin-bottom: 26px; max-width: 560px;
}
.filsearch__ic { flex: none; display: grid; place-items: center; color: currentColor; opacity: .7; }
.filsearch__ic svg { width: 20px; height: 20px; display: block; }
.filsearch input {
  flex: 1; min-width: 0; background: transparent; border: none; outline: none;
  color: var(--cream); font-family: var(--font-ui); font-size: 1rem;
}
.filsearch input::placeholder { color: rgba(243,236,215,.55); }
.filsearch .btn { padding: 12px 20px; }

/* Große, helle Variante für die Filialen-Seite */
.filsearch--lg {
  max-width: 720px; margin-inline: auto; padding: 10px 10px 10px 22px;
  background: #fff; border: 1.5px solid rgba(47,61,33,.14);
  box-shadow: var(--shadow-soft); color: var(--ink);
}
.filsearch--lg .filsearch__ic { color: var(--moss); opacity: 1; }
.filsearch--lg input { color: var(--ink); font-size: 1.08rem; padding-block: 8px; }
.filsearch--lg input::placeholder { color: rgba(35,35,29,.45); }
.filsearch--lg .filsearch__pin { flex: none; color: var(--moss); display: grid; place-items: center; padding: 0 4px; }
.filsearch--lg .filsearch__pin svg { width: 22px; height: 22px; }
.filsearch--lg .btn { padding: 14px 26px; }

.fil-list { display: flex; flex-direction: column; gap: 14px; }
.fil-card {
  display: flex; gap: 16px; align-items: center;
  background: rgba(243,236,215,.06);
  border: 1px solid rgba(243,236,215,.12);
  border-radius: var(--radius-sm); padding: 16px 18px;
  transition: background .18s ease, transform .18s ease;
}
.fil-card:hover { background: rgba(243,236,215,.12); transform: translateX(4px); }
.fil-card__pin { width: 76px; height: 76px; border-radius: 12px; overflow: hidden; background: var(--moss); display: block; flex: none; }
.fil-card__pin img { width: 100%; height: 100%; object-fit: cover; }
.fil-card__info { flex: 1; min-width: 0; }
.fil-card__name { font-weight: 800; font-size: 1.05rem; color: var(--cream); }
.fil-card__meta { font-size: .86rem; color: rgba(243,236,215,.7); margin-top: 2px; }
.fil-card__tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.tag-chip { font-size: .7rem; font-weight: 700; letter-spacing: .04em; padding: 3px 9px; border-radius: 999px; background: rgba(231,178,62,.16); color: var(--gold); }
.fil-empty { color: rgba(243,236,215,.7); font-style: italic; padding: 12px 4px; display: none; }
.fil-search-result { margin-top: 18px; }
.fil-search-result .fil-result-card + .fil-result-card { margin-top: 10px; }
.fil-result-card {
  display: grid; grid-template-columns: 96px 1fr; gap: 16px; align-items: center;
  background: rgba(243,236,215,.12); border: 1px solid rgba(231,178,62,.6);
  border-radius: var(--radius-sm); padding: 12px;
}
.fil-result-card img { width: 96px; height: 96px; object-fit: cover; border-radius: 9px; }
.fil-result-card h3 { color: var(--cream); font-size: 1.1rem; }
.fil-result-card p { color: rgba(243,236,215,.78); margin: 4px 0; font-size: .9rem; }
.fil-result-card a { color: var(--gold); font-size: .88rem; font-weight: 800; }
.fil-search-result__message { color: var(--gold); font-weight: 800; margin: 0 0 8px; }

.fil-map { position: relative; isolation: isolate; height: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #dfe7cb; min-height: 0; }
.fil-map #moosMap { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.fil-map__note {
  position: absolute; right: 18px; bottom: 16px; z-index: 500;
  font-family: var(--font-hand); font-size: 1.7rem; color: var(--forest);
  text-align: right; line-height: 1; transform: rotate(-4deg);
  background: rgba(243,236,215,.85); padding: 6px 14px; border-radius: 12px;
  pointer-events: none; box-shadow: var(--shadow-soft);
}
.leaflet-container, .leaflet-popup-content, .leaflet-control { font-family: var(--font-ui); }
.leaflet-tooltip { font-family: var(--font-ui); font-weight: 800; color: var(--forest); border: 0; border-radius: 8px; box-shadow: var(--shadow-soft); }
.leaflet-popup-content b { color: var(--forest); }
.moos-marker {
  width: 30px; height: 30px; border-radius: 50% 50% 50% 0;
  background: var(--moss); transform: rotate(-45deg);
  border: 3px solid #fff; box-shadow: 0 3px 8px rgba(0,0,0,.3);
}
.filialen .all-link { margin-top: 26px; display: inline-flex; }

/* map pins */
.map-pin { cursor: default; }
.map-pin circle.dot { fill: var(--moss); }
.map-pin.gold circle.dot { fill: var(--gold); }
.map-pin text { font: 700 13px var(--font-ui); fill: var(--forest); }

/* ============================================================
   FRÜHSTÜCK
   ============================================================ */
.fruehstueck { background: var(--cream); }
.fruehstueck .split__media .stamp { background: var(--forest); color: var(--cream); }
.breakfast-menu-section .split { grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); align-items: start; }
.split__media--menu img { aspect-ratio: auto; object-fit: contain; background: #fff; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--moss); color: #fff; min-height: 400px; display: flex; align-items: center; }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats .lbl-wrap { grid-column: 1 / -1; margin-bottom: 20px; }
.stat b { display: block; font-size: clamp(4rem, 8vw, 7rem); font-weight: 800; line-height: .9; letter-spacing: -.06em; }
.stat span { display: block; margin-top: 12px; font-weight: 700; letter-spacing: .06em; opacity: .9; text-transform: uppercase; }

/* ============================================================
   KARRIERE teaser
   ============================================================ */
.karriere { background: var(--cream-50); }
.karriere__box {
  background: var(--forest); color: var(--cream);
  border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 56px);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center;
}
.karriere__box h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.karriere__box .hand { color: var(--gold); font-size: 1.6rem; }
.jobchips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.jobchip { background: rgba(243,236,215,.1); border: 1px solid rgba(243,236,215,.18); border-radius: 999px; padding: 8px 16px; font-weight: 700; font-size: .9rem; }
.karriere__cta { display: flex; flex-direction: column; gap: 14px; }
.team__career { margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(47,61,33,.16); }
.team__career h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--forest); }
.team__career p { color: var(--ink-soft); margin: 10px 0 18px; }

/* ============================================================
   PARTNER
   ============================================================ */
.partner { background: var(--cream); text-align: center; }
.partner__logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(20px, 4vw, 52px); margin-top: 30px;
}
.partner__logos img {
  height: 64px; width: auto; object-fit: contain;
  transition: transform .25s ease, filter .25s ease;
}
.partner__logos img:hover { transform: scale(1.18); filter: drop-shadow(0 8px 16px rgba(30,40,20,.25)); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--forest); color: var(--cream); padding-block: 60px 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { opacity: .82; } .footer a:hover { opacity: 1; color: var(--gold); }
.footer__brand p { color: rgba(243,236,215,.75); max-width: 34ch; margin: 14px 0 0; }
.footer__brand .tag { font-family: var(--font-hand); font-size: 1.5rem; color: var(--gold); margin-top: 14px; display:block; }
.footer__contact li { display: flex; gap: 10px; opacity: .85; }
.footer__bottom {
  border-top: 1px solid rgba(243,236,215,.14); margin-top: 44px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(243,236,215,.65);
}
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 12px; background: rgba(243,236,215,.1); display: grid; place-items: center; opacity: 1; }
.footer__social svg { width: 20px; height: 20px; display: block; }
.footer__social a:hover { background: var(--gold); color: var(--forest); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .deal-grid { grid-template-columns: repeat(3, 1fr); }
  .fav-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1080px) {
  .nav { display: none; position: absolute; top: 78px; left: 0; right: 0;
    background: #fff; padding: 12px var(--gutter) 20px; box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(47,61,33,.1); }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav li:not(:last-child)::after { display: none; }
  .nav li:not(:last-child) { border-bottom: 1px solid rgba(47,61,33,.08); }
  .nav a { padding: 13px 6px; }
  .nav a::before { left: 6px; right: auto; width: 26px; bottom: 8px; }
  .nav-toggle { display: grid; place-items: center; order: 4; margin-left: 8px; }
  .header .btn--gold { display: none; }
  .header__social { order: 3; margin-left: auto; }
  .brand { order: 1; }
  .split { grid-template-columns: 1fr; }
  .breakfast-menu-section .split { grid-template-columns: 1fr; }
  .filialen__grid { grid-template-columns: 1fr; }
  .fil-map { height: 420px; min-height: 420px; }
  .karriere__box { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .stats { min-height: 0; }
}
@media (max-width: 720px) {
  .topbar .container { justify-content: center; }
  .topbar .tag { display: none; }
  .deal-grid { grid-template-columns: repeat(2, 1fr); }
  .fav { min-height: 300px; }
  .footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .deal-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .fav-grid { grid-template-columns: 1fr; }
  .hero { min-height: min(58vh, 560px); }
  .hero__bg { background: var(--forest); }
  .hero__bg img { object-fit: contain; }
}

/* ============================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================================ */
.legal-hero {
  background: var(--forest); color: var(--cream);
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
}
.legal-hero .eyebrow { color: var(--gold); }
.legal-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.legal-body { padding-block: clamp(40px, 6vw, 72px); }
.legal-body .container { max-width: 860px; }
.legal-body h2 { color: var(--forest); font-size: 1.5rem; margin: 40px 0 12px; }
.legal-body h3 { color: var(--moss); font-size: 1.1rem; margin: 26px 0 8px; }
.legal-body p, .legal-body li { color: var(--ink-soft); }
.legal-body p { margin: 0 0 14px; }
.legal-body ul { padding-left: 20px; margin: 0 0 18px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--moss); text-decoration: underline; }
.legal-card {
  background: var(--paper); border: 1px solid rgba(47,61,33,.1);
  border-radius: var(--radius); padding: 26px 28px; margin-bottom: 26px;
  box-shadow: var(--shadow-soft);
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-back { display: inline-flex; margin-top: 30px; }
.header--solid { position: static; }

/* ============================================================
   SUBPAGE HEROES & CONTENT
   ============================================================ */
.page-hero { position: relative; color: var(--cream); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(30,40,20,.94) 0%, rgba(30,40,20,.7) 55%, rgba(30,40,20,.35) 100%); }
.page-hero .container { position: relative; z-index: 2; padding-block: clamp(56px, 9vw, 110px); }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); text-transform: uppercase; max-width: 15ch; }
.page-hero h1 .accent { color: var(--gold); }
.page-hero p.sub { margin-top: 18px; font-size: 1.15rem; color: rgba(243,236,215,.9); max-width: 46ch; }
.page-hero__badge {
  position: absolute; right: clamp(16px,5vw,70px); top: 50%; transform: translateY(-50%) rotate(-6deg); z-index: 3;
  background: var(--gold); color: var(--forest); border-radius: 50%;
  width: 150px; height: 150px; display: grid; place-items: center; text-align: center;
  font-weight: 800; font-size: .95rem; line-height: 1.2; padding: 16px; box-shadow: var(--shadow);
}
.page-hero__hand {
  position:absolute; z-index:3; left: clamp(16px,4vw,48px); bottom: 26px;
  font-family: var(--font-hand); font-size: 1.6rem; color: var(--cream); opacity:.9; transform: rotate(-4deg);
}
@media (max-width:720px){ .page-hero__badge{ display:none; } }

.prose { max-width: 760px; }
.prose p { color: var(--ink-soft); margin: 0 0 16px; font-size: 1.05rem; }
.prose h2 { color: var(--forest); font-size: clamp(1.6rem,3vw,2.2rem); margin: 40px 0 14px; }
.prose h3 { color: var(--moss); margin: 26px 0 8px; }

.feature-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--cream); color: var(--forest); display: grid; place-items: center; flex: none; font-size: 1.3rem; }
.feature b { color: var(--forest); display: block; }
.feature span { font-size: .9rem; color: var(--ink-soft); }

/* Jobs list */
.jobs { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.job {
  background: #fff; border: 1px solid rgba(47,61,33,.1); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.job b { color: var(--forest); font-size: 1.1rem; }
.job span { font-size: .88rem; color: var(--ink-soft); }

/* Form */
.form-wrap {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 44px); border: 1px solid rgba(47,61,33,.08);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .9rem; color: var(--forest); }
.field label .req { color: #c0562b; }
.field input, .field select, .field textarea {
  font-family: var(--font-ui); font-size: 1rem; padding: 13px 15px;
  border: 1.5px solid rgba(47,61,33,.18); border-radius: 12px; background: var(--cream-50);
  color: var(--ink); outline: none; transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--moss); box-shadow: 0 0 0 3px rgba(95,125,56,.15); }
.field textarea { resize: vertical; min-height: 96px; }
.filefield {
  border: 2px dashed rgba(47,61,33,.25); border-radius: 12px; padding: 20px; text-align: center;
  color: var(--ink-soft); cursor: pointer; background: var(--cream-50); font-size: .9rem;
}
.filefield:hover { border-color: var(--moss); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); }
.consent input { margin-top: 3px; }
.form-success {
  display: none; background: var(--moss); color: #fff; border-radius: var(--radius);
  padding: 22px 24px; font-weight: 700; margin-bottom: 18px;
}
.form-success.show { display: block; }
.field.invalid input, .field.invalid select { border-color: #c0562b; }

.value-strip { background: var(--moss); color:#fff; }
.value-strip .container { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.value-strip .v { display: flex; gap: 12px; align-items: center; }
.value-strip .v .ic { width: 44px; height:44px; border-radius: 12px; background: rgba(255,255,255,.16); display: grid; place-items: center; flex:none; }
.value-strip .v b { display:block; }
.value-strip .v span { font-size:.86rem; opacity:.9; }

/* Filialen-Übersichtsseite */
.map-full { position: relative; isolation: isolate; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); height: 460px; background:#dfe7cb; }
.map-full #moosMap { position:absolute; inset:0; width:100%; height:100%; }
.region-block { margin-top: 40px; }
.region-block > h3 { color: var(--forest); font-size: 1.35rem; margin: 0 0 4px; display:flex; align-items:center; gap:10px; }
.region-block > h3::before { content:"📍"; }
.region-block .region-sub { color: var(--ink-soft); font-size:.9rem; margin: 0 0 18px; }
.branch-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
#branchList { scroll-margin-top: 110px; }
.branch {
  background:#fff; border:1px solid rgba(47,61,33,.1); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); display:flex; flex-direction:column; overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.branch:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.branch__img { aspect-ratio: 16/10; overflow:hidden; position:relative; }
.branch__img img { width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.branch:hover .branch__img img { transform: scale(1.06); }
.branch__tag {
  position:absolute; top:12px; left:12px; z-index:2;
  background: rgba(47,61,33,.92); color: var(--cream);
  font-size:.68rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  padding:5px 11px; border-radius:999px;
}
.branch__body { padding: 16px 18px 18px; display:flex; flex-direction:column; gap:6px; flex:1; }
.branch b { color: var(--forest); font-size: 1.05rem; line-height:1.2; }
.branch .hours { font-size:.86rem; color: var(--ink-soft); }
.branch .call { margin-top: auto; font-weight:700; color: var(--moss); font-size:.92rem; display:inline-flex; align-items:center; gap:6px; padding-top:8px; }
.branch .call:hover { color: var(--gold-600); }
@media (max-width: 980px){ .branch-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .branch-grid { grid-template-columns: 1fr; } .map-full{ height:360px; } }

/* ============================================================
   GESCHÄFTSFÜHRUNG
   ============================================================ */
.gf-hero { position: relative; min-height: min(72vh, 720px); display: flex; align-items: center; overflow: hidden; background: var(--forest); color: var(--cream); }
.gf-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.gf-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24,34,17,.95) 0%, rgba(24,34,17,.78) 34%, rgba(24,34,17,.08) 72%); }
.gf-hero__content { position: relative; z-index: 1; padding-block: clamp(64px, 9vw, 110px); }
.gf-hero__content h1 { max-width: 760px; font-size: clamp(2.8rem, 5.3vw, 4.7rem); line-height: .98; color: #fff; }
.gf-hero__content h1 span { color: #a6c26e; white-space: nowrap; }
.gf-hero__content p { max-width: 620px; margin: 26px 0 0; color: rgba(255,255,255,.9); font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.65; }
.gf-copy { font-size: 1.02rem; line-height: 1.72; }
.gf-copy p { color: var(--ink-soft); margin: 16px 0 0; }
.gf-copy--center { max-width: 880px; text-align: center; }
.gf-copy--center .section-title { margin-bottom: 26px; }
.gf-intro { background: var(--cream-50); }
.gf-person--joern { background: #fff; }
.gf-person--oliver { background: var(--cream-50); }
.gf-person__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .75fr); gap: clamp(36px, 7vw, 90px); align-items: center; }
.gf-person__grid--image { grid-template-columns: minmax(300px, .8fr) minmax(0, 1.45fr); }
.gf-person__lead { font-family: var(--font-hand); font-size: 1.8rem; color: var(--moss) !important; line-height: 1.15; }
.gf-facts { background: var(--cream-50); border-left: 5px solid var(--gold); border-radius: var(--radius-sm); padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow-soft); }
.gf-facts h3 { color: var(--forest); font-size: 1.1rem; letter-spacing: .16em; text-transform: uppercase; }
.gf-facts ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 18px; }
.gf-facts li { position: relative; padding-left: 26px; color: var(--ink-soft); font-weight: 700; }
.gf-facts li::before { content: ""; position: absolute; left: 0; top: .58em; width: 11px; height: 11px; border-radius: 50%; background: var(--moss); }
.gf-quote { padding-block: clamp(60px, 8vw, 96px); background: var(--forest); color: var(--cream); text-align: center; }
.gf-quote blockquote { max-width: 980px; margin: 0 auto; font-size: clamp(1.45rem, 3vw, 2.35rem); line-height: 1.4; font-weight: 500; }
.gf-signature { font-family: var(--font-hand); color: var(--gold); font-size: 2.2rem; line-height: 1; margin: 28px 0 8px; }
.gf-quote--light { background: #e8eddc; color: var(--forest); }
.gf-quote--light .gf-signature { color: var(--moss); }
.gf-person__portrait { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--forest); }
.gf-person__portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top center; }
.gf-credentials { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 28px; }
.gf-credentials div { background: #fff; border: 1px solid rgba(47,61,33,.1); border-radius: var(--radius-sm); padding: 16px; }
.gf-credentials b, .gf-credentials span { display: block; }
.gf-credentials b { color: var(--forest); }
.gf-credentials span { color: var(--ink-soft); font-size: .9rem; margin-top: 4px; }
.gf-together { position: relative; background: linear-gradient(120deg, rgba(27,36,19,.97), rgba(52,69,35,.92)), url('../assets/img/handwerk-baker.jpg') center/cover; color: var(--cream); }
.gf-together__inner { max-width: 880px; }
.gf-together h2 { font-size: clamp(2.5rem, 5vw, 4.6rem); color: #fff; }
.gf-together p { max-width: 760px; color: rgba(243,236,215,.88); font-size: 1.08rem; }
.gf-together__final { color: var(--gold) !important; font-size: clamp(2rem, 4vw, 3.5rem) !important; font-weight: 900; line-height: 1.05; margin-top: 34px; }
@media (max-width: 900px) {
  .gf-hero { min-height: 640px; align-items: end; }
  .gf-hero__image { object-position: 62% center; }
  .gf-hero__shade { background: linear-gradient(0deg, rgba(24,34,17,.96) 0%, rgba(24,34,17,.72) 58%, rgba(24,34,17,.12) 100%); }
  .gf-person__grid, .gf-person__grid--image { grid-template-columns: 1fr; }
  .gf-person__portrait { max-width: 560px; }
}
@media (max-width: 560px) {
  .gf-hero__content h1 { font-size: 2.45rem; }
  .gf-hero__content h1 span { white-space: normal; }
  .gf-hero__content p { font-size: .95rem; }
  .gf-credentials { grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .feature-row { grid-template-columns: 1fr; }
  .jobs { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .value-strip .container { grid-template-columns: 1fr; }
}

/* ============================================================
   UNSERE FÜHRUNG – neue Seitenstruktur
   ============================================================ */
.leadership-page { background: #f8f3e7; }
.gf-header {
  position: sticky; top: 0; z-index: 3000;
  background: rgba(18,32,16,.97); color: #fff;
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 8px 28px rgba(12,20,9,.18);
}
.gf-header .container { min-height: 82px; }
.gf-header .brand img { width: 112px; max-height: 68px; filter: brightness(0) invert(1); }
.gf-header .nav a { color: rgba(255,255,255,.9); }
.gf-header .nav a:hover, .gf-header .nav a.active { color: #fff; }
.gf-header .nav li:not(:last-child)::after { background: rgba(255,255,255,.16); }
.gf-header .hicon { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
.gf-header .hicon:hover { color: var(--forest); background: var(--gold); border-color: var(--gold); }
.gf-header .nav-toggle { border-color: rgba(255,255,255,.28); color: #fff; }
.gf-header .nav-toggle::before, .gf-header .nav-toggle::after, .gf-header .nav-toggle span { background: #fff; }

.lead-kicker {
  margin: 0 0 10px; color: var(--gold); font-size: .72rem; line-height: 1.2;
  font-weight: 900; letter-spacing: .17em; text-transform: uppercase;
}
.lead-hero {
  position: relative; min-height: clamp(560px, 67vh, 690px); overflow: hidden;
  display: flex; align-items: center; color: #fff; background: #172312;
}
.lead-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.lead-hero__shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,25,11,.94) 0%, rgba(13,25,11,.78) 31%, rgba(13,25,11,.12) 62%, rgba(13,25,11,.42) 100%);
}
.image-ai-note {
  position: absolute; z-index: 3; left: auto; right: clamp(16px,3vw,42px); bottom: clamp(14px,3vw,30px);
  margin: 0; padding: .32rem .58rem; border-radius: 3px; color: #ffffffe6; background: #0d190b8c;
  font-family: var(--font-ui); font-size: .68rem; line-height: 1.2; letter-spacing: .04em; backdrop-filter: blur(4px);
}
.lead-hero__content { position: relative; z-index: 2; padding-block: 70px; }
.lead-hero h1 { margin: 0; max-width: 680px; color: #fff; font-size: clamp(3rem,5.2vw,5.2rem); line-height: .96; letter-spacing: -.045em; white-space: nowrap; }
.lead-hero h1 em { color: #a7c36e; font-style: normal; }
.lead-hero__intro { max-width: 585px; margin: 26px 0 0; color: rgba(255,255,255,.92); font-size: clamp(1rem,1.3vw,1.14rem); line-height: 1.62; }
.lead-hero__note {
  position: absolute; z-index: 2; right: clamp(28px,6vw,110px); bottom: clamp(48px,8vh,90px);
  margin: 0; color: #fff; font-family: var(--font-hand); font-size: clamp(1.55rem,2.5vw,2.55rem);
  line-height: 1.05; transform: rotate(-4deg); text-shadow: 0 3px 18px rgba(0,0,0,.65);
}
.lead-hero__note span, .lead-team p span { color: var(--gold); }

.lead-joern { padding-block: clamp(70px,8vw,110px); background: #fffdf8; }
.lead-person-grid { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(310px,.72fr); gap: clamp(48px,7vw,100px); align-items: center; }
.lead-copy h2 { margin: 0 0 2px; color: var(--forest); font-size: clamp(2.6rem,4.8vw,4.3rem); line-height: 1; letter-spacing: -.035em; }
.lead-copy > p:not(.lead-kicker):not(.lead-role) { margin: 17px 0 0; max-width: 770px; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; }
.lead-role { margin: 8px 0 28px; color: var(--forest); font-size: .82rem; font-weight: 800; letter-spacing: .25em; text-transform: uppercase; }
.lead-role--script { color: var(--moss); font-family: var(--font-hand); font-size: 1.8rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.lead-signature-image { display: block; width: min(100%, 330px); height: auto; object-fit: contain; }
.lead-signature-image--joern { margin: 24px 0 0 auto; }
.lead-signature-image--oliver { flex: 0 0 250px; width: 250px; }
.lead-focus { padding: clamp(28px,4vw,44px); background: #f5efdf; border: 1px solid rgba(47,61,33,.05); border-radius: 3px; box-shadow: 0 12px 30px rgba(39,52,28,.09); }
.lead-focus h3 { margin: 0 0 26px; color: var(--forest); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; }
.lead-focus ul { display: grid; gap: 22px; margin: 0; padding: 0; list-style: none; }
.lead-focus li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: center; color: var(--ink); font-size: .94rem; line-height: 1.35; }
.lead-focus__icon { color: var(--forest); font-size: 1.65rem; line-height: 1; text-align: center; }

.lead-quote { padding-block: clamp(52px,6vw,78px); background: #edf0dd; color: var(--forest); }
.lead-quote__inner { display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: clamp(20px,3vw,48px); align-items: center; }
.lead-quote__mark { align-self: start; color: var(--forest); font-size: 6rem; font-weight: 900; line-height: .7; }
.lead-quote blockquote { margin: 0; max-width: 850px; font-size: clamp(1.32rem,2.25vw,2.05rem); font-style: italic; font-weight: 600; line-height: 1.42; }
.lead-quote p { margin: 14px 0 0; color: var(--ink-soft); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.lead-signature { color: var(--forest); font-family: var(--font-hand); font-size: clamp(2rem,3vw,3.2rem); line-height: 1; white-space: nowrap; transform: rotate(-5deg); }

.lead-oliver { padding-block: clamp(72px,8vw,112px); background: #f8f3e7; }
.lead-oliver__grid { display: grid; grid-template-columns: minmax(300px,440px) minmax(0,1fr); gap: clamp(46px,7vw,100px); align-items: center; }
.lead-oliver__portrait { overflow: hidden; border-radius: 2px; box-shadow: 0 16px 40px rgba(33,43,24,.2); background: #d6d8cf; }
.lead-oliver__portrait img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; object-position: center top; }
.lead-oliver__signoff { display: flex; gap: 30px; align-items: end; justify-content: space-between; margin-top: 30px; padding-top: 23px; border-top: 1px solid rgba(47,61,33,.17); }
.lead-oliver__signoff q { color: var(--forest); font-family: var(--font-hand); font-size: clamp(1.35rem,2vw,2rem); line-height: 1.2; }

.lead-team {
  position: relative; min-height: 260px; display: flex; align-items: center; color: #fff;
  background: linear-gradient(90deg,rgba(20,27,14,.94),rgba(30,38,19,.7)), url('../assets/img/handwerk-baker.jpg') center 43%/cover;
}
.lead-team__inner { display: flex; justify-content: space-between; align-items: center; gap: 50px; padding-block: 44px; }
.lead-team h2 { margin: 0; color: #fff; font-size: clamp(2.6rem,5vw,4.7rem); line-height: .98; }
.lead-team h2 span { color: #a7c36e; }
.lead-team p { margin: 0; min-width: 190px; color: #fff; font-size: 1.15rem; font-weight: 700; line-height: 1.45; }

@media (max-width: 1080px) {
  .gf-header .nav { background: rgba(18,32,16,.99); }
  .gf-header .nav li:not(:last-child) { border-color: rgba(255,255,255,.1); }
  .lead-hero__note { right: 28px; }
}
@media (max-width: 900px) {
  .lead-hero { min-height: 660px; align-items: end; }
  .lead-hero__image { object-position: 64% center; }
  .lead-hero__shade { background: linear-gradient(0deg,rgba(13,25,11,.97) 0%,rgba(13,25,11,.7) 54%,rgba(13,25,11,.18) 100%); }
  .lead-hero__content { padding-block: 58px; }
  .lead-hero__note { display: none; }
  .lead-person-grid, .lead-oliver__grid { grid-template-columns: 1fr; }
  .lead-focus { max-width: 640px; }
  .lead-oliver__portrait { max-width: 430px; }
  .lead-quote__inner { grid-template-columns: auto 1fr; }
  .lead-quote__inner > .lead-signature { grid-column: 2; justify-self: end; }
}
@media (max-width: 620px) {
  .gf-header .container { min-height: 72px; }
  .gf-header .brand img { width: 92px; }
  .gf-header__social { display: none; }
  .gf-header .nav-toggle { margin-left: auto; }
  .lead-hero { min-height: 590px; }
  .lead-hero h1 { font-size: clamp(1.95rem, 9.3vw, 2.45rem); letter-spacing: -.055em; }
  .lead-hero__intro { font-size: .94rem; }
  .lead-quote__inner { grid-template-columns: 1fr; }
  .lead-quote__mark { font-size: 4rem; }
  .lead-quote__inner > .lead-signature { grid-column: 1; justify-self: start; }
  .lead-oliver__signoff { align-items: start; flex-direction: column; }
  .lead-team__inner { align-items: flex-start; flex-direction: column; }
}

/* ============================================================
   MOBILE FEINSCHLIFF – Desktop bleibt unverändert
   ============================================================ */
@media (max-width: 900px) {
  .fav-grid[style*="grid-template-columns"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .page-hero .container { padding-block: clamp(48px, 10vw, 72px); }
  .page-hero__hand { max-width: calc(100% - 32px); }
}

@media (max-width: 640px) {
  .section { padding-block: 48px; }
  .section-head { margin-bottom: 30px; }
  .nav {
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .hero {
    min-height: 620px;
    align-items: center;
  }
  .hero__bg img {
    object-fit: cover !important;
    object-position: 62% center;
  }
  .hero__bg::after {
    background: linear-gradient(0deg, rgba(30,40,20,.94) 0%, rgba(30,40,20,.64) 58%, rgba(30,40,20,.38) 100%);
  }
  .hero .container { padding-block: 52px; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 3.2rem); }
  .hero p.sub { font-size: 1rem; }
  .hero .cta-row { align-items: stretch; flex-direction: column; }
  .hero .cta-row .btn { width: 100%; justify-content: space-between; }

  .fav-grid[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  .fav-grid[style*="grid-template-columns"] .fav {
    min-height: 280px !important;
  }
  .fav__body { width: 100%; }
  .fav__title { overflow-wrap: anywhere; }

  .marquee__track { gap: 12px; }
  .p-card { width: 220px; height: 290px; }
  .p-card__body { padding: 16px; }
  .p-card__title { font-size: 1.1rem; }
  .p-card__desc { font-size: .8rem; }
  .t-card { width: 190px; height: 235px; }

  .filsearch,
  .filsearch--lg {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px;
    border-radius: 22px;
  }
  .filsearch:not(.filsearch--lg) { grid-template-columns: auto minmax(0, 1fr); }
  .filsearch .btn {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }
  .filsearch input { width: 100%; }
  .fil-card { align-items: flex-start; padding: 14px; }
  .fil-card__pin { width: 64px; height: 64px; }
  .fil-result-card { grid-template-columns: 76px minmax(0, 1fr); gap: 12px; }
  .fil-result-card img { width: 76px; height: 76px; }

  .legal-hero { padding-block: 42px; }
  .legal-hero h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 9vw, 2.45rem);
    overflow-wrap: anywhere;
  }
  .legal-body { padding-block: 36px; }
  .legal-card { padding: 20px 18px; }
  .legal-body p,
  .legal-body li,
  .legal-body h2,
  .legal-body h3,
  .footer a,
  .footer li { overflow-wrap: anywhere; }

  .jobs .job { align-items: flex-start; flex-direction: column; }
  .form-wrap { padding: 22px 18px; }
  .form-grid,
  .field,
  .consent { min-width: 0; max-width: 100%; }
  .field input,
  .field select,
  .field textarea { width: 100%; min-width: 0; }
  .field label,
  .consent,
  .consent a { overflow-wrap: anywhere; }
  .partner__logos img { max-width: min(145px, 42vw); height: auto; max-height: 58px; }
  .lead-signature-image--joern { width: min(100%, 300px); }
  .lead-signature-image--oliver { flex-basis: 230px; width: 230px; }
}

@media (min-width: 361px) and (max-width: 640px) {
  .deal-grid .deal:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc((100% - 12px) / 2);
    justify-self: center;
  }
}

@media (max-width: 360px) {
  .header .container { gap: 8px; }
  .brand img { height: 38px; }
  .header__social { gap: 4px; margin-left: auto; }
  .hicon { width: 36px; height: 36px; }
  .nav-toggle { width: 42px; height: 42px; margin-left: 0; }
  .deal-grid { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: 1fr; }
  .stats .lbl-wrap { grid-column: 1; }
  .page-hero h1 { font-size: 2.15rem; }
  .page-hero p.sub { font-size: 1rem; }
  .lead-hero h1 { font-size: 1.75rem; }
  .lead-focus { padding: 24px 18px; }
  .lead-focus li { grid-template-columns: 32px 1fr; gap: 10px; }
  .header--solid .container { gap: 6px; padding-inline: 10px; }
  .header--solid .brand img { height: 34px; }
  .header--solid .nav { min-width: 0; }
  .header--solid .nav a { padding-inline: 3px; font-size: .68rem; }
  .header--solid .nav a::before { left: 3px; right: 3px; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
