/* ============================================================
   Thomas Melchinger – Coaching
   Farbwelt & Typo angelehnt an vibeassistant.de
   (warmes Papier, Tinte, Teal, Orange; Fraunces + Manrope)
   ============================================================ */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/Fraunces-Variable.ttf') format('truetype');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/Fraunces-Italic-Variable.ttf') format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Manrope-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/Manrope-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/Manrope-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Manrope-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/Manrope-ExtraBold.ttf') format('truetype');
}

:root {
  color-scheme: light;
  --font-display: "Fraunces", Georgia, serif;
  --font-ui: "Manrope", "Segoe UI", sans-serif;

  --paper: #f8f0dd;
  --paper-deep: #e8d6af;
  --paper-soft: #faf2e1;
  --ink: #20180f;
  --muted: #695745;
  --panel: rgba(255, 248, 233, 0.82);
  --panel-strong: rgba(255, 251, 242, 0.96);
  --line: rgba(65, 43, 22, 0.2);

  --teal: #1e6663;
  --teal-bright: #2f9187;
  --teal-soft: #3d9b8d;
  --orange: #d27b45;
  --gold: #d49c2f;
  --plum: #8f6e97;
  --rose: #c05f76;

  --cta: var(--teal);
  --danger: #c35949;

  --shadow-panel: 0 22px 60px rgba(71, 41, 11, 0.15);
  --shadow-card: 0 10px 30px rgba(71, 41, 11, 0.10);
  --radius: 20px;
  --radius-sm: 14px;
  --motion-quick: 140ms;
  --motion-normal: 220ms;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.65;
}

/* Hintergrund als eigenes fixiertes Layer statt background-attachment:fixed.
   Letzteres löst in Chrome/Edge Compositing-Bugs aus, sobald ein
   position:fixed-Overlay mit backdrop-filter geöffnet und der Body-Scroll
   gesperrt wird (Hintergrund verschwindet / Ghost-Rendering). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.75), transparent 34%),
    radial-gradient(circle at 100% 35%, rgba(75, 142, 132, 0.18), transparent 28%),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 48%, var(--paper-deep) 100%);
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-bright); }

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

/* ---------- Layout ---------- */

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(248, 240, 221, 0.85);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand img { height: 46px; width: auto; display: block; }
.brand-words { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 19px;
  letter-spacing: 0.2px;
}
.brand-claim {
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-top: 3px;
}
.brand-claim em {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  font-size: 11.5px;
  letter-spacing: 0.3px;
  color: var(--gold);
}

.main-nav ul {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-nav a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: background var(--motion-quick), color var(--motion-quick);
}
.main-nav a:hover { background: rgba(30, 102, 99, 0.1); color: var(--teal); }
.main-nav a[aria-current="page"] { background: var(--teal); color: #fff; }
.main-nav a:hover[aria-current="page"] { color: #fff; }

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 700;
}
.nav-cta:hover { background: #b96a38 !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fffbf2; /* deckend, damit der Hero nicht durchscheint */
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-panel);
    padding: 12px 24px 20px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; }
  .main-nav a { display: block; padding: 12px 16px; }
}

/* ---------- Hero ---------- */

.hero {
  padding: 96px 0 72px;
  text-align: center;
}
.hero--left { text-align: left; }

.hero .kicker,
.kicker {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(30, 102, 99, 0.1);
  border: 1px solid rgba(30, 102, 99, 0.25);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.4vw, 56px);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 560;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--teal-bright), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 32px;
  font-weight: 500;
}
.hero--left .sub { margin-inline: 0; }

/* Hero als Vollbild-Banner mit Lesbarkeits-Overlay */

.hero--banner {
  position: relative;
  padding: 150px 0 110px;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: left;
}
.hero--banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(23, 20, 14, 0.85) 0%, rgba(23, 34, 32, 0.62) 45%, rgba(23, 20, 14, 0.28) 100%),
    linear-gradient(0deg, rgba(23, 20, 14, 0.35) 0%, transparent 40%);
}
.hero--banner .container { position: relative; z-index: 1; }
.hero--banner .hero-text { max-width: 660px; }
.hero--banner .sub { color: rgba(255, 255, 255, 0.92); margin-inline: 0; }
.hero--banner .btn-row { justify-content: flex-start; }
.hero--banner .kicker {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  backdrop-filter: blur(6px);
}
.hero--banner .breadcrumb { color: rgba(255, 255, 255, 0.75); }
.hero--banner .breadcrumb a { color: #fff; }
.hero--banner h1 em {
  background: linear-gradient(100deg, #8fd8cd, #f2b27f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 860px) {
  .hero--banner { padding: 110px 0 80px; }
}

/* Fraunces-Überschriften in Steps etc. */
.step::before {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100, "WONK" 0;
}

/* Hero mit Bild (Split-Layout) */

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; }
}

.hero-media img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-panel);
}

.hero-media--portrait img {
  aspect-ratio: 1;
  object-fit: cover;
  max-width: 380px;
  margin-inline: auto;
  border-radius: 48% 52% 55% 45% / 45% 48% 52% 55%;
  border: 6px solid rgba(255, 251, 242, 0.9);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--motion-quick), box-shadow var(--motion-quick), background var(--motion-quick);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }

.btn--primary { background: var(--cta); color: #fff; }
.btn--primary:hover { background: var(--teal-bright); color: #fff; }

.btn--accent { background: var(--orange); color: #fff; }
.btn--accent:hover { background: #b96a38; color: #fff; }

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.hero--left .btn-row { justify-content: flex-start; }

/* ---------- Sections / Prose ---------- */

.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 560;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.2;
  margin: 14px 0 12px;
}
.section-head p { color: var(--muted); font-size: 18px; margin: 0; }

.prose { max-width: 780px; }
.prose--center { margin-inline: auto; }
.prose h2 {
  font-family: var(--font-display);
  font-weight: 560;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  margin: 48px 0 16px;
}
.prose h3 {
  font-size: 21px;
  font-weight: 800;
  margin: 36px 0 12px;
  color: var(--teal);
}
.prose h4 { font-size: 18px; font-weight: 800; margin: 28px 0 10px; }
.prose p { margin: 0 0 16px; }
.prose ul { margin: 0 0 16px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--orange); }
.prose strong { font-weight: 800; }
.prose blockquote {
  margin: 24px 0;
  padding: 20px 28px;
  border-left: 4px solid var(--orange);
  background: var(--panel);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.prose hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }

/* ---------- Cards ---------- */

.grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.grid--2 { grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); }
@media (max-width: 520px) { .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--motion-normal), box-shadow var(--motion-normal);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-panel); }

.card .tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(210, 123, 69, 0.14);
  color: var(--orange);
}
.card .tag--teal { background: rgba(30, 102, 99, 0.12); color: var(--teal); }
.card .tag--gold { background: rgba(212, 154, 47, 0.16); color: #8a5f2f; }
.card .tag--plum { background: rgba(143, 110, 151, 0.16); color: var(--plum); }

.card h3 { margin: 0; font-size: 20px; font-weight: 800; }
.card p { margin: 0; color: var(--muted); flex: 1; }

.card .card-link {
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.card .card-link::after { content: "→"; transition: transform var(--motion-quick); }
.card:hover .card-link::after { transform: translateX(4px); }

.card--click { color: inherit; }
.card--click:hover { color: inherit; }

/* ---------- Steps ---------- */

.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  background: linear-gradient(140deg, var(--teal-bright), var(--orange));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.step h3 { margin: 0 0 6px; font-size: 19px; font-weight: 800; }
.step p { margin: 0; color: var(--muted); }

/* ---------- Quotes ---------- */

.quote-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.quote {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.quote .q-tag {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}
.quote p { margin: 0; font-weight: 600; }

/* ---------- Farb-Bänder (CI-Töne) ---------- */

.band { padding: 64px 0; }

.band--mint {
  background: linear-gradient(180deg, rgba(61, 155, 141, 0.16), rgba(61, 155, 141, 0.09));
  border-block: 1px solid rgba(61, 155, 141, 0.22);
}
.band--mint .kicker { background: rgba(30, 102, 99, 0.14); }

.band--peach {
  background: linear-gradient(180deg, rgba(210, 123, 69, 0.16), rgba(210, 123, 69, 0.09));
  border-block: 1px solid rgba(210, 123, 69, 0.24);
}
.band--peach .kicker {
  background: rgba(210, 123, 69, 0.16);
  border-color: rgba(210, 123, 69, 0.35);
  color: #8a5f2f;
}

.band--sand {
  background: linear-gradient(180deg, rgba(212, 154, 47, 0.18), rgba(212, 154, 47, 0.10));
  border-block: 1px solid rgba(212, 154, 47, 0.26);
}
.band--sand .kicker {
  background: rgba(212, 154, 47, 0.2);
  border-color: rgba(212, 154, 47, 0.4);
  color: #8a5f2f;
}

.band--lilac {
  background: linear-gradient(180deg, rgba(143, 110, 151, 0.15), rgba(143, 110, 151, 0.08));
  border-block: 1px solid rgba(143, 110, 151, 0.24);
}
.band--lilac .kicker {
  background: rgba(143, 110, 151, 0.16);
  border-color: rgba(143, 110, 151, 0.35);
  color: #5f4566;
}

.band--rose {
  background: linear-gradient(180deg, rgba(192, 95, 118, 0.13), rgba(192, 95, 118, 0.07));
  border-block: 1px solid rgba(192, 95, 118, 0.22);
}
.band--rose .kicker {
  background: rgba(192, 95, 118, 0.15);
  border-color: rgba(192, 95, 118, 0.32);
  color: #8a3d50;
}

/* ---------- CTA Banner ---------- */

.cta-banner {
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-bright) 60%, var(--teal-soft) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 56px 40px 0;
  box-shadow: var(--shadow-panel);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  align-items: end;
  overflow: hidden;
}
.cta-text {
  text-align: left;
  padding-bottom: 56px;
}
.cta-text .btn-row { justify-content: flex-start; }
.cta-text p { margin-inline: 0; }
.cta-media { display: flex; justify-content: center; align-items: flex-end; }
.cta-media img {
  display: block;
  width: min(520px, 115%);
  max-width: none;
  margin: -70px -30px 0;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
}
@media (max-width: 860px) {
  .cta-banner { grid-template-columns: 1fr; padding: 40px 28px 0; text-align: center; }
  .cta-text { text-align: center; padding-bottom: 0; }
  .cta-text .btn-row { justify-content: center; }
  .cta-text p { margin-inline: auto; }
  .cta-media img { width: min(380px, 90%); margin: 16px 0 0; }
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 560;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  font-size: clamp(26px, 3.4vw, 36px);
  margin: 0 0 12px;
}
.cta-banner p { margin: 0 auto 28px; max-width: 560px; opacity: 0.92; font-size: 18px; }
.cta-banner .btn--accent { background: var(--orange); }
.cta-banner .btn--ghost { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-banner .btn--ghost:hover { border-color: #fff; color: #fff; }

/* ---------- Breadcrumb ---------- */

.breadcrumb {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--teal); }

/* ---------- Footer ---------- */

.site-footer {
  margin-top: 96px;
  border-top: 1px solid var(--line);
  background: rgba(255, 251, 242, 0.6);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 2fr 1fr 1fr;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { color: var(--ink); font-weight: 600; }
.site-footer a:hover { color: var(--teal); }
/* ---------- Buchung (Vectera): Consent-Button + Modal ---------- */

.booking-cta { margin: 6px 0 2px; }
.booking-note {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 14px;
  max-width: 62ch;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.booking-modal[hidden] { display: none; }
.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  /* Bewusst KEIN backdrop-filter: Der Blur auf dem fixed Overlay loest in
     Chrome/Edge einen Compositing-Bug aus, durch den der sticky Header
     (selbst mit backdrop-filter) verschoben/abgeschnitten gerendert wird,
     sobald das Modal oeffnet und der Body-Scroll gesperrt wird.
     Stattdessen etwas staerker abgedunkelt. */
  background: rgba(20, 15, 8, 0.62);
}
.booking-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-panel);
  padding: 10px;
}
.booking-modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: background var(--motion-quick), color var(--motion-quick);
}
.booking-modal__close:hover { background: var(--teal); color: #fff; }
.booking-modal__consent {
  padding: 40px 36px 32px;
  text-align: center;
}
.booking-modal__consent h3 {
  font-family: var(--font-display);
  font-weight: 560;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  font-size: 26px;
  margin: 0 0 12px;
}
.booking-modal__consent p {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 20px;
}
.booking-modal__consent .btn-row { margin-bottom: 8px; }
.booking-modal__alt {
  font-size: 14px;
  margin-top: 14px !important;
}
.booking-modal__frame {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.booking-modal__frame[hidden],
.booking-modal__consent[hidden] { display: none; }
.booking-modal__frame iframe {
  display: block;
  width: 100%;
  height: min(72vh, 640px);
  border: 0;
}
@media (max-width: 520px) {
  .booking-modal { padding: 12px; }
  .booking-modal__close { top: 4px; right: 4px; }
}

/* ---------- Kontaktformular (Mail-Service /mail/send) ---------- */

.contact-form {
  max-width: 640px;
  margin-top: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-field { margin-bottom: 18px; }
.form-grid .form-field { margin-bottom: 0; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 7px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color var(--motion-quick), box-shadow var(--motion-quick);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30, 102, 99, 0.15);
}
/* Honeypot: fuer Menschen unsichtbar, aber nicht display:none (Bot-Erkennung) */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
  margin: 4px 0 20px;
}
.form-consent input { margin-top: 4px; accent-color: var(--teal); flex-shrink: 0; }
.form-status {
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
}
.form-status[data-state="ok"] {
  background: rgba(30, 102, 99, 0.12);
  border: 1px solid rgba(30, 102, 99, 0.35);
  color: var(--teal);
}
.form-status[data-state="error"] {
  background: rgba(195, 89, 73, 0.1);
  border: 1px solid rgba(195, 89, 73, 0.35);
  color: var(--danger);
}

/* ---------- Torus-Feature (Methoden: "Du in deinem Feld") ---------- */

.torus-feature {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 48px;
  align-items: center;
}
.torus-feature-media img { width: 100%; height: auto; display: block; }
.torus-feature-text h2 { margin-top: 8px; }
.torus-feature-text .kicker { margin-bottom: 4px; display: inline-block; }
@media (max-width: 760px) {
  .torus-feature { grid-template-columns: 1fr; gap: 20px; }
  .torus-feature-media { max-width: 320px; margin-inline: auto; }
}

.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand img { width: 56px; height: 56px; }
.footer-brand p { margin: 6px 0 0; color: var(--muted); font-size: 15px; max-width: 340px; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
}
