:root {
  --orange: #ff6600;
  --cyan: #06d0ff;
  --ink: #302d29;
  --ink-soft: #5e5952;
  --paper: #f4f0e8;
  --paper-light: #fbf8f2;
  --sand: #ddd4c5;
  --line: rgba(48, 45, 41, 0.25);
  --serif: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 90rem;
  --gutter: clamp(1.25rem, 4.4vw, 5rem);
}

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

html {
  scroll-padding-top: 5.5rem;
}

body {
  min-width: 20rem;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.24vw + 0.94rem, 1.125rem);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 0.2rem solid var(--orange);
  outline-offset: 0.25rem;
}

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

::selection {
  background: var(--cyan);
  color: var(--ink);
}

.wrap,
.nav-shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  padding-block: clamp(5.5rem, 8.2vw, 8.25rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 232, 0.94);
  backdrop-filter: blur(0.8rem);
}

.nav-shell {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  width: 2.4rem;
  height: 2.4rem;
}

.brand__name {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.8rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav .nav-contact {
  gap: 0.45rem;
}

.nav-contact span {
  color: var(--orange);
  font-size: 1.2em;
}

.nav-toggle {
  display: none;
  min-width: 3.25rem;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.nav-toggle__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle__icon {
  position: relative;
  width: 1.35rem;
  height: 1rem;
}

.nav-toggle__icon i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: top 180ms ease, transform 180ms ease;
}

.nav-toggle__icon i:first-child {
  top: 0.18rem;
}

.nav-toggle__icon i:last-child {
  top: 0.72rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:first-child {
  top: 0.46rem;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:last-child {
  top: 0.46rem;
  transform: rotate(-45deg);
}

.hero {
  padding: clamp(1.4rem, 2.7vw, 2.6rem) var(--gutter) clamp(5rem, 7vw, 6.75rem);
}

.hero__stage {
  position: relative;
  width: min(100%, calc(var(--max) - 2 * var(--gutter)));
  min-height: min(49.5rem, calc(100svh - 8.15rem));
  margin-inline: auto;
  isolation: isolate;
}

.hero__kicker {
  position: absolute;
  top: clamp(1.2rem, 3.2vw, 3.25rem);
  left: 0;
  z-index: 3;
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.manifest h2,
.method h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hero h1 {
  position: absolute;
  top: clamp(3.9rem, 8.2vw, 7.1rem);
  left: 0;
  z-index: 3;
  width: 100%;
  max-width: 9.4ch;
  font-size: clamp(4.8rem, 10.7vw, 10rem);
}

.hero h1 span {
  display: block;
  margin-left: clamp(0.5rem, 7.2vw, 6.5rem);
  font-style: italic;
}

.hero h1 i,
.contact h2 i {
  color: var(--orange);
  font-style: inherit;
}

.hero__figure {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(80%, 65rem);
  height: 79%;
  margin: 0;
}

.hero__figure::before {
  position: absolute;
  top: -0.9rem;
  right: -0.9rem;
  width: 34%;
  height: 0.38rem;
  background: var(--cyan);
  content: "";
}

.hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  filter: contrast(1.04);
}

.hero__figure figcaption {
  position: absolute;
  right: 0;
  bottom: -2rem;
  max-width: 34rem;
  padding-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.hero__intro {
  position: absolute;
  bottom: -1.1rem;
  left: 0;
  z-index: 4;
  width: min(34rem, 45%);
  padding: clamp(1.5rem, 2.8vw, 2.2rem);
  border-top: 0.32rem solid var(--orange);
  background: var(--paper-light);
}

.hero__intro p {
  max-width: 27ch;
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.85vw, 1.85rem);
  line-height: 1.26;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--orange);
  font-size: 1.2rem;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 3.2vw, 3.25rem);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-label span:first-child {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
  color: var(--ink);
}

.section-label--light span:first-child {
  color: var(--paper-light);
}

.manifest {
  position: relative;
  border-top: 1px solid var(--line);
}

.manifest > .section-label {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.manifest__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(20rem, 0.72fr);
  gap: clamp(3.5rem, 7vw, 7rem);
  align-items: center;
}

.manifest h2 {
  max-width: 15.5ch;
  font-size: clamp(3.4rem, 6.6vw, 6.35rem);
}

.manifest__copy {
  padding-top: 1.35rem;
  border-top: 0.32rem solid var(--cyan);
}

.manifest__copy p {
  max-width: 40rem;
  margin: 0 0 1.2rem;
}

.manifest__copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.38rem, 2vw, 1.9rem);
  line-height: 1.38;
}

.manifest__aside {
  width: min(100%, var(--max));
  margin: clamp(3.5rem, 6vw, 5.75rem) auto 0;
  padding: 1.1rem var(--gutter) 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(0.77rem, 0.8vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: right;
  text-transform: uppercase;
}

.competencies {
  padding-block: clamp(5.5rem, 8.2vw, 8.25rem) 0;
  background: var(--paper-light);
}

.section-heading {
  padding-bottom: clamp(4rem, 6.5vw, 6.5rem);
}

.section-heading h2,
.method h2 {
  max-width: 13ch;
  font-size: clamp(3.5rem, 6.6vw, 6.4rem);
}

/* V18.1 – gemeinsame Media-Grammatik: außen angebunden, natürliche Bildformate.
   52,5 % Media erhalten die bisherige Breite des Kulturmotivs. */
.chapter {
  --chapter-media: 52.5%;
  --chapter-copy-space: clamp(3rem, 5.7vw, 5.8rem);
  --chapter-caption-space: 0.75rem var(--gutter) 1.25rem;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--chapter-media);
  grid-template-areas: "copy media";
  align-items: start;
}

.chapter__copy {
  grid-area: copy;
  min-width: 0;
  padding: var(--chapter-copy-space) var(--gutter);
}

.chapter__image {
  grid-area: media;
  min-width: 0;
  margin: 0;
}

.chapter__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.chapter__image figcaption {
  padding: var(--chapter-caption-space);
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.chapter--digital { border-top: 1px solid var(--line); }

.chapter--media-left,
.chapter--culture {
  grid-template-columns: var(--chapter-media) minmax(0, 1fr);
  grid-template-areas: "media copy";
}

.chapter--culture {
  background: var(--ink);
  color: var(--paper-light);
}

.chapter--culture .chapter__image figcaption { color: var(--sand); }
.chapter--personal { background: var(--cyan); }
.chapter--personal .chapter__image figcaption { color: var(--ink); }

@media (max-width: 980px) {
  .chapter,
  .chapter--media-left,
  .chapter--culture {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "copy" "media";
  }
}

@media (max-width: 700px) {
  .chapter { --chapter-copy-space: 3.5rem; }
}

@media (max-width: 430px) {
  .chapter { --chapter-copy-space: 3.25rem; }
}

.chapter__copy h3 {
  max-width: 12ch;
  margin: 0 0 1.65rem;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.7vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.chapter__copy > p:not(.chapter__eyebrow):not(.chapter__note) {
  max-width: 35rem;
  margin: 0;
  font-size: clamp(1.08rem, 1.3vw, 1.25rem);
  line-height: 1.62;
}

.chapter__eyebrow,
.chapter__note {
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chapter__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 2.25rem;
  color: var(--ink);
}

.chapter__eyebrow::before {
  width: 2.8rem;
  height: 0.22rem;
  background: currentColor;
  content: "";
}

.chapter__note {
  margin: 2.35rem 0 0;
  color: var(--ink-soft);
}

.chapter--culture .chapter__eyebrow {
  color: var(--cyan);
}

.chapter--culture .chapter__note {
  color: var(--sand);
}

.chapter--personal .chapter__eyebrow {
  color: var(--ink);
}

.chapter__statement {
  position: absolute;
  bottom: 3.35rem;
  left: var(--gutter);
  z-index: 2;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.05vw, 2.05rem);
  font-style: italic;
  line-height: 1.2;
}

.projects {
  background: var(--paper);
}

/* V19: Projekte ist ein redaktioneller Router ohne nachfolgende Projektliste. */
.home-v12 .projects > .section-heading {
  padding-bottom: 0;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(19rem, 0.52fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
}

.section-intro {
  margin: 0;
  padding-top: 1.3rem;
  border-top: 0.32rem solid var(--orange);
  font-family: var(--serif);
  font-size: clamp(1.28rem, 1.7vw, 1.62rem);
  line-height: 1.42;
}

.method {
  background: var(--paper-light);
}

.method__intro {
  display: grid;
  grid-template-columns: minmax(13rem, 0.38fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.method__intro .section-label {
  align-self: start;
}

.method__steps {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(4rem, 6vw, 6rem) clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(4.5rem, 6.5vw, 6.5rem);
  padding-inline-start: var(--gutter);
  list-style: none;
}

.method__steps li {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 1.5rem;
  align-content: start;
  align-items: start;
  padding-top: 1.45rem;
  border-top: 1px solid var(--line);
}

.method__steps li:nth-child(1) {
  grid-column: 1 / span 5;
}

.method__steps li:nth-child(2) {
  grid-column: 7 / span 6;
  margin-top: 4rem;
}

.method__steps li:nth-child(3) {
  grid-column: 2 / span 5;
}

.method__steps li:nth-child(4) {
  grid-column: 8 / span 5;
  margin-top: 2rem;
}

.method__number {
  color: var(--orange);
  font-family: var(--serif);
  font-size: clamp(2.9rem, 4.2vw, 4.4rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.82;
}

.method__steps h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.7vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.method__steps p {
  grid-column: 2;
  max-width: 32rem;
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
}

.ai-note {
  display: grid;
  grid-template-columns: minmax(12rem, 0.38fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(5rem, 7vw, 7rem);
}

.ai-note > span {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-note p {
  max-width: 45rem;
  margin: 0;
  padding-left: 1.5rem;
  border-left: 0.35rem solid var(--cyan);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.25vw, 2.15rem);
  line-height: 1.35;
}

/* Profilseite: gemeinsame Portraitgestaltung. */
.profile-entry__portrait {
  position: relative;
  margin: 0;
}

.profile-entry__color {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 46%;
  height: 48%;
  background: var(--orange);
}

.profile-entry__portrait::before {
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  z-index: 2;
  width: 32%;
  height: 0.35rem;
  background: var(--cyan);
  content: "";
}

.profile-entry__portrait figcaption {
  position: absolute;
  bottom: 0;
  left: var(--portrait-inset);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: max-content;
  height: var(--portrait-inset);
  padding: 0 0.8rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

/* V19: kompakte, unnummerierte Profilroute zwischen Aktuelles und Kontakt. */
.home-profile-route {
  padding-block: clamp(1.5rem, 2.5vw, 2.5rem);
  background: var(--paper-light);
}

.home-profile-route > .wrap {
  display: flex;
  justify-content: flex-end;
}

.home-profile-route .section-route {
  margin-top: 0;
}

@media (max-width: 700px) {
  .home-profile-route > .wrap { justify-content: flex-start; }
}

.contact {
  padding-block: clamp(5.5rem, 8.3vw, 8.5rem);
  background: var(--ink);
  color: var(--paper-light);
}

.contact--cta {
  padding-block: clamp(5.5rem, 8vw, 8rem);
}

.contact-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.55fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.contact-cta__action {
  padding-top: 1.5rem;
  border-top: 0.34rem solid var(--cyan);
}

.contact-cta__action p {
  margin: 2rem 0 0;
  color: var(--sand);
  line-height: 1.8;
}

.contact-cta__action p a:hover {
  color: var(--cyan);
}

.cta-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
  text-decoration: none;
}

.cta-link i {
  color: var(--orange);
  font-family: var(--sans);
  font-size: 0.9em;
  font-style: normal;
}

.cta-link:hover,
.cta-link:focus-visible {
  color: var(--cyan);
}

.contact__intro {
  max-width: 42rem;
  margin: 2.25rem 0 clamp(4.5rem, 6vw, 6rem);
  color: var(--sand);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.85vw, 1.8rem);
  line-height: 1.4;
}

.contact h2 {
  max-width: 10ch;
  font-size: clamp(4rem, 8.8vw, 8.4rem);
}

.contact__content {
  display: grid;
  grid-template-columns: minmax(19rem, 0.76fr) minmax(28rem, 1.2fr);
  gap: clamp(3.5rem, 6.5vw, 6.5rem);
  align-items: start;
}

.contact__links {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.contact__links a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.3rem 1rem;
  align-items: center;
  min-height: 7.25rem;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: color 180ms ease, padding 180ms ease;
}

.contact__links a:hover {
  padding-inline: 1rem;
  color: var(--cyan);
}

.contact__links a > span {
  grid-column: 1;
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact__links strong {
  grid-column: 1;
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.05vw, 1.95rem);
  font-weight: 400;
}

.contact__links i {
  grid-row: 1 / 3;
  grid-column: 2;
  color: var(--orange);
  font-size: 2rem;
  font-style: normal;
}

.contact .contact__address {
  max-width: none;
  margin: 2rem 0 0;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.45rem clamp(1.5rem, 3vw, 3rem);
  padding-top: 1.5rem;
  border-top: 0.34rem solid var(--cyan);
}

.contact-form__heading,
.contact-form__field--message,
.contact-form__submit,
.contact-form__status,
.contact-form__success,
.contact-form__privacy {
  grid-column: 1 / -1;
}

.contact-form__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.6rem;
}

.contact-form__heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.contact-form__heading p {
  max-width: 16rem;
  margin: 0;
  color: var(--sand);
  font-size: 0.77rem;
  line-height: 1.45;
  text-align: right;
}

.contact-form__field {
  position: relative;
}

.contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form label span,
.contact-form__heading p > span[aria-hidden="true"] {
  color: var(--orange);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 4.15rem;
  padding: 0.7rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 0;
  background: transparent;
  color: var(--paper-light);
  font: inherit;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.contact-form textarea {
  min-height: 9.25rem;
  line-height: 1.55;
  resize: vertical;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: var(--paper-light);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  border-color: var(--cyan);
  outline-color: var(--cyan);
  background: rgba(255, 255, 255, 0.035);
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: var(--orange);
}

.contact-form__error {
  display: block;
  min-height: 1.4rem;
  padding-top: 0.25rem;
  color: #ff6600;
  font-size: 0.76rem;
  line-height: 1.4;
}

.contact-form__submit {
  display: inline-flex;
  min-height: 4.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid var(--paper-light);
  background: var(--paper-light);
  color: var(--ink);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.contact-form__submit i {
  color: var(--orange);
  font-size: 1.4rem;
  font-style: normal;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.contact-form__status {
  min-height: 0;
  margin: 0;
  color: var(--cyan);
  font-size: 0.86rem;
  line-height: 1.55;
}

.contact-form__status:not(:empty) {
  min-height: auto;
  padding: 0.85rem 1rem;
  border-left: 0.3rem solid var(--cyan);
  background: rgba(6, 208, 255, 0.08);
}

.contact-form__success {
  padding: 1.2rem;
  border-left: 0.4rem solid var(--cyan);
  background: rgba(6, 208, 255, 0.08);
}

.contact-form__success strong,
.contact-form__success span {
  display: block;
}

.contact-form__success strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.contact-form__privacy {
  max-width: 48rem;
  margin: 0.4rem 0 0;
  color: var(--sand);
  font-size: 0.79rem;
  line-height: 1.6;
}

.contact-form__privacy a:hover {
  color: var(--cyan);
}

.site-footer {
  padding-block: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--ink);
  color: var(--paper-light);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto;
  gap: 2.5rem;
  align-items: start;
}

.brand--footer {
  color: var(--paper-light);
}

.site-footer nav,
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: flex-end;
  font-size: 0.77rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer nav a,
.footer__legal a {
  text-decoration: none;
}

.site-footer nav a:hover,
.footer__legal a:hover {
  color: var(--cyan);
}

.footer__legal {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--sand);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}

.legal-page {
  min-height: 70svh;
  padding-block: clamp(4rem, 8vw, 8rem);
}

.legal-copy {
  width: min(100%, 50rem);
  margin-inline: auto;
}

.legal-copy h1 {
  margin: 0 0 3rem;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.legal-copy h2 {
  margin: 2.75rem 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
}

.legal-copy p {
  margin: 0 0 1rem;
}

.legal-notice {
  margin-bottom: 3rem;
  padding: 1rem 1.25rem;
  border-left: 0.35rem solid var(--orange);
  background: var(--paper-light);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .site-header {
    backdrop-filter: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 5rem;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 2rem var(--gutter);
    overflow-y: auto;
    background: var(--paper);
  }

  .js .site-nav {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav ul {
    display: block;
    width: min(100%, 46rem);
    margin-inline: auto;
  }

  .site-nav li {
    border-bottom: 1px solid var(--line);
  }

  .site-nav a {
    width: 100%;
    min-height: 5.2rem;
    justify-content: space-between;
    font-family: var(--serif);
    font-size: clamp(1.9rem, 7vw, 3.25rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .hero__stage {
    min-height: 46rem;
  }

  .hero__figure {
    width: 88%;
  }

  .manifest__grid,
.section-heading--split,
.contact__content,
.contact-cta__grid {
    grid-template-columns: 1fr;
  }

  .contact__content {
    gap: 5rem;
  }

  .chapter__statement {
    width: 42%;
  }

  .method__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4.75rem 3rem;
  }

  .method__steps li:nth-child(n) {
    grid-column: auto;
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --gutter: 1.25rem;
  }

  html {
    scroll-padding-top: 5rem;
  }

  .section {
    padding-block: 5.25rem;
  }

  .nav-shell {
    min-height: 4.75rem;
  }

  .site-nav {
    top: 4.75rem;
  }

  .hero {
    padding-top: 0.6rem;
    padding-bottom: 4.75rem;
  }

  .hero__stage {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding-top: 1.1rem;
  }

  .hero__kicker,
  .hero h1,
  .hero__figure,
  .hero__intro {
    position: relative;
    inset: auto;
  }

  .hero__kicker {
    order: 0;
    max-width: 26ch;
    margin-bottom: 1.35rem;
    font-size: 0.73rem;
    line-height: 1.45;
  }

  .hero h1 {
    order: 1;
    max-width: none;
    margin-bottom: -0.28em;
    font-size: clamp(4rem, 18.5vw, 6.25rem);
    line-height: 0.87;
  }

  .hero h1 span {
    margin-left: clamp(1rem, 8vw, 2.75rem);
  }

  .hero__figure {
    order: 2;
    width: calc(100% + var(--gutter));
    height: 46svh;
    min-height: 22.5rem;
    margin-left: calc(-1 * var(--gutter));
  }

  .hero__figure::before {
    top: -0.45rem;
    right: 0;
    width: 36%;
    height: 0.3rem;
  }

  .hero__figure img {
    object-position: 50% 58%;
  }

  .hero__figure figcaption {
    right: var(--gutter);
    bottom: 2rem;
    max-width: calc(100% - 2 * var(--gutter));
    padding: 0.55rem 0.7rem;
    background: rgba(244, 240, 232, 0.92);
    font-size: 0.74rem;
  }

  .hero__intro {
    order: 3;
    width: calc(100% - 0.85rem);
    margin-top: -1.85rem;
    padding: 1.35rem;
  }

  .hero__intro p {
    margin-bottom: 1rem;
    font-size: 1.35rem;
  }

  .competencies {
    padding-top: 5.25rem;
  }

  .manifest__grid {
    gap: 2.6rem;
  }

  .manifest h2,
.section-heading h2,
.method h2 {
    font-size: clamp(3rem, 13.5vw, 4.65rem);
  }

  .manifest__copy .lead {
    font-size: 1.38rem;
  }

  .manifest__aside {
    margin-top: 3.25rem;
    font-size: 0.74rem;
    line-height: 1.55;
  }

  .manifest__aside {
    text-align: left;
  }

  .chapter__copy h3 {
    margin-bottom: 1.35rem;
    font-size: clamp(2.75rem, 12.5vw, 3.75rem);
  }

  .chapter__eyebrow {
    margin-bottom: 1.8rem;
  }

  .chapter__statement {
    position: static;
    order: 3;
    width: auto;
    margin: 0;
    padding: 1.9rem var(--gutter) 2.5rem;
    border-top: 1px solid var(--ink);
  }

  .section-heading--split {
    gap: 2.25rem;
  }

  .method__intro,
  .ai-note {
    grid-template-columns: 1fr;
  }

  .method__steps {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    margin-top: 4rem;
  }

  .method__steps li {
    grid-template-columns: 3.4rem minmax(0, 1fr);
    gap: 0.9rem 1rem;
    padding-top: 1.15rem;
  }

  .method__steps p {
    grid-column: 2;
  }

  .method__number {
    font-size: 2.8rem;
  }

  .method__steps h3 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .ai-note p {
    padding-left: 1rem;
    font-size: 1.4rem;
  }

  .contact h2 {
    font-size: clamp(3.8rem, 16.8vw, 5.85rem);
  }

  .contact__intro {
    margin: 1.75rem 0 4rem;
    font-size: 1.35rem;
  }

  .contact__content {
    gap: 4.25rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form__heading,
  .contact-form__field--message,
  .contact-form__submit,
  .contact-form__status,
  .contact-form__success,
  .contact-form__privacy {
    grid-column: 1;
  }

  .contact-form__heading {
    display: block;
  }

  .contact-form__heading p {
    margin-top: 0.8rem;
    text-align: left;
  }

  .contact-form {
    gap: 1.35rem;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 4.4rem;
  }

  .contact-form textarea {
    min-height: 10rem;
  }

  .contact__links a {
    min-height: 6.75rem;
  }

  .contact__links strong {
    font-size: clamp(1.16rem, 6vw, 1.7rem);
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .site-footer nav,
  .footer__legal {
    justify-content: flex-start;
  }

  .footer__legal {
    grid-column: 1;
  }

  .site-footer nav,
  .footer__legal {
    gap: 0.9rem 1.35rem;
    font-size: 0.76rem;
  }
}

@media (max-width: 430px) {
  :root {
    --gutter: 1.15rem;
  }

  .section {
    padding-block: 4.85rem;
  }

  .section-label {
    margin-bottom: 1.85rem;
  }

  .section-heading {
    padding-bottom: 3.75rem;
  }

  .hero {
    padding-bottom: 4.35rem;
  }

  .hero__figure {
    height: 44svh;
    min-height: 21.5rem;
  }

  .contact {
    padding-block: 5rem;
  }

  .contact-form__heading h3 {
    font-size: 2.5rem;
  }
}

/* V6 – Presse, Aktuelles und klar getrennte Projektkapitel */

.site-nav ul {
  gap: clamp(1rem, 2vw, 2.15rem);
  white-space: nowrap;
}

.site-nav a {
  font-size: 0.78rem;
}
/* Startseite: kompakter redaktioneller Aktuelles-Teaser */

.news-feature h3,
.news-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.news-feature h3 a,
.news-row h3 a {
  text-decoration: none;
}

.news-feature h3 a:hover,
.news-row h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--orange);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem 0.85rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.news-meta > * + * {
  position: relative;
  padding-left: 0.85rem;
}

.news-meta > * + *::before {
  position: absolute;
  top: 0.43em;
  left: 0;
  width: 0.28rem;
  height: 0.28rem;
  background: var(--orange);
  content: "";
}

.news-read {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.news-read span {
  color: var(--orange);
  font-size: 1.15rem;
}

/* Projekte: jedes Projekt ist ein eigenständiges Kapitel */

.project-entry--indexed {
  padding-block: clamp(4.5rem, 8vw, 8rem);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.project-entry__heading--indexed {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 0.78fr);
  gap: clamp(4rem, 8vw, 8rem);
  align-items: end;
  padding-bottom: 0;
}

.project-entry__heading--indexed .section-label {
  grid-column: auto;
  margin-bottom: clamp(2rem, 3.2vw, 3.25rem);
}

.project-entry__heading--indexed .page-lead {
  margin-top: 2rem;
  padding-top: 0;
  border-top: 0;
}

.project-index {
  margin: 0;
  padding: 0;
  border-top: 0.35rem solid var(--cyan);
  list-style: none;
}

.project-index li {
  border-bottom: 1px solid var(--line);
}

.project-index a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  text-decoration: none;
}

.project-index span {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1;
}

.project-index strong {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.65vw, 1.6rem);
  font-weight: 400;
  line-height: 1.12;
}

.project-index i {
  color: var(--orange);
  font-style: normal;
}

.project-index a:hover strong {
  text-decoration: underline;
  text-decoration-color: var(--orange);
}

/* Aktuelles: redaktionelles Archiv statt Kartenraster */

.news-entry {
  padding-block: clamp(5rem, 9vw, 9rem);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.news-entry__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.62fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: end;
}

.news-entry h1,
.news-detail__header h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 8vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.news-entry h1 em {
  display: block;
  font-weight: 400;
}

.news-entry__lead {
  padding-top: 1.35rem;
  border-top: 0.35rem solid var(--orange);
}

.news-entry__lead p {
  margin: 0;
}

.news-entry__lead p:first-child {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.05vw, 2rem);
  line-height: 1.4;
}

.news-entry__lead p + p {
  margin-top: 1.15rem;
  color: var(--ink-soft);
}

.news-year {
  padding-block: clamp(5.5rem, 9vw, 9rem);
}

.news-year + .news-year {
  padding-top: 0;
}

.news-year__heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--ink);
}

.news-year__heading h2 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(3.8rem, 6vw, 6rem);
  font-style: italic;
  line-height: 0.8;
}

.news-year__heading p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.3;
}

.news-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(21rem, 0.72fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(5rem, 8vw, 8rem);
}

.news-feature figure,
.news-row figure {
  margin: 0;
}

.news-feature figure img {
  width: 100%;
  height: auto;
}

/* Portraits own their ratio below; landscape cropping must not match them. */
.news-feature figure:not(.news-feature__portrait) img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 40%;
}

.news-feature figcaption,
.news-row figcaption {
  padding-top: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.45;
}

.news-feature h3 {
  margin-top: 1.5rem;
  font-size: clamp(2.8rem, 4.7vw, 4.8rem);
  line-height: 0.98;
}

.news-feature__copy > p,
.news-row__copy > p {
  color: var(--ink-soft);
}

.news-feature__copy > p {
  margin: 1.5rem 0 0;
}

.news-list {
  border-top: 1px solid var(--ink);
}

.news-row {
  display: grid;
  grid-template-columns: minmax(9rem, 0.32fr) minmax(0, 0.95fr) minmax(14rem, 0.48fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-block: clamp(2.5rem, 4.5vw, 4.25rem);
  border-bottom: 1px solid var(--line);
}

.news-row > .news-meta {
  display: grid;
  gap: 0.45rem;
}

.news-row > .news-meta > * {
  padding-left: 0;
}

.news-row > .news-meta > *::before {
  display: none;
}

.news-row h3 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.04;
}

.news-row__copy > p {
  max-width: 43rem;
  margin: 1rem 0 0;
}

.news-row figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Aktuelles-Detail */

.news-detail__header {
  padding-block: clamp(4.5rem, 8vw, 8rem);
}

.detail-back {
  display: inline-block;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.news-detail__header .news-meta {
  margin-bottom: 1.75rem;
}

.news-detail__header h1 {
  max-width: 14ch;
  font-size: clamp(3.7rem, 7.2vw, 7.2rem);
}

.news-detail__header .page-lead {
  max-width: 48rem;
}

.news-detail__hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.news-detail__hero img {
  width: 100%;
  height: clamp(27rem, 53vw, 48rem);
  object-fit: cover;
  object-position: center 42%;
}

.news-detail__hero--landscape img {
  height: clamp(24rem, 48vw, 43rem);
}

.news-detail__hero figcaption {
  padding-top: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.news-detail__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.38fr);
  gap: clamp(4rem, 9vw, 9rem);
  padding-block: clamp(5rem, 8vw, 8rem);
  align-items: start;
}

.news-detail__main section + section {
  margin-top: clamp(4rem, 7vw, 7rem);
  padding-top: clamp(2rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
}

.news-detail__main h2 {
  max-width: 15ch;
  margin: 0 0 1.5rem;
  font-size: clamp(2.7rem, 4.7vw, 4.7rem);
  line-height: 0.98;
}

.news-detail__main p:not(.page-eyebrow) {
  max-width: 47rem;
}

.news-detail__role {
  padding-left: clamp(1.3rem, 2.5vw, 2.5rem);
  border-left: 0.38rem solid var(--cyan);
}

.news-detail__aside {
  position: static;
  padding-top: 1rem;
  border-top: 0.35rem solid var(--orange);
}

.news-detail__aside dl {
  margin: 0;
}

.news-detail__aside dl > div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.news-detail__aside dt {
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-detail__aside dd {
  margin: 0.3rem 0 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.35;
}

.news-detail__aside > p {
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.source-link {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.source-link span {
  color: var(--orange);
}

.detail-next {
  padding-block: clamp(4rem, 7vw, 7rem);
  background: var(--cyan);
}

.detail-next .wrap {
  display: grid;
  grid-template-columns: minmax(9rem, 0.3fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: baseline;
}

.detail-next .wrap > span {
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-next a {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.05;
  text-decoration: none;
}

.detail-next i {
  color: var(--orange);
  font-family: var(--sans);
  font-style: normal;
}

@media (max-width: 980px) {
  .site-nav ul {
    white-space: normal;
  }

.project-entry__heading--indexed,
.news-entry__grid,
.news-feature,
.news-detail__body {
    grid-template-columns: 1fr;
  }

  .project-index {
    width: min(100%, 48rem);
  }

  .news-row {
    grid-template-columns: 8rem minmax(0, 1fr) minmax(12rem, 0.42fr);
    gap: 2rem;
  }

  .news-detail__aside {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.55fr);
    gap: 0 3rem;
  }

  .news-detail__aside > p,
  .news-detail__aside > a {
    grid-column: 2;
  }
}

@media (max-width: 700px) {

  .project-entry--indexed {
    padding-block: 4.5rem;
  }

  .project-entry__heading--indexed {
    gap: 3.5rem;
  }

  .project-index a {
    grid-template-columns: 1.75rem minmax(0, 1fr) auto;
    gap: 0.75rem;
  }

  .news-entry {
    padding-block: 4.75rem;
  }

  .news-entry__grid {
    gap: 3rem;
  }

  .news-entry h1,
  .news-detail__header h1 {
    font-size: clamp(3.45rem, 15vw, 5rem);
  }

  .news-year {
    padding-block: 4.75rem;
  }

  .news-year__heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .news-year__heading h2 {
    font-size: 4rem;
  }

  .news-feature {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 4.5rem;
  }

  .news-feature figure {
    width: 92%;
  }

  .news-feature h3 {
    margin-top: 1rem;
    font-size: clamp(2.45rem, 11vw, 3.2rem);
  }

  .news-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-block: 2.75rem;
  }

  .news-row > .news-meta {
    display: flex;
    gap: 0.4rem 0.8rem;
  }

  .news-row > .news-meta > * + * {
    padding-left: 0.8rem;
  }

  .news-row > .news-meta > * + *::before {
    display: block;
  }

  .news-row h3 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .news-row figure {
    order: 3;
    width: 88%;
    margin-left: auto;
  }

  .news-row:nth-child(even) figure {
    margin-right: auto;
    margin-left: 0;
  }

  .news-detail__header {
    padding-block: 3.5rem 4.5rem;
  }

  .detail-back {
    margin-bottom: 3rem;
  }

  .news-detail__hero img,
  .news-detail__hero--landscape img {
    height: 24rem;
  }

  .news-detail__body {
    gap: 4rem;
    padding-block: 4.5rem;
  }

  .news-detail__main h2 {
    font-size: clamp(2.5rem, 11.5vw, 3.5rem);
  }

  .news-detail__role {
    padding-left: 1.1rem;
  }

  .news-detail__aside {
    display: block;
  }

  .detail-next .wrap {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .detail-next a {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }
}

@media (max-width: 430px) {

  .project-index strong {
    font-size: 1.2rem;
  }

  .news-entry__lead p:first-child,
  .news-year__heading p {
    font-size: 1.3rem;
  }

  .news-feature figure,
  .news-row figure {
    width: 100%;
  }

  .news-detail__hero img,
  .news-detail__hero--landscape img {
    height: 20.5rem;
  }
}

@media (max-width: 380px) {
  .brand__mark {
    width: 2.2rem;
    height: 2.2rem;
  }

  .brand__name {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .contact__links strong {
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}

@media print {
  .site-header,
  .site-footer,
  .skip-link {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}

/* V4 – gemeinsames Mehrseiten-System */

:root {
  --ink: #292621;
  --ink-soft: #57524b;
  --line: rgba(41, 38, 33, 0.27);
}

.page-lead,
.lead {
  color: inherit;
}

.section-route {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: clamp(1.75rem, 3vw, 3rem);
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.section-route span {
  color: var(--orange);
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.section-route:hover span,
.section-route:focus-visible span {
  transform: translateX(0.3rem);
}

.section-route--light {
  color: var(--paper-light);
}

.section-route--light span {
  color: var(--cyan);
}

.page-eyebrow {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.page h1,
.page h2,
.subpage-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.page h1 em,
.page h2 em {
  font-weight: 400;
}

.page-lead {
  max-width: 40rem;
  margin: 2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  line-height: 1.42;
}

/* Homepage: gemeinsame Achsen statt Einzelinseln */

.section-heading > .section-route {
  margin-top: 2.3rem;
}

.section-heading--split > div:last-child .section-route {
  margin-top: 1.75rem;
}

.method__steps {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.method__steps li:nth-child(n) {
  display: block;
  grid-column: auto;
  margin-top: 0;
  padding: 2.1rem clamp(1.25rem, 2.6vw, 2.6rem) 0;
  border-top: 0;
}

.method__steps li:first-child {
  padding-left: 0;
}

.method__steps li + li {
  border-left: 1px solid var(--line);
}

.method__steps h3 {
  margin-top: 1.15rem;
  font-size: clamp(2rem, 3.1vw, 3rem);
}

.method__steps p {
  max-width: 23rem;
  margin-top: 1rem;
}

/* Footer: Marke, Hauptnavigation und Recht klar getrennt */

.footer__inner--extended {
  grid-template-columns: minmax(11rem, 0.65fr) minmax(28rem, 1.35fr);
  gap: 2rem clamp(2rem, 5vw, 5rem);
}

.footer__inner--extended nav {
  justify-content: flex-end;
}

.footer__inner--extended .footer__legal {
  grid-column: 1 / -1;
  justify-content: flex-start;
}

.footer__legal > span:last-child {
  margin-left: auto;
}

.site-footer [aria-current="page"] {
  color: var(--cyan);
}

/* Kompetenzen */

.page-entry,
.profile-entry {
  padding-block: clamp(4rem, 7vw, 7rem);
}

.competence-entry {
  min-height: min(47rem, calc(100svh - 5.25rem));
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.competence-entry__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(23rem, 0.75fr);
  gap: clamp(4rem, 8vw, 9rem);
  align-items: end;
}

.competence-entry h1,
.project-entry h1,
.profile-entry h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(4.1rem, 7.8vw, 8rem);
  line-height: 0.9;
}

.competence-entry h1 em,
.project-entry h1 em,
.profile-entry h1 em {
  display: block;
  margin-top: 0.08em;
  color: var(--ink);
}

.competence-index {
  margin: 0;
  padding: 0;
  border-top: 0.35rem solid var(--cyan);
  list-style: none;
}

.competence-index li {
  border-bottom: 1px solid var(--line);
}

.competence-index a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  gap: 1.1rem;
  align-items: start;
  padding: 1.4rem 0;
  text-decoration: none;
}

.competence-index a > span {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
}

.competence-index strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.15;
}

.competence-index i {
  color: var(--orange);
  font-style: normal;
}

.competence-index a:hover strong {
  text-decoration: underline;
  text-decoration-color: var(--orange);
}

.competence-detail {
  padding-block: clamp(5.5rem, 9vw, 9rem);
}

.competence-detail--digital {
  background: var(--paper-light);
}

.competence-detail--culture {
  background: var(--ink);
  color: var(--paper-light);
}

.competence-detail--personal {
  background: var(--cyan);
}

.competence-detail__grid {
  display: grid;
  grid-template-columns: minmax(23rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
}

.competence-detail__grid--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(23rem, 0.9fr);
}

.competence-detail__copy h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.competence-detail__copy .lead {
  max-width: 37rem;
  margin: 2rem 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  line-height: 1.4;
}

.competence-detail__copy > p:not(.page-eyebrow):not(.lead) {
  max-width: 40rem;
}

.competence-detail__media {
  position: relative;
  margin: 0;
}

.competence-detail__media--framed {
  padding: clamp(1.5rem, 3vw, 3rem);
  background: var(--paper);
}

.competence-detail__media img {
  width: 100%;
  max-height: 42rem;
  object-fit: cover;
}

.competence-detail--culture .competence-detail__media img {
  aspect-ratio: 1 / 1;
}

.competence-detail__media figcaption {
  padding-top: 0.75rem;
  color: currentColor;
  font-size: 0.8rem;
  line-height: 1.45;
  opacity: 0.78;
}

.editorial-list,
.project-facts {
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  border-top: 1px solid currentColor;
}

.editorial-list > div,
.project-facts > div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.4fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid color-mix(in srgb, currentColor 28%, transparent);
}

.editorial-list dt,
.project-facts dt {
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-list dd,
.project-facts dd {
  margin: 0;
  line-height: 1.5;
}

.competence-detail--culture .page-eyebrow {
  color: var(--cyan);
}

.competence-detail--personal .page-eyebrow {
  color: var(--ink);
}

.shared-method {
  padding-block: clamp(5rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
}

.shared-method__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.62fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.shared-method h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 5.7rem);
  line-height: 0.96;
}

.shared-method__grid > p {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 0.34rem solid var(--orange);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  line-height: 1.42;
}

/* Projekte */

.project-entry {
  padding-top: clamp(3.5rem, 6vw, 6rem);
}

.project-entry__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.52fr);
  gap: 2rem clamp(3rem, 8vw, 8rem);
  align-items: end;
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.project-entry__heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.project-entry__heading .page-lead {
  margin: 0;
  padding-top: 1.2rem;
  border-top: 0.34rem solid var(--orange);
}

.project-entry__images {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  height: clamp(18rem, 32vw, 32rem);
  background: var(--ink);
}

.project-entry__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-entry__images img:first-child {
  filter: grayscale(1) contrast(1.04);
}

.project-archive {
  padding-block: clamp(5rem, 8vw, 8rem);
}

.archive-project {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.archive-project + .archive-project {
  margin-top: clamp(6rem, 11vw, 11rem);
}

.archive-project figure {
  grid-column: 1 / span 7;
  margin: 0;
}

.archive-project figure img {
  width: 100%;
  max-height: 49rem;
  object-fit: cover;
}

.archive-project figure figcaption {
  padding-top: 0.75rem;
  border-top: 1px solid var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.archive-project__copy {
  grid-column: 9 / -1;
}

.archive-project__copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  line-height: 0.98;
}

.archive-project__copy .lead {
  margin: 1.65rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.7vw, 1.65rem);
  line-height: 1.4;
}

.archive-project__copy > p:not(.page-eyebrow):not(.lead) {
  color: var(--ink-soft);
}

.archive-project--wide figure img {
  aspect-ratio: 4 / 3;
  object-position: center 57%;
}

.archive-project--offset figure {
  grid-column: 5 / -1;
  grid-row: 1;
}

.archive-project--offset .archive-project__copy {
  grid-column: 1 / span 3;
  grid-row: 1;
}

.archive-project--offset figure img {
  aspect-ratio: 5 / 4;
}

.archive-project--landscape figure {
  grid-column: 1 / -1;
}

.archive-project--landscape .archive-project__copy {
  grid-column: 3 / span 8;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.7fr);
  gap: 1rem clamp(3rem, 7vw, 7rem);
}

.archive-project--landscape .page-eyebrow,
.archive-project--landscape h2 {
  grid-column: 1;
}

.archive-project--landscape .lead,
.archive-project--landscape .archive-project__copy > p:not(.page-eyebrow):not(.lead),
.archive-project--landscape .project-facts {
  grid-column: 2;
}

.archive-project--landscape .lead {
  grid-row: 1 / span 2;
  margin-top: 0;
}

.archive-project--compact .archive-project__copy {
  padding-top: 2rem;
}

.archive-project--compact figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-principle {
  padding-block: clamp(5rem, 8vw, 8rem);
  background: var(--cyan);
}

.project-principle__grid {
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.65fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.project-principle h2 {
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 5.4rem);
  line-height: 0.96;
}

.project-principle__grid > p:last-child {
  margin: 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.7vw, 1.7rem);
}

/* Profil */

.profile-entry {
  background: var(--paper);
}

.profile-entry__grid {
  display: grid;
  grid-template-columns: minmax(22rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
}

.profile-entry__portrait {
  --portrait-inset: 2rem;
  padding: 0 0 var(--portrait-inset) var(--portrait-inset);
}

.profile-entry__portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 42rem;
  object-fit: cover;
  object-position: center 17%;
}

.profile-entry__copy h1 {
  max-width: 10ch;
  font-size: clamp(3.8rem, 6.6vw, 6.8rem);
}

/* Multi-line italic descenders need room; Roman display leading stays 0.9. */
.profile-entry h1 em {
  line-height: 1;
}

.profile-statement {
  padding-block: clamp(5rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
  background: var(--paper-light);
}

.profile-statement__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 0.75fr);
  gap: clamp(4rem, 8vw, 8rem);
}

.profile-statement h2,
.profile-fields h2,
.profile-work h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 5.3vw, 5.4rem);
  line-height: 0.98;
}

.profile-statement .lead {
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.42;
}

.profile-statement__principle {
  margin: 2.5rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--ink);
  color: var(--ink-soft);
  line-height: 1.62;
}

.profile-fields {
  padding-block: clamp(5rem, 8vw, 8rem);
}

.profile-fields__heading {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.profile-fields__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(4rem, 6vw, 6rem);
  border-top: 1px solid var(--ink);
}

.profile-fields__list article {
  padding: 2rem clamp(1.25rem, 2.5vw, 2.5rem) 0;
}

.profile-fields__list article:first-child {
  padding-left: 0;
}

.profile-fields__list article + article {
  border-left: 1px solid var(--line);
}

.profile-fields__list span {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
}

.profile-fields__list h3 {
  margin: 1rem 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.05;
}

.profile-fields__list p {
  color: var(--ink-soft);
}

.profile-work {
  padding-block: clamp(5rem, 8vw, 8rem);
  background: var(--cyan);
}

.profile-work__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(23rem, 0.75fr);
  gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
}

.profile-work figure {
  margin: 0;
}

.profile-work figure img {
  width: 100%;
  max-height: 38rem;
  object-fit: cover;
}

.profile-work figcaption {
  padding-top: 0.75rem;
  font-size: 0.78rem;
}

.profile-work .lead {
  margin: 2rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.4;
}

/* Kontaktseite */

.contact-page {
  background: var(--ink);
  color: var(--paper-light);
}

.contact-page__intro {
  padding-block: clamp(3.2rem, 5.5vw, 5.5rem);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(19rem, 0.72fr) minmax(30rem, 1.28fr);
  gap: clamp(3.5rem, 7vw, 7rem);
  align-items: start;
}

.contact-page h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(4rem, 7.2vw, 7.2rem);
  line-height: 0.9;
}

.contact-page h1 i {
  color: var(--orange);
  font-style: normal;
}

.contact-page .page-lead {
  color: var(--sand);
}

.contact-page__details {
  display: block;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-style: normal;
}

.contact-page__details > a {
  display: block;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.contact-page__details span,
.contact-page__details strong {
  display: block;
}

.contact-page__details span {
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-page__details strong {
  margin-top: 0.3rem;
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  font-weight: 400;
}

.contact-page__details > p {
  color: var(--sand);
  font-size: 0.84rem;
  line-height: 1.65;
}

.contact-form--page {
  padding-top: 1.25rem;
}

/* V17: P06-Hilfstext und kompakte Reihenfolge des lokalen Prototyps. */
.contact-form--page label {
  font-size: 0.875rem;
}

.contact-form--page .contact-form__hint {
  margin: 0 0 0.6rem;
  color: var(--sand);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.contact-form--page .contact-form__privacy,
.contact-form--page .contact-form__submit {
  margin-top: 0;
}

.contact-form--page .contact-form__status:empty {
  display: none;
}

.contact-form--page .contact-form__submit:hover i,
.contact-form--page .contact-form__submit:focus-visible i {
  color: inherit;
}

.contact-form--page .contact-form__heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.contact-form__prototype {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.9rem 1rem;
  border-left: 0.3rem solid var(--orange);
  background: rgba(255, 255, 255, 0.04);
  color: var(--sand);
  font-size: 0.79rem;
  line-height: 1.55;
}

/* Gemeinsamer Seitenabschluss */

.subpage-cta {
  padding-block: clamp(4.5rem, 7vw, 7rem);
  background: var(--ink);
  color: var(--paper-light);
}

.subpage-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.58fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.subpage-cta h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.96;
}

.subpage-cta .page-eyebrow {
  color: var(--cyan);
}

.subpage-cta .cta-link {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}

.legal-status {
  margin-top: 3rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .method__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method__steps li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .method__steps li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .competence-entry {
    min-height: 0;
  }

  .competence-entry__grid,
  .competence-detail__grid,
  .competence-detail__grid--reverse,
  .shared-method__grid,
  .project-entry__heading,
  .profile-entry__grid,
  .profile-statement__grid,
  .profile-work__grid,
  .contact-page__grid,
  .subpage-cta__grid {
    grid-template-columns: 1fr;
  }

  .competence-index {
    width: min(100%, 42rem);
  }

  .competence-detail__media {
    max-width: 52rem;
  }

  .competence-detail__grid--reverse .competence-detail__media {
    order: 2;
  }

  .project-entry__heading .section-label {
    grid-column: 1;
  }

  .project-entry__heading .page-lead {
    max-width: 32rem;
  }

  .archive-project,
  .archive-project--landscape .archive-project__copy {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(21rem, 0.75fr);
  }

  .archive-project figure,
  .archive-project--offset figure,
  .archive-project--landscape figure {
    grid-column: 1;
    grid-row: 1;
  }

  .archive-project__copy,
  .archive-project--offset .archive-project__copy,
  .archive-project--landscape .archive-project__copy {
    grid-column: 2;
    grid-row: 1;
  }

  .archive-project--landscape .archive-project__copy {
    display: block;
  }

  .archive-project--landscape .lead,
  .archive-project--landscape .archive-project__copy > p:not(.page-eyebrow):not(.lead),
  .archive-project--landscape .project-facts {
    grid-column: auto;
  }

  .project-principle__grid {
    grid-template-columns: 0.35fr 1fr;
  }

  .project-principle__grid > p:last-child {
    grid-column: 2;
  }

  .profile-entry__portrait {
    max-width: 35rem;
  }

  .profile-fields__heading {
    grid-template-columns: 0.35fr 1fr;
  }

  .profile-fields__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-fields__list article:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .profile-fields__list article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .contact-page__grid {
    gap: 4rem;
  }
}

@media (max-width: 840px) and (min-width: 701px) {

  .chapter__statement {
    position: static;
    order: 3;
    width: auto;
    padding: 2rem var(--gutter) 3rem;
    border-top: 1px solid var(--ink);
  }
}

@media (max-width: 700px) {
  body {
    font-size: 1rem;
  }

  .site-nav a[aria-current="page"] {
    color: var(--ink);
  }

  .method__steps {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .method__steps li:nth-child(n) {
    padding: 1.5rem 0 1.5rem 1.25rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .method__steps h3 {
    margin-top: 0.5rem;
  }

  .method__steps p {
    margin-top: 0.65rem;
  }

  .footer__inner--extended {
    grid-template-columns: 1fr;
  }

  .footer__inner--extended nav,
  .footer__inner--extended .footer__legal {
    grid-column: 1;
  }

  .footer__inner--extended nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .footer__inner--extended nav a {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .footer__inner--extended nav a:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .competence-entry h1,
  .project-entry h1,
  .profile-entry h1 {
    font-size: clamp(3.5rem, 15.5vw, 5.2rem);
  }

  .competence-entry__grid {
    gap: 3.5rem;
  }

  .competence-index a {
    grid-template-columns: 1.8rem minmax(0, 1fr) auto;
    gap: 0.75rem;
  }

  .competence-detail__grid,
  .shared-method__grid,
  .profile-statement__grid,
  .profile-work__grid,
  .subpage-cta__grid {
    gap: 3rem;
  }

  .competence-detail__copy h2,
  .shared-method h2,
  .profile-statement h2,
  .profile-fields h2,
  .profile-work h2,
  .subpage-cta h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .editorial-list > div,
  .project-facts > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .project-entry__images {
    grid-template-columns: 1fr;
    height: 23rem;
  }

  .project-entry__images img:first-child {
    display: none;
  }

  .archive-project,
  .archive-project--landscape .archive-project__copy {
    display: block;
  }

  .archive-project figure img {
    height: auto;
    max-height: none;
  }

  .archive-project--landscape figure img {
    aspect-ratio: 4 / 3;
  }

  .archive-project figure,
  .archive-project__copy,
  .archive-project--offset figure,
  .archive-project--offset .archive-project__copy,
  .archive-project--landscape figure,
  .archive-project--landscape .archive-project__copy {
    display: block;
  }

  .archive-project__copy,
  .archive-project--landscape .archive-project__copy {
    padding-top: 1.35rem;
  }

  .archive-project + .archive-project {
    margin-top: 4.25rem;
  }

  .page--projects .archive-project__copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
  }

  .page--projects .archive-project__copy .lead {
    margin-top: 1.25rem;
    font-size: 1.2rem;
  }

  .page--projects .project-facts {
    margin-top: 1.75rem;
  }

  .page--projects .project-facts > div {
    grid-template-columns: minmax(5.5rem, 0.38fr) minmax(0, 1fr);
    gap: 1rem;
    padding-block: 0.75rem;
  }

  .archive-project figure figcaption {
    padding-top: 0.55rem;
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .project-principle__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project-principle__grid > p:last-child {
    grid-column: 1;
  }

  .profile-entry {
    padding-top: 2.5rem;
    padding-bottom: 4.5rem;
  }

  .profile-entry__grid {
    gap: 0;
  }

  .profile-entry__portrait {
    --portrait-inset: 1.25rem;
    width: min(88%, 19.5rem);
    height: min(56svh, 28rem);
    margin-left: auto;
    padding: 0 0 var(--portrait-inset) var(--portrait-inset);
  }

  .profile-entry__portrait img {
    height: 100%;
    max-height: none;
    object-position: 50% 17%;
  }

  .profile-entry__copy {
    position: relative;
    z-index: 3;
    margin-top: -1.4rem;
    padding-top: 1.35rem;
    background: var(--paper);
  }

  .profile-entry__copy .section-label {
    margin-bottom: 1rem;
  }

  .profile-entry__copy .page-eyebrow {
    margin-bottom: 0.65rem;
  }

  .profile-fields__heading,
  .profile-fields__list {
    grid-template-columns: 1fr;
  }

  .profile-fields__heading {
    gap: 1.5rem;
  }

  .profile-fields__list article:nth-child(n) {
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .profile-fields__list article:last-child {
    border-bottom: 1px solid var(--line);
  }

  .contact-page__intro {
    padding-top: 3rem;
  }

  .contact-page h1 {
    font-size: clamp(3.6rem, 16vw, 5.25rem);
  }

  .contact-form__prototype {
    grid-column: 1;
  }
}

@media (max-width: 430px) {
  .hero__kicker,
  .hero__figure figcaption,
  .manifest__aside {
    font-size: 0.8rem;
  }

  .competence-index strong {
    font-size: 1.35rem;
  }

  .page-lead,
  .competence-detail__copy .lead,
  .shared-method__grid > p,
  .profile-statement .lead,
  .profile-work .lead,
  .project-entry__heading .page-lead {
    font-size: 1.28rem;
  }
}

/* V7 – Visual coherence and collision pass */

/* Hero: Hauptinhalte liegen im Grid und nicht mehr absolut übereinander. */
.hero {
  padding: clamp(1.5rem, 2.8vw, 2.75rem) var(--gutter) clamp(5rem, 7vw, 7rem);
}

.hero__stage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.75rem, 3vw, 3rem) clamp(0.9rem, 1.8vw, 1.8rem);
  align-items: start;
  min-height: 0;
  padding-top: clamp(1rem, 2.2vw, 2.25rem);
}

.hero__kicker {
  position: static;
  grid-row: 1;
  grid-column: 1 / -1;
  margin: 0;
}

.hero h1 {
  position: static;
  grid-row: 2;
  grid-column: 1 / span 6;
  width: auto;
  max-width: none;
  font-size: clamp(5.15rem, 8.35vw, 8.4rem);
  line-height: 0.87;
}

.hero h1 span {
  margin-left: clamp(0.75rem, 3.6vw, 3.5rem);
}

.hero__figure {
  position: relative;
  grid-row: 2 / span 2;
  grid-column: 7 / -1;
  align-self: stretch;
  width: auto;
  height: auto;
  margin: 0;
}

.hero__figure::before {
  top: -0.75rem;
  right: 0;
  width: 42%;
}

.hero__figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero__figure figcaption {
  position: static;
  max-width: none;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
}

.hero__intro {
  position: static;
  grid-row: 3;
  grid-column: 1 / span 5;
  align-self: end;
  width: auto;
  margin-top: clamp(0.5rem, 1.5vw, 1.5rem);
}

/* Projekte: drei Layoutfamilien, jeweils mit Titel im redaktionellen Copyblock. */
.project-archive {
  padding-block: clamp(5rem, 8vw, 8rem) clamp(7rem, 11vw, 11rem);
}

.project-chapter {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 5rem) clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: start;
  padding-top: clamp(2rem, 3.3vw, 3.25rem);
  border-top: 1px solid var(--ink);
  scroll-margin-top: 7rem;
}

.project-chapter + .project-chapter {
  margin-top: clamp(7.5rem, 11vw, 11rem);
}

.project-chapter__copy {
  align-self: start;
}

.project-chapter__copy .page-eyebrow {
  margin-bottom: clamp(1.25rem, 2vw, 2rem);
}

.project-chapter__copy h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.75rem, 4.45vw, 4.55rem);
  line-height: 0.96;
}

.project-chapter__copy .lead {
  margin: clamp(1.5rem, 2.5vw, 2.5rem) 0 1.15rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.4;
}

.project-chapter__copy > p:not(.page-eyebrow):not(.lead) {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.project-chapter figure {
  margin: 0;
}

.project-chapter figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-chapter figure figcaption {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--ink);
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.project-chapter--left figure {
  grid-row: 1;
  grid-column: 1 / span 6;
}

.project-chapter--left .project-chapter__copy {
  grid-row: 1;
  grid-column: 8 / -1;
}

.project-chapter--right .project-chapter__copy {
  grid-row: 1;
  grid-column: 1 / span 5;
}

.project-chapter--right figure {
  grid-row: 1;
  grid-column: 7 / -1;
}

.project-chapter--right figure img {
  aspect-ratio: 5 / 4;
}

.project-chapter--right:last-child figure {
  justify-self: end;
  width: min(100%, 32rem);
}

.project-chapter--right:last-child figure img {
  aspect-ratio: 3 / 4;
  max-height: 46rem;
}

.project-chapter--landscape .project-chapter__copy {
  grid-row: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: start;
}

.project-chapter--landscape .page-eyebrow,
.project-chapter--landscape h2 {
  grid-column: 1 / span 6;
}

.project-chapter--landscape .lead,
.project-chapter--landscape .project-chapter__copy > p:not(.page-eyebrow):not(.lead),
.project-chapter--landscape .project-facts,
.project-chapter--landscape .project-context-link {
  grid-column: 8 / -1;
}

.project-chapter--landscape .lead {
  grid-row: 1;
  margin-top: 0;
}

.project-chapter--landscape h2 {
  grid-row: 2 / span 3;
}

.project-chapter--landscape figure {
  grid-row: 2;
  grid-column: 1 / -1;
}

.project-chapter--landscape figure img {
  aspect-ratio: 16 / 8.2;
}

.project-chapter .project-facts {
  margin-top: clamp(1.75rem, 3vw, 2.75rem);
}

.project-chapter .project-context-link {
  display: inline-flex;
  gap: 0.55rem;
  width: 100%;
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
}

.project-context-link span {
  color: var(--orange);
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .hero__stage {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero__kicker,
  .hero h1,
  .hero__figure,
  .hero__intro {
    grid-column: 1;
    grid-row: auto;
  }

  .hero h1 {
    max-width: 8.8ch;
    font-size: clamp(5rem, 10.8vw, 7rem);
  }

  .hero__figure {
    width: 100%;
  }

  .hero__figure img {
    aspect-ratio: 16 / 10;
    object-position: 50% 48%;
  }

  .hero__intro {
    width: min(100%, 32rem);
    margin-top: 0;
  }

  .project-chapter {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.9fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .project-chapter--left figure,
  .project-chapter--right .project-chapter__copy {
    grid-column: 1;
  }

  .project-chapter--left .project-chapter__copy,
  .project-chapter--right figure {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .project-chapter,
  .project-chapter--landscape .project-chapter__copy {
    display: block;
  }

  .project-chapter__copy {
    max-width: 43rem;
    margin-bottom: clamp(2rem, 5vw, 3rem);
  }

  .project-chapter--landscape .project-chapter__copy {
    max-width: 43rem;
  }

  .project-chapter--right:last-child figure {
    justify-self: auto;
    width: min(100%, 30rem);
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 0.75rem;
    padding-bottom: 4.75rem;
  }

  .hero__stage {
    display: grid;
    gap: 1.4rem;
    padding-top: 1rem;
  }

  .hero__kicker {
    max-width: 30ch;
    margin-bottom: 0.15rem;
  }

  .hero h1 {
    max-width: none;
    margin: 0;
    font-size: clamp(3.85rem, 18vw, 5.8rem);
    line-height: 0.87;
  }

  .hero h1 span {
    margin-left: clamp(0.5rem, 5vw, 1.5rem);
  }

  .hero__figure {
    width: calc(100% + var(--gutter));
    height: auto;
    min-height: 0;
    margin-left: calc(-1 * var(--gutter));
  }

  .hero__figure img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-position: 50% 50%;
  }

  .hero__figure figcaption {
    right: auto;
    bottom: auto;
    max-width: none;
    padding: 0.65rem var(--gutter) 0.15rem;
    background: transparent;
  }

  .hero__intro {
    width: calc(100% - 1rem);
    margin: 0 0 0 auto;
  }

  .project-chapter + .project-chapter {
    margin-top: 5.75rem;
  }

  .project-chapter__copy h2 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 11.5vw, 3.35rem);
  }

  .project-chapter__copy .lead {
    margin-top: 1.35rem;
  }

  .project-chapter--right:last-child figure {
    width: 100%;
  }

  .project-chapter--landscape figure img,
  .project-chapter--right:last-child figure img {
    aspect-ratio: 4 / 3;
    max-height: none;
  }

  .project-chapter .project-facts > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 430px) {
  .project-chapter__copy .lead {
    font-size: 1.25rem;
  }

  .project-context-link {
    font-size: 0.7rem;
  }
}

/* V8 – Editorial system, copy rhythm and visual consistency */

:root {
  --rule-structure: var(--line);
  --rule-accent: var(--orange);
  --rule-context: var(--cyan);
}

/* Wiederkehrende Homepage-Grammatik: Nummer/Label, Titel, Kontext/Route. */

.section-label span:first-child {
  flex: 0 0 2.35rem;
}

.section-heading--split {
  grid-template-columns: minmax(0, 1.08fr) minmax(19rem, 0.52fr);
  align-items: start;
}

.section-heading--split > div:first-child,
.section-heading--split > div:last-child {
  min-width: 0;
}

.section-intro,
.manifest__copy {
  border-top-color: var(--rule-context);
}

.manifest > .section-heading {
  padding-bottom: 0;
}

.manifest .manifest__copy {
  align-self: start;
}

.manifest__aside {
  border-top-color: var(--rule-structure);
}

.method > .section-heading {
  padding-bottom: 0;
}

.method__steps {
  margin-top: clamp(4rem, 6vw, 6rem);
}

.chapter--personal .chapter__copy h3 {
  max-width: 9ch;
  font-size: clamp(2.7rem, 4.25vw, 4.15rem);
}

.chapter__statement {
  position: static;
  width: auto;
  max-width: 17rem;
  margin: clamp(2.25rem, 4vw, 3.5rem) 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--ink);
}

/* Hero-Familie A: Kompetenzen, Projekte und Aktuelles teilen dieselbe Achse. */

.editorial-entry {
  display: block;
  min-height: 0;
  padding-block: clamp(5rem, 8vw, 8rem);
  border-bottom: 1px solid var(--rule-structure);
  background: var(--paper-light);
}

.editorial-entry__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(23rem, 0.78fr);
  gap: clamp(4rem, 8vw, 8rem);
  align-items: end;
  padding-bottom: 0;
}

.editorial-entry .section-label {
  grid-column: auto;
  margin-bottom: clamp(2rem, 3.2vw, 3.25rem);
}

.editorial-entry h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(4.1rem, 7.8vw, 8rem);
  line-height: 0.9;
}

.editorial-entry .page-lead {
  max-width: 40rem;
  margin-top: 2rem;
  padding-top: 0;
  border-top: 0;
}

.editorial-entry__side {
  border-top-color: var(--rule-context);
}

.news-entry__lead {
  border-top-color: var(--rule-context);
}

/* Ein Übergang, eine Linie; Pfeile sitzen auf der Textachse. */

.section-route,
.project-context-link,
.news-read,
.source-link {
  align-items: center;
}

.section-route span,
.project-context-link span,
.news-read span,
.source-link span,
.text-link span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  line-height: 1;
}

.project-chapter .project-context-link {
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 0;
  border-top: 0;
}

.cta-link i,
.detail-next i,
.contact-form__submit i,
.nav-contact span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.detail-next a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  min-width: 0;
}

.detail-next i {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .section-heading--split,
  .editorial-entry__grid {
    grid-template-columns: 1fr;
  }

  .editorial-entry__side {
    width: min(100%, 48rem);
  }
}

@media (max-width: 700px) {
  .manifest > .section-heading,
  .method > .section-heading {
    padding-bottom: 0;
  }

  .section-heading--split {
    gap: 2.5rem;
  }

  .chapter__statement {
    max-width: none;
  }

  .news-detail__header h1 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .editorial-entry {
    padding-block: 4.75rem;
  }

  .editorial-entry__grid {
    gap: 3.5rem;
  }

  .editorial-entry h1 {
    font-size: clamp(3.45rem, 15vw, 5.2rem);
  }
}

/* V9 – Brand consistency, layout polish and image integrity */

.hero-punctuation {
  color: var(--orange);
  font-style: inherit;
}

.chapter--digital .chapter__eyebrow::before,
.chapter--personal .chapter__eyebrow::before {
  background: var(--orange);
}

.project-chapter--landscape figure img {
  aspect-ratio: 16 / 9;
  object-position: center bottom;
}

.news-feature__portrait {
  width: min(100%, 40rem);
}

.news-feature__portrait img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
}

.news-detail__hero--portrait {
  width: min(100%, 58rem);
}

.news-detail__hero--portrait img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 700px) {

  .project-chapter--landscape figure img {
    height: auto;
    aspect-ratio: auto;
    object-position: center;
  }

  .news-feature__portrait {
    width: min(100%, 28rem);
  }

  .profile-entry__grid {
    gap: 1.1rem;
  }

  .profile-entry__copy {
    margin-top: 0;
  }

  /* Profilportrait: horizontale Caption ab diesem Breakpoint. */
  .profile-entry__portrait figcaption {
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 4;
    max-width: calc(100% - 0.5rem);
    height: auto;
    padding: 0.55rem 0.7rem;
    font-size: 0.75rem;
    line-height: 1.35;
    white-space: normal;
    transform: none;
  }

}

/* V10 – Redaktioneller Startseiten-Polish; alle Ergänzungen bleiben lokal. */
.home-v10 .hero__intro p {
  max-width: none;
  font-size: clamp(1.125rem, 1.4vw, 1.375rem);
  line-height: 1.45;
}

.home-v10 .chapter__copy > p + p:not(.chapter__note):not(.chapter__statement) {
  margin-top: 1.25rem;
}

.home-v10 .chapter__copy > .chapter__statement {
  max-width: 24rem;
  margin-top: 2rem;
  padding: 0;
  border: 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.3;
}

.home-v10 .chapter--personal .chapter__copy h3 {
  max-width: 14ch;
}

/* Gemeinsame Kontaktfamilie; Größe darf dem jeweiligen Kontext folgen. */
.home-v10 .home-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  max-width: 100%;
  min-height: 3rem;
  margin-top: 1.6rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.45;
  text-decoration: none;
}

.home-v10 .home-contact-link span {
  min-width: 0;
}

.home-v10 .home-contact-link i {
  flex: 0 0 auto;
  color: currentColor;
  font-size: 1.35em;
  font-style: normal;
  line-height: 1;
  transition: transform 180ms ease;
}

.home-v10 .home-contact-link:hover i,
.home-v10 .home-contact-link:focus-visible i {
  transform: translate(0.15rem, -0.15rem);
}

.home-v10 .home-contact-link:focus-visible {
  outline: 0.2rem solid currentColor;
  outline-offset: 0.3rem;
}

.home-v10 .hero__intro .home-contact-link {
  margin-top: 0.25rem;
}

.home-v10 .contact-cta__action .home-contact-link {
  display: flex;
  margin-top: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
  .home-v10 .home-contact-link i {
    transition: none;
  }
}

.home-v10 .chapter--personal .chapter__copy > .chapter__statement {
  margin-top: 1.5rem;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
}

/* Homepage: Initialen am Copyblock. */
.home-v12 .chapter__heading {
  position: relative;
  isolation: isolate;
}

.home-v12 .chapter__number {
  position: absolute;
  z-index: -1;
  top: -0.30em;
  left: -0.08em;
  color: var(--orange);
  font-family: var(--serif);
  font-size: clamp(8rem, 13vw, 12rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
  opacity: 0.13;
  pointer-events: none;
  user-select: none;
}

/* Aktuelles-Router mit bestehender Headergeometrie und Abschlusslinie. */
.home-v12 .home-news {
  padding-bottom: 0;
  background: var(--paper-light);
}

/* Ein Headerband: sieben Teile Titel, fünf Teile Kontext; eine gemeinsame Kante. */
.home-v12 .home-news__header {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  column-gap: clamp(2rem, 4vw, 4rem);
  row-gap: 2rem;
  align-items: start;
  padding-bottom: 0;
}

.home-v12 .home-news__header > div { min-width: 0; }
.home-v12 .home-news__header .section-intro {
  padding-top: 0;
  border-top: 0;
}

.home-v12 .home-news__header::after {
  grid-column: 1 / -1;
  border-top: 1px solid var(--rule-structure);
  content: "";
}

/* Mobile: Der Router-Header bleibt eine lineare Einheit. */
@media (max-width: 700px) {
  .home-v12 .home-news__header {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2rem;
  }

}
