/* LittleBigDreams – gemeinsame Gestaltung für /de und /en */

:root {
  --forest: #1b4338;
  --forest-deep: #12352c;
  --forest-mid: #245646;
  --ink: #1c3f34;
  --body: #243f36;
  --cream: #f3efe4;
  --gold: #f0e2c2;
  --rust: #b4532a;
  --white: #ffffff;
  --header-h: 5.25rem;
  --gutter: clamp(1.15rem, 4.2vw, 4.25rem);
  --content: 1180px;
  --serif: "Playfair Display", "Iowan Old Style", Palatino, Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --radius: 12px;
  --shadow: 0 16px 40px rgba(18, 40, 32, 0.14);
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul {
  list-style: none;
  padding: 0;
}

h1,
h2,
.footer__heading {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

::selection {
  background: #c9e0d6;
  color: var(--forest-deep);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  padding: 0.6rem 1rem;
  background: var(--white);
  color: var(--forest-deep);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--content), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--white {
  background: var(--white);
  color: var(--forest-deep);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.btn--white:hover {
  background: var(--gold);
}

.btn--forest {
  background: var(--forest);
  color: var(--white);
}

.btn--forest:hover {
  background: var(--forest-mid);
}

/* Kopfzeile */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  color: var(--white);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.has-hero .site-header.is-scrolled,
.has-hero .site-header.is-open,
body:not(.has-hero) .site-header {
  background: rgba(16, 46, 38, 0.94);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: var(--header-h);
  color: var(--white);
  text-decoration: none;
}

.brand__logo {
  height: 1.7rem;
  width: auto;
}

@media (min-width: 720px) {
  .brand__logo {
    height: 2.15rem;
  }
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  position: relative;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -7px;
}

.nav-toggle__bars::after {
  top: 7px;
}

.site-header.is-open .nav-toggle__bars {
  background: transparent;
}

.site-header.is-open .nav-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.header__panel {
  display: none;
  flex: 1 1 100%;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0.25rem 0 1.4rem;
}

.header__panel.is-open {
  display: flex;
}

.nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav__links a {
  display: block;
  padding: 0.7rem 0;
  color: #f6f1e6;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
}

.nav__links a[aria-current="page"] {
  color: var(--gold);
}

.nav__links a:hover {
  color: var(--white);
}

.header__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 1.05rem;
}

.header__actions .btn {
  width: auto;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header__lang a {
  color: inherit;
  text-decoration: none;
  opacity: 0.55;
}

.header__lang a[aria-current="true"] {
  opacity: 1;
}

.header__lang span[aria-hidden="true"] {
  opacity: 0.4;
}

body.nav-open {
  overflow: hidden;
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 1.5rem);
  color: var(--white);
  background: #102e28;
  overflow: hidden;
}

.hero__media,
.hero__poster,
.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__poster,
.hero__video {
  object-fit: cover;
  object-position: 70% center;
}

@media (min-width: 800px) {
  .hero__poster,
  .hero__video {
    object-position: center 42%;
  }
}

.hero__poster {
  transform-origin: center center;
  animation: hero-drift 24s ease-in-out infinite alternate;
}

.hero__video {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero__video.is-ready {
  opacity: 1;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 22, 18, 0.62) 0%, rgba(8, 22, 18, 0.22) 46%, rgba(8, 22, 18, 0.05) 100%),
    linear-gradient(180deg, rgba(10, 28, 24, 0.22) 0%, rgba(8, 22, 18, 0) 42%, rgba(6, 16, 14, 0.5) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
  padding-bottom: clamp(3rem, 9vh, 6rem);
}

.hero__text {
  max-width: 40rem;
}

.hero__kicker {
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: 0;
  line-height: 1.3;
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(2.65rem, 6.4vw, 5.15rem);
  font-weight: 600;
  text-wrap: balance;
}

.hero__lead {
  max-width: 38rem;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.65;
}

.hero .btn {
  margin-top: 1.7rem;
}

@keyframes hero-drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}

/* Fokus-Abschnitt */

.focus {
  padding-top: clamp(4.25rem, 9vw, 7.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: var(--cream);
}

.focus__layout {
  display: grid;
  gap: clamp(2.75rem, 5vw, 4.75rem);
  align-items: center;
}

.focus__photos {
  position: relative;
  width: min(100%, 34rem);
  margin-inline: auto;
}

.focus__frame {
  position: relative;
  display: block;
  overflow: hidden;
}

.focus__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.focus__frame--primary {
  width: 78%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
}

.focus__frame--primary img {
  object-position: center 28%;
}

.focus__frame--secondary {
  position: absolute;
  right: 0;
  bottom: 4%;
  width: 46%;
  aspect-ratio: 5 / 4;
  border: 7px solid var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.focus__frame--secondary img {
  object-position: center 42%;
}

.eyebrow {
  color: var(--rust);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.focus__copy .eyebrow {
  margin-bottom: 0.85rem;
  color: var(--rust);
  text-align: center;
}

.focus__title {
  margin-bottom: 1.05rem;
  color: var(--forest);
  font-size: clamp(2.35rem, 4.6vw, 3.55rem);
  text-wrap: balance;
}

.focus__copy p {
  color: var(--body);
  font-size: 1.05rem;
}

.focus__points {
  display: grid;
  gap: 0.95rem;
  margin: 1.45rem 0 1.7rem;
}

.focus__points li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--forest);
  font-weight: 700;
  font-size: 1.12rem;
}

.focus__points svg {
  width: 1.85rem;
  height: 1.85rem;
  flex: none;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Unser Fokus */

.pillars {
  padding-top: clamp(1.25rem, 3vw, 2.25rem);
  padding-bottom: clamp(4.25rem, 9vw, 7.5rem);
  background: var(--cream);
}

.pillars__head {
  text-align: center;
}

.pillars__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.pillars__eyebrow svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
}

.pillars__head h2 {
  margin-top: 0.55rem;
  color: var(--forest);
  font-size: clamp(2.45rem, 4.8vw, 3.5rem);
}

.pillars__grid {
  display: grid;
  gap: 1.15rem;
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.pillar {
  position: relative;
  display: flex;
  min-height: 26rem;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(28, 48, 40, 0.05);
}

.pillar--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% 42%;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.pillar--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 40, 34, 0.18) 18%, rgba(10, 28, 24, 0.78) 100%);
  opacity: 0;
  transition: opacity 0.55s ease;
}

.pillar__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.45rem 1.35rem 1.55rem;
}

.pillar__icon {
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  background: #f3efe6;
  color: var(--forest-deep);
  transition: background-color 0.45s ease;
}

.pillar__icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.pillar__spacer {
  flex: 0 0 auto;
  height: 0;
  transition: flex-grow 0.55s ease;
}

.pillar__copy {
  margin-top: 1.15rem;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--forest);
  transition: color 0.45s ease;
}

.pillar p {
  margin-top: 0.7rem;
  color: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  transition: color 0.45s ease;
}

.pillar a {
  display: inline-block;
  margin-top: 0.95rem;
  color: var(--forest);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 0.45s ease;
}

.pillar a:hover {
  color: var(--rust);
}

@media (hover: hover) {
  .pillar--photo:hover img,
  .pillar--photo:focus-within img,
  .pillar--photo:hover::after,
  .pillar--photo:focus-within::after {
    opacity: 1;
  }

  .pillar--photo:hover .pillar__spacer,
  .pillar--photo:focus-within .pillar__spacer {
    flex-grow: 1;
  }

  .pillar--photo:hover .pillar__icon,
  .pillar--photo:focus-within .pillar__icon {
    background: var(--white);
  }

  .pillar--photo:hover h3,
  .pillar--photo:focus-within h3,
  .pillar--photo:hover a,
  .pillar--photo:focus-within a {
    color: var(--white);
  }

  .pillar--photo:hover p,
  .pillar--photo:focus-within p {
    color: rgba(255, 255, 255, 0.94);
  }

  .pillar--photo:hover a:hover,
  .pillar--photo:focus-within a:hover {
    color: var(--gold);
  }
}

@media (min-width: 860px) {
  .pillars__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

/* Spenden */

.donate {
  position: relative;
  display: grid;
  height: clamp(34rem, 70vh, 46rem);
  background: #e6dfd0;
  overflow: hidden;
}

.donate__bg,
.donate__panel {
  grid-area: 1 / 1;
}

.donate__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
}

.donate__panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(var(--content), calc(100% - 2 * var(--gutter)));
  height: 100%;
  min-height: 0;
  margin-inline: auto;
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
}

.donate__stack {
  display: flex;
  flex-direction: column;
  width: min(100%, 25.5rem);
  max-height: 100%;
  min-height: 0;
}

.donate__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
  color: var(--rust);
  font-size: 0.98rem;
  font-weight: 600;
}

.donate__kicker svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
}

.donate h2 {
  color: #f7f3ea;
  font-size: clamp(2.15rem, 4vw, 3.15rem);
  line-height: 1.12;
  text-shadow: 0 2px 16px rgba(18, 40, 32, 0.4);
  text-wrap: balance;
}

.donate__card {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  margin-top: 1.15rem;
  padding: 0.85rem;
  border-radius: 18px;
  background: #f7f3ea;
  box-shadow: 0 22px 50px rgba(18, 40, 32, 0.16);
  overflow: hidden;
}

.donate__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  border-radius: 12px;
  background: #fff;
}

.donate__card iframe {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: none;
  border: 0;
}

@media (max-width: 860px) {
  .donate__bg {
    object-position: 18% center;
  }

  .donate__panel {
    justify-content: center;
  }

  .donate__stack {
    text-align: center;
  }

  .donate__kicker {
    justify-content: center;
  }
}

/* Partner */

.partners {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2.25rem);
  background: var(--cream);
  text-align: center;
}

.partners__reel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.partners__list {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.25rem);
  padding-inline-end: clamp(0.5rem, 2vw, 1.25rem);
}

.partners__list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(8.5rem, 18vw, 12.5rem);
  height: clamp(5.2rem, 11vw, 7.5rem);
  padding: 0.35rem;
}

.partners__list img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: darken;
  transition: transform 0.25s ease;
}

.partners__list a:hover img,
.partners__list a:focus-visible img {
  transform: scale(1.06);
}

.partners__action {
  margin-top: clamp(0.4rem, 1.5vw, 0.9rem);
}

.partners__intro {
  margin-bottom: 0.35rem;
  text-align: center;
}

.partners__intro h2 {
  margin-top: 0.3rem;
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.partners--proof {
  padding-top: calc(var(--header-h) + clamp(1.5rem, 4vw, 2.75rem));
}

@media (prefers-reduced-motion: no-preference) {
  html.js .partners__track {
    display: flex;
    width: max-content;
    animation: partners-slide 42s linear infinite;
  }

  html.js .partners__reel:hover .partners__track,
  html.js .partners__reel:focus-within .partners__track {
    animation-play-state: paused;
  }
}

@keyframes partners-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Warum wir */

.why {
  padding: clamp(3.75rem, 7vw, 6.25rem) 0;
  background: var(--cream);
}

.why__layout {
  display: grid;
  gap: 1.35rem clamp(2rem, 4vw, 3.75rem);
}

.why__copy .eyebrow {
  margin-bottom: 0.5rem;
}

.why h2 {
  color: var(--forest);
  font-size: clamp(2.35rem, 4.4vw, 3.35rem);
}

.why__figure {
  position: relative;
  margin: 0.35rem 0 0.4rem;
}

.why__figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 16px;
}

.why__stat {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: calc(100% - 1.7rem);
  padding: 0.65rem 0.95rem 0.65rem 0.8rem;
  border-radius: 14px;
  background: rgba(247, 243, 234, 0.95);
  box-shadow: var(--shadow);
}

.why__stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1;
  color: var(--forest);
  transform: translateY(-0.12em);
}

.why__stat span {
  max-width: 7rem;
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

.why__reel {
  position: relative;
}

.why__list {
  display: grid;
  gap: 0.95rem;
}

.why__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.why__icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: #efe8da;
  color: var(--forest);
}

.why__icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why__list h3 {
  color: var(--forest);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.why__list p {
  margin-top: 0.12rem;
  color: var(--body);
  font-size: 0.96rem;
  line-height: 1.45;
}

@media (min-width: 960px) {
  .why__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(16rem, 0.9fr);
    grid-template-areas:
      "copy photo"
      "list photo";
    align-items: center;
  }

  .why__copy {
    grid-area: copy;
  }

  .why__reel {
    grid-area: list;
  }

  .why__figure {
    grid-area: photo;
    margin: 0;
  }
}

/* Fußleiste */

.site-footer {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(14, 48, 40, 0.78), rgba(10, 36, 31, 0.9)),
    url("../media/footer-bg.svg") center / cover no-repeat;
  overflow: hidden;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(3.25rem, 7vw, 5.25rem) 1.75rem;
}

.footer__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.footer__hero .btn {
  margin-top: 0.35rem;
}

.footer__hero h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 6vw, 4.35rem);
  text-wrap: balance;
}

.footer__rule {
  margin: clamp(1.75rem, 4vw, 2.6rem) 0 clamp(1.75rem, 4vw, 2.5rem);
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.footer__grid {
  display: grid;
  gap: 2.4rem;
}

.brand--footer {
  min-height: 0;
  margin-bottom: 1.15rem;
}

.brand--footer .brand__logo {
  height: 1.55rem;
}

@media (min-width: 720px) {
  .brand--footer .brand__logo {
    height: 1.85rem;
  }
}

.footer__brand p,
.footer__contact p,
.footer__address {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  font-style: normal;
  line-height: 1.65;
}

.footer__heading {
  margin-bottom: 1.1rem;
  font-size: clamp(1.55rem, 2vw, 1.85rem);
}

.footer__links a {
  display: block;
  padding: 0.28rem 0;
  text-decoration: none;
}

.footer__links a:hover,
.footer__address a:hover {
  color: var(--gold);
}

.footer__contact p {
  margin-bottom: 1.15rem;
}

.footer__address a {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
}

.footer__social {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  color: inherit;
  opacity: 0.9;
}

.footer__social a:hover {
  color: var(--gold);
  opacity: 1;
}

.footer__social svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__base {
  margin-top: 2.4rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  text-align: center;
}

.lang-switch {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.lang-switch a {
  text-decoration: none;
  opacity: 0.72;
}

.lang-switch a[aria-current="page"] {
  opacity: 1;
  font-weight: 600;
}

.footer__copy {
  font-size: 0.98rem;
}

/* Über uns – Einstieg */

.about-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 78svh;
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) clamp(1.6rem, 4vh, 2.75rem);
  background: #102e28;
  overflow: hidden;
}

.about-hero__media,
.about-hero__video,
.about-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero__video {
  object-fit: cover;
  object-position: center 32%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.about-hero__video.is-ready {
  opacity: 1;
}

.about-hero__shade {
  background: rgba(10, 28, 24, 0.28);
}

.about-hero__card {
  position: relative;
  z-index: 1;
  width: min(40rem, 100%);
  padding: clamp(1.5rem, 4vw, 2.4rem) clamp(1.25rem, 4vw, 2.35rem);
  border-radius: 18px;
  background: rgba(247, 243, 234, 0.94);
  box-shadow: 0 22px 50px rgba(18, 40, 32, 0.18);
  text-align: center;
}

.about-hero__card .eyebrow {
  margin-bottom: 0.7rem;
}

.about-hero__card h1 {
  margin-bottom: 0.9rem;
  color: var(--forest);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-wrap: balance;
}

.about-hero__card p:not(.eyebrow) {
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-hero__card p:not(.eyebrow) + p {
  margin-top: 0.85rem;
}

/* Heimleitung */

.leads {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--cream);
}

.leads + .leads {
  padding-top: 0;
}

.leads__head {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}

.leads__head h2 {
  color: var(--forest);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.leads__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  justify-content: center;
}

.lead {
  display: grid;
  align-content: start;
  justify-items: center;
  width: min(100%, 26rem);
  margin-inline: auto;
  text-align: center;
}

.lead__figure {
  position: relative;
  width: min(100%, 22rem);
  margin: 0 0 1.15rem;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
}

.lead__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.lead__name {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 600;
  line-height: 1.15;
}

.lead__role {
  display: block;
  margin-top: 0.3rem;
  color: var(--rust);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
}

.lead__toggle {
  margin-top: 0.75rem;
  color: var(--rust);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.lead__bio {
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  transition: grid-template-rows 0.4s ease;
}

.lead__bio > * {
  min-height: 0;
  overflow: hidden;
}

.lead__bio p {
  margin: 0;
  color: var(--body);
  line-height: 1.65;
}

.lead__bio p + p {
  margin-top: 0.85rem;
}

.lead.is-open .lead__bio {
  grid-template-rows: 1fr;
  margin-top: 0.9rem;
}

.leads__grid--members {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.35rem, 3vw, 2.25rem);
}

.leads__grid--members .lead,
.leads__grid--members .lead__figure {
  width: 100%;
}

.leads__grid--members .lead__name {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

@media (min-width: 860px) {
  .leads__grid {
    grid-template-columns: repeat(2, minmax(0, 26rem));
  }

  .leads__grid--members {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .leads__grid--members {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Der Anfang */

.origin {
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background: var(--cream);
}

.origin__grid {
  display: grid;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.origin__figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}

.compare {
  --pos: 50%;
  position: relative;
  aspect-ratio: 1;
  touch-action: none;
  user-select: none;
}

.compare::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  mask-image:
    radial-gradient(ellipse 36% 36% at 0 0, #000 0%, transparent 74%),
    radial-gradient(ellipse 36% 36% at 100% 0, #000 0%, transparent 74%),
    radial-gradient(ellipse 36% 36% at 0 100%, #000 0%, transparent 74%),
    radial-gradient(ellipse 36% 36% at 100% 100%, #000 0%, transparent 74%);
  mask-composite: add;
  -webkit-mask-image:
    radial-gradient(ellipse 36% 36% at 0 0, #000 0%, transparent 74%),
    radial-gradient(ellipse 36% 36% at 100% 0, #000 0%, transparent 74%),
    radial-gradient(ellipse 36% 36% at 0 100%, #000 0%, transparent 74%),
    radial-gradient(ellipse 36% 36% at 100% 100%, #000 0%, transparent 74%);
}

.compare__before,
.compare__after {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.compare__after {
  position: absolute;
  inset: 0;
}

.compare__before {
  position: relative;
  z-index: 1;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.compare__divider {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 0;
  pointer-events: none;
}

.compare__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(18, 40, 32, 0.18);
  transform: translateX(-50%);
}

.compare__year {
  position: absolute;
  top: 0.85rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55), 0 0 14px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.compare__year sup {
  font-size: 0.65em;
}

.compare__year--before {
  right: 0.85rem;
}

.compare__year--after {
  left: 0.85rem;
}

.compare__handle {
  position: absolute;
  top: 50%;
  left: 0;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 40, 32, 0.22);
  transform: translate(-50%, -50%);
}

.compare__handle svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compare__notes {
  margin-top: 0.55rem;
  color: var(--body);
  font-size: 0.72rem;
  line-height: 1.4;
  opacity: 0.72;
}

.compare__notes span {
  display: block;
}

.compare__range {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  appearance: none;
}

.origin__copy h2 {
  margin-bottom: 0.9rem;
  color: var(--forest);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.origin__copy p:last-child {
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.65;
}

@media (min-width: 860px) {
  .origin__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

/* Bisherige Erfolge */

.works {
  padding: 0 0 clamp(3.5rem, 7vw, 5.5rem);
  background: var(--cream);
}

.works__bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.works__head h2 {
  color: var(--forest);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.works__intro {
  max-width: 38rem;
  margin-top: 0.7rem;
  color: var(--body);
  font-size: 1.02rem;
  line-height: 1.6;
}

.works__navs {
  display: flex;
  gap: 0.55rem;
  flex: none;
}

.works__nav {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(27, 67, 56, 0.18);
  border-radius: 999px;
  color: var(--forest);
  background: #f7f3ea;
}

.works__nav svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.works__nav:hover:not(:disabled),
.works__nav:focus-visible:not(:disabled) {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.works__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.works__track {
  display: flex;
  gap: 1rem;
  margin: 0 -0.15rem;
  padding: 0.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.works__track::-webkit-scrollbar {
  display: none;
}

.works__card {
  display: flex;
  flex: 0 0 min(86%, 20rem);
  flex-direction: column;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 16px;
  background: #f7f3ea;
  box-shadow: 0 10px 28px rgba(18, 40, 32, 0.08);
}

.works__figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.works__card h3 {
  margin: 0.95rem 1rem 0.35rem;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.works__card p {
  margin: 0 1rem 1.1rem;
  color: var(--body);
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (min-width: 720px) {
  .works__card {
    flex-basis: calc((100% - 1rem) / 2);
  }
}

@media (min-width: 1100px) {
  .works__card {
    flex-basis: calc((100% - 2rem) / 3);
  }
}

/* Pressestimmen */

.press {
  padding: 0 0 clamp(3.5rem, 7vw, 5.5rem);
  background: var(--cream);
}

.press__head {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}

.press__head h2 {
  color: var(--forest);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.press__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.press__tile {
  display: grid;
  align-content: start;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #f7f3ea;
  box-shadow: 0 10px 28px rgba(18, 40, 32, 0.08);
  color: var(--forest);
  text-decoration: none;
}

a.press__tile {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

a.press__tile:hover,
a.press__tile:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(18, 40, 32, 0.16);
}

.press__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.press__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.45s ease;
}

.press__media img[src*="hamburg_magazin"] {
  object-position: center 72%;
}

a.press__tile:hover .press__media img,
a.press__tile:focus-visible .press__media img {
  transform: scale(1.05);
}

.press__title {
  padding: 0.9rem 1rem 1.05rem;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

a.press__tile:hover .press__title,
a.press__tile:focus-visible .press__title {
  color: var(--rust);
}

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

/* Für Organisationen */

.org-hero {
  padding: clamp(0.5rem, 2vw, 1.25rem) 0 clamp(2.25rem, 5vw, 3.5rem);
}

.org-hero h1 {
  max-width: 14ch;
  margin: 0.4rem 0 1rem;
  color: var(--forest);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  text-wrap: balance;
}

.org-hero .lede {
  max-width: 38rem;
  margin-bottom: 1.6rem;
  color: var(--body);
  font-size: 1.12rem;
}

.org-ways,
.org-offer {
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.org-head {
  max-width: 40rem;
  margin-bottom: clamp(1.4rem, 3vw, 2.1rem);
}

.org-head h2 {
  margin: 0.3rem 0 0.65rem;
  color: var(--forest);
  font-size: clamp(2.1rem, 4.4vw, 3.15rem);
}

.org-head p:last-child {
  color: var(--body);
}

.org-grid {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: way;
}

.org-grid li {
  padding: 1.25rem 1.3rem 1.4rem;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18, 40, 32, 0.06);
}

.org-ways .org-grid li {
  counter-increment: way;
}

.org-ways .org-grid li::before {
  content: counter(way, decimal-leading-zero);
  display: block;
  margin-bottom: 0.45rem;
  color: var(--rust);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
}

.org-grid h3 {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.org-grid p {
  margin-top: 0.4rem;
  color: var(--body);
}

.org-hero + .works {
  padding-top: clamp(1.25rem, 3vw, 2.25rem);
}

.org-close {
  padding: clamp(3.25rem, 8vw, 5.25rem) 0;
  background: var(--forest-deep);
  color: var(--gold);
  text-align: center;
}

.org-close h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  text-wrap: balance;
}

.org-close p {
  max-width: 36rem;
  margin: 0.85rem auto 0;
}

.org-close .btn {
  margin-top: 1.45rem;
}

.org-close__mail a {
  color: var(--white);
  font-weight: 600;
}

@media (min-width: 720px) {
  .org-grid,
  .org-grid--three {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .org-ways .org-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .org-ways .org-grid li {
    grid-column: span 2;
  }

  .org-ways .org-grid li:nth-child(4),
  .org-ways .org-grid li:nth-child(5) {
    grid-column: span 3;
  }

  .org-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Spenden */

.give-hero {
  padding: calc(var(--header-h) + clamp(2.4rem, 6vw, 4.2rem)) 0 clamp(1rem, 3vw, 2rem);
}

.give-hero h1 {
  max-width: 14ch;
  margin: 0.35rem 0 0.85rem;
  color: var(--forest);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  text-wrap: balance;
}

.give-hero .lede {
  max-width: 38rem;
  color: var(--body);
  font-size: 1.12rem;
}

.give-guide {
  max-width: 46rem;
  margin: clamp(1.6rem, 4vw, 2.4rem) auto 0;
}

.give-guide img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.give-methods {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 7vw, 5rem);
}

.give-layout {
  display: grid;
  gap: 1rem;
}

.give-form,
.give-bank,
.give-paypal {
  padding: 1.25rem 1.3rem 1.35rem;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18, 40, 32, 0.06);
}

.give-form h3,
.give-bank h3,
.give-paypal h3 {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.give-form > p,
.give-bank > p,
.give-paypal p {
  margin: 0.35rem 0 1rem;
  color: var(--body);
}

.give-form .donate__scroll {
  height: clamp(28rem, 62vh, 40rem);
  overflow: auto;
  border-radius: 12px;
  background: #fff;
}

.give-side {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.give-bank dl {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.15rem;
}

.give-bank dl div {
  display: grid;
  gap: 0.1rem;
}

.give-bank dt {
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.give-bank dd {
  color: var(--forest);
  font-size: 1.05rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.give-paypal {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  align-items: center;
}

.give-paypal img {
  width: 7.5rem;
  height: auto;
  border-radius: 8px;
}

.give-paypal p {
  margin: 0.25rem 0 0;
}

.give-sponsor {
  position: relative;
  display: grid;
  min-height: clamp(28rem, 62vh, 40rem);
  overflow: hidden;
  background: #e6dfd0;
}

.give-sponsor__bg,
.give-sponsor__panel {
  grid-area: 1 / 1;
}

.give-sponsor__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
}

.give-sponsor__panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(var(--content), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.give-sponsor__card {
  width: min(100%, 32rem);
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 18px;
  background: rgba(247, 243, 234, 0.94);
  box-shadow: 0 22px 50px rgba(18, 40, 32, 0.16);
}

.give-sponsor__card h2 {
  margin: 0.3rem 0 0.7rem;
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-wrap: balance;
}

.give-sponsor__card p:not(.eyebrow) {
  color: var(--body);
}

.give-sponsor__card .btn {
  margin-top: 1.2rem;
}

.give-org {
  padding: clamp(3.25rem, 8vw, 5.25rem) 0;
  background: var(--forest-deep);
  color: var(--gold);
  text-align: center;
}

.give-org h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 3rem);
  text-wrap: balance;
}

.give-org p {
  max-width: 36rem;
  margin: 0.8rem auto 0;
}

.give-org .btn {
  margin-top: 1.35rem;
}

@media (max-width: 860px) {
  .give-sponsor__bg {
    object-position: 18% center;
  }

  .give-sponsor__panel {
    justify-content: center;
  }
}

@media (min-width: 980px) {
  .give-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    align-items: start;
  }
}

/* Unterseiten */

.subpage {
  padding: calc(var(--header-h) + clamp(3rem, 8vw, 6rem)) 0 clamp(4rem, 10vw, 7rem);
  min-height: 70vh;
}

.subpage .eyebrow {
  margin-bottom: 0.8rem;
}

.subpage h1 {
  max-width: 16ch;
  margin-bottom: 1rem;
  color: var(--forest);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  text-wrap: balance;
}

.subpage .lede {
  max-width: 38rem;
  color: var(--body);
  font-size: 1.12rem;
}

.legal {
  max-width: 46rem;
}

.legal h2 {
  margin: 2.6rem 0 0.85rem;
  color: var(--forest);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
}

.legal h3 {
  margin: 1.55rem 0 0.35rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
}

.legal p,
.legal li {
  margin-top: 0.7rem;
  color: var(--body);
}

.legal ul,
.legal ol {
  margin: 0.35rem 0 0;
  padding-left: 1.2rem;
}

.legal ul {
  list-style: disc;
}

.legal ol {
  list-style: decimal;
}

.legal li ul {
  margin-top: 0.2rem;
}

.legal a {
  color: var(--forest);
  text-underline-offset: 0.16em;
}

.legal address {
  font-style: normal;
  line-height: 1.55;
}

.legal address a {
  display: block;
  width: fit-content;
}

.legal__org,
.legal__card address {
  margin-top: 1.1rem;
  color: var(--body);
}

.legal__org strong,
.legal__card strong {
  color: var(--forest);
  font-weight: 600;
}

.legal__people {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.legal__card {
  padding: 1.15rem 1.2rem 1.25rem;
  background: var(--white);
  border-radius: 16px;
}

.legal__card h3,
.legal__card address {
  margin-top: 0;
}

.legal__facts {
  display: grid;
  gap: 0.7rem 1.25rem;
  margin-top: 0.9rem;
}

.legal__facts dt {
  font-weight: 600;
  color: var(--forest);
}

.legal__facts dd {
  margin: 0;
  color: var(--body);
}

.legal__credit {
  color: var(--forest-mid);
  font-size: 0.92rem;
}

@media (min-width: 640px) {
  .legal__facts {
    grid-template-columns: minmax(12rem, 16.5rem) 1fr;
    align-items: baseline;
  }
}

@media (min-width: 720px) {
  .legal__people {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 800px) {
  .footer__grid {
    grid-template-columns: 1.2fr 0.75fr 1fr;
    gap: 2rem 3rem;
    align-items: start;
  }
}

@media (min-width: 860px) {
  .focus__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .focus__photos {
    margin-inline: 0;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .header__panel,
  .header__panel.is-open {
    display: contents;
  }

  .nav {
    justify-self: center;
  }

  .nav__links {
    flex-direction: row;
    align-items: center;
    gap: clamp(1.35rem, 2.6vw, 2.8rem);
  }

  .nav__links a {
    padding: 0.4rem 0;
    font-size: 1.05rem;
  }

  .header__actions {
    justify-self: end;
    flex-direction: row;
    align-items: center;
    gap: 1.05rem;
  }

  .header__actions .btn {
    width: auto;
    min-height: 3rem;
    padding-inline: 1.3rem;
  }

  .header__actions {
    padding-right: max(0px, 5.75rem - max(var(--gutter), (100vw - var(--content)) / 2));
  }

  .header__lang {
    position: absolute;
    top: 0;
    right: 1.35rem;
    height: var(--header-h);
    margin: 0;
  }
}

@media (max-width: 719px) {
  .footer__hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__hero h2 {
    max-width: none;
  }
}

/* Einblendung: Unschärfe-Vorhang nach oben, Bild zoomt auf Endmaß, Text folgt. */

@media (prefers-reduced-motion: no-preference) {
  html.js .why__reel {
    height: 17.5rem;
    overflow: hidden;
    mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  }

  html.js .why__track {
    display: flex;
    flex-direction: column;
    animation: why-rise 32s linear infinite;
  }

  html.js .why__track .why__list {
    padding-bottom: 0.95rem;
  }

  html.js .why__reel:hover .why__track,
  html.js .why__reel:focus-within .why__track {
    animation-play-state: paused;
  }
}

@keyframes why-rise {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.js .focus__frame::after,
  html.js .pillar::before,
  html.js .why__figure::after,
  html.js .donate::after,
  html.js .lead__figure::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(243, 239, 228, 0.34);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateY(0);
    pointer-events: none;
  }

  html.js .why__figure {
    overflow: hidden;
    border-radius: 16px;
  }

  html.js .focus__frame img,
  html.js .why__figure img,
  html.js .donate__bg,
  html.js .lead__figure img {
    transform: scale(1.18);
  }

  html.js .pillar {
    transform: scale(1.08);
  }

  html.js .focus__photos.is-in .focus__frame::after,
  html.js .pillar.is-in::before,
  html.js .why__figure.is-in::after,
  html.js .donate.is-in::after,
  html.js .lead__figure.is-in::after {
    transform: translateY(-105%);
    visibility: hidden;
  }

  html.js .focus__photos.is-in .focus__frame img,
  html.js .pillar.is-in,
  html.js .why__figure.is-in img,
  html.js .donate.is-in .donate__bg,
  html.js .lead__figure.is-in img {
    transform: none;
  }

  html.js .focus__frame img,
  html.js .why__figure img,
  html.js .donate__bg,
  html.js .lead__figure img {
    transition: transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal, 0s);
  }

  html.js .focus__frame--secondary img {
    transition-delay: 0.16s;
  }

  html.js .focus__frame::after,
  html.js .why__figure::after,
  html.js .donate::after,
  html.js .lead__figure::after {
    transition:
      transform 1.12s cubic-bezier(0.33, 0, 0.2, 1) var(--reveal, 0s),
      visibility 0s linear calc(var(--reveal, 0s) + 1.12s);
  }

  html.js .focus__frame--secondary::after {
    transition:
      transform 1.12s cubic-bezier(0.33, 0, 0.2, 1) 0.16s,
      visibility 0s linear 1.28s;
  }

  html.js .pillar {
    transition: transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal, 0s);
  }

  html.js .pillar::before {
    transition:
      transform 1.12s cubic-bezier(0.33, 0, 0.2, 1) var(--reveal, 0s),
      visibility 0s linear calc(var(--reveal, 0s) + 1.12s);
  }

  html.js .focus__copy > *,
  html.js .pillars__head > *,
  html.js .pillar__icon,
  html.js .pillar__copy > *,
  html.js .donate__kicker,
  html.js .donate h2,
  html.js .donate__card,
  html.js .why__copy > *,
  html.js .why__stat,
  html.js .why__reel,
  html.js .leads__head > *,
  html.js .lead__name,
  html.js .origin__copy > *,
  html.js .origin__figure,
  html.js .press__head > * {
    opacity: 0;
    transform: translateY(1.35rem);
  }

  html.js .focus__copy.is-in > *,
  html.js .pillars__head.is-in > *,
  html.js .pillar.is-in .pillar__icon,
  html.js .pillar.is-in .pillar__copy > *,
  html.js .donate.is-in .donate__kicker,
  html.js .donate.is-in h2,
  html.js .donate.is-in .donate__card,
  html.js .why__copy.is-in > *,
  html.js .why__figure.is-in .why__stat,
  html.js .why__reel.is-in,
  html.js .leads__head.is-in > *,
  html.js .lead__name.is-in,
  html.js .origin__copy.is-in > *,
  html.js .origin__figure.is-in,
  html.js .press__head.is-in > * {
    animation: reveal-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  html.js .focus__copy.is-in > :nth-child(1),
  html.js .pillars__head.is-in > :nth-child(1),
  html.js .why__copy.is-in > :nth-child(1) {
    animation-delay: 0.08s;
  }

  html.js .focus__copy.is-in > :nth-child(2),
  html.js .pillars__head.is-in > :nth-child(2),
  html.js .why__copy.is-in > :nth-child(2) {
    animation-delay: 0.18s;
  }

  html.js .donate.is-in .donate__kicker {
    animation-delay: 0.18s;
  }

  html.js .donate.is-in h2 {
    animation-delay: 0.3s;
  }

  html.js .donate.is-in .donate__card {
    animation-delay: 0.44s;
  }

  html.js .why__figure.is-in .why__stat {
    animation-delay: 0.28s;
  }

  html.js .why__reel.is-in {
    animation-delay: 0.16s;
  }

  html.js .leads__head.is-in > :nth-child(1),
  html.js .press__head.is-in > :nth-child(1) {
    animation-delay: 0.08s;
  }

  html.js .leads__head.is-in > :nth-child(2),
  html.js .press__head.is-in > :nth-child(2) {
    animation-delay: 0.18s;
  }

  html.js .lead__name.is-in {
    animation-delay: var(--reveal, 0s);
  }

  html.js .focus__copy.is-in > :nth-child(3) {
    animation-delay: 0.28s;
  }

  html.js .focus__copy.is-in > :nth-child(4) {
    animation-delay: 0.38s;
  }

  html.js .focus__copy.is-in > :nth-child(5) {
    animation-delay: 0.48s;
  }

  html.js .pillar.is-in .pillar__icon {
    animation-delay: calc(var(--reveal, 0s) + 0.22s);
  }

  html.js .pillar.is-in h3 {
    animation-delay: calc(var(--reveal, 0s) + 0.32s);
  }

  html.js .pillar.is-in p {
    animation-delay: calc(var(--reveal, 0s) + 0.42s);
  }

  html.js .pillar.is-in a {
    animation-delay: calc(var(--reveal, 0s) + 0.5s);
  }
}

@keyframes reveal-rise {
  from {
    opacity: 0;
    transform: translateY(1.35rem);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

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

  .partners__list {
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 1.25rem;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
