:root {
  --bg: #d7d7d0;
  --panel: rgba(255, 255, 255, 0.68);
  --panel-strong: rgba(255, 255, 255, 0.86);
  --text: #171717;
  --muted: rgba(23, 23, 23, 0.7);
  --border: rgba(0, 0, 0, 0.12);
  --shadow: 0 22px 60px rgba(34, 34, 34, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 999px;
  --content-width: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(236, 236, 231, 0.35), rgba(215, 215, 208, 0.75)),
    url("/tilda/images/tild6636-3133-4133-b037-623538633363__bildschirmfoto_2025-.png")
      center / cover no-repeat;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.08), transparent 26%);
  z-index: -1;
  pointer-events: none;
}

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

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

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

button {
  font: inherit;
}

.page-shell {
  width: var(--content-width);
  margin: 0 auto;
  padding: 40px 0 56px;
}

.hero {
  display: grid;
  gap: 26px;
  justify-items: center;
  padding: 8px 0 24px;
}

.hero__brand {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero__logo {
  width: min(440px, 86vw);
  height: auto;
}

.link-pills,
.socials,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.link-pills a,
.socials a,
.support-actions__link {
  border: 1px solid var(--border);
  background: var(--panel-strong);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.link-pills a,
.support-actions__link {
  padding: 14px 24px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  position: relative;
}

.socials__icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: currentColor;
}

.link-pills a:hover,
.socials a:hover,
.support-actions__link:hover,
.link-pills a:focus-visible,
.socials a:focus-visible,
.support-actions__link:focus-visible {
  transform: translateY(-2px);
  background: #111;
  border-color: #111;
  color: #fff;
  outline: none;
}

.content-stack {
  display: grid;
  gap: 28px;
}

.gallery-card,
.bio-card,
.support-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 28px;
}

.gallery-card {
  padding-top: 22px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 5.1rem);
}

h2 {
  font-size: clamp(1.7rem, 5vw, 2.8rem);
  margin-bottom: 18px;
}

.slider {
  display: grid;
  gap: 18px;
}

.slider__viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.55);
  min-height: 340px;
}

.slider__slide {
  display: none;
  margin: 0;
}

.slider__slide.is-active {
  display: block;
  animation: fade-in 280ms ease;
}

.slider__slide img {
  width: 100%;
  aspect-ratio: 43 / 27.5;
  object-fit: cover;
}

.slider__controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.slider__arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.slider__arrow:hover,
.slider__arrow:focus-visible {
  transform: translateY(-1px);
  background: #111;
  border-color: #111;
  color: #fff;
  outline: none;
}

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.slider__dot.is-active {
  background: #111;
  transform: scale(1.12);
}

.bio-copy {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.bio-copy p,
.footer__copyright {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.footer {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding-top: 28px;
  text-align: center;
}

.footer__contact {
  font-size: 0.98rem;
  font-weight: 700;
}

.footer__line {
  width: min(520px, 80vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.45), transparent);
}

.footer__copyright {
  color: var(--muted);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100vw - 24px, 1120px);
    padding: 24px 0 40px;
  }

  .hero {
    gap: 18px;
    padding-bottom: 18px;
  }

  .gallery-card,
  .bio-card,
  .support-card {
    padding: 20px;
    border-radius: 24px;
  }

  .content-stack {
    gap: 20px;
  }

  .slider__viewport {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  body::before {
    background:
      linear-gradient(180deg, rgba(236, 236, 231, 0.35), rgba(215, 215, 208, 0.78)),
      url("/tilda/images/tild6636-3133-4133-b037-623538633363__bildschirmfoto_2025-.png")
        58% center / cover no-repeat;
  }

  .page-shell {
    width: min(100vw - 16px, 1120px);
    padding: 16px 0 32px;
  }

  .link-pills,
  .support-actions {
    gap: 10px;
  }

  .link-pills a,
  .support-actions__link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .socials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 250px;
  }

  .socials a {
    width: 100%;
    height: 52px;
  }

  .section-heading,
  .bio-card,
  .support-card {
    text-align: center;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  h2 {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
    margin-bottom: 14px;
  }

  .gallery-card,
  .bio-card,
  .support-card {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .slider {
    gap: 14px;
  }

  .slider__viewport {
    min-height: 220px;
    border-radius: 18px;
  }

  .slider__controls {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .slider__arrow {
    display: none;
  }

  .bio-copy {
    gap: 12px;
    max-width: none;
  }

  .bio-copy p,
  .footer__copyright {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .footer {
    gap: 14px;
    padding-top: 22px;
  }
}

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

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