/* ============================================================
   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;
  display: block;
  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 li {
  display: block;
}
.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-Bereich (Startseite): Textspalte + Kurzprofil */
.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);
}

/* Projekte-Seite */
.project-block {
  display: grid;
  gap: 2rem;
  border: 1px solid var(--sand-200);
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
@media (min-width: 900px) {
  .project-block {
    grid-template-columns: 3fr 2fr;
    padding: 2.75rem;
  }
}
.badge--dark {
  background: var(--brand-900);
  color: var(--accent-300);
}
.project-block h2 {
  margin-top: 1rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
}
.project-tagline {
  margin-top: 0.35rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-700);
}
.project-text {
  margin-top: 1rem;
  color: var(--slate-600);
  line-height: 1.65;
}
.project-actions {
  margin-top: 1.5rem;
}
.project-relation {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sand-200);
  font-size: 0.9rem;
  color: var(--slate-600);
}
.project-facts {
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: 1rem;
  padding: 1.5rem;
  align-self: start;
}
.project-facts h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-900);
}
.project-facts ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}
.project-facts li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--slate-700);
}
.project-facts li svg {
  color: var(--accent-600);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.project-url {
  margin-top: 1.25rem;
  font-size: 0.85rem;
}
.project-url a {
  color: var(--accent-700);
  font-weight: 600;
  text-decoration: none;
}
.project-url a:hover {
  text-decoration: underline;
}

/* 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;
}

.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; }

/* ---------- "Zum Seitenanfang"-Button ---------- */
.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 55;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 9999px;
  background: var(--brand-900);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(16, 28, 43, 0.28);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s;
}
.to-top:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
}
.to-top:hover { background: var(--accent-500); color: var(--brand-950); }
.to-top:focus-visible { outline: 3px solid var(--accent-300); outline-offset: 2px; }
@media print {
  .to-top { display: none !important; }
}

/* ---------- Druck-Layout ---------- */
@media print {
  :root { --maxw: 100%; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .site-header, .site-footer, .mobile-nav, .desktop-nav, .skip-link,
  form, .btn, .cta, .hero-actions, nav[aria-label] { display: none !important; }
  main { padding: 0 !important; }
  a { color: #000; text-decoration: underline; }
  /* Ziel-URL externer Links im Druck sichtbar machen */
  main a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #444; }
  h1, h2, h3 { page-break-after: avoid; }
  p, li { orphans: 3; widows: 3; }
  section, .card, .info-box { page-break-inside: avoid; }
}

/* ============================================================
   Editoriale Überarbeitung (2026-09)
   Ziel: weniger "Website-Baukasten"-Optik, mehr handgemachte,
   redaktionelle Anmutung. Marke & Farben bleiben unverändert.
   Diese Ebene überschreibt bewusst frühere Regeln (Cascade).
   ============================================================ */
:root {
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino,
    "Book Antiqua", Georgia, Cambria, "Times New Roman", serif;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Display-Typografie: warme Serifen für große Überschriften --- */
.hero h1,
.page-hero h1,
.section-head h2,
.section h2.block-title,
.cta-band h2,
.prose-narrow h2,
.external-block h2,
.info-box h2,
.project-block h2,
.notfound h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.14;
  font-feature-settings: "kern" 1, "liga" 1;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.85rem);
  max-width: 20ch;
}
.hero__sub {
  max-width: 40rem;
}

/* --- Eyebrow als redaktionelle Marke mit vorangestelltem Strich --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 2px;
  background: currentColor;
  opacity: 0.55;
}
.section-head.center .eyebrow {
  justify-content: center;
}

/* --- Hero: statt weicher "KI"-Glow-Blobs eine ruhige, texturierte
       Fläche mit definiertem Farbverlauf --- */
.hero__glow,
.section-glow {
  display: none !important;
}
.hero {
  background:
    radial-gradient(115% 130% at 100% -10%, rgba(13, 166, 164, 0.13), transparent 55%),
    linear-gradient(177deg, #0f1c2b 0%, var(--brand-950) 62%);
}
.hero::before,
.page-hero::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--grain);
  background-size: 140px 140px;
  opacity: 0.045;
  mix-blend-mode: soft-light;
}
.page-hero {
  background: linear-gradient(177deg, #0f1c2b 0%, var(--brand-950) 70%);
}
.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}
.cta-band > * {
  position: relative;
  z-index: 1;
}

/* --- Hero-Metazeile: Disziplinen als redaktionelle Kopfzeile --- */
.hero__meta {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.15rem;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brand-200);
}
.hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
}
.hero__meta li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 9999px;
  background: var(--accent-400);
  flex-shrink: 0;
}

/* --- Service-Karten: Icon weniger "App-Kachel", mehr Detail --- */
.card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.7rem;
  background: var(--accent-50);
  color: var(--accent-700);
  border: 1px solid var(--accent-200);
}
.card--link:hover .card__icon {
  background: var(--accent-500);
  color: #fff;
  border-color: var(--accent-500);
}
.card {
  border-radius: 0.9rem;
}

/* --- Vorteile (dunkel): nummerierte, redaktionelle Liste statt
       zweiter identischer Icon-Kachel-Reihe --- */
.bg-brand ul.grid {
  counter-reset: benefit;
}
.benefit {
  position: relative;
  counter-increment: benefit;
  padding-top: 2.5rem;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.09);
  border-radius: 0.9rem;
}
.benefit::before {
  content: counter(benefit, decimal-leading-zero);
  position: absolute;
  top: 1.3rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--accent-300);
  opacity: 0.5;
}
.benefit__icon {
  background: transparent;
  border: 1px solid rgba(84, 219, 211, 0.4);
  color: var(--accent-300);
}

/* --- Werte (Über uns): linksbündig, ruhiger --- */
.value-card {
  text-align: left;
  border-radius: 0.9rem;
}
.value-card .card__icon {
  margin: 0;
}

/* --- Kurzprofil-Panel (ersetzt die abstrakte Platzhalter-Grafik) --- */
.profile-card {
  position: relative;
  border: 1px solid var(--sand-200);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, #fff, var(--sand-50));
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.profile-card .profile-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-700);
}
.profile-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}
.profile-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.profile-list svg {
  color: var(--accent-600);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.profile-list b {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-500);
}
.profile-list span {
  display: block;
  margin-top: 0.1rem;
  color: var(--brand-900);
  font-weight: 500;
}
.about-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}

/* --- Über uns: echte Vorstellung statt zweier leerer Foto-Rahmen --- */
.about-people {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  max-width: 54rem;
  margin: 2.5rem auto 0;
}
@media (min-width: 768px) {
  .about-people {
    grid-template-columns: auto 1fr;
  }
}
.portrait-frame {
  position: relative;
  width: 14rem;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(150deg, var(--brand-700), var(--brand-950));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 45px -22px rgba(16, 28, 43, 0.55);
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portrait-frame .mono {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  color: var(--accent-300);
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(78% 60% at 30% 22%, rgba(84, 219, 211, 0.16), transparent 62%);
}
.portrait-cap {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate-500);
}
.person-statement p {
  font-size: 1.15rem;
  color: var(--slate-700);
  line-height: 1.6;
}
.person-statement .sig {
  margin-top: 1.1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brand-900);
}
.person-statement .sig::before {
  content: "— ";
  color: var(--accent-600);
}
.person-meta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  font-size: 0.9rem;
  color: var(--slate-600);
}
.person-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.person-meta svg {
  color: var(--accent-600);
}
.person-meta a {
  color: var(--accent-700);
  font-weight: 600;
  text-decoration: none;
}
.person-meta a:hover {
  text-decoration: underline;
}

/* --- CTA-Band: definierter Verlauf + Textur statt Glow --- */
.cta-band {
  background:
    radial-gradient(120% 145% at 0% 0%, rgba(13, 166, 164, 0.13), transparent 52%),
    var(--brand-950);
}

/* --- Leichte redaktionelle Betonung der Sektionsköpfe --- */
.section-head h2 {
  letter-spacing: -0.012em;
}

/* ============================================================
   Qualitäts-Feinschliff (2026-09)
   Typo-Rhythmus, Tiefe, Detailschliff. Marke/Farben unverändert.
   ============================================================ */

/* 1) Ausgewogener Headline-Umbruch (keine hängenden Einzelwörter) */
.hero h1, .page-hero h1, .section-head h2, .section h2.block-title,
.cta-band h2, .prose-narrow h2, .external-block h2, .info-box h2,
.project-block h2, .notfound h1, .related-callout h2, .notice h2 {
  text-wrap: balance;
}
.hero h1 { line-height: 1.08; }

/* 2) Angenehme Zeilenlänge + weicher Umbruch im Fließtext */
.hero__sub, .page-hero__intro, .section-head p, .section-intro,
.prose-narrow p, .cta-band p, .external-block p {
  text-wrap: pretty;
}
.section-head p { max-width: 40rem; }

/* 3) Mehr Luft in großen Ansichten – ruhigere, hochwertigere Wirkung */
@media (min-width: 1024px) {
  .section { padding: 6rem 0; }
  .hero { padding: 8rem 0 7rem; }
}
/* Anker nicht unter den Sticky-Header rutschen lassen */
:target { scroll-margin-top: 5rem; }

/* 4) Dunkle Flächen: mehr Tiefe (zwei Lichtquellen) */
.hero {
  background:
    radial-gradient(120% 120% at 100% -10%, rgba(13, 166, 164, 0.16), transparent 52%),
    radial-gradient(90% 120% at 0% 115%, rgba(50, 88, 122, 0.30), transparent 55%),
    linear-gradient(177deg, #0f1c2b 0%, var(--brand-950) 60%);
}
.bg-brand {
  background:
    radial-gradient(90% 130% at 100% 0%, rgba(13, 166, 164, 0.10), transparent 55%),
    var(--brand-950);
}

/* 5) Karten: weicher, mehrschichtiger Schatten + edlerer Hover +
      Akzent-Oberkante, die beim Überfahren aufzieht */
.card, .feature, .value-card, .form-card, .project-block {
  box-shadow: 0 1px 2px rgba(16, 28, 43, 0.04), 0 10px 26px -20px rgba(16, 28, 43, 0.20);
}
.card--link {
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), border-color .25s, box-shadow .25s;
}
.card--link::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent-500), var(--accent-300));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.card--link:hover {
  transform: translateY(-5px);
  box-shadow: 0 1px 2px rgba(16, 28, 43, 0.05), 0 22px 42px -22px rgba(16, 28, 43, 0.30);
}
.card--link:hover::before { transform: scaleX(1); }

/* 6) Textlinks: animierte Unterstreichung */
.text-link { position: relative; }
.text-link::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--accent-500); transition: right .3s ease;
}
.text-link:hover::after { right: 0; }

/* 7) Primär-CTA: weicher Akzent-Schatten + dezenter Press-Effekt */
.btn--primary { box-shadow: 0 10px 22px -12px rgba(13, 166, 164, 0.65); }
.btn:active { transform: translateY(1px); }

/* 8) Eyebrow-Strich etwas markanter */
.eyebrow::before { width: 2rem; }

/* 9) Kurzprofil-Panel: redaktionelle Akzentkante links */
.profile-card { border-left: 3px solid var(--accent-400); }

/* 10) Reduced-Motion respektieren (Transforms/Transitions aus) */
@media (prefers-reduced-motion: reduce) {
  .card--link, .card--link::before, .text-link::after, .btn { transition: none; }
  .card--link:hover { transform: none; }
}

/* ============================================================
   Signatur-Schrift: EB Garamond (selbst gehostet, OFL)
   Warme, literarische Serife – passend zum Sprach-/Medien-Profil.
   Nur Display/Headlines; Fließtext bleibt System-Sans (Performance).
   ============================================================ */
@font-face {
  font-family: "EB Garamond";
  src: url("/assets/fonts/ebgaramond-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "EB Garamond";
  src: url("/assets/fonts/ebgaramond-italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "EB Garamond";
  src: url("/assets/fonts/ebgaramond-bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
:root {
  --font-serif: "EB Garamond", "Iowan Old Style", "Palatino Linotype",
    Palatino, Georgia, Cambria, "Times New Roman", serif;
}

/* Garamond läuft kleiner & feiner: Display-Größen anheben, Regular-Gewicht,
   kein negatives Tracking (Serifen brauchen das nicht). */
.hero h1, .page-hero h1, .section-head h2, .section h2.block-title,
.cta-band h2, .prose-narrow h2, .external-block h2, .info-box h2,
.project-block h2, .notfound h1, .related-callout h2, .notice h2 {
  font-weight: 400;
  letter-spacing: 0;
}
.hero h1 { font-size: clamp(2.7rem, 5.4vw, 4.5rem); line-height: 1.05; }
.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.section-head h2, .section h2.block-title, .cta-band h2,
.prose-narrow h2, .external-block h2 { font-size: clamp(1.7rem, 3.4vw, 2.2rem); }
.hero__sub { font-size: 1.2rem; }

/* ============================================================
   Distinktivere Hero-Komposition (asymmetrisch + Sprach-Motiv)
   ============================================================ */
.hero__greet { display: none; }
@media (min-width: 1024px) {
  .hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 3.5rem;
  }
  .hero__greet {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    justify-self: end;
    text-align: right;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.10);
  }
}
.hero__greet span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
}
.hero__greet span:nth-child(1) { color: var(--accent-300); }
.hero__greet span:nth-child(2) { color: #fff; }
.hero__greet span:nth-child(3) { color: var(--accent-400); }
/* Headline im Grid nicht zu breit werden lassen */
.hero__grid .hero__text h1 { max-width: 18ch; }

/* ---------- Projekte: kompakte Tool-/App-Karten ---------- */
.proj-card { gap: 0; }
.proj-card .badge { align-self: flex-start; }
.proj-card h3 { margin-top: 1rem; font-size: 1.15rem; font-weight: 700; }
.proj-card__tagline {
  margin-top: 0.35rem;
  color: var(--accent-700);
  font-weight: 600;
  font-size: 0.9rem;
}
.proj-card .card__text { margin-top: 0.7rem; flex: none; }
.proj-card__facts { margin-top: 1rem; display: grid; gap: 0.5rem; }
.proj-card__facts li {
  display: flex; gap: 0.5rem; align-items: flex-start;
  font-size: 0.85rem; color: var(--slate-600);
}
.proj-card__facts svg { color: var(--accent-600); flex-shrink: 0; margin-top: 0.15rem; }
.proj-card__link { margin-top: auto; padding-top: 1.1rem; align-self: flex-start; }
.proj-card { transition: border-color 0.2s, box-shadow 0.2s; }
.proj-card:hover { border-color: var(--accent-300); }
