/* ═══════════════════════════════════════════════
   PERIMETER — Architektur & Planung
   Farben: #F2F1EC · #D9D6D1 · #6B6F72 · #111111
   ═══════════════════════════════════════════════ */

:root {
  --bg: #F2F1EC;
  --bg-2: #D9D6D1;
  --gray: #6B6F72;
  --ink: #111111;
  --white: #F5F4F0;
  --pad: clamp(20px, 4vw, 64px);
  --font: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: auto;
  /* Kein seitliches Wackeln, egal was intern übersteht */
  overflow-x: clip;
}
@media (min-width: 901px) {
  html {
    /* Scrollbar-Platz reservieren — verhindert den Layout-Sprung,
       wenn nach der Intro der Scrollbalken erscheint (nur Desktop) */
    scrollbar-gutter: stable;
  }
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

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

/* Keine blauen Klick-/Fokus-Markierungen des Browsers */
* { -webkit-tap-highlight-color: transparent; }
a, button {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }
a:focus-visible,
button:focus-visible { outline: 1.5px solid var(--ink); outline-offset: 4px; }

/* Systemcursor ausblenden — das Fadenkreuz übernimmt (nur bei Maus-Geräten) */
@media (hover: hover) {
  body, a, button, input, textarea, select, label, [data-cursor] {
    cursor: none;
  }
}

/* ═══════════ INTRO ═══════════ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.intro__shade {
  /* Leichte Abdunklung über dem Video für Lesbarkeit — kein schwarzer Hintergrund */
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, .32);
}
.intro__logo {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.4vw, 18px);
  color: var(--white);
  opacity: 0;
  will-change: transform;
}
.intro__wordmark {
  font-size: clamp(34px, 6.5vw, 92px);
  font-weight: 400;
  letter-spacing: .38em;
  margin-right: -.38em; /* Tracking optisch zentrieren */
  white-space: nowrap;
}
.intro__sub {
  font-size: clamp(10px, 1.05vw, 15px);
  font-weight: 300;
  letter-spacing: .46em;
  margin-right: -.46em;
  white-space: nowrap;
  opacity: .85;
}
.intro__wordmark { will-change: transform; }

/* ═══════════ CURSOR — Fadenkreuz mit Quadrat ═══════════
   Weiss + mix-blend difference: invertiert sich automatisch
   gegen jeden Hintergrund und bleibt immer sichtbar. */
.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 200;
  width: 22px; height: 22px;
  color: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  will-change: transform; /* GPU-Compositing statt Layout pro Frame */
  transition: width .35s var(--ease), height .35s var(--ease);
  opacity: 0;
}
.cursor::before,
.cursor::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .25s;
}
.cursor::before { width: 100%; height: 1.5px; }
.cursor::after { width: 1.5px; height: 100%; }
.cursor__box {
  /* kleines Quadrat in der Mitte */
  position: absolute;
  width: 7px; height: 7px;
  border: 1.5px solid currentColor;
  transition: transform .35s var(--ease), opacity .25s;
}
body.cursor-on .cursor { opacity: 1; }
/* Über Links: Kreuz dreht sich zum × */
.cursor.is-link::before,
.cursor.is-link::after { transform: rotate(45deg); }
.cursor.is-link .cursor__box { transform: rotate(45deg); }
/* Projektkacheln: Kreis mit Label */
.cursor.is-label {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  mix-blend-mode: normal;
}
.cursor.is-label::before,
.cursor.is-label::after { opacity: 0; }
.cursor.is-label .cursor__box { opacity: 0; }
.cursor__label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .25s;
}
.cursor.is-label .cursor__label { opacity: 1; }
@media (hover: none) { .cursor { display: none; } }

/* ═══════════ HEADER ═══════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(18px, 2.4vw, 30px) var(--pad);
  color: var(--white);
  transition: color .5s, background-color .5s, padding .5s;
}
.header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(242, 241, 236, .88);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.header.is-solid { color: var(--ink); }
.header.is-solid::after { opacity: 1; }
.header > * { position: relative; z-index: 1; }

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  flex: 1;
}
.header__nav--right { justify-content: flex-end; }
.header__link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.header__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.header__link:hover::after { transform: scaleX(1); transform-origin: left; }

.header__logo {
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 400;
  letter-spacing: .38em;
  margin-right: -.38em;
  white-space: nowrap;
  opacity: 0; /* wird nach der Intro eingeblendet */
}
/* ═══════════ FLOW BUTTON ═══════════
   Kreis expandiert aus der Mitte, Pfeile gleiten ein/aus,
   Pill → 12px Radius. Farben über Variablen kontextabhängig. */
.flow-btn {
  --fb-ink: var(--ink);          /* Text/Border/Kreis im Ruhezustand */
  --fb-hover-text: var(--bg);    /* Textfarbe, wenn der Kreis füllt */
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  border: 1.5px solid color-mix(in srgb, var(--fb-ink) 40%, transparent);
  border-radius: 100px;
  background: transparent;
  padding: 12px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fb-ink);
  transition:
    border-color .6s cubic-bezier(.23, 1, .32, 1),
    color .6s cubic-bezier(.23, 1, .32, 1),
    border-radius .6s cubic-bezier(.23, 1, .32, 1),
    transform .25s var(--ease);
}
.flow-btn:hover {
  border-color: transparent;
  color: var(--fb-hover-text);
  border-radius: 12px;
}
.flow-btn:active { transform: scale(.95); }
.flow-btn__arr {
  position: absolute;
  z-index: 9;
  transition: left .8s cubic-bezier(.34, 1.56, .64, 1), right .8s cubic-bezier(.34, 1.56, .64, 1), stroke .6s;
}
.flow-btn__arr--left { left: -25%; }
.flow-btn:hover .flow-btn__arr--left { left: 16px; }
.flow-btn__arr--right { right: 16px; }
.flow-btn:hover .flow-btn__arr--right { right: -25%; }
.flow-btn__label {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: transform .8s ease-out;
}
.flow-btn:hover .flow-btn__label { transform: translateX(12px); }
.flow-btn__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--fb-ink);
  border-radius: 50%;
  opacity: 0;
  transition:
    width .8s cubic-bezier(.19, 1, .22, 1),
    height .8s cubic-bezier(.19, 1, .22, 1),
    opacity .8s cubic-bezier(.19, 1, .22, 1),
    background-color .6s;
}
.flow-btn:hover .flow-btn__circle {
  width: 1100px;
  height: 1100px;
  opacity: 1;
}

.header__cta {
  padding: 10px 22px;
  font-size: 11px;
  gap: 0;
}
/* Suchauftrag: Pfeil und Lupe im Textfluss — die Gruppe bleibt in beiden
   Zuständen (Ruhe und Hover) exakt zentriert. */
.header__cta .flow-btn__label { transform: none; }
.header__cta:hover .flow-btn__label { transform: none; }
.header__cta .flow-btn__arr--left {
  position: static;
  width: 0;
  margin-right: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: width .55s var(--ease), margin .55s var(--ease), opacity .4s, transform .8s cubic-bezier(.34, 1.56, .64, 1);
}
.header__cta:hover .flow-btn__arr--left {
  width: 15px;
  margin-right: 9px;
  opacity: 1;
  transform: none;
}
.header__cta .flow-btn__arr--right {
  position: static;
  width: 13px;
  margin-left: 9px;
  transition: width .55s var(--ease), margin .55s var(--ease), opacity .35s, transform .8s cubic-bezier(.34, 1.56, .64, 1);
}
.header__cta:hover .flow-btn__arr--right {
  width: 0;
  margin-left: 0;
  opacity: 0;
  transform: translateX(14px);
}
/* Über dem Video: helle Variante */
.header:not(.is-solid) .header__cta {
  --fb-ink: var(--white);
  --fb-hover-text: var(--ink);
}

.header__burger {
  display: none;
  background: none;
  border: 0;
  width: 34px; height: 22px;
  position: relative;
  z-index: 2;
  color: inherit; /* folgt dem Header: weiss über dem Hero, schwarz danach */
}
.header__burger span {
  position: absolute;
  left: 0;
  width: 100%; height: 1.5px;
  background: currentColor;
  transition: transform .4s var(--ease), top .4s var(--ease), background-color .5s;
}
.header__burger span:first-child { top: 5px; }
.header__burger span:last-child { top: 15px; }
body.menu-open .header__burger span:first-child { top: 10px; transform: rotate(45deg); }
body.menu-open .header__burger span:last-child { top: 10px; transform: rotate(-45deg); }

/* ═══════════ MOBILE MENU ═══════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--bg);
  display: grid;
  place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease);
}
body.menu-open .mobile-menu { clip-path: inset(0 0 0 0); }
/* Header über dem hellen Menü: dunkle Schrift */
body.menu-open .header { color: var(--ink); }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  text-align: center;
}
.mobile-menu nav a {
  color: var(--ink);
  font-size: clamp(30px, 8.5vw, 46px);
  font-weight: 300;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mobile-menu__meta {
  position: absolute;
  left: 0; right: 0; bottom: max(28px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 300;
}
.mobile-menu__meta a { color: var(--ink); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  will-change: transform;
  overflow: hidden;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}
/* Nativen Play-Button des Mobilbrowsers ausblenden */
.hero__video::-webkit-media-controls,
.hero__video::-webkit-media-controls-start-playback-button,
.hero__video::-webkit-media-controls-overlay-play-button,
.hero__video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
  appearance: none;
  opacity: 0;
  pointer-events: none;
}
/* Konturlinien über dem Gebäude (zeichnen sich nach Videoende) */
.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.06); /* identisch zu .hero__video, damit die Linien deckungsgleich bleiben */
  pointer-events: none;
}
.hero-lines path {
  fill: none;
  stroke: rgba(255, 255, 255, .92);
  stroke-width: 1.6px;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.hero-lines .hair {
  stroke: rgba(255, 255, 255, .6);
  stroke-width: 1px;
}
.hero-lines text {
  font-family: var(--font);
  font-size: 15px;
  letter-spacing: .08em;
  fill: rgba(255, 255, 255, .85);
  opacity: 0;
}
.hero-lines.is-drawn path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.1s cubic-bezier(.6, .05, .2, 1);
  transition-delay: var(--d, 0s);
}
.hero-lines.is-drawn text {
  opacity: 1;
  transition: opacity .9s ease;
  transition-delay: 1.35s;
}
@media (prefers-reduced-motion: reduce) {
  .hero-lines.is-drawn path,
  .hero-lines.is-drawn text { transition: none; }
}

.hero__final {
  /* Foto-Schlussbild: blendet nach Videoende unmerklich ein */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2.4s ease-in-out;
  pointer-events: none;
}
.hero__final.is-visible { opacity: 1; }
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17,17,17,.28) 0%, rgba(17,17,17,0) 30%),
    linear-gradient(0deg, rgba(17,17,17,.3) 0%, rgba(17,17,17,0) 22%);
}
.hero__foot {
  position: absolute;
  left: var(--pad); right: var(--pad); bottom: clamp(22px, 3vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--white);
  z-index: 2;
  opacity: 0; /* wird nach der Intro eingeblendet */
}
.hero__tag {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: .9;
}

/* Zeilen-Reveal (Maske) */
.line {
  display: block;
  overflow: hidden;
}
.line > span {
  display: block;
  transform: translateY(115%);
  will-change: transform;
}

/* Link mit Pfeil */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding-bottom: 7px;
  position: relative;
}
.link-arrow::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  opacity: .6;
  transition: opacity .3s;
}
.link-arrow__icon { transition: transform .45s var(--ease); }
.link-arrow:hover .link-arrow__icon { transform: translateX(8px); }
.link-arrow:hover::after { opacity: 1; }
.link-arrow--dark { color: var(--ink); }

/* ═══════════ ABOUT ═══════════ */
.about {
  position: relative;
  background: var(--bg);
}
.about__sticky {
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.about__inner {
  width: 100%;
  padding: clamp(90px, 14vh, 160px) var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: clamp(28px, 4vh, 52px);
}
.about__title {
  /* yodezeen-Stil: fette Versalien, zentriert */
  font-size: clamp(34px, 4.6vw, 78px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.01em;
  text-transform: uppercase;
  text-align: center;
  max-width: 16em;
}
.about__title .word {
  display: inline-block;
  white-space: nowrap;
}
.about__title .l {
  display: inline-block;
  opacity: 0;
  will-change: opacity;
}
.about__quote {
  /* Umschliesst Zitat + Zuschreibung: der Name endet bündig mit dem Text */
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.about__attr {
  margin-top: clamp(22px, 3vh, 36px);
  text-align: right;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--gray);
  opacity: 0;
}

/* Generisches Reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  will-change: transform, opacity;
}

/* ═══════════ PROJEKTE ═══════════ */
.projects {
  padding: 0 clamp(12px, 1.4vw, 20px) clamp(70px, 9vw, 120px);
}
.projects__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(5px, .5vw, 8px);
}
.project {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9.6;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
}
.project__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 1s var(--ease);
  will-change: transform;
}
.project:hover .project__media img { transform: scale(1.06); }
.project__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(20px, 2.8vw, 42px);
  gap: 10px;
  background: linear-gradient(0deg, rgba(17,17,17,.5) 0%, rgba(17,17,17,0) 48%);
  color: var(--white);
  transition: background .5s;
}
.project:hover .project__overlay { background: linear-gradient(0deg, rgba(17,17,17,.6) 0%, rgba(17,17,17,.08) 60%); }
.project__name {
  font-size: clamp(19px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.project__meta {
  font-size: clamp(12.5px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.55;
  opacity: .88;
}
.project__arrow {
  margin-top: 8px;
  transition: transform .45s var(--ease);
}
.project:hover .project__arrow { transform: translateX(10px); }
.projects__more {
  display: flex;
  justify-content: flex-end;
  padding-top: clamp(44px, 6vw, 72px);
  padding-right: clamp(8px, 2vw, 44px);
}

/* ═══════════ LEISTUNGEN ═══════════ */
.services {
  position: relative;
  background: var(--bg);
  color: var(--ink);
  padding: clamp(110px, 16vw, 220px) var(--pad);
  overflow: hidden;
}
.services__label {
  /* Dezente Sektionsbezeichnung — zentriert, unterstrichen, ohne Pfeil */
  display: table;
  margin: 0 auto clamp(44px, 6vw, 80px);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(17, 17, 17, .5);
}
.service__link {
  display: block;
  color: inherit;
}
.services__list {
  position: relative;
  z-index: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.6vw, 22px);
}
.service {
  position: relative;
  text-align: center;
}
.service__name {
  font-size: clamp(24px, 3.4vw, 54px);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.12;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity .4s var(--ease);
}
.services__list:hover .service__name { opacity: .3; }
.services__list .service:hover .service__name { opacity: 1; }
.service__desc {
  /* Kleine Beschreibung — klappt unter dem Titel auf */
  max-width: 34em;
  margin: 0 auto;
  font-size: clamp(12.5px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  overflow: hidden;
  transition: max-height .55s var(--ease), opacity .5s var(--ease), transform .5s var(--ease), margin-top .55s var(--ease);
}
.service:hover .service__desc {
  max-height: 5em;
  opacity: 1;
  transform: translateY(0);
  margin-top: 14px;
}

/* ═══════════ KONTAKT ═══════════ */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(50px, 8vw, 140px);
  padding: clamp(80px, 11vw, 160px) var(--pad);
}
.contact__title {
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.015em;
  margin-bottom: clamp(22px, 3vw, 36px);
}
.contact__text {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
  max-width: 24em;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vh, 46px);
  padding-top: 8px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
.field { position: relative; }
.field input,
.field textarea {
  width: 100%;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--bg-2);
  padding: 22px 0 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  resize: none;
  transition: border-color .4s;
  border-radius: 0;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.field label {
  position: absolute;
  left: 0; top: 22px;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  pointer-events: none;
  transition: transform .35s var(--ease), font-size .35s, color .35s;
  transform-origin: left top;
}
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-20px);
  font-size: 11px;
  color: var(--ink);
}
.contact__submit {
  padding: 20px 32px;
  align-self: stretch;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(60px, 8vw, 110px) var(--pad) clamp(28px, 3vw, 44px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.3fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  padding-bottom: clamp(50px, 7vw, 90px);
  align-items: start; /* alle Spalten oben bündig */
}
.footer__logo {
  display: block;
  font-size: clamp(17px, 1.6vw, 21px);
  letter-spacing: .38em;
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(242, 241, 236, .55);
}
.footer__head {
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(242, 241, 236, .45);
  margin-bottom: 10px;
  line-height: 21px;  /* gleiche Höhe wie die Logo-Zeile — alle Spalten starten bündig */
}
.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6; /* einheitliche Zeilenhöhe in allen Spalten */
}
.footer__col p { line-height: 1.6; }
.footer__col a { line-height: 1.6; }
.footer__col a {
  position: relative;
  padding-bottom: 2px;
}
.footer__col a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.footer__col a:hover::after { transform: scaleX(1); transform-origin: left; }
.footer__bottom {
  border-top: 1px solid rgba(242, 241, 236, .14);
  padding-top: clamp(20px, 2.6vw, 32px);
  display: flex;
  justify-content: flex-end;
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(242, 241, 236, .5);
}

/* ═══════════ UNTERSEITE: LEISTUNGEN ═══════════ */
.header--page .header__logo { opacity: 1; }
.header--page .header__nav .header__link,
.header--page .header__cta,
.header--page .header__burger { opacity: 1; }

.page-sub { padding-top: clamp(120px, 16vh, 180px); }

.sp-intro {
  padding: 0 var(--pad) clamp(60px, 8vw, 100px);
  max-width: 1100px;
}
.sp-title {
  font-size: clamp(44px, 6.4vw, 96px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.sp-lead {
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 300;
  line-height: 1.7;
  max-width: 26em;
  margin-bottom: clamp(26px, 3vw, 42px);
}

/* Liste 01–05 */
.srv-rows {
  margin: 0 var(--pad) clamp(70px, 9vw, 120px);
  border-bottom: 1px solid var(--bg-2);
}
.srv-row {
  display: grid;
  grid-template-columns: 70px 1.2fr 1.6fr 40px;
  align-items: center;
  gap: clamp(16px, 3vw, 60px);
  padding: clamp(20px, 2.6vw, 34px) 0;
  border-top: 1px solid var(--bg-2);
  color: var(--ink);
  transition: padding-left .5s var(--ease);
}
.srv-row:hover { padding-left: 14px; }
.srv-row__num {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
}
.srv-row__name {
  font-size: clamp(19px, 1.9vw, 28px);
  font-weight: 400;
  letter-spacing: -.01em;
}
.srv-row__desc {
  font-size: clamp(12.5px, 1vw, 14.5px);
  font-weight: 300;
  color: var(--gray);
}
.srv-row__arrow {
  justify-self: end;
  transition: transform .45s var(--ease);
}
.srv-row:hover .srv-row__arrow { transform: translateX(8px); }

/* Bildbänder */
.band {
  /* Format folgt dem Bild — möglichst wenig Beschnitt */
  aspect-ratio: 2.5 / 1;
  max-height: 680px;
  overflow: hidden;
}
.band--low { aspect-ratio: auto; height: clamp(220px, 36vh, 420px); }
.band img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  will-change: transform;
}

/* Ansatz */
.approach {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  padding: clamp(80px, 11vw, 150px) var(--pad);
}
.approach__title {
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -.015em;
}
.approach__right {
  border-left: 1px solid var(--bg-2);
  padding-left: clamp(28px, 4vw, 60px);
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(22px, 3vw, 34px);
}
.approach__right p {
  font-size: clamp(13.5px, 1.05vw, 16px);
  font-weight: 300;
  line-height: 1.75;
  max-width: 30em;
}

/* Detail-Spalten */
.detail {
  padding: clamp(70px, 9vw, 130px) var(--pad);
  border-top: 1px solid var(--bg-2);
}
.detail__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(30px, 4vw, 50px);
}
.detail__item {
  scroll-margin-top: 130px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.detail__item .link-arrow { margin-top: auto; } /* alle „Mehr erfahren" auf gleicher Höhe */
.detail__num {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 12px;
}
.detail__name {
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 500;
  letter-spacing: -.01em;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--bg-2);
  min-height: 2.4em;
  align-self: stretch; /* Unterstreichung über volle Spaltenbreite */
}
.detail__text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 22px;
}
.detail__item .link-arrow { font-size: 10.5px; }

/* Kontakt-CTA */
.cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  padding: clamp(80px, 11vw, 150px) var(--pad);
  align-items: center;
}
.cta__title {
  font-size: clamp(30px, 3.8vw, 56px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -.015em;
}
.cta__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(22px, 3vw, 34px);
}
.cta__right p {
  font-size: clamp(13.5px, 1.05vw, 16px);
  font-weight: 300;
  line-height: 1.75;
  max-width: 28em;
}

/* ═══════════ PROJEKT-DETAILSEITE ═══════════ */
.pd-hero {
  position: relative;
  height: clamp(420px, 74vh, 780px);
  overflow: hidden;
}
.pd-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17,17,17,.55) 0%, rgba(17,17,17,0) 45%);
}
.pd-hero__text {
  position: absolute;
  left: var(--pad);
  bottom: clamp(24px, 3.4vw, 48px);
  color: var(--white);
}
.pd-hero__cat {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 10px;
}
.pd-hero__title {
  font-size: clamp(30px, 3.8vw, 58px);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.pd-hero__ort {
  font-size: clamp(13px, 1.05vw, 15.5px);
  font-weight: 300;
  opacity: .9;
}
.pd-hero__meta {
  position: absolute;
  right: var(--pad);
  bottom: clamp(24px, 3.4vw, 48px);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex;
  gap: 14px;
}
.pd-hero__sep { opacity: .5; }

.pd-info {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 110px);
  padding: clamp(60px, 8vw, 110px) var(--pad);
  max-width: 1500px;
}
.pd-info__title {
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -.01em;
  margin: clamp(18px, 2.4vh, 28px) 0 clamp(20px, 2.6vh, 30px);
  max-width: 18em;
}
.pd-info__text p {
  font-size: clamp(13px, 1.02vw, 15px);
  font-weight: 300;
  line-height: 1.75;
  max-width: 34em;
}
.pd-info__text p + p { margin-top: 1em; }
.pd-facts {
  align-self: start;
  padding-top: 6px;
}
.pd-facts__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--bg-2);
  font-size: 13px;
}
.pd-facts__row dt {
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 10.5px;
  padding-top: 2px;
}
.pd-facts__row dd { font-weight: 300; line-height: 1.6; }
.pd-facts__row--gap { margin-top: clamp(18px, 2.2vw, 28px); }

.pd-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.8vw, 26px);
  padding: 0 var(--pad);
  max-width: 1500px;
}
.pd-gallery__item { overflow: hidden; }
.pd-gallery__item--wide { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
.pd-gallery__item--half { aspect-ratio: 4 / 3; }
.pd-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.pd-gallery__item:hover img { transform: scale(1.03); }

.pd-more {
  padding: clamp(70px, 9vw, 120px) var(--pad) clamp(60px, 8vw, 100px);
}
.pd-more__title {
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 400;
  letter-spacing: -.01em;
  margin: 14px 0 clamp(26px, 3.4vw, 44px);
}
.pd-more__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.8vw, 26px);
}
.pd-mini { display: block; color: var(--ink); }
.pd-mini__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 12px;
}
.pd-mini__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.pd-mini:hover .pd-mini__media img { transform: scale(1.05); }
.pd-mini__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.pd-mini__name { display: block; font-size: 13.5px; font-weight: 500; }
.pd-mini__ort { display: block; font-size: 12px; font-weight: 300; color: var(--gray); margin-top: 3px; }
.pd-mini__row svg { flex: none; transition: transform .4s var(--ease); }
.pd-mini:hover .pd-mini__row svg { transform: translateX(6px); }

.pd-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  background: #EDEBE5;
  padding: clamp(60px, 8vw, 110px) var(--pad);
}
.pd-cta__title {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -.015em;
}

@media (max-width: 900px) {
  .pd-info { grid-template-columns: 1fr; }
  .pd-gallery__item--wide { aspect-ratio: 16 / 9; }
  .pd-more__row { grid-template-columns: 1fr 1fr; row-gap: 30px; }
}
@media (max-width: 560px) {
  .pd-gallery { grid-template-columns: 1fr; }
  .pd-gallery__item--half { grid-column: 1 / -1; }
  .pd-more__row { grid-template-columns: 1fr; }
}

/* ═══════════ UNTERSEITE: PROJEKTE ═══════════ */
.pr-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(30px, 5vw, 90px);
  padding: 0 var(--pad) clamp(40px, 5vw, 70px);
}
.pr-intro__title {
  font-size: clamp(34px, 4.4vw, 68px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.02em;
}
.pr-intro__lead {
  font-size: clamp(13px, 1.05vw, 15.5px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  max-width: 26em;
  padding-bottom: 6px;
}
.pr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.8vw, 28px);
  padding: 0 var(--pad);
}
.project--page {
  aspect-ratio: 4 / 3;
  clip-path: none; /* Reveal übernimmt page.js per Opacity */
  opacity: 0;
  transform: translateY(36px);
}
.project--page .project__overlay {
  background: linear-gradient(0deg, rgba(17,17,17,.55) 0%, rgba(17,17,17,0) 45%);
}
.project__cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 2px;
}
.pr-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: clamp(70px, 9vw, 130px) var(--pad);
}
.pr-cta__title {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -.015em;
}
@media (max-width: 900px) {
  .pr-intro { grid-template-columns: 1fr; align-items: start; }
  .pr-grid { grid-template-columns: 1fr; }
  .project--page { aspect-ratio: 4 / 3; }
}

/* ═══════════ LET'S TALK (Referenz: yodezeen.com/services) ═══════════ */
.talk {
  position: relative;
  min-height: clamp(520px, 92vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.talk__bg {
  /* Riesige Titel: Textfarbe mit 10% Deckkraft, leicht über den Rand hinaus */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(120px, 16.7vw, 240px);
  font-weight: 600;
  letter-spacing: -.048em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  opacity: .1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.talk__bg--left { left: clamp(-60px, -7vw, -30px); }
.talk__bg--right { right: clamp(-60px, -7vw, -30px); }
.talk__center {
  position: relative;
  z-index: 1;
  text-align: center;
}
.talk__title {
  font-size: clamp(30px, 3.55vw, 51px);
  font-weight: 700;
  line-height: .85;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.talk__btn {
  /* Pill wie bei yodezeen: Text links, Icon-Kreis rechts —
     beim Hover tauschen Text und Icon die Seiten */
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 30px;
  padding: 8px 8px 8px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.talk__btn-text {
  transition: transform .5s var(--ease);
}
.talk__btn-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  transition: transform .5s var(--ease);
}
/* Seitentausch: Werte werden von page.js aus den echten Breiten gesetzt */
.talk__btn:hover .talk__btn-text { transform: translateX(var(--swap-text, 36px)); }
.talk__btn:hover .talk__btn-icon { transform: translateX(var(--swap-icon, -132px)); }
@media (max-width: 700px) {
  /* Mobil wie bei yodezeen: „LET'S TALK" als eine zentrierte Zeile oben,
     Titel und Button darunter */
  .talk { min-height: 560px; }
  .talk__bg {
    top: 30%;
    font-size: 20vw;
    letter-spacing: -.04em;
  }
  .talk__bg--left {
    left: auto;
    right: 50%;
    padding-right: .12em;
  }
  .talk__bg--right {
    right: auto;
    left: 50%;
  }
  .talk__center { margin-top: clamp(120px, 28vh, 230px); }
}

/* ═══════════ UNTERSEITE: SUCHAUFTRAG ═══════════ */
.wz-hero {
  position: relative;
  padding: clamp(50px, 7vw, 90px) var(--pad) clamp(34px, 4vw, 54px);
  overflow: hidden;
}
.wz-hero__bg {
  /* Dezentes Architektur-Bild rechts, weich ausgeblendet */
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(52vw, 760px);
  background: url('../assets/img/hero-start.jpg') right center / cover no-repeat;
  opacity: .45;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
  pointer-events: none;
}
.wz-hero > * { position: relative; }
.wz-hero__title {
  font-size: clamp(38px, 4.8vw, 74px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: clamp(20px, 2.6vw, 32px);
}
.wz-hero__lead {
  font-size: clamp(13.5px, 1.05vw, 16px);
  font-weight: 300;
  line-height: 1.75;
  max-width: 30em;
  margin-bottom: clamp(50px, 7vw, 90px);
}
.wz-progress {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}
.wz-progress__count {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  white-space: nowrap;
}
.wz-progress__track {
  flex: 1;
  height: 2px;
  background: var(--bg-2);
  overflow: hidden;
}
.wz-progress__fill {
  display: block;
  height: 100%;
  background: var(--ink);
  transform-origin: left;
  transform: scaleX(.2);
  transition: transform .7s var(--ease);
}
.wz-progress__next {
  background: none;
  border: 0;
  font-family: inherit;
  white-space: nowrap;
}

.wz {
  background: #EDEBE5;
  padding: clamp(50px, 6.5vw, 90px) var(--pad) clamp(50px, 6.5vw, 90px);
}
.wz-panel { display: none; }
.wz-panel.is-active { display: block; }
.wz-panel__num {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 14px;
}
.wz-panel__title {
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 400;
  letter-spacing: -.015em;
  margin-bottom: 10px;
}
.wz-panel__hint {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: clamp(26px, 3.4vw, 44px);
}
.wz-opts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
}
.opt {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--bg-2);
  border-radius: 3px;
  padding: clamp(28px, 3.6vw, 54px) 16px clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .35s, transform .35s var(--ease), box-shadow .35s;
}
.opt:hover { border-color: var(--gray); transform: translateY(-3px); }
.opt.is-selected { border-color: var(--ink); }
.opt__check {
  position: absolute;
  top: 12px; right: 12px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.5);
  transition: opacity .3s, transform .3s var(--ease);
}
.opt.is-selected .opt__check { opacity: 1; transform: scale(1); }
.opt__icon { width: 40px; height: 40px; }
.opt__label {
  font-size: clamp(13px, 1.05vw, 15.5px);
  font-weight: 400;
}
.wz-panel { border: 0; padding: 0; margin: 0; }
.wz-panel legend { padding: 0; }
.wz-opts--compact { grid-template-columns: repeat(4, 1fr); }
.opt--sm {
  padding: clamp(20px, 2.2vw, 30px) 16px;
  gap: 0;
}
.wz-free { max-width: 420px; margin-top: clamp(22px, 2.6vw, 34px); }
.wz-fields {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vh, 36px);
  max-width: 760px;
}
.wz-fields .wz-free { margin-top: 0; }
.wz-subhead {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: -10px;
}
.wz-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  background: var(--bg);
  border: 1px solid var(--bg-2);
  border-radius: 100px;
  padding: 11px 22px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ink);
  transition: border-color .3s, background-color .3s, color .3s;
}
.pill:hover { border-color: var(--gray); }
.pill.is-selected { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.wz-consent {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 46em;
}
.wz-consent input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}
.wz-consent__box {
  flex: none;
  width: 20px; height: 20px;
  margin-top: 1px;
  border: 1px solid var(--gray);
  border-radius: 3px;
  display: grid;
  place-items: center;
  color: var(--bg);
  transition: background-color .25s, border-color .25s;
}
.wz-consent input:checked + .wz-consent__box { background: var(--ink); border-color: var(--ink); }
.wz-consent input:focus-visible + .wz-consent__box { outline: 1.5px solid var(--ink); outline-offset: 3px; }
.wz-consent__text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
}
.wz-error {
  font-size: 12.5px;
  font-weight: 400;
  color: #A33;
  margin-top: 14px;
}
.wz-error--field { margin-top: 8px; }
.field--error input,
.field--error textarea { border-color: #A33; }
.field--error label { color: #A33; }

.wz-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #E4E1DA;
  border-radius: 3px;
  padding: clamp(20px, 2.4vw, 30px);
  margin-top: clamp(34px, 4.4vw, 56px);
}
.wz-note__icon { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.wz-note__head { font-size: 13.5px; font-weight: 500; margin-bottom: 6px; }
.wz-note__text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray);
  max-width: 46em;
}
.wz-note__more { margin-left: auto; flex: none; align-self: center; }

.wz-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(34px, 4.4vw, 56px);
}
.wz-back {
  background: none;
  border: 1px solid var(--gray);
  border-radius: 3px;
  padding: 15px 30px;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  transition: border-color .35s, background-color .35s;
}
.wz-back:hover { border-color: var(--ink); }
.wz-next {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  border-radius: 3px;
  padding: 16px 32px;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: opacity .35s, transform .35s var(--ease);
}
.wz-next:hover { opacity: .88; transform: translateY(-2px); }

.wz-panel--done { text-align: center; padding: clamp(30px, 4vw, 60px) 0; }
.wz-done__ring {
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  margin: 0 auto 26px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.wz-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(50px, 6.5vw, 90px) var(--pad);
  background: var(--bg-2);
}
.feat { display: flex; gap: 18px; }
.feat__icon { width: 30px; height: 30px; flex: none; }
.feat__name {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.feat__text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray);
  max-width: 22em;
}

@media (max-width: 900px) {
  .wz-hero__bg { display: none; }
  .wz-opts, .wz-opts--compact { grid-template-columns: 1fr 1fr; }
  .wz-note { flex-wrap: wrap; }
  .wz-note__more { margin-left: 40px; }
  .wz-feats { grid-template-columns: 1fr; }
  .wz-progress__next { display: none; }
}
@media (max-width: 520px) {
  .wz-opts { grid-template-columns: 1fr; }
  .wz-controls { flex-direction: column-reverse; gap: 16px; align-items: stretch; }
  .wz-back, .wz-next { justify-content: center; text-align: center; }
}

/* ═══════════ UNTERSEITE: KONTAKT ═══════════ */
.page-sub--flush { padding-top: clamp(80px, 11vh, 110px); }

.kt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
  border-bottom: 1px solid var(--bg-2);
}
.kt-hero__left {
  padding: clamp(50px, 7vw, 100px) clamp(24px, 4vw, 70px) clamp(50px, 7vw, 100px) var(--pad);
}
.kt-hero__title {
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: clamp(20px, 2.6vw, 32px);
}
.kt-hero__lead {
  font-size: clamp(13.5px, 1.05vw, 16px);
  font-weight: 300;
  line-height: 1.75;
  max-width: 28em;
  margin-bottom: clamp(24px, 3vw, 38px);
}
.kt-hero__media {
  align-self: stretch;
  overflow: hidden;
  min-height: clamp(300px, 46vh, 560px);
}
.kt-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kt-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  scroll-margin-top: 110px;
}
.kt-info {
  position: relative;
  padding: clamp(50px, 6vw, 80px) clamp(24px, 4vw, 70px) clamp(50px, 6vw, 80px) var(--pad);
  border-right: 1px solid var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 2.6vw, 32px);
  font-size: clamp(13.5px, 1.05vw, 15.5px);
  font-weight: 300;
  line-height: 1.7;
}
.kt-info__firm {
  font-size: clamp(14px, 1.1vw, 16.5px);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kt-info__sub { color: var(--gray); margin-top: 4px; }
.kt-info__lines p { display: flex; gap: 14px; }
.kt-info__key { font-weight: 500; width: 14px; }
.kt-info__lines a { border-bottom: 1px solid transparent; transition: border-color .3s; }
.kt-info__lines a:hover { border-color: var(--ink); }
.kt-info__hours { border-top: 1px solid var(--bg-2); padding-top: clamp(20px, 2.4vw, 28px); max-width: 24em; }
.kt-info__head {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.kt-circle {
  position: relative;
  width: clamp(190px, 16vw, 240px);
  height: clamp(190px, 16vw, 240px);
  border: 1px solid var(--gray);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  margin: clamp(10px, 2vw, 26px) auto 0;
}
.kt-circle p {
  font-size: 13px;
  line-height: 1.6;
  max-width: 15em;
}
.kt-circle__dot {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  animation: kt-orbit 14s linear infinite;
}
.kt-circle__dot::before {
  content: '';
  position: absolute;
  top: 12%;
  right: 12%;
  width: 9px; height: 9px;
  background: var(--ink);
  border-radius: 50%;
}
@keyframes kt-orbit { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .kt-circle__dot { animation: none; } }

.kt-form {
  padding: clamp(50px, 6vw, 80px) var(--pad) clamp(50px, 6vw, 80px) clamp(24px, 4vw, 70px);
  display: flex;
  flex-direction: column;
  gap: clamp(26px, 3.4vh, 40px);
}
.kt-form__head {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .kt-hero { grid-template-columns: 1fr; }
  .kt-hero__media { min-height: 260px; }
  .kt-body { grid-template-columns: 1fr; }
  .kt-info { border-right: 0; border-bottom: 1px solid var(--bg-2); }
}

/* ═══════════ UNTERSEITE: ÜBER UNS ═══════════ */
.header--overlay { color: var(--white); }
.header--overlay.is-solid { color: var(--ink); }
.eyebrow--light { color: var(--white); opacity: .85; }

.au-hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: clamp(170px, 24vh, 260px) var(--pad) clamp(90px, 13vw, 170px);
}
.au-hero__ring {
  display: block;
  width: 52px; height: 52px;
  margin: 0 auto clamp(30px, 4vh, 54px);
  border: 1px solid rgba(242, 241, 236, .5);
  border-radius: 50%;
}
.au-hero .eyebrow { margin-bottom: clamp(18px, 2.4vh, 28px); }
.au-hero__title {
  font-size: clamp(38px, 5.4vw, 84px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.au-hero__lead {
  font-size: clamp(13.5px, 1.15vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  max-width: 34em;
  margin: 0 auto;
  opacity: .85;
}

/* Team */
.team { padding: clamp(80px, 11vw, 150px) var(--pad); }
.team__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.team__intro {
  font-size: clamp(12.5px, 1vw, 14.5px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
  max-width: 26em;
  text-align: left;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 44px);
  row-gap: clamp(40px, 4.5vw, 64px);
}
.member__photo {
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  color: #C6C2BA;
  display: grid;
  place-items: end center;
  overflow: hidden;
  margin-bottom: 18px;
}
.member__photo svg { width: 62%; }
.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Einheitlicher, ruhiger Look wie in der Referenz (z2g.ch): Schwarzweiss */
  filter: grayscale(1);
  transition: transform .9s var(--ease), filter .6s;
}
.member:hover .member__photo img { transform: scale(1.03); filter: grayscale(0); }
.member__name { font-size: 15px; font-weight: 500; letter-spacing: .02em; }
.member__role { font-size: 12.5px; font-weight: 300; line-height: 1.5; color: var(--gray); margin-top: 5px; }

/* Haltung */
.haltung {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  padding: clamp(80px, 11vw, 150px) var(--pad);
  border-top: 1px solid var(--bg-2);
}
.haltung__title {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: clamp(22px, 3vw, 34px);
}
.haltung__text {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray);
  max-width: 30em;
}
.haltung__right {
  border-left: 1px solid var(--bg-2);
  padding-left: clamp(28px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.value {
  display: flex;
  gap: 22px;
  padding: clamp(20px, 2.4vw, 30px) 0;
}
.value + .value { border-top: 1px solid var(--bg-2); }
.value__icon { width: 30px; height: 30px; flex: none; }
.value__name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.value__text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray);
  max-width: 26em;
}

/* Zahlen */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(60px, 8vw, 110px) var(--pad);
  border-top: 1px solid var(--bg-2);
}
.stat { border-left: 1px solid var(--bg-2); padding-left: clamp(18px, 2vw, 30px); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__value {
  display: block;
  font-size: clamp(40px, 4.4vw, 68px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 14px;
}
.stat__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.stat__sub {
  display: block;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--gray);
  max-width: 16em;
}

/* Prozess */
.process { padding: clamp(80px, 11vw, 150px) var(--pad); }
.process__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.process__title {
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.process__intro {
  font-size: clamp(12.5px, 1vw, 14.5px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
  max-width: 24em;
}
.process__track {
  height: 1px;
  margin-bottom: clamp(26px, 3vw, 40px);
  background: var(--bg-2);
  overflow: hidden;
}
.process__line {
  display: block;
  width: 100%; height: 100%;
  background: var(--ink);
  transform-origin: left;
  transform: scaleX(0);
}
.process__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2.6vw, 44px);
}
.step__num {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 12px;
}
.step__name {
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step__text {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray);
}

/* Kontakt-CTA dunkel */
.au-cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
  background: var(--ink);
  color: var(--white);
  padding: clamp(80px, 11vw, 150px) var(--pad);
}
.au-cta__title {
  font-size: clamp(28px, 3.6vw, 54px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.au-cta__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(22px, 3vw, 34px);
}
.au-cta__right p {
  font-size: clamp(13px, 1.05vw, 15.5px);
  font-weight: 300;
  line-height: 1.75;
  max-width: 30em;
  opacity: .85;
}

@media (max-width: 900px) {
  .team__head { flex-direction: column; }
  .team__grid { grid-template-columns: 1fr; max-width: 420px; }
  .haltung { grid-template-columns: 1fr; }
  .haltung__right { border-left: 0; padding-left: 0; }
  .stats { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .process__head { flex-direction: column; align-items: flex-start; }
  .process__steps { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .au-cta { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: 0; padding-left: 0; }
  .process__steps { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .srv-row {
    grid-template-columns: 44px 1fr 30px;
    grid-template-areas: "num name arrow" ". desc arrow";
    row-gap: 6px;
  }
  .srv-row__num { grid-area: num; }
  .srv-row__name { grid-area: name; }
  .srv-row__desc { grid-area: desc; }
  .srv-row__arrow { grid-area: arrow; }
  .srv-row:hover { padding-left: 0; }
  .approach, .cta { grid-template-columns: 1fr; }
  .approach__right { border-left: 0; padding-left: 0; }
  .detail__grid { grid-template-columns: 1fr 1fr; }
  .detail__name { min-height: 0; }
}
@media (max-width: 560px) {
  .detail__grid { grid-template-columns: 1fr; }
  .page-sub { padding-top: 110px; }
}

/* ═══════════ RECHTLICHES (Impressum / Datenschutz) ═══════════ */
.legal {
  max-width: 820px;
  padding: 0 var(--pad) clamp(70px, 9vw, 120px);
}
.legal__block {
  border-top: 1px solid var(--bg-2);
  padding: clamp(28px, 3.4vw, 44px) 0;
}
.legal__num {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 10px;
}
.legal__title {
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.legal__sub {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 22px 0 10px;
}
.legal__lead {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}
.legal__block p,
.legal__block li {
  font-size: clamp(13.5px, 1.05vw, 15.5px);
  font-weight: 300;
  line-height: 1.75;
}
.legal__block p + p { margin-top: .9em; }
.legal__block ul {
  margin: 10px 0 6px;
  padding-left: 1.2em;
}
.legal__block li { margin: 4px 0; }
.legal__block a { border-bottom: 1px solid rgba(17,17,17,.35); transition: border-color .3s; }
.legal__block a:hover { border-color: var(--ink); }
.legal__key {
  display: inline-block;
  min-width: 74px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray);
}
.legal__muted { color: var(--gray); }
.legal__cross { margin-top: clamp(30px, 4vw, 50px); }

/* ═══════════ CTA-BAND + FOOTER V2 ═══════════ */
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  background: #0C0C0C;
  color: var(--white);
  min-height: clamp(320px, 52vh, 560px);
  overflow: hidden;
}
.cta-band__text {
  padding: clamp(50px, 7vw, 100px) clamp(24px, 4vw, 70px) clamp(50px, 7vw, 100px) var(--pad);
}
.cta-band__title {
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -.015em;
  margin-bottom: clamp(26px, 3.4vw, 44px);
}
.cta-band__link { color: var(--white); }
.cta-band__media {
  align-self: stretch;
  min-height: 100%;
}
.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer--v2 {
  position: relative;
  background: #101010;
  color: var(--bg);
  padding: clamp(60px, 8vw, 100px) var(--pad) clamp(24px, 3vw, 36px);
  overflow: hidden;
}
.footer--v2 .footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.2fr 1.1fr;
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: clamp(110px, 16vw, 200px);
  align-items: start;
}
.footer--v2 .footer__logo {
  display: block;
  font-size: clamp(18px, 1.7vw, 24px);
  letter-spacing: .38em;
  margin-bottom: 12px;
}
.footer__subline {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(242, 241, 236, .55);
}
.footer--v2 .footer__col { position: relative; }
.footer--v2 .footer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(242, 241, 236, .5);
  margin-bottom: 18px;
}
.footer__plus { display: none; position: relative; width: 12px; height: 12px; }
.footer__plus::before,
.footer__plus::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform .35s var(--ease);
}
.footer__plus::before { left: 0; top: 5.25px; width: 12px; height: 1.5px; }
.footer__plus::after { left: 5.25px; top: 0; width: 1.5px; height: 12px; }
.footer__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6;
}
.footer__list a {
  position: relative;
  padding-bottom: 2px;
}
.footer__list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.footer__list a:hover::after { transform: scaleX(1); transform-origin: left; }
.footer__sketch {
  position: absolute;
  left: 0;
  bottom: clamp(48px, 5.6vw, 76px);
  width: clamp(300px, 34vw, 520px);
  pointer-events: none;
}
.footer__sketch img {
  width: 100%;
  /* Schwarzer Bildgrund verschmilzt mit dem Footer — nur die Linien bleiben */
  mix-blend-mode: screen;
  opacity: .9;
}
.footer--v2 .footer__bottom {
  position: relative;
  border-top: 1px solid rgba(242, 241, 236, .14);
  padding-top: clamp(18px, 2.4vw, 28px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(242, 241, 236, .55);
}
.footer__legal { display: flex; gap: clamp(24px, 3vw, 44px); }
.footer__legal a { transition: color .3s; }
.footer__legal a:hover { color: var(--bg); }

@media (max-width: 900px) {
  .cta-band {
    grid-template-columns: 1.3fr 1fr;
    min-height: 300px;
  }
  .cta-band__title { font-size: clamp(22px, 5.6vw, 30px); }

  .footer--v2 .footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 24px;
  }
  .footer--v2 .footer__brand { margin-bottom: 34px; }
  /* Akkordeon: Spalten zugeklappt, „+" toggelt */
  .footer--v2 .footer__col { border-top: 1px solid rgba(242, 241, 236, .14); }
  .footer--v2 .footer__col:last-of-type { border-bottom: 1px solid rgba(242, 241, 236, .14); }
  .footer--v2 .footer__head {
    margin-bottom: 0;
    padding: 18px 0;
    color: var(--bg);
    letter-spacing: .26em;
  }
  .footer__plus { display: block; }
  .footer__col.is-open .footer__plus::after { transform: rotate(90deg); }
  .footer__list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .5s var(--ease), opacity .4s, padding .4s;
  }
  .footer__col.is-open .footer__list {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 20px;
  }
  .footer__sketch {
    position: static;
    width: min(86vw, 420px);
    margin: 44px auto 40px;
    display: block;
  }
  .footer--v2 .footer__bottom {
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }
}

/* ═══════════ RESPONSIVE ═══════════ */
/* Mobil/Touch: Beschreibung öffnet per Tipp auf den Namen (.is-open via JS) */
.service.is-open .service__desc {
  max-height: 6em;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}
@media (max-width: 900px), (hover: none) {
  .service { transform: none !important; }
  .services__list:hover .service__name { opacity: 1; }
  .service__name {
    /* Lange deutsche Komposita dürfen umbrechen und trennen */
    white-space: normal;
    overflow-wrap: anywhere;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}
@media (max-width: 900px) {
  .header__nav { display: none; }
  .header__burger { display: block; }
  .header { justify-content: space-between; }
  .header__logo { order: -1; }
  .projects__grid { grid-template-columns: 1fr; }
  .project { aspect-ratio: 16 / 10.5; }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about__title { max-width: none; }
}
/* ─── Mobil-Feinschliff (Referenz: yodezeen mobile) ─── */
@media (max-width: 700px) {
  :root { --pad: 20px; }
  .header { padding: 16px 20px; }
  .header__logo { font-size: 16px; }

  .hero__foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero__tag { font-size: 10px; }

  .about__title {
    font-size: clamp(28px, 8.6vw, 40px);
    line-height: 1.18;
  }
  .about__inner { padding-left: 20px; padding-right: 20px; }

  .projects { padding-left: 8px; padding-right: 8px; }
  /* Scroll rastet Foto für Foto ein — ruhigerer, abschnittsweiser Rhythmus */
  html { scroll-snap-type: y proximity; }
  .project {
    aspect-ratio: auto;
    height: 68svh;
    scroll-snap-align: center;
  }
  .projects__grid { gap: 14px; }
  .project__overlay { padding: 18px; gap: 7px; }
  .project__name { font-size: 21px; }
  .project__meta { font-size: 12.5px; }
  .projects__more { justify-content: center; padding-right: 0; }

  .services { padding-top: 84px; padding-bottom: 84px; }
  .services__list { gap: 22px; width: 100%; }
  .service { width: 100%; }
  .service__name { font-size: clamp(18px, 5.4vw, 24px); line-height: 1.25; }
  .service__desc { font-size: 13px; max-width: 22em; }

  .contact { padding-top: 76px; padding-bottom: 76px; gap: 44px; }
  .contact__title { font-size: clamp(30px, 9vw, 40px); }
  .contact__submit { padding: 17px 26px; }

  .footer { padding-top: 56px; }
  .footer__grid { gap: 32px; padding-bottom: 44px; }
  .footer__bottom { justify-content: center; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: clamp(30px, 4vh, 46px); }
}

/* Reduzierte Bewegung */
@media (prefers-reduced-motion: reduce) {
  .line > span { transform: none; }
  .reveal { opacity: 1; transform: none; }
  .project { clip-path: none; }
  .project--page { opacity: 1; transform: none; }
  .about__title .l { opacity: 1; }
  .about__attr { opacity: 1; }
}
