/* Local fonts (no Google Fonts CDN) */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/open-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/open-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-600-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-700-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("../fonts/caveat-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("../fonts/caveat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --brand: #bd1220;
  --brand-hover: #a01723;
  --ink: #2a2a2e;
  --ink-muted: #5c5c63;
  --surface: #ffffff;
  --surface-alt: #f7f7f8;
  --border: #e4e4e7;
  --font-heading: "Poppins", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
  --font-hand: "Caveat", "Segoe Script", "Bradley Hand", cursive;
  --radius: 4px;
  --space-section: clamp(3.5rem, 6vw, 6rem);
  --content-max: 72rem;
  --nav-z: 50;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-ui: 200ms;
  --pad-x: 1rem;
  --header-h: 4.6rem;
}

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

html {
  scroll-behavior: smooth;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--brand-hover);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1rem;
}

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

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

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

h1,
h2,
h3,
.brand-wordmark {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.section-lead {
  max-width: 38rem;
  font-size: 1.0625rem;
}

h1.team-lead,
h2.team-lead,
.team-lead {
  font-family: var(--font-hand);
  font-size: clamp(2.05rem, 4.4vw, 3.15rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.01em;
  color: var(--ink);
  max-width: 46rem;
  margin-bottom: 0.35rem;
}

.team-sub {
  font-family: var(--font-hand);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--ink-muted);
  max-width: 44rem;
  margin: 0 0 2.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--nav-z);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  width: clamp(7.75rem, 28vw, 10.5rem);
  height: auto;
}

.logo--footer {
  display: inline-flex;
  margin-bottom: 0.85rem;
}

.logo--footer img {
  width: clamp(8.5rem, 34vw, 11.25rem);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.nav-toggle[aria-expanded="true"] {
  border-color: var(--brand);
  color: var(--brand);
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem var(--pad-x) 1.25rem;
}

.site-nav.is-open {
  display: block;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}

.site-nav__list a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0.25rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.site-nav__list a:hover {
  color: var(--brand);
}

.nav-ctas {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  :root {
    --pad-x: 1.5rem;
  }
}

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

  .site-nav {
    display: flex !important;
    position: static;
    border: 0;
    padding: 0;
    background: transparent;
    align-items: center;
    gap: 1.25rem;
  }

  .site-nav__list {
    display: flex;
    align-items: center;
    gap: 0.15rem 1.1rem;
  }

  .site-nav__list a {
    min-height: auto;
    padding: 0.35rem 0;
    font-size: 0.95rem;
  }

  .nav-ctas {
    display: flex;
    margin: 0;
    padding: 0;
    border: 0;
    gap: 0.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --pad-x: 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--duration-ui) var(--ease-out),
    color var(--duration-ui) var(--ease-out),
    border-color var(--duration-ui) var(--ease-out),
    transform var(--duration-ui) var(--ease-out);
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brand-hover);
  color: #fff;
}

.btn--ghost {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--ink);
  border-color: var(--border);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn--soft {
  background: color-mix(in srgb, var(--brand) 8%, var(--surface));
  color: var(--brand);
  border-color: color-mix(in srgb, var(--brand) 22%, var(--border));
}

.btn--soft:hover {
  background: color-mix(in srgb, var(--brand) 14%, var(--surface));
  color: var(--brand-hover);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Hero — angled split: solid copy plane + vivid photo (one composition) */
.hero {
  --hero-surface: #f3f5f7;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--hero-surface);
  overflow: hidden;
}

.hero__media {
  position: relative;
  z-index: 0;
  margin: 0;
  min-height: clamp(16.5rem, 58vw, 24rem);
  overflow: hidden;
}

.hero__media picture {
  display: block;
  position: absolute;
  inset: 0;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 68% 40%;
  transform: scale(1.03);
  animation: hero-zoom 1.35s var(--ease-out) both;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: min(100% - (var(--pad-x) * 2), 36rem);
  margin-inline: auto;
  padding: 1.85rem 0 2.6rem;
}

.hero__copy h1 {
  color: var(--ink);
  font-size: clamp(2.15rem, 6.2vw, 3.15rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 1.35rem;
  color: var(--ink-muted);
  max-width: 32rem;
}

@keyframes hero-zoom {
  from {
    opacity: 0.72;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.03);
  }
}

@media (min-width: 900px) {
  .hero {
    display: grid;
    /* Text etwas mehr Raum, Foto weiterhin dominant genug */
    grid-template-columns: minmax(24rem, 1.1fr) minmax(22rem, 0.95fr);
    min-height: min(90vh, 48rem);
    align-items: stretch;
  }

  .hero__media {
    grid-column: 2;
    grid-row: 1;
    min-height: 100%;
    /* Leichte Schräge nur am linken Fotorand */
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    filter: drop-shadow(-12px 0 22px rgba(42, 42, 46, 0.1));
  }

  .hero__media::before {
    display: none;
  }

  .hero__copy {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 5rem clamp(1.5rem, 3.2vw, 2.75rem) 5rem clamp(1.35rem, 5vw, 3.75rem);
    overflow: hidden;
  }

  .hero__copy h1,
  .hero__lead {
    max-width: 100%;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .hero__media img {
    object-position: 56% 42%;
  }

  .hero__copy h1 {
    font-size: clamp(2.55rem, 3.5vw, 3.4rem);
  }

  .hero .cta-row {
    gap: 0.6rem;
  }

  .hero .btn {
    padding-inline: 1rem;
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media img {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero__copy,
.reveal {
  animation: rise 0.7s var(--ease-out) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: var(--space-section) 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section__head {
  margin-bottom: 2.25rem;
}

.feature-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem 2rem;
  }
}

.feature {
  margin: 0;
}

.feature__media {
  margin: 0 0 1rem;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  aspect-ratio: 4 / 3;
  background: var(--surface-alt);
}

.media-figure {
  position: relative;
}

.media-figure__label {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.3rem;
  max-width: calc(100% - 0.9rem);
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.media-figure__badge,
.media-figure__copyright {
  display: inline-block;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: rgba(42, 42, 46, 0.78);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}

.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}

.feature:hover .feature__media img {
  transform: scale(1.03);
}

.feature h3 {
  margin-top: 0;
}

.feature p {
  margin-bottom: 0;
}

.why-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.why-split__media {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  aspect-ratio: 1 / 1;
  background: var(--surface);
}

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

@media (min-width: 900px) {
  .why-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.usp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .usp-list {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
}

.usp-list li {
  padding: 0;
}

.usp-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.usp-list p {
  margin: 0;
}

.locations {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .locations {
    grid-template-columns: repeat(3, 1fr);
  }
}

.location__label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.location h3 {
  color: var(--brand);
}

.location p {
  margin: 0 0 0.35rem;
}

.location address {
  font-style: normal;
  margin: 0 0 0.35rem;
}

.location a {
  font-weight: 600;
  text-decoration: none;
}

.team-group + .team-group {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.team-group > h3 {
  margin: 0 0 1.15rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.team-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-grid article {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.team-grid h4 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand);
}

.team-grid p {
  margin: 0;
  color: var(--ink-muted);
}

.team-grid a {
  font-weight: 400;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--ink-muted);
}

.team-grid a:hover {
  color: var(--ink);
}

/* Referenzen logo marquee */
.refs {
  margin-top: 0.5rem;
}

.refs__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.refs__track {
  display: flex;
  width: max-content;
  animation: refs-scroll 90s linear infinite;
}

.refs__track:hover {
  animation-play-state: paused;
}

.refs__group {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 3rem);
  margin: 0;
  padding: 0.75rem 1.5rem;
  list-style: none;
}

.refs__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 4.75rem;
  min-width: 7rem;
  padding: 0.35rem 0.6rem;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity var(--duration-ui) var(--ease-out);
}

.refs__link:hover,
.refs__link:focus-visible {
  opacity: 1;
}

.refs__link img {
  display: block;
  width: auto;
  height: auto;
  max-width: 9.5rem;
  max-height: 3.4rem;
  object-fit: contain;
}

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

@media (prefers-reduced-motion: reduce) {
  .refs__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    margin-inline: auto;
    justify-content: center;
  }

  .refs__group:last-child {
    display: none;
  }

  .refs__group {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1rem;
  }
}

.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.partners__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6.5rem;
  padding: 0.5rem;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity var(--duration-ui) var(--ease-out);
}

.partners__link:hover,
.partners__link:focus-visible {
  opacity: 1;
}

.partners__link img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 5.25rem;
  object-fit: contain;
}

.contact-band {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 92%, #000) 0%, var(--brand) 55%, #c42330 100%);
  color: #fff;
}

.contact-band h2,
.contact-band p,
.contact-band .hours {
  color: #fff;
}

.contact-band p {
  opacity: 0.92;
}

.contact-band .btn--primary,
.contact-band .btn--ghost,
.contact-band .btn--soft {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}

.contact-band .btn--primary:hover,
.contact-band .btn--ghost:hover,
.contact-band .btn--soft:hover {
  background: #f3f3f3;
  color: var(--brand-hover);
  border-color: #f3f3f3;
}

.hours {
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

.contact-band .locations {
  margin-top: 2.25rem;
}

.contact-band .location__label {
  color: rgba(255, 255, 255, 0.72);
}

.contact-band .location h3 {
  color: #fff;
}

.contact-band .location a {
  color: #fff;
}

.contact-band .location a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.site-footer__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 0.65rem;
}

.site-footer p,
.site-footer li {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0.35rem;
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--brand);
}

.site-footer__meta {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* Compact legal header */
.site-header--simple .site-nav {
  display: flex;
  position: static;
  border: 0;
  padding: 0;
  background: transparent;
}

.site-header--simple .site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.site-header--simple .nav-toggle,
.site-header--simple .nav-ctas {
  display: none;
}

/* Legal pages */
.page-hero {
  padding: 4.5rem 0 2rem;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.prose {
  padding: 2.5rem 0 4rem;
  max-width: 48rem;
}

.prose h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.prose p,
.prose li {
  color: var(--ink-muted);
}

.prose ul {
  padding-left: 1.2rem;
}

.prose a {
  font-weight: 600;
}

/* Homepage: one full viewport per row, snap on scroll */
html:has(body.page-home) {
  scroll-snap-type: y mandatory;
  scroll-padding: 0;
}

.page-home .site-header {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.page-home .hero,
.page-home .why-screen,
.page-home .section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.page-home .hero,
.page-home .why-screen {
  min-height: 100svh;
  height: 100svh;
  height: 100dvh;
}

.page-home .hero__copy {
  padding-top: calc(var(--header-h) + 1.1rem);
}

.page-home .feature-screen__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.page-home .section {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  min-height: 100dvh;
  padding-top: calc(var(--header-h) + 1.35rem);
  padding-bottom: 1.75rem;
}

.page-home .feature-pair .section__head {
  margin-bottom: 1.15rem;
}

.page-home .feature-pair .feature {
  display: grid;
  grid-template-columns: min(100%, calc(min(20rem, 34vh) * 16 / 10));
}

.page-home .feature-pair .feature__media {
  aspect-ratio: 16 / 10;
  max-height: min(20rem, 34vh);
  width: 100%;
}

.page-home .feature-pair .feature h3 {
  font-size: 1.08rem;
}

.page-home .why-screen {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: var(--surface);
}

.page-home .why-screen__copy {
  position: relative;
  z-index: 2;
  width: min(100% - (var(--pad-x) * 2), 36rem);
  margin-inline: auto;
  padding: calc(var(--header-h) + 1.15rem) 0 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-home .why-screen__copy .section__head {
  margin-bottom: 1.35rem;
}

.page-home .why-screen__media {
  position: relative;
  z-index: 0;
  margin: 0;
  min-height: 0;
  overflow: hidden;
}

.page-home .why-screen__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 42% 48%;
}

.page-home .team-group + .team-group {
  margin-top: 1.15rem;
  padding-top: 1rem;
}

.page-home .team-grid {
  gap: 0.85rem 1.25rem;
}

.page-home #referenzen {
  justify-content: stretch;
}

.page-home #referenzen > .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(3.5rem, 10vh, 6rem);
  flex: 1;
  min-height: 0;
}

.page-home .partner-block .section__head {
  margin-bottom: 0.85rem;
}

.page-home .refs-block {
  margin-top: 0;
}

.page-home .refs-block .section__head {
  margin-bottom: 0.75rem;
}

.page-home .partners {
  gap: clamp(0.25rem, 1vw, 0.85rem);
}

.page-home .partners__link {
  min-height: 3.75rem;
}

.page-home .partners__link img {
  max-height: 2.85rem;
}

.page-home #kontakt .section-lead {
  max-width: none;
}

.page-home #kontakt > .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-height: 0;
}

.page-home #kontakt .locations {
  margin-top: 1.35rem;
}

.page-home #kontakt .site-footer {
  margin-top: auto;
  width: 100%;
  padding: 1.35rem 0 1.15rem;
  border-top: 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 92%, #000) 0%, var(--brand) 55%, #c42330 100%);
  color: #fff;
}

.page-home #kontakt .logo--footer {
  background: #fff;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
}

.page-home #kontakt .logo--footer img {
  width: clamp(7rem, 22vw, 8.75rem);
}

.page-home #kontakt .site-footer h2,
.page-home #kontakt .site-footer p,
.page-home #kontakt .site-footer li,
.page-home #kontakt .site-footer a,
.page-home #kontakt .site-footer__meta {
  color: #fff;
}

.page-home #kontakt .site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.page-home #kontakt .site-footer__meta {
  border-top-color: rgba(255, 255, 255, 0.28);
  margin-top: 1.15rem;
  padding-top: 0.75rem;
}

@media (max-width: 899px) {
  .page-home .hero {
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .page-home .hero__media {
    min-height: 0;
  }

  .page-home .hero__copy {
    width: min(100% - (var(--pad-x) * 2), 36rem);
    padding-top: 1.35rem;
    padding-bottom: 1.75rem;
  }

  .page-home .why-screen {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .page-home .why-screen__media {
    min-height: 38vh;
  }
}

@media (min-width: 900px) {
  .page-home .hero {
    min-height: 100dvh;
    height: 100dvh;
  }

  .page-home .hero__copy {
    padding-top: calc(var(--header-h) + 2.5rem);
    padding-bottom: 3.5rem;
  }

  .page-home .why-screen {
    grid-template-columns: minmax(22rem, 0.85fr) minmax(26rem, 1.25fr);
    align-items: stretch;
  }

  .page-home .why-screen__copy {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: calc(var(--header-h) + 2.25rem) clamp(1.5rem, 4vw, 3.5rem) 3rem clamp(1.35rem, 5vw, 3.75rem);
  }

  .page-home .why-screen__media {
    min-height: 100%;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    filter: drop-shadow(-12px 0 22px rgba(42, 42, 46, 0.1));
  }
}

@media (max-width: 767px) {
  html:has(body.page-home) {
    scroll-snap-type: y proximity;
  }

  .page-home .hero,
  .page-home .why-screen {
    height: auto;
    min-height: 100svh;
  }

  .page-home .why-screen {
    grid-template-rows: auto minmax(16rem, 42vh);
  }

  .page-home .section {
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:has(body.page-home) {
    scroll-snap-type: y proximity;
  }
}

@media print {
  html:has(body.page-home) {
    scroll-snap-type: none;
  }

  .page-home .site-header {
    position: static;
  }

  .page-home .hero,
  .page-home .why-screen,
  .page-home .section {
    height: auto;
    min-height: 0;
    overflow: visible;
  }
}
