/* ─── INTER FONT (lokal gehostet, OFL-Lizenz) ──── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-700.woff2') format('woff2');
}

:root {
  --bg: #ffffff;
  --bg-alt: #f7f7f5;
  --bg-dark: #111111;
  --text: #111111;
  --text-muted: #555555;
  --text-light: #999999;
  --border: #ebebe8;
  --primary: #111111;
  --accent: #8a6a1f;
  --max: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* ─── ACCESSIBILITY: Skip-to-content + Focus-States ──── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--text);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: top .15s;
}

.skip-link:focus {
  top: 1rem;
  color: white;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Stärkere Focus-States für alle interaktiven Elemente */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
  border-radius: 2px;
}

.btn:focus-visible,
.header-cta:focus-visible,
.btn-submit:focus-visible {
  outline-offset: 3px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: var(--text); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 1rem; letter-spacing: -0.015em; }
h3 { font-size: 1.08rem; font-weight: 600; }

p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; line-height: 1.65; color: var(--text-muted); }
li strong { color: var(--text); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── HEADER ─────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.logo-mark { width: 140px; height: 44px; flex-shrink: 0; color: var(--text); }
.logo-mark svg { width: 100%; height: 100%; display: block; }

.logo-slogan {
  display: inline-block;
  padding-left: 1rem;
  border-left: 1px solid var(--border);
  font-size: 0.86rem;
  font-style: italic;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 0.1rem;
  align-items: center;
  margin-left: auto;
  margin-right: 1rem;
}

.nav-item { position: relative; }

.nav-link {
  position: relative;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--text); font-weight: 600; }

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 1px;
  background: var(--text);
}

.caret { width: 9px; height: 9px; opacity: 0.6; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 1px 0 var(--border);
  padding: 0.5rem;
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s;
  margin-top: 4px;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: 4px;
}

.dropdown a:hover { background: var(--bg-alt); }
.dropdown a.active { background: var(--bg-alt); font-weight: 600; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.15rem;
  background: var(--primary);
  color: white;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta:hover { background: #000; color: white; }
.header-cta svg { width: 14px; height: 14px; }

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  position: relative;
  border-radius: 4px;
  margin-left: auto;
}

.mobile-toggle span {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: all .2s;
}

.mobile-toggle span:nth-child(1) { top: 13px; }
.mobile-toggle span:nth-child(2) { top: 19px; }
.mobile-toggle span:nth-child(3) { top: 25px; }

body.menu-open .mobile-toggle span:nth-child(1) { top: 19px; transform: translateX(-50%) rotate(45deg); }
body.menu-open .mobile-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .mobile-toggle span:nth-child(3) { top: 19px; transform: translateX(-50%) rotate(-45deg); }

/* ─── BREADCRUMB ────────────────────── */
.breadcrumb {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  font-size: 0.85rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  list-style: none;
  padding-left: 0;
  flex-wrap: wrap;
}

.breadcrumb-list li { margin-bottom: 0; color: var(--text-muted); }
.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--text); }
.breadcrumb-sep { color: var(--text-light); }
.breadcrumb-current { color: var(--text); font-weight: 500; }

/* ─── PAGE HEADER (for sub pages) ──────── */
.page-header {
  padding: 4rem 0 3rem;
  background: var(--bg);
}

.page-header-inner {
  max-width: 760px;
}

.page-header.with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.page-eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-header h1 { margin-bottom: 1.25rem; }

.page-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  max-width: 60ch;
}

.page-lead.strong {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 500;
}

/* ─── HERO (Startseite) ─────────────── */
.hero {
  padding: 4rem 0 4rem;
  background: var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 { margin-bottom: 1.4rem; max-width: 18ch; }

.hero-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-visual { position: relative; }

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-image img { width: 100%; height: 100%; object-fit: cover; }

.hero-caption {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
  font-style: italic;
}

/* ─── BUTTONS ───────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.4rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: #000; color: white; }

.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--text); }

.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: #b07e1f; color: white; }

.btn svg { width: 14px; height: 14px; }

.inline-link {
  color: var(--text);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}

.inline-link:hover { color: var(--accent); }
.inline-link svg { width: 13px; height: 13px; transition: transform .2s; }
.inline-link:hover svg { transform: translateX(3px); }

/* ─── SECTIONS ──────────────────────── */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-tight { padding: 3rem 0; }

.section-header { max-width: 720px; margin-bottom: 3rem; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-lead {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  line-height: 1.7;
}

/* ─── INTRO ─────────────────────────── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.intro-aside .accent-line {
  width: 32px;
  height: 1px;
  background: var(--text);
  margin: 1rem 0 1.25rem;
}

.intro-aside p { color: var(--text-muted); font-size: 0.95rem; }

.intro-content p {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.15rem;
}

.intro-content p:first-child {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
}

.intro-content strong { font-weight: 600; }

/* ─── PROSE (Impressum / Datenschutz) ────── */
.prose {
  max-width: 760px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.prose h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.prose p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.prose strong { color: var(--text); font-weight: 600; }
.prose ul { margin-bottom: 1.25rem; padding-left: 1.25rem; }
.prose li { color: var(--text-muted); }
.prose a { color: var(--text); text-decoration: underline; }
.prose a:hover { color: var(--accent); }
.prose address { font-style: normal; color: var(--text-muted); line-height: 1.75; }

/* ─── SERVICES ──────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.services-grid.four { grid-template-columns: repeat(4, 1fr); }

.service { display: flex; flex-direction: column; }

.service-img {
  aspect-ratio: 16 / 10;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service:hover .service-img img { transform: scale(1.04); }

.service-num {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.12em;
  margin-bottom: 0.45rem;
  font-variant-numeric: tabular-nums;
}

.service h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }
.service p { color: var(--text-muted); font-size: 0.94rem; line-height: 1.65; margin-bottom: 0.75rem; flex: 1; }
.service .inline-link { font-size: 0.88rem; align-self: flex-start; }

/* ─── PROCESS TABLE ─────────────────── */
.process-table {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.process-row {
  display: grid;
  grid-template-columns: 80px 1.1fr 1.6fr 1.3fr;
  gap: 2rem;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.process-row:last-of-type { border-bottom: none; }
.process-row.head {
  background: var(--bg-alt);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.process-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
  padding-top: 0.4rem;
}

.process-phase { font-weight: 600; color: var(--text); }
.process-inhalt { color: var(--text-muted); font-size: 0.94rem; line-height: 1.65; }
.process-nutzen { color: var(--text); font-size: 0.94rem; line-height: 1.65; }

.process-footer {
  margin-top: 1.5rem;
  padding: 1.5rem 2rem;
  border-left: 2px solid var(--text);
  background: transparent;
}

.process-footer p:first-child { font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.process-footer p:last-child { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* ─── EXAMPLES ──────────────────────── */
.examples-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.examples { display: flex; flex-direction: column; }

.example {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.example:last-child { border-bottom: 1px solid var(--border); }

.example-marker { display: flex; flex-direction: column; gap: 0.4rem; }

.example-num {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.example-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.example-body h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }
.example-body p { color: var(--text-muted); line-height: 1.7; margin-bottom: 0.85rem; }

.example-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.example-tag {
  padding: 0.25rem 0.65rem;
  background: var(--bg-alt);
  color: var(--text-muted);
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ─── AUDIENCE / FEATURE CARDS ───────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-grid.two { grid-template-columns: repeat(2, 1fr); }
.feature-grid.four { grid-template-columns: repeat(4, 1fr); }

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
}

.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.feature-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; margin-bottom: 0.5rem; }
.feature-card p:last-child { margin-bottom: 0; }
.feature-card ul { margin: 0.5rem 0 0; padding-left: 1.1rem; }
.feature-card li { color: var(--text-muted); font-size: 0.93rem; }

/* ─── VALUE TABLE ───────────────────── */
.value-table {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.value-table table { width: 100%; border-collapse: collapse; }
.value-table th, .value-table td {
  padding: 1.1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-size: 0.94rem;
  line-height: 1.6;
}

.value-table th {
  background: var(--bg-alt);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.value-table td:first-child { font-weight: 600; color: var(--text); }
.value-table td { color: var(--text-muted); }
.value-table tr:last-child td { border-bottom: none; }

/* ─── REFERENCES ────────────────────── */
.refs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.ref-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ref-img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-alt); }
.ref-img img { width: 100%; height: 100%; object-fit: cover; }

.ref-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.ref-body h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.ref-body p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; margin: 0; }

/* ─── BRANCH SWITCHER (3 large cards) ──── */
.branch-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.branch-card {
  position: relative;
  display: block;
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
  color: var(--text);
}

.branch-card:hover {
  border-color: var(--text);
  transform: translateY(-3px);
  color: var(--text);
}

.branch-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}

.branch-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  filter: grayscale(15%);
}

.branch-card:hover .branch-card-img img { transform: scale(1.05); }

.branch-card-body { padding: 1.5rem 1.5rem 1.75rem; }

.branch-card-num {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.branch-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.015em;
}

.branch-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.branch-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.branch-card-arrow svg {
  width: 14px;
  height: 14px;
  transition: transform .2s;
}

.branch-card:hover .branch-card-arrow svg { transform: translateX(4px); }

/* ─── BRANCH SECTION (2-col layout) ───── */
.branch-section {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.branch-section.reverse { grid-template-columns: 1.15fr 1fr; }
.branch-section.reverse .branch-visual { order: 2; }

.branch-visual { position: sticky; top: 90px; }

.branch-visual-img {
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
  overflow: hidden;
  margin-bottom: 1rem;
}

.branch-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
}

.branch-visual-marker {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.branch-visual-num {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.branch-visual-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.branch-content h2 {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.branch-content h3 {
  font-size: 1.05rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.branch-content > h3:first-child,
.branch-content > p:first-child + h3 { margin-top: 0; }

.branch-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ─── ICON LIST ──────────────────────── */
.icon-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.icon-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.75rem;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}

.icon-list li:last-child { border-bottom: none; }

.icon-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 10px;
  height: 10px;
  border: 1px solid var(--text);
  background: white;
  border-radius: 50%;
}

.icon-list li.accent::before {
  background: var(--text);
}

/* ─── QUOTE BLOCK ────────────────────── */
.quote-block {
  margin: 2rem 0;
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-left: 2px solid var(--text);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
  letter-spacing: -0.01em;
}

.quote-block cite {
  display: block;
  margin-top: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── NETWORK DIAGRAM ─────────────────── */
.network-diagram {
  background: white;
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  margin: 2rem 0;
}

.network-diagram svg { width: 100%; height: auto; display: block; max-width: 720px; margin: 0 auto; }

/* Animation: initial state (works for both .network-diagram and .hero-diagram) */
.network-diagram svg .anim-line,
.hero-diagram svg .anim-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0;
}
.network-diagram svg .anim-node,
.hero-diagram svg .anim-node {
  opacity: 0;
  transform: scale(0.4);
  transform-origin: center;
  transform-box: fill-box;
}
.network-diagram svg .anim-label,
.hero-diagram svg .anim-label {
  opacity: 0;
}

/* Animation: play state (triggered by JS via .in-view class) */
.network-diagram.in-view svg .anim-line,
.hero-diagram.in-view svg .anim-line {
  animation: drawLine 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.network-diagram.in-view svg .anim-node,
.hero-diagram.in-view svg .anim-node {
  animation: popNode 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.network-diagram.in-view svg .anim-label,
.hero-diagram.in-view svg .anim-label {
  animation: fadeLabel 0.5s ease forwards;
}

/* Stagger via CSS custom property --d (delay in ms) */
.network-diagram.in-view svg .anim-line,
.network-diagram.in-view svg .anim-node,
.network-diagram.in-view svg .anim-label,
.hero-diagram.in-view svg .anim-line,
.hero-diagram.in-view svg .anim-node,
.hero-diagram.in-view svg .anim-label {
  animation-delay: calc(var(--d, 0) * 1ms);
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes popNode {
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeLabel {
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .network-diagram svg .anim-line,
  .network-diagram svg .anim-node,
  .network-diagram svg .anim-label,
  .hero-diagram svg .anim-line,
  .hero-diagram svg .anim-node,
  .hero-diagram svg .anim-label {
    animation: none;
    opacity: 1;
    stroke-dashoffset: 0;
    transform: scale(1);
  }
}

/* ─── HERO DIAGRAM (Startseite-Hero-Visual) ──────── */
.hero-diagram {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: transparent;
  border: none;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-diagram svg {
  width: 100%;
  height: 100%;
  display: block;
}

.network-diagram-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  font-style: italic;
}

/* ─── TESTIMONIAL (Kundenstimme) ─────────── */
.testimonial {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 0;
  text-align: center;
}

.testimonial-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
  letter-spacing: -0.005em;
}

.testimonial-quote::before { content: '„'; }
.testimonial-quote::after { content: '"'; }

.testimonial-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.testimonial-author strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* ─── CTA STRIP (minimal contact block) ───── */
.cta-strip {
  padding: 5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-strip-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}

.cta-strip .section-eyebrow { margin-bottom: 1.15rem; }

.cta-strip h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  margin-bottom: 1.25rem;
}

.cta-strip p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0 auto 2rem;
  max-width: 580px;
}

.cta-strip .btn { margin: 0.25rem; }

/* ─── CONTACT ───────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: start;
}

.contact-portrait { margin-bottom: 1.75rem; }
.contact-portrait img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(20%);
}

.portrait-full {
  margin: 0;
}
.portrait-full img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  filter: grayscale(10%);
}

/* Sticky-Aside (used on Über-mich) – Foto bleibt während des Scrollens durch die Text-Spalte sichtbar */
@media (min-width: 1025px) {
  .intro-aside-sticky {
    position: sticky;
    top: 90px;
    align-self: start;
  }
}

.contact-info h2 { margin-bottom: 0.5rem; }
.contact-info > .sig {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.97rem;
  margin-bottom: 1rem;
}

.contact-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.93rem;
  color: var(--text);
}

.contact-feature svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--accent);
  margin-top: 4px;
}

.contact-feature strong { font-weight: 600; }
.contact-feature span { color: var(--text-muted); }

/* ─── FORM ──────────────────────────── */
.form-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}

.form-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.form-card > p.lead { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.5rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row { display: flex; flex-direction: column; }
.form-row.full { grid-column: 1 / -1; }

.form-row label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.form-row label .req { color: var(--accent); }
.form-row label .opt { color: var(--text-light); font-weight: 400; font-size: 0.78rem; }

.form-row input, .form-row textarea, .form-row select {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.7rem 0.85rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
}

.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.07);
}

.form-row textarea { min-height: 110px; resize: vertical; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 0.5rem;
}

.form-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.form-check label { cursor: pointer; font-weight: 400; color: var(--text-muted); margin: 0; }
.form-check a { text-decoration: underline; color: var(--text); }

.form-submit {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-submit-note { font-size: 0.8rem; color: var(--text-light); }

.btn-submit {
  background: var(--primary);
  color: white;
  padding: 0.78rem 1.6rem;
  font-size: 0.93rem;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
}

.btn-submit:hover { background: #000; }
.btn-submit svg { width: 14px; height: 14px; }

.form-success { display: none; padding: 1rem 0; }
.form-success.visible { display: block; }

.form-success-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(47, 125, 79, 0.1);
  color: #2f7d4f;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.form-success h3 { margin-bottom: 0.4rem; }

/* ─── FOOTER ────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-mark { color: white; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
  margin-top: 1rem;
}

.footer-col h4 {
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.15rem;
}

.footer-col ul { list-style: none; padding-left: 0; }
.footer-col li {
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 0;
  border: none;
}
.footer-col li::before { display: none; content: none; }

.footer-col a { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent); }

.footer-col address {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  font-style: normal;
}

.footer-col address strong { color: white; display: block; margin-bottom: 0.45rem; }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a { color: rgba(255, 255, 255, 0.5); }
.footer-bottom a:hover { color: var(--accent); }

/* ─── BACK TO TOP ──────────────────── */
.back-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
  z-index: 50;
}

.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--accent); }
.back-top svg { width: 16px; height: 16px; }

/* ─── CROSS-LINKS (am Ende der Leistungsseiten) ──── */
.related-services {
  border-top: 1px solid var(--border);
  padding: 4rem 0 3rem;
}

.related-services .section-eyebrow { margin-bottom: 0.5rem; }

.related-services h2 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.related-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  transition: border-color .2s, transform .2s;
}

.related-card:hover {
  border-color: var(--text);
  transform: translateY(-2px);
  color: var(--text);
}

.related-card-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.related-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.related-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
  flex: 1;
}

.related-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.related-card-arrow svg { width: 13px; height: 13px; transition: transform .2s; }
.related-card:hover .related-card-arrow svg { transform: translateX(3px); }

@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* ─── STICKY-HEADER SHRINK ─────────── */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 var(--border);
}
.site-header.scrolled .header-inner {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}
.site-header.scrolled .logo-mark {
  width: 120px;
  height: 36px;
  transition: all .25s ease;
}
.logo-mark { transition: width .25s ease, height .25s ease; }
.header-inner { transition: padding .25s ease; }

/* ─── LOADING-STATE FORMULAR ─────────── */
.btn-submit.loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
  color: transparent;
}
.btn-submit.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* ─── PRINT STYLESHEET ────────────── */
@media print {
  body { background: white; color: black; font-size: 11pt; }
  .site-header, .site-footer, .cta-strip, .back-top,
  .header-cta, .mobile-toggle, .skip-link,
  .form-card, #contactForm,
  .nav-item, nav { display: none !important; }
  .breadcrumb { border: none; background: transparent; padding: 0; }
  .container { max-width: 100%; padding: 0; }
  .section { padding: 1rem 0; page-break-inside: avoid; }
  .hero { padding: 1rem 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual, .hero-diagram, .network-diagram, .branch-card-img,
  .branch-visual-img, .service-img, .ref-img { display: none; }
  .feature-grid, .services-grid, .audience-grid, .refs-grid {
    grid-template-columns: 1fr !important;
    gap: 0.5rem;
    page-break-inside: avoid;
  }
  .feature-card, .service, .ref-card, .audience-card, .example {
    page-break-inside: avoid;
    border: none;
    padding: 0.5rem 0;
  }
  h1 { font-size: 18pt; }
  h2 { font-size: 14pt; margin-top: 1.2em; page-break-after: avoid; }
  h3 { font-size: 12pt; page-break-after: avoid; }
  a { color: black; text-decoration: underline; }
  /* URL hinter Links zeigen (außer Anker) */
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  .quote-block { border-left: 2px solid black; }
  .process-table, .value-table { border: 1px solid black; }
  .process-row, .value-table tr { border-bottom: 1px solid #888; page-break-inside: avoid; }
}

/* ─── RESPONSIVE ───────────────────── */
@media (max-width: 1100px) {
  .logo-slogan { display: none; }
  .nav-link { padding: 0.55rem 0.6rem; font-size: 0.86rem; }
  .header-inner { gap: 1rem; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid, .services-grid.four { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .feature-grid.four { grid-template-columns: repeat(2, 1fr); }
  .branch-switcher { grid-template-columns: 1fr; gap: 1rem; }
  .branch-section, .branch-section.reverse { grid-template-columns: 1fr; gap: 1.5rem; }
  .branch-section.reverse .branch-visual { order: 0; }
  .branch-visual { position: static; }
  .branch-visual-img { aspect-ratio: 16 / 10; max-width: 480px; }
  .refs-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .process-row { grid-template-columns: 50px 1fr; gap: 1rem; padding: 1.5rem; }
  .process-row.head { display: none; }
  .process-inhalt, .process-nutzen { grid-column: 2; }
  .process-inhalt::before { content: 'Inhalt'; font-weight: 600; color: var(--text); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.2rem; }
  .process-nutzen::before { content: 'Ihr Nutzen'; font-weight: 600; color: var(--text); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-header.with-image { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Wichtig: backdrop-filter erzeugt containing block für position:fixed Kinder.
     Auf Mobile entfernen, damit das Mobile-Menü (position:fixed) am Viewport haftet. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: white;
  }
  .header-inner { padding: 0.7rem 1.25rem; gap: 0.75rem; }
  .main-nav, .header-cta { display: none; }
  .mobile-toggle { display: block; }
  .logo-mark { width: 120px; height: 38px; }

  body.menu-open .main-nav {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    overflow-y: auto;
    margin: 0;
    border-top: 1px solid var(--border);
  }

  body.menu-open .main-nav .nav-link {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  body.menu-open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    background: var(--bg-alt);
    margin: 0;
    border-radius: 0;
  }

  body.menu-open .dropdown a { padding: 0.7rem 1rem; }

  /* Mobile-Menü: prominenter "Erstgespräch"-CTA am Ende */
  body.menu-open .main-nav::after {
    content: '';
    flex: 1;
  }
  body.menu-open .main-nav .header-cta-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--text);
    color: white !important;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
  }
  body.menu-open .main-nav .header-cta-mobile:hover { background: #000; color: white !important; }

  .section { padding: 3rem 0; }
  .hero, .page-header { padding: 2.5rem 0 3rem; }
  .services-grid, .services-grid.four,
  .feature-grid, .feature-grid.four { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-card { padding: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .example { grid-template-columns: 1fr; gap: 0.85rem; padding: 1.5rem 0; }
  .example-marker { flex-direction: row; align-items: center; gap: 0.75rem; }
  .example-num { font-size: 1.5rem; }
  .contact-portrait img { max-width: 260px; }
  .value-table { font-size: 0.85rem; }
  .value-table th, .value-table td { padding: 0.85rem 1rem; }

  /* ─── MOBILE: Hero kompakter + Buttons gleich breit ─── */
  .hero { padding: 1.5rem 0 2rem; }
  .hero-inner { gap: 1.5rem; }
  .hero h1 {
    font-size: clamp(1.5rem, 7.5vw, 2rem);
    max-width: 100%;
    margin-bottom: 1rem;
  }
  .hero-lead { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-cta { flex-direction: column; gap: 0.6rem; }
  .hero-cta .btn { width: 100%; justify-content: center; padding: 0.85rem 1rem; }

  /* CTA-Strip Buttons */
  .cta-strip .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Page-Header etwas kompakter */
  .page-header { padding: 1.5rem 0 1.5rem; }
  .page-header h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .page-lead { font-size: 1rem; }

  /* Hero-Diagramm: in 5:6 Format, etwas vergrößert für Lesbarkeit */
  .hero-diagram {
    aspect-ratio: 5 / 6;
    max-width: 420px;
    margin: 0 auto;
  }

  /* Branchen-Diagramm: scrollbar mit Fade-Hint an den Rändern */
  .network-diagram {
    padding: 1.5rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* Gradient-Fade rechts als Scroll-Hinweis */
    mask-image: linear-gradient(to right, black 0%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, black 92%, transparent 100%);
    scroll-snap-type: x mandatory;
  }
  .network-diagram svg {
    min-width: 540px;
    width: 540px;
    scroll-snap-align: start;
    margin-left: 0.75rem;
  }
  .network-diagram-caption {
    padding: 0 1rem;
    font-size: 0.8rem;
  }

  /* Process-Tabelle kompakter */
  .process-row { padding: 1.25rem 1rem; gap: 0.85rem; }
  .process-num { font-size: 0.7rem; padding-top: 0.2rem; }
  .process-phase { font-size: 1rem; }
  .process-inhalt, .process-nutzen { font-size: 0.9rem; line-height: 1.55; margin-top: 0.5rem; }
  .process-inhalt::before, .process-nutzen::before { font-size: 0.65rem; }
  .process-footer { padding: 1.25rem 1.25rem; margin-top: 1rem; }
  .process-footer p:first-child { font-size: 0.95rem; }
  .process-footer p:last-child { font-size: 0.88rem; }

  /* Quote-Block kompakter */
  .quote-block { font-size: 1.05rem; padding-left: 1rem; }

  /* Form-Card: weniger Padding auf Mobile */
  .form-card { padding: 1.25rem; }
  .form-submit { flex-direction: column-reverse; align-items: stretch; gap: 0.85rem; }
  .form-submit .btn-submit { width: 100%; justify-content: center; }
  .form-submit-note { text-align: center; }

  /* Foto in Über-mich auf Mobile auf max-width begrenzen */
  .portrait-full img { max-width: 100%; margin: 0 auto; }

  /* Container: weniger Padding für mehr Inhaltsbreite */
  .container { padding: 0 1.25rem; }

  /* Footer: weniger groß auf Mobile */
  .site-footer { padding: 2.5rem 0 0; }
  .footer-grid { padding-bottom: 2rem; gap: 1.5rem; }
}
