/* ───────────────────────────────────────────────
   Bistro Schacht XII — Design-System (reines HTML)
   Schriften self-hosted (kein Google, kein Tracking)
   ─────────────────────────────────────────────── */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('./fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('./fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('./fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 100 900; font-display: swap;
  src: url('./fonts/inter-latin-wght-normal.woff2') format('woff2');
}

:root {
  --c-bone:      #f5f1ea;
  --c-bone-2:    #ece7dd;
  --c-ink:       #1b1917;
  --c-ink-soft:  #4a453f;
  --c-muted:     #7d766c;
  --c-coal:      #201d1b;
  --c-coal-2:    #2b2724;
  --c-line:      #ddd5c8;
  --c-line-dark: #3a3531;
  --c-copper:    #b0784a;
  --c-copper-lt: #c99568;
  --header-h:    76px;

  --f-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --wrap-narrow: 780px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --sec: clamp(4rem, 9vw, 7rem);
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--c-bone); color: var(--c-ink); overflow-x: hidden;
  font-family: var(--f-sans);
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.075rem);
  line-height: 1.7; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--f-serif); font-weight: 500; line-height: 1.1;
  letter-spacing: 0.01em; margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.75rem); }
p { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--sec); }
.section--coal { background: var(--c-coal); color: var(--c-bone); }
.section--coal h1, .section--coal h2, .section--coal h3 { color: var(--c-bone); }

.kicker {
  font-family: var(--f-sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-copper);
  margin: 0 0 1rem; display: inline-block;
}
.section--coal .kicker { color: var(--c-copper-lt); }
.lead { font-size: clamp(1.15rem, 1.5vw, 1.4rem); color: var(--c-ink-soft); line-height: 1.55; }
.section--coal .lead { color: #d9d2c6; }

.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--f-sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 1.05em 2.1em;
  text-decoration: none; border: 1px solid var(--c-ink); border-radius: var(--radius);
  transition: background .25s ease, color .25s ease, border-color .25s ease; cursor: pointer;
}
.btn--primary { background: var(--c-ink); color: var(--c-bone); }
.btn--primary:hover { background: var(--c-copper); border-color: var(--c-copper); }
.btn--ghost { background: transparent; color: var(--c-ink); }
.btn--ghost:hover { background: var(--c-ink); color: var(--c-bone); }
.btn--onCoal { border-color: var(--c-bone); color: var(--c-bone); }
.btn--onCoal:hover { background: var(--c-copper); border-color: var(--c-copper); color: #fff; }

.ph-img {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background:
    repeating-linear-gradient(45deg, #cfc6b6 0 2px, transparent 2px 11px),
    linear-gradient(135deg, #d8cfbf, #c4bbaa);
  color: #6a6152; font-family: var(--f-sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 1rem;
}
.ph-img span { background: rgba(245,241,234,.72); padding: .4em .8em; border-radius: 2px; }

.rule { width: 56px; height: 2px; background: var(--c-copper); border: 0; margin: 0 0 1.6rem; }
.section--coal .rule { background: var(--c-copper-lt); }
.center { text-align: center; }
.center .rule { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid var(--c-copper); outline-offset: 3px; }

/* ── Header ── */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(245,241,234,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--c-line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand__mark { font-family: var(--f-serif); font-size: 1.1rem; font-weight: 600; color: var(--c-bone); background: var(--c-ink); width: 2.2rem; height: 2.2rem; border-radius: 2px; display: grid; place-items: center; }
.brand__name { font-family: var(--f-serif); font-size: 1.35rem; font-weight: 500; letter-spacing: 0.02em; color: var(--c-ink); }
.brand__logo { height: 40px; width: auto; display: block; }
.site-footer .brand__logo { height: 34px; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: var(--c-ink-soft); padding: 0.35em 0; position: relative; transition: color .2s ease; }
.site-nav a:hover, .site-nav a.is-active { color: var(--c-ink); }
.site-nav a:not(.nav-cta).is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--c-copper); }
.nav-cta { border: 1px solid var(--c-ink); border-radius: 2px; padding: 0.7em 1.3em !important; color: var(--c-ink) !important; transition: background .2s ease, color .2s ease; }
.nav-cta:hover { background: var(--c-ink); color: var(--c-bone) !important; }
.nav-toggle, .nav-burger { display: none; }
.nav-burger { flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-burger span { width: 26px; height: 2px; background: var(--c-ink); transition: transform .25s ease, opacity .25s ease; }
@media (max-width: 820px) {
  .nav-burger { display: flex; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--c-bone); border-bottom: 1px solid var(--c-line); padding: 0.5rem var(--pad) 1.5rem; display: none; }
  .site-nav a { padding: 0.9em 0; border-bottom: 1px solid var(--c-line); }
  .nav-cta { margin-top: 1rem; text-align: center; }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ── Footer ── */
.site-footer { background: var(--c-coal); color: #cbc3b6; padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.site-footer__grid { display: grid; gap: 2.5rem 3rem; grid-template-columns: 1.5fr 1fr 1fr 1fr; }
.site-footer .brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.site-footer .brand__mark { background: var(--c-copper); color: #fff; }
.site-footer .brand__name { color: var(--c-bone); }
.ft-claim { max-width: 30ch; color: #a49b8c; font-size: 0.95rem; }
.ft-head { font-family: var(--f-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-copper-lt); margin-bottom: 1rem; }
.ft-lines { font-size: 0.95rem; line-height: 1.9; color: #b9b1a3; }
.ft-lines a { color: #b9b1a3; text-decoration: none; }
.ft-lines a:hover { color: var(--c-bone); }
.ft-nav { display: flex; flex-direction: column; gap: 0.55rem; }
.ft-nav a { font-size: 0.95rem; color: #b9b1a3; text-decoration: none; }
.ft-nav a:hover { color: var(--c-bone); }
.site-footer__base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--c-line-dark); font-size: 0.82rem; color: #8b8377; }
@media (max-width: 820px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* ── Hero-Slider ── */
.hero { position: relative; background: var(--c-coal); }
.hero__track { position: relative; overflow: hidden; height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h)); min-height: 520px; }
/* Crossfade: der neue Slide liegt oben und blendet 1,4s ueber den alten.
   Der alte bleibt solange voll deckend und springt erst danach auf 0 —
   so entsteht in der Mitte kein Durchhaenger zum Hintergrund. */
.hero__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0s linear 1.4s, visibility 0s linear 1.4s; display: flex; align-items: center; }
.hero__slide.is-active { opacity: 1; visibility: visible; z-index: 1; transition: opacity 1.4s ease, visibility 0s linear 0s; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 65%; transform: scale(1.12); }
.hero__slide[data-index="3"] .hero__img { object-position: center 85%; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,18,16,.82) 0%, rgba(20,18,16,.55) 45%, rgba(20,18,16,.2) 100%); }
/* Schrift: alte blendet in 1,0s aus, neue faded direkt danach in 0,4s ein
   und steht bei 1,4s — genau wenn die Bildblende durch ist. */
.hero__content { position: relative; color: var(--c-bone); opacity: 0; transition: opacity 1s ease; }
.hero__slide.is-active .hero__content { opacity: 1; transition: opacity .4s ease 1s; }
.hero__content h1 { max-width: 16ch; }
.hero__content .kicker { color: var(--c-copper-lt); }
.hero__content h1 { color: var(--c-bone); margin-bottom: 0.3em; }
.hero__sub { font-size: clamp(1.15rem, 1.6vw, 1.5rem); color: #e3ddd1; font-family: var(--f-serif); font-style: italic; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero__dots { position: absolute; bottom: 1.6rem; left: 0; right: 0; display: flex; justify-content: center; gap: 0.6rem; z-index: 3; }
.hero__dot { width: 34px; height: 3px; border: 0; padding: 0; cursor: pointer; background: rgba(245,241,234,.4); transition: background .25s ease; }
.hero__dot.is-active { background: var(--c-copper-lt); }
.hero__ph-badge { position: absolute; top: 1rem; left: 1rem; z-index: 4; background: rgba(27,25,23,.72); color: var(--c-bone); font-family: var(--f-sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.45em 0.8em; border: 1px solid rgba(201,149,104,.6); border-radius: 2px; }

/* ── Home-Sektionen ── */
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.head-row .kicker { margin-bottom: 0.6rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card { display: flex; flex-direction: column; padding: 2rem 1.9rem; text-decoration: none; color: var(--c-bone); background: var(--c-coal-2); border: 1px solid var(--c-line-dark); border-radius: var(--radius); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.card:hover { transform: translateY(-4px); border-color: var(--c-copper); background: #322d29; }
.card h3 { color: var(--c-bone); }
.card p { color: #b7afa0; font-size: 0.96rem; flex: 1; }
.card__more { color: var(--c-copper-lt); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.6rem; }
.usp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.usp__img { min-height: 440px; border-radius: var(--radius); position: relative; overflow: hidden; }
.usp__img img, .bistro-teaser__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.usp__text .btn { margin-top: 0.8rem; }
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem 2.5rem; margin-top: 3rem; }
.why__item { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 1.05rem; color: var(--c-ink-soft); padding: 1rem 0; border-top: 1px solid var(--c-line); }
.why__check { color: var(--c-copper); font-weight: 700; }
.section--coal .why__item { color: #ddd6ca; border-top-color: var(--c-line-dark); }
.section--coal .why__check { color: var(--c-copper-lt); }
.bistro-teaser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.bistro-teaser__img { min-height: 380px; border-radius: var(--radius); order: 2; position: relative; overflow: hidden; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.quote { margin: 0; padding: 2rem 1.8rem; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); }
.quote blockquote { margin: 0 0 1rem; font-family: var(--f-serif); font-size: 1.35rem; line-height: 1.4; color: var(--c-ink); }
.quote figcaption { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-muted); font-weight: 600; }
.ph-note { margin-top: 2rem; font-size: 0.8rem; color: var(--c-muted); font-style: italic; }
.cta .lead { margin-bottom: 2rem; }

/* ── Stub-Seiten ── */
.stub { min-height: 58vh; display: grid; align-items: center; }
.stub .rule { margin-inline: auto; }

@media (max-width: 860px) {
  .cards, .quotes, .why { grid-template-columns: 1fr 1fr; }
  .usp__grid, .bistro-teaser__grid { grid-template-columns: 1fr; }
  .usp__img { min-height: 300px; }
  .bistro-teaser__img { order: 0; min-height: 280px; }
}
@media (max-width: 560px) {
  .cards, .quotes, .why { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; justify-content: center; }
}

/* ═══════════ BLOCK 2 — Komponenten ═══════════ */

/* Innen-Hero (kein Slider) */
.page-hero { position: relative; min-height: 46vh; display: flex; align-items: flex-end; background: var(--c-coal); overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,18,16,.85) 0%, rgba(20,18,16,.35) 60%, rgba(20,18,16,.2) 100%); }
.page-hero__content { position: relative; color: var(--c-bone); padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.page-hero__content h1 { color: var(--c-bone); }
.page-hero__content .kicker { color: var(--c-bone); text-shadow: 0 1px 10px rgba(0,0,0,.7), 0 0 2px rgba(0,0,0,.5); }
.page-hero__sub { font-family: var(--f-serif); font-style: italic; font-size: clamp(1.15rem,1.6vw,1.5rem); color: #e3ddd1; max-width: 40ch; }

/* Schmaler Seitenkopf (Anfrage) */
.page-head { background: var(--c-coal); color: var(--c-bone); padding-block: clamp(2.5rem,5vw,3.5rem); }
.page-head h1 { color: var(--c-bone); margin-bottom: .3em; }
.page-head .kicker { color: var(--c-copper-lt); }
.page-head p { color: #d9d2c6; margin: 0; }

/* Prosa-Blöcke */
.prose { max-width: 68ch; }
.prose p { color: var(--c-ink-soft); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.two-col .media { position: relative; overflow: hidden; border-radius: var(--radius); min-height: 420px; }
.two-col .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Leistungen ausführlich (Grid mit Rahmen) */
.leistungen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.leistung { padding: 2rem 1.8rem; border: 1px solid var(--c-line); border-radius: var(--radius); background: #fff; }
.leistung h3 { margin-bottom: .4rem; }
.leistung p { color: var(--c-ink-soft); font-size: .98rem; margin: 0; }
.leistung__num { font-family: var(--f-serif); font-size: 1.1rem; color: var(--c-copper); display: block; margin-bottom: .6rem; }
/* Leistungs-Kacheln mit Bild (Catering, 2026-09-21) */
.leistung--img { padding-top: 0; overflow: hidden; }
.leistung__img { display: block; width: calc(100% + 3.6rem); max-width: none; height: auto; aspect-ratio: 3 / 2; object-fit: cover; margin: 0 -1.8rem 1.4rem; }

/* Ablauf (Prozess-Schritte) */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; counter-reset: step; }
.step { position: relative; padding-top: 3.5rem; }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: 0; left: 0; width: 2.6rem; height: 2.6rem; display: grid; place-items: center; font-family: var(--f-serif); font-size: 1.2rem; color: var(--c-bone); background: var(--c-copper); border-radius: 50%; }
.step h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.step p { color: var(--c-ink-soft); font-size: .95rem; margin: 0; }
.section--coal .step p { color: #cbc3b6; }

/* Angebot-Kategorien (Bistro) */
.angebot { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2.5rem; margin-top: 2.5rem; }
.angebot__cat { border-top: 2px solid var(--c-copper); padding-top: 1.1rem; }
.angebot__cat h3 { margin-bottom: .3rem; }
.angebot__cat p { color: var(--c-ink-soft); font-size: .98rem; margin: 0; }

/* Öffnungszeiten */
.hours { list-style: none; margin: 1.5rem 0 0; padding: 0; max-width: 420px; }
.hours li { display: flex; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid var(--c-line); }
.section--coal .hours li { border-color: var(--c-line-dark); }
.hours .tag { font-weight: 600; }

/* Team */
.photo-band {
  position: relative; overflow: hidden;
  width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  aspect-ratio: 21/9; max-height: 620px; margin-block: 3rem;
}
.photo-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-band:last-child { margin-bottom: 0; }
.photo-band--contained { width: 100%; margin-left: 0; margin-right: 0; aspect-ratio: 35/18; max-height: 744px; }
.photo-band--contained img { object-position: center 75%; }

/* Foto-Band als laufendes Karussell (z.B. Herzstück/Catering), randlos, kein Gap zwischen Bildern */
.gallery-band {
  position: relative;
  width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); margin-top: 3rem;
  height: clamp(220px, 26vw, 380px); overflow: hidden;
}
.gallery-band__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; animation: gallery-crossfade 36s infinite;
}
.gallery-band__img:nth-child(1) { animation-delay: 0s; }
.gallery-band__img:nth-child(2) { animation-delay: 4s; }
.gallery-band__img:nth-child(3) { animation-delay: 8s; }
.gallery-band__img:nth-child(4) { animation-delay: 12s; }
.gallery-band__img:nth-child(5) { animation-delay: 16s; }
.gallery-band__img:nth-child(6) { animation-delay: 20s; }
.gallery-band__img:nth-child(7) { animation-delay: 24s; }
.gallery-band__img:nth-child(8) { animation-delay: 28s; }
.gallery-band__img:nth-child(9) { animation-delay: 32s; }
@keyframes gallery-crossfade {
  0% { opacity: 0; }
  5.6% { opacity: 1; }
  11.1% { opacity: 1; }
  16.7% { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-band__img { animation: none; opacity: 0; }
  .gallery-band__img:first-child { opacity: 1; }
}

/* Kein Abstand zum Bereich darunter (Section-Padding unten aufheben) */
.section--flush-bottom { padding-bottom: 0; }

/* Der Ort: randloses Bild außen + oben/unten füllend, Text daneben */
.der-ort { padding-block: 0; }
.der-ort__inner { position: relative; overflow: hidden; min-height: 560px; display: flex; align-items: center; }
.der-ort__media { position: absolute; top: 0; left: 0; bottom: 0; width: 54%; overflow: hidden; }
.der-ort__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.der-ort__content { position: relative; z-index: 1; margin-left: 54%; max-width: 520px; padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 6vw, 3rem); }
.der-ort--mirror .der-ort__media { left: auto; right: 0; }
.der-ort--mirror .der-ort__content { margin-left: 0; margin-right: 54%; padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 6vw, 3rem) clamp(2.5rem, 6vw, 4rem) 0; }
@media (max-width: 900px) {
  .der-ort__inner { display: block; min-height: 0; }
  .der-ort__media, .der-ort--mirror .der-ort__media { position: relative; top: auto; left: auto; right: auto; bottom: auto; width: 100%; height: 300px; }
  .der-ort__content, .der-ort--mirror .der-ort__content { margin-left: 0; margin-right: 0; max-width: none; padding: clamp(2rem, 6vw, 3rem) 0; }
}
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; margin-top: 3rem; }
.team--duo { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; margin-top: 2.5rem; }
.member__photo { position: relative; aspect-ratio: 7/6; border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__photo--shift-up img { object-position: center 75%; }
.member__photo--shift-down img { object-position: center 35%; }
.member h3 { font-size: 1.3rem; margin-bottom: .1rem; }
.member .role { color: var(--c-copper); font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.team--duo .member { text-align: center; }

/* Karte (OpenStreetMap) */
.map { border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; }
.map iframe { display: block; width: 100%; height: 420px; border: 0; }
.map__placeholder { height: 420px; display: grid; place-content: center; justify-items: center; gap: 1.2rem; padding: 2rem; text-align: center; background: var(--c-bone-2); }
.map__placeholder p { max-width: 46ch; margin: 0; font-size: .95rem; color: var(--c-ink-soft); }

/* Kontakt-Blöcke */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.contact-card { padding: 1.8rem; border: 1px solid var(--c-line); border-radius: var(--radius); background: #fff; }
.contact-card .kicker { margin-bottom: .5rem; }
.contact-card a { color: var(--c-ink); text-decoration: none; }
.contact-card a:hover { color: var(--c-copper); }

/* Formular */
.form { display: grid; gap: 1.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .06em; color: var(--c-ink-soft); }
.field .req { color: var(--c-copper); }
.field input, .field select, .field textarea {
  font-family: var(--f-sans); font-size: 1rem; color: var(--c-ink);
  padding: .85em 1em; border: 1px solid var(--c-line); border-radius: var(--radius);
  background: #fff; transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-copper); }
.field textarea { resize: vertical; min-height: 130px; }
.field--check { flex-direction: row; align-items: flex-start; gap: .7rem; }
.field--check input { width: 1.1rem; height: 1.1rem; margin-top: .2rem; flex: none; }
.field--check label { font-weight: 400; font-size: .9rem; }
.form__note { font-size: .82rem; color: var(--c-muted); }
.form__hint { background: #fff; border: 1px dashed var(--c-copper); border-radius: var(--radius); padding: 1rem 1.2rem; font-size: .85rem; color: var(--c-ink-soft); }

@media (max-width: 900px) {
  .leistungen, .steps, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .angebot { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col .media { min-height: 300px; }
}
@media (max-width: 560px) {
  .leistungen, .steps, .contact-grid, .team { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

/* Anfrage per E-Mail (ersetzt Formular, 2026-09-18) */
.mail-cta { max-width: 860px; }
.mail-cta--center { text-align: center; }
.mail-cta__list { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.mail-cta--center .mail-cta__list { justify-content: center; }
.mail-cta__list li { padding: .45rem .9rem; border: 1px solid var(--c-line); border-radius: 999px; font-size: .9rem; }
.section--coal .mail-cta__list li { border-color: rgba(255,255,255,.25); }
.mail-cta__addr { font-size: .9rem; margin-top: 1rem; }
.mail-cta__addr a { color: inherit; }

/* Rechtstexte (Impressum, Datenschutz): Überschriften klein und fett statt Display-Serif */
.legal h2, .legal h3, .legal h4 { font-family: var(--f-sans); font-weight: 600; line-height: 1.3; letter-spacing: 0; }
.legal h2 { font-size: 1.25rem; margin: 2.2em 0 .6em; }
.legal h3 { font-size: 1.05rem; margin: 1.8em 0 .4em; }
.legal h4 { font-size: 1rem; margin: 1.3em 0 .3em; color: var(--c-ink-soft); }
.legal > :first-child { margin-top: 0; }
.legal-notice { margin: 1.8em 0; padding: 1.4rem 1.6rem; background: var(--c-bone-2); border-left: 3px solid var(--c-ink); }
.legal-notice h3 { margin-top: 0; }
.legal-notice p:last-child { margin-bottom: 0; }

/* Rezensionen-Karussell (Home + Catering, 2026-09-21) */
.quotes-carousel { margin-top: 2.5rem; }
.quotes-carousel__track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 4rem) / 3); gap: 2rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; margin-top: 0; }
.quotes-carousel__track::-webkit-scrollbar { display: none; }
.quotes-carousel__track .quote { scroll-snap-align: start; }
.quotes-carousel__nav { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.8rem; }
.quotes-carousel__prev, .quotes-carousel__next { width: 2.6rem; height: 2.6rem; border-radius: 50%; border: 1px solid var(--c-line); background: #fff; color: var(--c-ink); font-size: 1.1rem; line-height: 1; cursor: pointer; }
.quotes-carousel__prev:hover, .quotes-carousel__next:hover { border-color: var(--c-copper); color: var(--c-copper); }
.quotes-carousel__dots { display: flex; gap: .5rem; }
.quotes-carousel__dot { width: .6rem; height: .6rem; padding: 0; border-radius: 50%; border: 0; background: var(--c-line); cursor: pointer; }
.quotes-carousel__dot[aria-current="true"] { background: var(--c-copper); }
@media (max-width: 860px) { .quotes-carousel__track { grid-auto-columns: calc((100% - 2rem) / 2); } }
@media (max-width: 560px) { .quotes-carousel__track { grid-auto-columns: 100%; } }
@media (prefers-reduced-motion: reduce) { .quotes-carousel__track { scroll-behavior: auto; } }
