/* =========================================================================
   H&F Bäckerei Marbach — Stylesheet
   Design: warmes Handwerk trifft moderne Klarheit.
   Palette aus der Marke abgeleitet: Burgunder-Wortmarke + goldenes Kaffee-Ornament.
   Schriften lokal (DSGVO): Fraunces (Display-Serif) + Inter (Body).
   ========================================================================= */

/* ---------- Lokale Schriften (keine externe CDN) ---------- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/fraunces-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
}

/* ---------- Design-Tokens ---------- */
:root {
  --ink: #241a17;
  --ink-soft: #5c4a41;
  --ink-faint: #8a766b;

  --burgundy: #7a1e2b;
  --burgundy-deep: #591420;
  --burgundy-soft: #9a3541;

  --brass: #b0812f;
  --brass-light: #d7ac5c;

  --cream: #f8f2e8;
  --cream-2: #efe4d3;
  --card: #fffdf9;
  --white: #ffffff;

  --line: rgba(36, 26, 23, 0.12);
  --line-strong: rgba(36, 26, 23, 0.22);

  --shadow-sm: 0 1px 2px rgba(36, 26, 23, 0.06), 0 2px 8px rgba(36, 26, 23, 0.05);
  --shadow-md: 0 6px 18px rgba(36, 26, 23, 0.08), 0 2px 6px rgba(36, 26, 23, 0.05);
  --shadow-lg: 0 24px 60px rgba(36, 26, 23, 0.16), 0 8px 20px rgba(36, 26, 23, 0.08);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --maxw: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6.4vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
p { color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--brass);
}
.eyebrow--center::before { display: none; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { padding-block: var(--section-y); }
.section-head { max-width: 40rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 0.9rem; font-size: 1.075rem; }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.005em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(122, 30, 43, 0.28);
}
.btn--primary:hover { background: var(--burgundy-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(122, 30, 43, 0.34); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line-strong);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--burgundy); color: var(--burgundy); transform: translateY(-2px); }
.btn--light {
  background: var(--white);
  color: var(--burgundy);
  box-shadow: var(--shadow-sm);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(248, 242, 232, 0.88);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(36, 26, 23, 0.05);
}
.header__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Wortmarke */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--burgundy);
  line-height: 1;
}
.brand__mark span { color: var(--brass); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; }
.brand__sub { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav__link {
  position: relative;
  padding: 0.55rem 0.85rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  transition: color 0.2s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.35rem;
  height: 1.5px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }

.header__cta { display: inline-flex; align-items: center; gap: 0.75rem; }
.header__cta .btn { min-height: 44px; padding: 0 1.15rem; font-size: 0.95rem; }

/* Burger */
.burger {
  display: none;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  position: relative;
  align-items: center;
  justify-content: center;
}
.burger span, .burger::before, .burger::after {
  content: '';
  position: absolute;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
}
.burger::before { top: 16px; }
.burger span { top: 23px; }
.burger::after { top: 30px; }
.burger[aria-expanded='true']::before { top: 23px; transform: rotate(45deg); }
.burger[aria-expanded='true'] span { opacity: 0; }
.burger[aria-expanded='true']::after { top: 23px; transform: rotate(-45deg); }

/* Mobile Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-rows: 1fr;
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2rem;
  background: var(--cream);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.42s var(--ease), opacity 0.3s var(--ease), visibility 0.42s;
  overflow-y: auto;
}
.drawer.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.drawer__nav { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 1rem; }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.25rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.drawer__link span { color: var(--brass); font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; }
.drawer__footer { margin-top: auto; padding-top: 2rem; display: grid; gap: 0.9rem; }
.drawer__contact { font-size: 0.95rem; color: var(--ink-soft); }
.drawer__contact a { color: var(--burgundy); font-weight: 600; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2rem, 5vw, 3.5rem));
  padding-bottom: var(--section-y);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem 0.5rem 0.85rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}
.status-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--ink-faint);
  box-shadow: 0 0 0 0 rgba(46, 160, 96, 0.5);
}
.hero__status.is-open .status-dot { background: #2ea060; animation: pulse 2.4s var(--ease) infinite; }
.hero__status.is-closed .status-dot { background: #b0403f; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 160, 96, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(46, 160, 96, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 160, 96, 0); }
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--burgundy); }
.hero__lede { max-width: 34rem; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero__meta {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta dt { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--burgundy); line-height: 1; }
.hero__meta dd { font-size: 0.85rem; color: var(--ink-faint); margin-top: 0.3rem; }

/* Hero-Bild */
.hero__media { position: relative; }
.hero__img {
  width: 100%;
  aspect-ratio: 5 / 5.4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute;
  left: -1.2rem;
  bottom: 1.8rem;
  background: var(--card);
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 17.5rem;
}
.hero__badge .stars { color: var(--brass); font-size: 1rem; letter-spacing: 1px; display: block; margin-bottom: 0.1rem; }
.hero__badge strong { white-space: nowrap; }
.hero__badge strong { font-family: var(--font-display); font-size: 1.3rem; }
.hero__badge small { color: var(--ink-faint); font-size: 0.78rem; display: block; }

/* goldenes Ornament (echtes Marken-Asset) als dezenter Hintergrund */
.ornament {
  position: absolute;
  pointer-events: none;
  opacity: 0.10;
  z-index: 0;
  mix-blend-mode: multiply;
}
.ornament--hero { top: -6%; right: -14%; width: min(46vw, 640px); }

/* ---------- Trust-Leiste ---------- */
.trust {
  background: var(--burgundy);
  color: var(--white);
}
.trust .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-block: clamp(2rem, 4vw, 2.75rem);
}
.trust__item { display: flex; gap: 0.9rem; align-items: flex-start; }
.trust__item svg { width: 26px; height: 26px; flex: none; color: var(--brass-light); margin-top: 2px; }
.trust__item h3 { color: var(--white); font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }
.trust__item p { color: rgba(255, 255, 255, 0.72); font-size: 0.88rem; line-height: 1.5; margin-top: 0.15rem; }

/* ---------- Leistungen ---------- */
.services { position: relative; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(176, 129, 47, 0.4); }
.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--cream-2);
  color: var(--burgundy);
  margin-bottom: 1.15rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.96rem; }

/* ---------- Über uns ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__media { position: relative; }
.about__img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  filter: saturate(1.02);
}
.about__quote {
  position: relative;
  margin-top: 1.6rem;
  padding-left: 1.4rem;
  border-left: 2px solid var(--brass);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
}
.about__list { display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.about__list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.about__list svg { width: 22px; height: 22px; color: var(--burgundy); flex: none; margin-top: 3px; }
.about__list strong { display: block; font-weight: 600; color: var(--ink); }
.about__list span { font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Warum wir ---------- */
.why { background: var(--cream-2); position: relative; overflow: hidden; }
.why .ornament--corner { bottom: -18%; left: -12%; width: min(40vw, 520px); opacity: 0.09; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.why__item {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.why__num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brass);
  display: block;
  margin-bottom: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.why__item h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.why__item p { font-size: 0.93rem; }

/* ---------- Ablauf / Dein Besuch ---------- */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 1.5rem; }
.step__badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.45rem; }
.step p { font-size: 0.95rem; }

/* ---------- Stimmen / Testimonials ---------- */
.voices { background: var(--ink); color: var(--cream); overflow: hidden; }
.voices h2, .voices .eyebrow { color: var(--cream); }
.voices .eyebrow { color: var(--brass-light); }
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.voice {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 1.7rem;
}
.voice .stars { color: var(--brass-light); letter-spacing: 2px; margin-bottom: 0.9rem; }
.voice p { color: rgba(248, 242, 232, 0.85); font-size: 1rem; }
.voice__by { margin-top: 1.1rem; font-size: 0.85rem; color: rgba(248, 242, 232, 0.55); font-weight: 500; }
.voices__source { margin-top: 2rem; font-size: 0.85rem; color: rgba(248, 242, 232, 0.5); text-align: center; }

/* ---------- Standort ---------- */
.location__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
.map-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 340px;
  border: 1px solid var(--line);
}
.map-card img { width: 100%; height: 100%; object-fit: cover; }
.map-card__pin {
  position: absolute;
  left: 50%; top: 44%;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 6px 10px rgba(36, 26, 23, 0.35));
}
.map-card__pin svg { width: 46px; height: 46px; color: var(--burgundy); }
.map-card__cta {
  position: absolute;
  left: 1.1rem; right: 1.1rem; bottom: 1.1rem;
  display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; justify-content: space-between;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 0.85rem 1rem 0.85rem 1.15rem;
  box-shadow: var(--shadow-sm);
}
.map-card__cta span { font-weight: 600; font-size: 0.95rem; }
.map-card__cta small { display: block; color: var(--ink-faint); font-weight: 400; font-size: 0.8rem; }

.info-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.info-row { display: flex; gap: 0.9rem; padding-block: 0.95rem; border-bottom: 1px solid var(--line); }
.info-row:first-of-type { padding-top: 0; }
.info-row svg { width: 22px; height: 22px; color: var(--burgundy); flex: none; margin-top: 2px; }
.info-row strong { display: block; font-weight: 600; }
.info-row a { color: var(--burgundy); font-weight: 500; }
.info-row p { font-size: 0.95rem; }

/* Öffnungszeiten (Accordion-fähig) */
.hours { margin-top: 0.4rem; }
.hours__toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 0.9rem;
  padding: 0.95rem 0;
  text-align: left;
  font-weight: 600;
}
.hours__toggle svg { width: 20px; height: 20px; color: var(--burgundy); transition: transform 0.3s var(--ease); }
.hours__toggle[aria-expanded='true'] svg.chevron { transform: rotate(180deg); }
.hours__toggle .tag {
  font-size: 0.78rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: var(--radius-pill);
}
.tag--open { background: rgba(46, 160, 96, 0.14); color: #1f7a49; }
.tag--closed { background: rgba(176, 64, 63, 0.12); color: #9a3232; }
.hours__body { overflow: hidden; }
.hours__table { width: 100%; border-collapse: collapse; margin-top: 0.3rem; }
.hours__table th, .hours__table td { padding: 0.5rem 0; text-align: left; font-size: 0.95rem; }
.hours__table td { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.hours__table tr.is-today th, .hours__table tr.is-today td { color: var(--burgundy); font-weight: 600; }
.hours__table tr.is-today { }

/* ---------- Kontakt ---------- */
.contact { background: var(--cream-2); }
.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.contact__aside .lede { margin-top: 1rem; }
.contact__quick { margin-top: 1.8rem; display: grid; gap: 0.8rem; }
.contact__quick a {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.95rem 1.1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.contact__quick a:hover { transform: translateY(-2px); border-color: var(--burgundy); }
.contact__quick svg { width: 22px; height: 22px; color: var(--burgundy); flex: none; }
.contact__quick small { display: block; font-weight: 400; color: var(--ink-faint); font-size: 0.82rem; }

.form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field label { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.45rem; }
.field label .req { color: var(--burgundy); }
.field input, .field textarea {
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  min-height: 50px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(122, 30, 43, 0.10);
}
.field .hint { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.4rem; }

.consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 1.3rem;
}
.consent input {
  appearance: none;
  -webkit-appearance: none;
  width: 22px; height: 22px;
  flex: none;
  margin-top: 2px;
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
  position: relative;
}
.consent input:checked { background: var(--burgundy); border-color: var(--burgundy); }
.consent input:checked::after {
  content: '';
  position: absolute;
  left: 7px; top: 3px;
  width: 5px; height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.consent input:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 2px; }
.consent label { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55; cursor: pointer; }
.consent label a { color: var(--burgundy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.form-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.9rem; }

.form__status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  display: none;
}
.form__status.is-visible { display: block; }
.form__status.is-success { background: rgba(46, 160, 96, 0.12); color: #1f7a49; }
.form__status.is-error { background: rgba(176, 64, 63, 0.12); color: #9a3232; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(248, 242, 232, 0.72); }
.footer .wrap { padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 2.6rem;
}
.footer__brand .brand__mark { color: var(--cream); }
.footer__brand .brand__mark span { color: var(--brass-light); }
.footer__brand .brand__name { color: var(--cream); }
.footer__brand p { color: rgba(248, 242, 232, 0.6); font-size: 0.92rem; margin-top: 1rem; max-width: 22rem; }
.footer h4 { font-family: var(--font-body); color: var(--cream); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600; }
.footer__links li { margin-bottom: 0.65rem; }
.footer__links a { color: rgba(248, 242, 232, 0.72); font-size: 0.94rem; transition: color 0.2s var(--ease); }
.footer__links a:hover { color: var(--brass-light); }
.footer__contact li { font-size: 0.94rem; margin-bottom: 0.65rem; display: flex; gap: 0.6rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--brass-light); flex: none; margin-top: 3px; }
.footer__contact a:hover { color: var(--brass-light); }

.footer__social { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer__social a:hover { background: var(--burgundy); transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; color: var(--cream); }

/* Footer-Bottom + wowobot */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-block: 1.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.85rem; color: rgba(248, 242, 232, 0.5); }
.powered { font-size: 0.9rem; color: rgba(248, 242, 232, 0.6); }
.powered a { color: #22b8e0; font-weight: 600; }
.powered a:hover { text-decoration: underline; }

/* ---------- Rechtliche Seiten (Impressum/Datenschutz) ---------- */
.legal { padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem)); }
.legal .wrap { max-width: 780px; }
.legal h1 { margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.4rem; margin: 2.2rem 0 0.8rem; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 0.8rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; }
.legal .placeholder {
  background: var(--cream-2);
  border: 1px dashed var(--brass);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--ink);
  font-size: 0.92rem;
  display: inline-block;
}
.legal .back { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2.5rem; color: var(--burgundy); font-weight: 600; }

/* ---------- Reveal-Animationen ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
[data-stagger] > * { transition-delay: var(--d, 0ms); }

/* ---------- Skip-Link ---------- */
.skip-link {
  position: absolute;
  left: 50%; top: 0.5rem;
  transform: translate(-50%, -160%);
  background: var(--burgundy);
  color: var(--white);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  z-index: 200;
  transition: transform 0.25s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* Sichtbarer Fokus überall */
a:focus-visible, button:focus-visible, .btn:focus-visible,
.nav__link:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2.5px solid var(--burgundy);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 520px; }
  .hero__img { aspect-ratio: 16 / 12; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 480px; }
  .location__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .trust .wrap { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.25rem; }
}

@media (max-width: 900px) {
  .nav, .header__cta .btn--ghost { display: none; }
  .burger { display: flex; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .voices__grid { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 640px) {
  :root { --header-h: 66px; }
  .header__cta .btn--primary { display: none; }
  .cards { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .trust .wrap { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .hero__badge { left: 0; right: 0; margin-inline: auto; bottom: -1.6rem; max-width: 88%; }
  .hero__media { margin-bottom: 2rem; }
  .hero__meta { gap: 1.2rem 1.8rem; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .brand__sub { display: none; }
}

/* Steps-Verbindungslinie nur auf Desktop */
@media (min-width: 901px) {
  .step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: calc(1.5rem + 23px);
    left: calc(46px + 1rem);
    right: -1.25rem;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
