/* ============================================================
   Laukart Media – Statische Website
   Eigenständiges CSS (ohne Build-Schritt, ohne Tailwind).
   Farb-Tokens entsprechen der ursprünglichen Konfiguration.
   ============================================================ */

:root {
  /* Grundfarbe: Dunkelblau / Anthrazit */
  --brand-50: #f3f6f9;
  --brand-100: #e4ebf2;
  --brand-200: #c4d3e2;
  --brand-300: #97b1ca;
  --brand-400: #648bad;
  --brand-500: #426e93;
  --brand-600: #32587a;
  --brand-700: #2a4763;
  --brand-800: #263d54;
  --brand-900: #1d2f42;
  --brand-950: #101c2b;

  /* Akzentfarbe: Türkis */
  --accent-50: #effcfa;
  --accent-100: #c8f6f0;
  --accent-200: #92ece4;
  --accent-300: #54dbd3;
  --accent-400: #26c2bd;
  --accent-500: #0da6a4;
  --accent-600: #078485;
  --accent-700: #09696b;
  --accent-800: #0c5355;
  --accent-900: #0e4547;

  /* Warmes Neutral */
  --sand-50: #fafaf8;
  --sand-100: #f3f2ee;
  --sand-200: #e5e3db;

  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;

  --red-50: #fef2f2;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-900: #7f1d1d;

  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --maxw: 72rem;
  --radius: 1rem;
}

/* ---------- Reset / Basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--slate-700);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1,
h2,
h3 {
  color: var(--brand-900);
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

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

svg {
  display: inline-block;
  vertical-align: middle;
}

:focus-visible {
  outline: 3px solid var(--accent-500);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection {
  background: var(--accent-200);
  color: var(--brand-950);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 60;
  background: var(--accent-500);
  color: var(--brand-950);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 1rem;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

main {
  flex: 1;
}

.section {
  padding: 4rem 0;
}
@media (min-width: 640px) {
  .section {
    padding: 5rem 0;
  }
}
.section--tight {
  padding: 3.5rem 0;
}
.bg-sand {
  background: var(--sand-50);
}
.bg-brand {
  background: var(--brand-950);
  color: #fff;
}
.bg-white {
  background: #fff;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.btn--primary {
  background: var(--accent-500);
  color: var(--brand-950);
}
.btn--primary:hover {
  background: var(--accent-400);
}
.btn--secondary {
  background: var(--brand-900);
  color: #fff;
}
.btn--secondary:hover {
  background: var(--brand-800);
}
.btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 28, 43, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--brand-100);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .header-inner {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .header-inner {
    padding: 0 2rem;
  }
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  text-decoration: none;
}
.logo span {
  color: var(--accent-400);
}
.logo .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--accent-400);
  margin-left: 0.15rem;
  transform: translateY(-1px);
}

.desktop-nav {
  display: none;
}
@media (min-width: 1024px) {
  .desktop-nav {
    display: block;
  }
}
.desktop-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-200);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link[aria-current="page"] {
  color: #fff;
}
.nav-cta {
  margin-left: 0.75rem;
  background: var(--accent-500);
  color: var(--brand-950);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}
.nav-cta:hover {
  background: var(--accent-400);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}
.dropdown-panel {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 26rem;
  padding-top: 0.75rem;
}
.dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  background: var(--brand-900);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.dropdown-list a {
  display: block;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  transition: background-color 0.2s;
}
.dropdown-list a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.dropdown-list .d-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.dropdown-list .d-desc {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--brand-200);
}
.icon-btn {
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 0.375rem;
  background: none;
  border: none;
  color: var(--brand-100);
  cursor: pointer;
  transition: background-color 0.2s;
}
.icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media (min-width: 1024px) {
  .icon-btn.mobile-toggle {
    display: none;
  }
}
[hidden] {
  display: none !important;
}

/* Mobile Nav */
.mobile-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--brand-950);
}
@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 1rem;
}
.mobile-nav > ul > li {
  margin-bottom: 0.25rem;
}
.mobile-nav a {
  display: block;
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  font-weight: 500;
  color: var(--brand-200);
  text-decoration: none;
}
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.mobile-sub {
  margin: 0.25rem 0 0 0.75rem !important;
  padding: 0 0 0 0.75rem !important;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-sub a {
  font-size: 0.875rem;
}
.mobile-cta {
  background: var(--accent-500) !important;
  color: var(--brand-950) !important;
  text-align: center;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-950);
  color: #fff;
  padding: 5rem 0;
}
@media (min-width: 640px) {
  .hero {
    padding: 7rem 0;
  }
}
.hero__glow,
.section-glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events: none;
}
.hero__glow--1 {
  right: -10rem;
  top: -10rem;
  width: 32rem;
  height: 32rem;
  background: rgba(13, 166, 164, 0.1);
}
.hero__glow--2 {
  bottom: -12rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(50, 88, 122, 0.25);
}
.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-600);
  margin: 0;
}
.hero .eyebrow,
.page-hero .eyebrow,
.eyebrow--dark {
  color: var(--accent-400);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  max-width: 48rem;
  margin-top: 1rem;
}
.hero__sub {
  max-width: 42rem;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--brand-100);
}
@media (min-width: 640px) {
  .hero__sub {
    font-size: 1.25rem;
  }
}
.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Page hero (Unterseiten) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-950);
  color: #fff;
  padding: 3.5rem 0;
}
@media (min-width: 640px) {
  .page-hero {
    padding: 5rem 0;
  }
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  max-width: 48rem;
  margin-top: 0.75rem;
}
.page-hero .eyebrow {
  margin-top: 2rem;
}
.page-hero__intro {
  max-width: 42rem;
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--brand-100);
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.875rem;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  color: var(--brand-200);
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.breadcrumbs .sep {
  color: var(--brand-400);
}
.breadcrumbs a {
  color: var(--brand-200);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: #fff;
}
.breadcrumbs [aria-current="page"] {
  color: #fff;
  font-weight: 500;
}

/* ---------- Section headings ---------- */
.section-head {
  max-width: 42rem;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
}
.section-head p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--slate-600);
}
.section-head.on-dark h2 {
  color: #fff;
}
.section-head.on-dark p {
  color: var(--brand-100);
}

/* ---------- Karten / Grids ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid.gap-sm {
  gap: 1.25rem;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--sand-200);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.card--link:hover {
  transform: translateY(-4px);
  border-color: var(--accent-300);
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.18);
}
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--brand-900);
  color: var(--accent-400);
  transition: background-color 0.2s, color 0.2s;
}
.card--link:hover .card__icon {
  background: var(--accent-600);
  color: #fff;
}
.card h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.card h3 a {
  text-decoration: none;
  color: inherit;
}
.card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.card__text {
  margin-top: 0.625rem;
  flex: 1;
  font-size: 0.875rem;
  color: var(--slate-600);
}
.card__more {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-700);
}
.card--link:hover .card__more {
  color: var(--accent-600);
}
.card--link:hover .card__more svg {
  transform: translateX(4px);
}
.card__more svg {
  transition: transform 0.2s;
}
ul.reset,
.reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Vorteile / Werte auf dunkel */
.benefit {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: background-color 0.2s;
}
.benefit:hover {
  background: rgba(255, 255, 255, 0.1);
}
.benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(13, 166, 164, 0.15);
  color: var(--accent-300);
}
.benefit h3 {
  margin-top: 1rem;
  color: #fff;
  font-weight: 700;
}
.benefit p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--brand-100);
}

/* ---------- Prose / Textblöcke ---------- */
.prose-narrow {
  max-width: 42rem;
}
.prose-narrow p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--slate-600);
}
.prose-narrow h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-weight: 600;
  color: var(--accent-700);
  text-decoration: none;
  transition: color 0.2s;
}
.text-link:hover {
  color: var(--accent-600);
}
.prose-link {
  font-weight: 500;
  color: var(--accent-700);
  text-decoration: underline;
  text-decoration-color: var(--accent-300);
  text-underline-offset: 2px;
}
.prose-link:hover {
  color: var(--accent-800);
  text-decoration-color: var(--accent-500);
}

/* Über-Grafik */
.about-visual {
  position: relative;
  height: 20rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--brand-950);
  display: none;
}
@media (min-width: 1024px) {
  .about-visual {
    display: block;
  }
}
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Zielgruppen-Liste */
.checklist {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--sand-50);
  border-radius: 0.75rem;
  padding: 1rem;
}
.checklist svg {
  margin-top: 0.15rem;
  flex-shrink: 0;
  color: var(--accent-600);
}

/* Detail-Karten (Leistungen) */
.feature-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature {
  background: #fff;
  border: 1px solid var(--sand-200);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.feature h3 {
  font-weight: 700;
  font-size: 1rem;
}
.feature p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-600);
}
.section-intro {
  margin-top: 1rem;
  max-width: 42rem;
  font-size: 1.125rem;
  color: var(--slate-600);
}
.section h2.block-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
}

/* Hinweis-Box */
.notice {
  border-left: 4px solid var(--accent-600);
  background: var(--accent-50);
  border-radius: 1rem;
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .notice {
    padding: 2rem;
  }
}
.notice h2 {
  font-size: 1.125rem;
  font-weight: 700;
}
.notice p {
  margin-top: 0.75rem;
  color: var(--slate-700);
}

/* Interner Querverweis-Callout */
.related-callout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--accent-200);
  background: var(--accent-50);
  border-radius: 1rem;
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .related-callout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
  }
}
.related-callout h2 {
  font-size: 1.125rem;
  font-weight: 700;
}
.related-callout p {
  margin-top: 0.5rem;
  max-width: 42rem;
  color: var(--slate-700);
}
.related-callout .btn {
  flex-shrink: 0;
}

/* Externer Block */
.external-block {
  border-radius: 1.5rem;
  background: var(--brand-900);
  color: #fff;
  padding: 2rem;
}
@media (min-width: 640px) {
  .external-block {
    padding: 3rem;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-300);
}
.external-block h2 {
  color: #fff;
  margin-top: 1.25rem;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
}
.external-block p {
  margin-top: 1rem;
  max-width: 42rem;
  font-size: 1.125rem;
  color: var(--brand-100);
}
.external-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

/* ---------- CTA ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--brand-950);
  color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .cta-band {
    padding: 4rem 3rem;
  }
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  max-width: 42rem;
  margin: 0 auto;
}
.cta-band p {
  margin: 1rem auto 0;
  max-width: 42rem;
  font-size: 1.125rem;
  color: var(--brand-100);
}
.cta-band .btn {
  margin-top: 2rem;
}

/* ---------- FAQ ---------- */
.faq {
  border: 1px solid var(--sand-200);
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
}
.faq details {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--sand-200);
}
.faq details:first-child {
  border-top: none;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--brand-900);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary svg {
  flex-shrink: 0;
  color: var(--accent-600);
  transition: transform 0.2s;
}
.faq details[open] summary svg {
  transform: rotate(180deg);
}
.faq details p {
  margin-top: 0.75rem;
  color: var(--slate-600);
}

/* ---------- Formular ---------- */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
  }
}
.form-card {
  background: #fff;
  border: 1px solid var(--sand-200);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
@media (min-width: 640px) {
  .form-card {
    padding: 2.5rem;
  }
}
.form-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
}
.form-card > p {
  margin-top: 0.5rem;
  color: var(--slate-600);
}
form.contact {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .form-row.two {
    grid-template-columns: repeat(2, 1fr);
  }
}
.field label {
  display: block;
  margin-bottom: 0.375rem;
  font-weight: 500;
  color: var(--brand-900);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--sand-200);
  border-radius: 0.5rem;
  background: #fff;
  padding: 0.625rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--slate-800);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent-500);
  outline: none;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--accent-500);
  outline-offset: 1px;
}
.field textarea {
  resize: vertical;
}
.field .field-error {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--red-700);
}
.required-hint {
  font-size: 0.875rem;
  color: var(--slate-500);
}
fieldset.translation {
  border: 1px solid var(--sand-200);
  background: var(--sand-50);
  border-radius: 1rem;
  padding: 1.25rem;
  display: grid;
  gap: 1.25rem;
}
fieldset.translation legend {
  padding: 0 0.5rem;
  font-weight: 600;
  color: var(--brand-900);
}
.translation-note {
  font-size: 0.875rem;
  color: var(--slate-600);
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.consent input {
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  accent-color: var(--accent-600);
}
.consent label {
  font-size: 0.875rem;
  color: var(--slate-700);
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
button.submit {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-500);
  color: var(--brand-950);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}
button.submit:hover {
  background: var(--accent-400);
}
button.submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Alerts */
.alert {
  border-left: 4px solid;
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.alert svg {
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.alert--success {
  border-color: var(--accent-600);
  background: var(--accent-50);
  color: var(--accent-900);
}
.alert--error {
  border-color: var(--red-600);
  background: var(--red-50);
  color: var(--red-900);
}
.alert strong {
  display: block;
}
.alert .alert-body {
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

/* Kontakt-Seitenspalte */
.contact-aside {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}
.aside-dark {
  border-radius: 1.5rem;
  background: var(--brand-950);
  color: #fff;
  padding: 2rem;
}
.aside-dark h2 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
}
.aside-dark p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--brand-100);
}
.aside-dark ul {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.aside-dark li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.aside-dark a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.aside-dark a:hover {
  color: var(--accent-300);
}
.aside-dark svg {
  color: var(--accent-400);
}
.aside-note {
  border: 1px solid var(--sand-200);
  border-radius: 1.5rem;
  background: #fff;
  padding: 2rem;
  font-size: 0.875rem;
  color: var(--slate-600);
}
.muted-placeholder {
  color: var(--brand-300);
}

/* Rechtstexte */
.legal {
  max-width: 42rem;
  margin: 0 auto;
}
.legal section {
  margin-top: 2.5rem;
}
.legal section:first-child {
  margin-top: 0;
}
.legal h2 {
  font-size: 1.125rem;
  font-weight: 700;
}
.legal p {
  margin-top: 0.75rem;
  color: var(--slate-700);
}
.legal .addr {
  margin-top: 1rem;
  background: var(--sand-50);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: grid;
  gap: 0.25rem;
}
.legal .addr p {
  margin: 0;
}

/* Team-Platzhalter */
.team-grid {
  max-width: 48rem;
  margin: 2.5rem auto 0;
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.team figure {
  margin: 0;
  text-align: center;
}
.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  border: 2px dashed var(--sand-200);
  border-radius: 1.5rem;
  background: var(--sand-50);
  color: var(--slate-400);
}
.photo-placeholder .ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.team figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--slate-500);
}

.center-actions {
  text-align: center;
}
.mt-cards {
  margin-top: 3rem;
}
.value-card {
  background: #fff;
  border: 1px solid var(--sand-200);
  border-radius: 1rem;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.value-card .card__icon {
  margin: 0 auto;
}
.value-card h3 {
  margin-top: 1rem;
  font-weight: 700;
}
.value-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-600);
}
.info-box {
  max-width: 48rem;
  margin: 0 auto;
  border: 1px solid var(--sand-200);
  background: var(--sand-50);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}
.info-box h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
}
.info-box p {
  margin-top: 1rem;
  color: var(--slate-600);
}

/* 404 */
.notfound {
  position: relative;
  overflow: hidden;
  background: var(--brand-950);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}
.notfound .code {
  font-size: clamp(4.5rem, 12vw, 6rem);
  font-weight: 700;
  color: var(--accent-400);
  margin: 0;
  line-height: 1;
}
.notfound h1 {
  color: #fff;
  margin-top: 1.5rem;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
}
.notfound p {
  max-width: 36rem;
  margin: 1rem auto 0;
  font-size: 1.125rem;
  color: var(--brand-100);
}
.notfound .actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand-950);
  color: var(--brand-200);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-grid h2 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}
.footer-tagline {
  max-width: 18rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}
.footer-grid ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.625rem;
  font-size: 0.875rem;
}
.footer-grid a {
  color: var(--brand-200);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-grid li.inline-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-bottom ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.footer-bottom a {
  color: var(--brand-200);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: #fff;
}

/* Utility */
.mt-2 { margin-top: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
