:root {
  --forest-950: #022b1c;
  --forest-900: #063a26;
  --forest-800: #0b4a31;
  --forest-700: #17623f;
  --lime: #9cdf3f;
  --lime-soft: #ddf5bd;
  --ink: #0a342c;
  --muted: #5c716c;
  --line: #d7e2d7;
  --page: #f4f7f2;
  --paper: #ffffff;
  --cream: #f7f1e4;
  --serif: Newsreader, Georgia, serif;
  --sans: Inter, Arial, sans-serif;
  font-family: var(--sans);
  color: var(--ink);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
figure,
dl,
dd {
  margin: 0;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 9px;
  background: #fff;
  color: var(--forest-950);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0, 26, 17, 0.24);
  transform: translateY(-170%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: none;
}

:where(a, button, input, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.legal-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--forest-950);
  color: #fff;
}

.legal-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  color: #fff;
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1;
}

.wordmark span {
  color: var(--lime);
}

.legal-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #dce9df;
  font-size: 13px;
  font-weight: 700;
}

.legal-header nav a {
  transition: color 160ms ease;
}

.legal-header nav a:hover {
  color: #fff;
}

.legal-header .nav-home {
  padding: 11px 15px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--forest-950);
  font-weight: 900;
}

.legal-header .nav-home:hover {
  color: var(--forest-950);
  background: #b0ed58;
}

.impressum-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 116px;
  background:
    radial-gradient(circle at 82% 30%, rgba(156, 223, 63, 0.13), transparent 28%),
    linear-gradient(120deg, var(--forest-950), var(--forest-800));
  color: #fff;
}

.impressum-hero::before,
.impressum-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(179, 232, 119, 0.14);
  border-radius: 50%;
}

.impressum-hero::before {
  width: 380px;
  height: 380px;
  right: -110px;
  top: -170px;
}

.impressum-hero::after {
  width: 220px;
  height: 220px;
  right: 76px;
  bottom: -146px;
}

.impressum-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
}

.eyebrow {
  color: #507b28;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.impressum-hero .eyebrow,
.operator-card .eyebrow,
.legal-footer .eyebrow {
  color: var(--lime);
}

.impressum-hero h1 {
  max-width: 760px;
  margin: 10px 0 20px;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero-lead {
  max-width: 690px;
  color: #d9e7dc;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.impressum-hero__note {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(216, 244, 187, 0.2);
  border-radius: 18px;
  background: rgba(3, 34, 23, 0.45);
  box-shadow: 0 24px 60px rgba(0, 18, 11, 0.2);
  backdrop-filter: blur(10px);
}

.note-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--lime);
  color: var(--forest-950);
  font-size: 19px;
  font-weight: 900;
}

.impressum-hero__note strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
}

.impressum-hero__note p {
  color: #c8d9cc;
  font-size: 13px;
  line-height: 1.55;
}

.team-section {
  position: relative;
  z-index: 2;
  margin-top: -62px;
  padding-bottom: 78px;
  background: linear-gradient(180deg, transparent 0, rgba(238, 244, 236, 0.68) 100%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 28px;
  padding: 28px 30px;
  border: 1px solid rgba(228, 239, 226, 0.16);
  border-radius: 22px;
  background: var(--forest-900);
  color: #fff;
  box-shadow: 0 18px 50px rgba(2, 43, 28, 0.18);
}

.section-heading .eyebrow {
  color: var(--lime);
}

.section-heading h2 {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 45px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-heading > p {
  color: #cfe0d2;
  font-size: 14px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.person {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 24px 24px 25px;
  border: 1px solid var(--line);
  border-top: 2px solid rgba(156, 223, 63, 0.72);
  border-radius: 23px;
  background: linear-gradient(180deg, #f7fbf4 0, #fff 42%);
  box-shadow: 0 14px 38px rgba(3, 42, 27, 0.08);
  text-align: center;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.person:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 58px rgba(3, 42, 27, 0.14);
}

.person__portrait {
  position: relative;
  overflow: hidden;
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  aspect-ratio: 1;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #dfe8df;
  box-shadow: 0 0 0 1px #d6edbc, 0 9px 22px rgba(3, 42, 27, 0.14);
}

.person__portrait::after {
  display: none;
}

.person__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 50%;
  transition: transform 500ms ease;
}

.person:hover .person__portrait img {
  transform: scale(1.025);
}

.person__content {
  padding: 0;
}

.person__discipline {
  margin-bottom: 5px;
  color: #416c20;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.person h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.person__role {
  min-height: 4.2em;
  color: var(--forest-700);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.43;
}

.person__bio {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.62;
  text-align: left;
}

.collaborators {
  margin-top: 24px;
  padding: 30px;
  border: 1px solid rgba(215, 226, 215, 0.9);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(156, 223, 63, 0.13), transparent 30%),
    #fff;
  box-shadow: 0 16px 42px rgba(3, 42, 27, 0.07);
}

.collaborators__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 38px;
}

.collaborators__intro h2 {
  max-width: 660px;
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: clamp(29px, 3.5vw, 40px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.collaborators__intro > p {
  color: var(--muted);
  font-size: 14px;
}

.collaborators__areas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 25px 0 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.collaborators__areas li {
  padding: 21px 20px;
}

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

.collaborators__areas span {
  display: block;
  margin-bottom: 7px;
  color: #4c7626;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.collaborators__areas strong,
.collaborators__areas small {
  display: block;
}

.collaborators__areas strong {
  color: var(--ink);
  font-size: 14px;
}

.collaborators__areas small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.collaborators__footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 12px;
}

.collaborators__footer a {
  flex: 0 0 auto;
  color: var(--forest-700);
  font-weight: 900;
}

.about-section {
  padding: 76px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 10%, rgba(156, 223, 63, 0.09), transparent 25%),
    #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
  gap: 24px;
}

.about-copy,
.operator-card,
.data-card,
.principles-card {
  border-radius: 24px;
}

.about-copy {
  padding: 36px 38px;
  border: 1px solid var(--line);
  background: #fff;
}

.about-copy h2,
.operator-card h2,
.data-card h2,
.principles-card h2 {
  margin: 7px 0 17px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.about-copy > p:not(.eyebrow) {
  max-width: 670px;
  color: var(--muted);
  font-size: 15px;
}

.about-copy > p + p {
  margin-top: 14px;
}

.operator-card {
  position: relative;
  overflow: hidden;
  padding: 36px 38px;
  background:
    radial-gradient(circle at 100% 0%, rgba(156, 223, 63, 0.16), transparent 32%),
    var(--forest-900);
  color: #fff;
  box-shadow: 0 20px 48px rgba(2, 43, 28, 0.14);
}

.operator-card__brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.operator-card__brand > img {
  width: 104px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.operator-card__brand h2 {
  margin: 5px 0 0;
  font-size: clamp(28px, 3.4vw, 38px);
}

.operator-card p:not(.eyebrow) {
  color: #ccddd0;
  font-size: 14px;
}

.operator-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(156, 223, 63, 0.58);
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.governance-section {
  padding: 76px 0 88px;
  background: var(--cream);
}

.governance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
}

.data-card,
.principles-card {
  padding: 35px 38px;
  border: 1px solid #ded6c5;
  background: rgba(255, 255, 255, 0.78);
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
}

.fact {
  padding: 15px 0;
  border-top: 1px solid #deded3;
}

.fact dt {
  margin-bottom: 4px;
  color: #647a6f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact dd {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.fact a,
.principles-list a {
  color: var(--forest-700);
  text-decoration: underline;
  text-decoration-color: #8dbf5a;
  text-underline-offset: 3px;
}

.principles-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.principles-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  padding: 14px 0;
  border-top: 1px solid #deded3;
}

.principles-list span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #e4f2d5;
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 900;
}

.principles-list p {
  padding-top: 5px;
  color: #465e56;
  font-size: 14px;
}

.legal-footer {
  background:
    linear-gradient(90deg, rgba(156, 223, 63, 0.045), transparent 45%),
    var(--forest-950);
  color: #d6e4d9;
}

.legal-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.65fr;
  gap: clamp(38px, 7vw, 90px);
  padding: 48px 0 40px;
}

.legal-footer__brand p {
  max-width: 410px;
  margin-top: 16px;
}

.legal-footer h2 {
  margin: 4px 0 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-footer p {
  color: #b9cdbf;
  font-size: 12px;
  line-height: 1.7;
}

.legal-footer a:hover {
  color: #fff;
}

.legal-footer__bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #a9c0af;
  font-size: 11px;
}

.legal-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

@media (max-width: 900px) {
  .legal-header__inner {
    padding: 17px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-header nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .legal-header .nav-home {
    margin-left: auto;
  }

  .impressum-hero__grid,
  .section-heading,
  .collaborators__intro,
  .about-grid,
  .governance-grid {
    grid-template-columns: 1fr;
  }

  .impressum-hero {
    padding: 62px 0 104px;
  }

  .impressum-hero__note {
    max-width: 620px;
  }

  .section-heading {
    gap: 12px;
  }

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

  .team-grid .person:last-child:nth-child(odd) {
    width: min(100%, 580px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .legal-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .legal-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .legal-header nav a:not(.nav-home) {
    font-size: 12px;
  }

  .legal-header .nav-home {
    width: 100%;
    margin: 2px 0 0;
    text-align: center;
  }

  .impressum-hero {
    padding: 48px 0 92px;
  }

  .impressum-hero h1 {
    font-size: clamp(44px, 15vw, 61px);
  }

  .team-section {
    margin-top: -47px;
    padding-bottom: 56px;
  }

  .section-heading,
  .about-copy,
  .operator-card,
  .data-card,
  .principles-card {
    padding: 24px;
    border-radius: 19px;
  }

  .team-grid,
  .facts,
  .legal-footer__grid {
    grid-template-columns: 1fr;
  }

  .team-grid .person:last-child:nth-child(odd) {
    width: 100%;
    grid-column: auto;
  }

  .person__portrait {
    width: 76px;
    height: 76px;
  }

  .collaborators {
    padding: 24px;
    border-radius: 19px;
  }

  .collaborators__areas {
    grid-template-columns: 1fr;
  }

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

  .collaborators__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .person__role {
    min-height: 0;
  }

  .operator-card__brand {
    gap: 16px;
  }

  .operator-card__brand > img {
    width: 88px;
  }

  .about-section,
  .governance-section {
    padding: 54px 0;
  }

  .legal-footer__brand {
    grid-column: auto;
  }

  .legal-footer__grid {
    gap: 28px;
    padding: 40px 0 32px;
  }

  .legal-footer__bottom {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* 14.4 — modern editorial About page and shared legal-page compatibility */
:root {
  --gold: #d8b52b;
  --gold-soft: #f4e9a6;
}

.legal-announcement {
  background: #012418;
  color: #cfe0d4;
  font-size: 10.5px;
  font-weight: 650;
}

.legal-announcement .wrap {
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-announcement span:first-child::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(156, 223, 63, 0.08);
}

.legal-announcement a {
  color: #fff;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 43, 28, 0.98);
  backdrop-filter: blur(16px);
}

.legal-header__inner,
.legal-header > .wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header .wordmark {
  flex: 0 0 auto;
}

.legal-header nav {
  justify-content: center;
  gap: clamp(13px, 1.8vw, 25px);
  font-size: 11.5px;
}

.legal-header nav .is-current {
  position: relative;
  color: #fff;
}

.legal-header nav .is-current::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--lime), var(--gold));
}

.legal-header .nav-home {
  flex: 0 0 auto;
  padding: 11px 17px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--forest-950);
  font-size: 12px;
  font-weight: 900;
}

.impressum-hero {
  padding: 0;
  background: #fbfaf5;
  color: var(--ink);
}

.impressum-hero::before,
.impressum-hero::after {
  display: none;
}

.impressum-hero__grid {
  width: 100%;
  max-width: none;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(118px, 0.22fr) minmax(430px, 0.9fr) minmax(390px, 0.78fr);
  align-items: stretch;
  gap: 0;
}

.mission-rail {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 66px 28px 58px max(36px, calc((100vw - 1180px) / 2));
  border-right: 1px solid #dcd8c9;
}

.mission-rail__line {
  width: 1px;
  height: 80px;
  margin: 18px 0 13px 15px;
  background: linear-gradient(var(--lime), var(--gold));
}

.mission-rail__icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid #9ab879;
  border-radius: 50%;
  color: #527f2d;
  font-weight: 900;
}

.mission-rail strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 11px;
}

.mission-rail > p:last-child {
  max-width: 105px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.7;
}

.impressum-hero__copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 64px clamp(44px, 6vw, 88px);
}

.impressum-hero h1 {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--forest-950);
  font-size: clamp(56px, 6.15vw, 88px);
  line-height: 0.91;
}

.impressum-hero h1 span {
  color: var(--lime);
}

.impressum-hero .hero-lead {
  max-width: 590px;
  color: #435a53;
  font-size: 15px;
  line-height: 1.75;
}

.impressum-hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background:
    repeating-radial-gradient(ellipse at 0 50%, transparent 0 22px, rgba(181, 215, 149, 0.055) 23px 24px),
    linear-gradient(145deg, #0a4a34, #022c20 72%);
}

.impressum-hero__visual::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 460px;
  right: 21%;
  bottom: -90px;
  border-radius: 50%;
  background: linear-gradient(#c3d996, #718e46);
  transform: rotate(-22deg);
  transform-origin: bottom;
  opacity: 0.9;
}

.hero-leaf {
  position: absolute;
  width: 168px;
  height: 72px;
  border: 1px solid rgba(205, 229, 172, 0.36);
  border-radius: 100% 0 100% 0;
  background:
    linear-gradient(160deg, rgba(194, 219, 153, 0.82), rgba(36, 100, 61, 0.86)),
    #7ca45f;
  box-shadow: inset 0 0 34px rgba(0, 43, 27, 0.25), 0 24px 55px rgba(0, 18, 11, 0.19);
  transform-origin: 100% 100%;
}

.hero-leaf::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 17px;
  height: 1px;
  background: rgba(230, 240, 209, 0.48);
  transform: rotate(-18deg);
}

.hero-leaf--one { right: 18%; bottom: 120px; transform: rotate(24deg); }
.hero-leaf--two { right: 4%; bottom: 220px; transform: rotate(53deg) scale(0.88); }
.hero-leaf--three { right: 25%; bottom: 280px; transform: rotate(9deg) scale(0.78); }
.hero-leaf--four { right: -3%; bottom: 365px; transform: rotate(60deg) scale(0.7); }

.team-section {
  margin-top: 0;
  padding: 54px 0 62px;
  background:
    radial-gradient(circle at 92% 8%, rgba(216, 181, 43, 0.1), transparent 25%),
    linear-gradient(140deg, #073e2c, #01291d);
  color: #fff;
}

.team-section .section-heading {
  margin-bottom: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.team-section .section-heading h2 {
  max-width: 720px;
  font-size: clamp(40px, 4.1vw, 54px);
}

.team-section .section-heading > p {
  max-width: 420px;
}

.section-heading__rule,
.collaborators__rule {
  display: block;
  width: 68px;
  height: 3px;
  margin-top: 17px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--lime), var(--gold));
}

.person {
  min-height: 332px;
  padding: 28px 24px 30px;
  border: 1px solid rgba(219, 236, 219, 0.2);
  border-top: 1px solid rgba(219, 236, 219, 0.2);
  border-radius: 6px;
  background: linear-gradient(150deg, rgba(14, 78, 53, 0.84), rgba(3, 49, 34, 0.9));
  box-shadow: none;
  color: #fff;
}

.person::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(var(--lime), var(--gold));
  opacity: 0;
  transition: opacity 180ms ease;
}

.person:hover {
  transform: translateY(-3px);
  border-color: rgba(156, 223, 63, 0.55);
  box-shadow: 0 22px 55px rgba(0, 20, 12, 0.23);
}

.person:hover::before {
  opacity: 1;
}

.person__portrait {
  width: 116px;
  height: 116px;
  margin-top: 0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(156, 223, 63, 0.68), 0 14px 35px rgba(0, 15, 8, 0.25);
}

.person__discipline {
  margin-top: 21px;
  color: var(--lime);
}

.person h3 {
  color: #fff;
  font-size: clamp(26px, 2.4vw, 33px);
}

.person__role {
  min-height: 4em;
  color: #f1f5ed;
}

.person__bio {
  border-color: rgba(219, 236, 219, 0.16);
  color: #bdd1c3;
}

.editorial-accountability {
  position: relative;
  overflow: hidden;
  padding: 68px 0 72px;
  border-bottom: 1px solid #ded9ca;
  background:
    radial-gradient(circle at 100% 0%, rgba(156, 223, 63, 0.1), transparent 28%),
    linear-gradient(135deg, #fbfaf5 0%, #f7f3e8 100%);
}

.editorial-accountability::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  left: -126px;
  bottom: -170px;
  border: 1px solid rgba(75, 117, 45, 0.13);
  border-radius: 48% 52% 68% 32% / 55% 37% 63% 45%;
  transform: rotate(24deg);
}

.editorial-accountability__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(44px, 7vw, 88px);
}

.editorial-accountability__intro h2 {
  max-width: 440px;
  margin: 8px 0 0;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.editorial-accountability__intro > p:not(.eyebrow) {
  max-width: 460px;
  margin-top: 18px;
  color: #445c53;
  font-size: 14px;
  line-height: 1.72;
}

.editorial-accountability__intro > p + p {
  margin-top: 12px;
}

.editorial-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.editorial-principle {
  min-height: 205px;
  padding: 25px 24px 23px;
  border: 1px solid #ded9ca;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 34px rgba(2, 43, 28, 0.045);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.editorial-principle:hover {
  transform: translateY(-3px);
  border-color: #a7c27e;
  box-shadow: 0 18px 38px rgba(2, 43, 28, 0.08);
}

.editorial-principle__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid #7ca356;
  border-radius: 50%;
  background: #f3f6eb;
  color: var(--forest-800);
}

.editorial-principle__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.editorial-principle h3 {
  margin: 0 0 8px;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.editorial-principle p {
  color: #4e625a;
  font-size: 12.5px;
  line-height: 1.62;
}

.editorial-principles__link {
  grid-column: 2;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 18px;
  border: 1px solid #94bd56;
  border-radius: 8px;
  color: var(--forest-800);
  font-size: 13px;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease;
}

.editorial-principles__link:hover {
  background: var(--forest-800);
  color: #fff;
}

.collaborators-section {
  position: relative;
  padding: 58px 0 76px;
  border-top: 1px solid rgba(188, 225, 142, 0.18);
  border-bottom: 1px solid rgba(188, 225, 142, 0.14);
  background:
    radial-gradient(circle at 92% 12%, rgba(156, 223, 63, 0.11), transparent 25%),
    linear-gradient(145deg, #073e2c 0%, #033421 54%, #01291d 100%);
  color: #fff;
}

.collaborators {
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.collaborators__intro h2 {
  color: #fff;
  font-size: clamp(38px, 4.3vw, 54px);
}

.collaborators__intro > p {
  color: #cfe0d2;
  font-size: 14px;
}

.collaborators__label {
  margin-top: 26px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collaborators__areas {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border: 0;
}

.collaborators__areas li {
  position: relative;
  min-height: 202px;
  padding: 27px 24px;
  border: 1px solid rgba(225, 235, 215, 0.9);
  border-radius: 15px;
  background: #fbfaf5;
  box-shadow: 0 14px 36px rgba(0, 20, 12, 0.16);
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.collaborators__areas li + li {
  border-left: 1px solid rgba(225, 235, 215, 0.9);
}

.collaborators__areas li:hover {
  transform: translateY(-3px);
  border-color: #a9c982;
  box-shadow: 0 18px 38px rgba(3, 42, 27, 0.08);
}

.collaborators__areas i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid #87aa68;
  border-radius: 50%;
  color: var(--forest-800);
  background: #f2f6eb;
  font-family: var(--serif);
  font-size: 22px;
  font-style: normal;
}

.collaborators__areas strong {
  color: #022b1c;
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: -0.02em;
}

.collaborators__areas small {
  max-width: 240px;
  margin-inline: auto;
  color: #40594f;
}

.collaborators__notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(207, 224, 210, 0.28);
  border-radius: 10px;
  color: #d9e7dc;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-style: italic;
  text-align: center;
}

.collaborators__notice p + p {
  position: relative;
  padding-left: 29px;
}

.collaborators__notice p + p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 20px;
  background: rgba(218, 233, 220, 0.34);
  transform: translateY(-50%);
}

.collaboration-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  margin-top: 18px;
  padding: 28px 34px;
  border-radius: 13px;
  background:
    radial-gradient(circle at 72% 20%, rgba(156, 223, 63, 0.13), transparent 28%),
    linear-gradient(115deg, #052f21, #011f16);
  color: #fff;
}

.collaboration-cta small {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collaboration-cta h3 {
  margin: 3px 0 5px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.035em;
  line-height: 1;
}

.collaboration-cta p {
  max-width: 690px;
  color: #ccddd1;
  font-size: 13px;
}

.collaboration-cta a {
  min-width: 210px;
  padding: 15px 20px;
  border-radius: 9px;
  background: var(--lime);
  color: var(--forest-950);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

/* Older legal pages share legal.css but use a compact markup. */
.legal-header > .wrap:not(.legal-header__inner) nav,
.legal-footer > .wrap nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.hero.wrap {
  padding: 70px 0 34px;
}

.hero.wrap h1 {
  margin: 7px 0 12px;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 70px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero.wrap > p {
  max-width: 760px;
  color: var(--muted);
}

.grid.wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 0 0 78px;
}

.card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.card.full {
  grid-column: 1 / -1;
}

.card h2,
.card h3 {
  color: var(--ink);
  font-family: var(--serif);
}

.card h2 {
  margin: 0 0 18px;
  font-size: clamp(29px, 4vw, 42px);
}

.card h3 {
  margin: 28px 0 8px;
  font-size: 23px;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 15px;
}

.legal-footer > .wrap:not(.legal-footer__grid):not(.legal-footer__bottom) {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #b9cdbf;
  font-size: 12px;
}

@media (max-width: 1040px) {
  .legal-header__inner {
    flex-wrap: wrap;
    padding: 15px 0;
  }

  .legal-header__inner nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 2px 0 7px;
    scrollbar-width: none;
  }

  .legal-header__inner nav::-webkit-scrollbar { display: none; }

  .legal-header nav .is-current::after { bottom: -8px; }

  .impressum-hero__grid {
    grid-template-columns: 128px minmax(0, 1fr) 34%;
  }

  .mission-rail {
    padding-left: 24px;
  }

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

  .editorial-accountability__grid {
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
    gap: 38px;
  }
}

@media (max-width: 820px) {
  .legal-announcement a { display: none; }

  .impressum-hero__grid {
    min-height: 0;
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .impressum-hero__visual {
    min-height: 280px;
    grid-column: 1 / -1;
  }

  .mission-rail {
    padding: 46px 18px;
  }

  .mission-rail > p:last-child { display: none; }

  .impressum-hero__copy {
    padding: 50px 28px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .editorial-accountability__grid {
    grid-template-columns: 1fr;
  }

  .team-grid .person:last-child:nth-child(odd) {
    width: 100%;
    grid-column: auto;
  }

  .person { min-height: 0; }

  .collaboration-cta { grid-template-columns: 1fr; gap: 22px; }
  .collaboration-cta a { justify-self: start; }

  .grid.wrap { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .legal-announcement .wrap { justify-content: flex-start; }

  .legal-header__inner {
    min-height: 70px;
    flex-wrap: nowrap;
  }

  .legal-header__inner nav { display: none; }

  .legal-header .nav-home {
    width: auto;
    margin: 0;
  }

  .impressum-hero__grid { grid-template-columns: 1fr; }

  .mission-rail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
    padding: 30px 20px 0;
    border: 0;
  }

  .mission-rail .eyebrow { grid-column: 1 / -1; }
  .mission-rail__line { display: none; }
  .mission-rail__icon { margin: 0; }
  .mission-rail strong { align-self: center; margin: 0; }

  .impressum-hero__copy {
    padding: 30px 20px 45px;
  }

  .impressum-hero h1 {
    font-size: clamp(47px, 15vw, 65px);
  }

  .impressum-hero__visual { min-height: 215px; }

  .team-section { padding: 43px 0 54px; }

  .team-section .section-heading { padding: 0; }

  .collaborators-section { padding: 48px 0 54px; }
  .editorial-accountability { padding: 48px 0 52px; }
  .editorial-principles { grid-template-columns: 1fr; }
  .editorial-principles__link { grid-column: 1; }
  .collaborators__areas { grid-template-columns: 1fr; }
  .collaborators__notice { align-items: stretch; flex-direction: column; gap: 8px; }
  .collaborators__notice p + p { padding: 9px 0 0; }
  .collaborators__notice p + p::before {
    top: 0;
    left: 50%;
    width: 54px;
    height: 1px;
    transform: translateX(-50%);
  }
  .collaboration-cta { padding: 25px 22px; }
  .collaboration-cta a { width: 100%; min-width: 0; }

  .legal-footer > .wrap:not(.legal-footer__grid):not(.legal-footer__bottom) {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 0;
  }
}
