/* ============================================
   SICHTIMPULS — STYLESHEET
   Premium Dark Editorial · Architectural Minimalism
   ============================================ */

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============== TOKENS ============== */
:root {
  --bg: #0D0D0D;
  --bg-2: #131313;
  --bg-3: #171717;
  --bg-4: #202020;
  --line: rgba(245, 242, 236, 0.08);
  --line-strong: rgba(245, 242, 236, 0.18);
  --text: #F5F2EC;
  --text-dim: rgba(245, 242, 236, 0.55);
  --text-mute: rgba(245, 242, 236, 0.4);
  --accent: #C9A961;
  --accent-soft: #B89548;
  --accent-dim: rgba(201, 169, 97, 0.6);
  --accent-bright: #DCBE76;
  --section-px: clamp(20px, 4vw, 72px);
  --content-max: 1440px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============== TYPOGRAPHY ============== */
.h-display {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--text);
}
.h-display .accent {
  background: linear-gradient(135deg, #DCBE76 0%, #C9A961 45%, #A88B45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent); /* fallback */
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 400;
}
.lead {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 56ch;
}

/* ============== LAYOUT ============== */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--section-px);
  padding-right: var(--section-px);
}
section { position: relative; }
main { display: block; }

/* ============== REVEAL ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }
.reveal.delay-4 { transition-delay: .48s; }
.reveal.delay-5 { transition-delay: .60s; }

/* ============== NAVIGATION ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13, 13, 13, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 14px var(--section-px);
  border-bottom-color: var(--line);
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}
.nav__brand-mark {
  height: 150px;
  width: auto;
  display: block;
  transition: height 0.4s var(--ease);
}
.nav.scrolled .nav__brand-mark {
  height: 120px;
}
/* Hide wordmark text next to logo (logo speaks for itself) */
.nav__brand > span {
  display: none;
}
.nav__menu {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__link {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 400;
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.5s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--text); }
.nav__link[aria-current="page"]::after { width: 100%; }
.nav__link:hover::after { width: 100%; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: #0D0D0D;
}
.btn--primary:hover {
  background: var(--text);
  color: #0D0D0D;
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--full { width: 100%; }
.btn__arrow {
  display: inline-block;
  transition: transform 0.5s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(6px); }

.nav__cta {
  padding: 12px 22px;
  font-size: 11px;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 102;
}
.nav__burger span {
  width: 22px; height: 1px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu drawer */
.nav__drawer {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(20px);
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.nav__drawer.open {
  opacity: 1;
  pointer-events: auto;
}
.nav__drawer a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  transition: color 0.3s var(--ease);
}
.nav__drawer a:hover, .nav__drawer a[aria-current="page"] { color: var(--accent); }

/* ============== HERO ============== */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero__grid {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero__eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
}
.hero__headline {
  font-size: clamp(48px, 6.2vw, 96px);
  margin-bottom: 26px;
}
.hero__sub {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--text-dim);
  margin-bottom: 48px;
  max-width: 44ch;
  line-height: 1.6;
}
.hero__services {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 38px;
  margin-bottom: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__service {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.4s var(--ease);
}
.hero__service:hover { color: var(--text); }
.hero__service-icon {
  width: 22px; height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  will-change: transform;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__corner {
  position: absolute;
  bottom: 20px; left: 20px;
  z-index: 3;
  color: var(--text);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex; align-items: center; gap: 10px;
}
.hero__corner::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--accent);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============== PAGE HEADER (für Unterseiten) ============== */
.page-header {
  padding-top: 180px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.page-header__breadcrumb {
  display: flex;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.page-header__breadcrumb a:hover { color: var(--accent); }
.page-header__breadcrumb .sep { color: var(--accent); }
.page-header__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.page-header__eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
}
.page-header__title {
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.92;
  margin-bottom: 32px;
  max-width: 16ch;
}
.page-header__title .accent { color: var(--accent); }
.page-header__lead {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-dim);
  max-width: 60ch;
  line-height: 1.7;
}
.page-header__light {
  position: absolute;
  top: 0; right: clamp(60px, 14vw, 240px);
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(201, 169, 97, 0.4) 40%, rgba(201, 169, 97, 0.0) 95%);
  box-shadow: 0 0 60px 6px rgba(201, 169, 97, 0.12);
  z-index: 0;
}

/* ============== STATEMENT SECTION ============== */
.statement {
  padding: clamp(100px, 14vw, 200px) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.statement__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  position: relative;
}
.statement__headline {
  font-size: clamp(40px, 5.4vw, 88px);
  line-height: 0.95;
}
.statement__headline .line-2 {
  color: var(--accent);
  display: block;
}
.statement__text {
  align-self: end;
  padding-bottom: 12px;
}
.statement__text p {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 38ch;
  line-height: 1.7;
}
.statement__light {
  position: absolute;
  top: 0; right: clamp(60px, 14vw, 240px);
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(201, 169, 97, 0.4) 40%,
    rgba(201, 169, 97, 0.5) 60%,
    rgba(201, 169, 97, 0.0) 95%);
  box-shadow: 0 0 60px 6px rgba(201, 169, 97, 0.15);
  z-index: 0;
}
.statement__label {
  margin-bottom: 40px;
  display: flex; align-items: center; gap: 14px;
}
.statement__label::before {
  content: ''; width: 28px; height: 1px; background: var(--accent);
}

/* ============== FORM SECTION ============== */
.form-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
  position: relative;
}
.form-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.form-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.form-card__label {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.form-card__label::before, .form-card__label::after {
  content: ''; width: 24px; height: 1px; background: var(--accent);
}
.form-card__headline {
  font-size: clamp(34px, 4vw, 56px);
  margin-bottom: 18px;
}
.form-card__sub {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 52ch;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.form {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__field {
  position: relative;
}
.form__field--full { grid-column: 1 / -1; }
.form__input, .form__textarea {
  width: 100%;
  background: transparent;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 18px 0 14px;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  outline: none;
  transition: border-color 0.4s var(--ease);
  letter-spacing: 0.02em;
  resize: vertical;
}
.form__textarea { min-height: 120px; }
.form__input::placeholder, .form__textarea::placeholder {
  color: var(--text-mute);
  letter-spacing: 0.06em;
}
.form__input:focus, .form__textarea:focus {
  border-bottom-color: var(--accent);
}
.form__label {
  position: absolute;
  top: 18px; left: 0;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  pointer-events: none;
  transition: all 0.4s var(--ease);
  opacity: 0;
}
.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label,
.form__textarea:focus + .form__label,
.form__textarea:not(:placeholder-shown) + .form__label {
  transform: translateY(-22px);
  opacity: 1;
  color: var(--accent);
}
.form__checkbox {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 8px;
  cursor: pointer;
}
.form__checkbox input {
  appearance: none;
  width: 16px; height: 16px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s var(--ease);
  flex-shrink: 0;
  margin-top: 2px;
}
.form__checkbox input:checked { border-color: var(--accent); }
.form__checkbox input:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--accent);
}
.form__checkbox span {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}
.form__checkbox a { color: var(--accent); border-bottom: 1px solid var(--accent-dim); }
.form__submit {
  grid-column: 1 / -1;
  margin-top: 28px;
}
.form__success {
  grid-column: 1 / -1;
  padding: 20px;
  border: 1px solid var(--accent-dim);
  background: rgba(201, 169, 97, 0.05);
  color: var(--accent);
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.05em;
  display: none;
}
.form__success.show { display: block; }

/* ============== SERVICES SECTION ============== */
.services {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg);
  position: relative;
}
.services__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.services__visual {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}
.services__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.services__label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.services__label::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.services__headline {
  font-size: clamp(36px, 4.4vw, 64px);
  margin-bottom: 56px;
  line-height: 0.95;
}
.services__headline .accent { color: var(--accent); }
.services__list {
  list-style: none;
}
.service-item {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: padding-left 0.5s var(--ease);
}
.service-item:last-child { border-bottom: 1px solid var(--line); }
.service-item:hover { padding-left: 12px; }
.service-item:hover .service-item__arrow { transform: translateX(6px); color: var(--accent); }
.service-item__icon {
  width: 36px; height: 36px;
  color: var(--accent);
  display: grid; place-items: center;
}
.service-item__icon svg {
  width: 24px; height: 24px;
  stroke-width: 1.2;
}
.service-item__title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 8px;
}
.service-item__desc {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 44ch;
}
.service-item__arrow {
  color: var(--text-mute);
  font-size: 14px;
  transition: all 0.4s var(--ease);
}

/* ============== SERVICE DETAIL CARDS (auf Leistungsseite) ============== */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
}
.service-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 48px 36px 40px;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--line-strong);
  background: var(--bg-4);
  transform: translateY(-4px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.7s var(--ease);
}
.service-card:hover::before { width: 100%; }
.service-card__icon {
  width: 44px; height: 44px;
  color: var(--accent);
  margin-bottom: 28px;
  display: grid; place-items: center;
}
.service-card__icon svg { width: 100%; height: 100%; stroke-width: 1.1; }
.service-card__num {
  position: absolute;
  top: 28px; right: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  opacity: 0.5;
}
.service-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  line-height: 1.05;
}
.service-card__desc {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 32px;
  flex: 1;
}
.service-card__list {
  list-style: none;
  margin-bottom: 32px;
}
.service-card__list li {
  font-size: 13px;
  color: var(--text-dim);
  padding: 10px 0;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.service-card__list li:last-child { border-bottom: 1px solid var(--line); }
.service-card__list li::before {
  content: '';
  width: 6px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.service-card__link {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s var(--ease);
  margin-top: auto;
  padding-top: 8px;
}
.service-card__link:hover { color: var(--accent); }
.service-card__link span:last-child { transition: transform 0.4s var(--ease); }
.service-card__link:hover span:last-child { transform: translateX(6px); }

/* ============== ABOUT SECTION ============== */
.about {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg);
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about__content { order: 1; }
.about__visual {
  order: 2;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}
.about__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.about__label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.about__label::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.about__headline {
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 0.95;
  margin-bottom: 48px;
}
.about__headline .accent { color: var(--accent); }
.about__points {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
}
.about-point__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  padding-top: 4px;
}
.about-point__title {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.about-point__desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 46ch;
}

/* ============== PROCESS / ABLAUF ============== */
.process {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg);
}
.process__head {
  text-align: center;
  margin-bottom: 80px;
}
.process__label {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.process__label::before, .process__label::after {
  content: ''; width: 24px; height: 1px; background: var(--accent);
}
.process__title {
  font-size: clamp(36px, 4.4vw, 64px);
  margin-bottom: 18px;
}
.process__sub {
  color: var(--text-dim);
  max-width: 48ch;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-step {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.5s var(--ease);
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--bg-2); }
.process-step__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 28px;
}
.process-step__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.process-step__desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ============== BIG STATEMENT BLOCK ============== */
.big-statement {
  padding: clamp(120px, 18vw, 240px) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.big-statement::before {
  content: '';
  position: absolute;
  top: 50%; right: -10%;
  transform: translateY(-50%);
  width: 60vw; height: 60vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.06), transparent 60%);
  pointer-events: none;
}
.big-statement__inner {
  position: relative;
  z-index: 1;
}
.big-statement__eyebrow {
  margin-bottom: 48px;
  display: flex; align-items: center; gap: 14px;
}
.big-statement__eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.big-statement__headline {
  font-size: clamp(38px, 5.4vw, 92px);
  max-width: 22ch;
  line-height: 0.96;
}
.big-statement__headline .accent { color: var(--accent); }

/* ============== RESULTS SECTION ============== */
.results {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg);
}
.results__head {
  text-align: center;
  margin-bottom: 80px;
}
.results__label {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.results__label::before, .results__label::after {
  content: ''; width: 24px; height: 1px; background: var(--accent);
}
.results__headline {
  font-size: clamp(36px, 4.4vw, 64px);
}
.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.3fr;
  gap: 24px;
}
.result-card {
  padding: 40px 32px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.result-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.7s var(--ease);
}
.result-card:hover::before { width: 100%; }
.result-card__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.result-card__desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 22ch;
}
.result-card--case {
  background: var(--bg-4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.result-card__tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}
.result-card__case-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 16px;
}
.result-card__case-meta {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}

/* ============== CASE STUDY (auf Referenzseite) ============== */
.case-study {
  padding: clamp(80px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--line);
}
.case-study:last-of-type { border-bottom: none; }
.case-study__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.case-study__meta {
  position: sticky;
  top: 120px;
}
.case-study__tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}
.case-study__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.case-study__industry {
  font-size: 13px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.case-study__body p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 60ch;
}
.case-study__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.case-metric__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.case-metric__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ============== CTA SECTION ============== */
.cta {
  padding: clamp(100px, 12vw, 180px) 0;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.cta__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.cta__content {
  position: relative;
  z-index: 2;
}
.cta__label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.cta__label::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.cta__headline {
  font-size: clamp(38px, 4.8vw, 76px);
  line-height: 0.96;
  margin-bottom: 36px;
}
.cta__headline .accent { color: var(--accent); }
.cta__text {
  color: var(--text-dim);
  font-size: 15.5px;
  max-width: 42ch;
  line-height: 1.7;
  margin-bottom: 48px;
}
.cta__visual {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}
.cta__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============== CONTACT INFO BLOCKS ============== */
.contact-info {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
}
.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.contact-block {
  padding: 32px 0;
}
.contact-block__label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-block__label::before {
  content: '';
  width: 14px; height: 1px;
  background: var(--accent);
}
.contact-block__value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.15;
}
.contact-block__value a:hover { color: var(--accent); }
.contact-block__sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 12px;
  line-height: 1.6;
}

/* ============== FOOTER ============== */
.footer {
  padding: 80px 0 36px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
.footer__brand {
  display: block;
  margin-bottom: 28px;
}
.footer__logo {
  height: 360px;
  width: auto;
  display: block;
}
.footer__tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  max-width: 28ch;
  margin-bottom: 16px;
}
.footer__sub {
  color: var(--text-mute);
  font-size: 13px;
  max-width: 34ch;
  line-height: 1.7;
}
.footer__title {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 24px;
}
.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__link {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.3s var(--ease);
}
.footer__link:hover { color: var(--accent); }
.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}
.footer__legal {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.footer__legal a:hover { color: var(--accent); }

/* ============== LEGAL PAGE (Datenschutz/Impressum) ============== */
.legal {
  padding: 60px 0 120px;
}
.legal__inner {
  max-width: 760px;
}
.legal h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: 0.02em;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 14px;
}
.legal p, .legal li {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal ul {
  margin-left: 20px;
  margin-bottom: 16px;
}
.legal strong { color: var(--text); font-weight: 500; }
.legal a { color: var(--accent); border-bottom: 1px solid var(--accent-dim); }

/* ============== 404 ============== */
.notfound {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px var(--section-px) 80px;
}
.notfound__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 22vw, 280px);
  line-height: 0.9;
  color: var(--accent);
  margin-bottom: 24px;
}
.notfound__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.4vw, 48px);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.notfound__sub {
  color: var(--text-dim);
  max-width: 44ch;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .results__grid { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 48px; }
  .contact-info__grid { grid-template-columns: 1fr; gap: 24px; }
  .case-study__grid { grid-template-columns: 1fr; }
  .case-study__meta { position: static; }
}
@media (max-width: 1024px) {
  .hero { min-height: auto; padding-top: 140px; padding-bottom: 100px; }
  .hero__grid { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { aspect-ratio: 4 / 4; max-width: 540px; margin-left: auto; }
  .hero__headline { font-size: clamp(44px, 8vw, 72px); }

  .statement__grid { grid-template-columns: 1fr; gap: 40px; }
  .statement__text { padding-bottom: 0; }
  .statement__light { right: 8%; }

  .services__grid { grid-template-columns: 1fr; gap: 48px; }
  .services__visual { aspect-ratio: 4 / 3; max-height: 500px; }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { order: 1; aspect-ratio: 4 / 3; max-height: 500px; }
  .about__content { order: 2; }

  .cta__grid { grid-template-columns: 1fr; gap: 48px; }
  .cta__visual { aspect-ratio: 4 / 3; max-height: 500px; }
}
@media (max-width: 720px) {
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .form { grid-template-columns: 1fr; }
  .results__grid { grid-template-columns: 1fr; }
  .hero__services { gap: 18px 32px; }
  .hero__service { font-size: 11.5px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; margin-bottom: 56px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .process__steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: none; }
  .case-study__metrics { grid-template-columns: 1fr; }
}

/* Subtle entrance on load for hero only */
.hero__headline, .hero__sub, .hero__services, .hero__cta, .hero__eyebrow, .hero__visual {
  animation: heroIn 1.4s var(--ease) both;
}
.hero__eyebrow { animation-delay: 0.05s; }
.hero__headline { animation-delay: 0.2s; }
.hero__sub { animation-delay: 0.4s; }
.hero__services { animation-delay: 0.55s; }
.hero__cta { animation-delay: 0.7s; }
.hero__visual { animation-delay: 0.3s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-header__breadcrumb, .page-header__eyebrow, .page-header__title, .page-header__lead {
  animation: heroIn 1.2s var(--ease) both;
}
.page-header__breadcrumb { animation-delay: 0.05s; }
.page-header__eyebrow { animation-delay: 0.15s; }
.page-header__title { animation-delay: 0.25s; }
.page-header__lead { animation-delay: 0.4s; }

/* Selection */
::selection { background: var(--accent); color: #0D0D0D; }

/* Focus outlines (accessibility) */
:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 3px;
}
.btn:focus-visible, .form__input:focus-visible, .form__textarea:focus-visible {
  outline-offset: 4px;
}

/* ============================================================
   POSTER SECTIONS (Mockup-style atmospheric posters)
   ============================================================ */
.poster {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
/* Subtle ambient glow behind the poster */
.poster::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(600px, 70vw, 1200px);
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.poster__frame {
  max-width: min(880px, 92vw);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* Initial state for animation */
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s var(--ease), transform 1.6s var(--ease);
  will-change: opacity, transform;
}
.poster__frame.is-visible {
  opacity: 1;
  transform: scale(1);
}
/* Thin beige hairline frame */
.poster__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 97, 0.0);
  pointer-events: none;
  transition: border-color 1.2s var(--ease) 0.6s;
}
.poster__frame.is-visible::after {
  border-color: rgba(201, 169, 97, 0.12);
}
.poster__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .poster__frame { transition: opacity 0.4s, transform 0.4s; transform: scale(1); }
}

/* Corner marker (optional small editorial detail beneath the poster) */
.poster__caption {
  max-width: min(880px, 92vw);
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mute);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1s var(--ease) 0.7s, transform 1s var(--ease) 0.7s;
}
.poster__caption::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
}
.poster__frame.is-visible ~ .poster__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   IMAGE REVEAL — quiet fade only (client wants less animation)
   ============================================================ */
.image-reveal {
  position: relative;
  overflow: hidden;
}
.image-reveal img {
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  will-change: opacity;
}
.image-reveal.is-visible img {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .image-reveal img { opacity: 1; }
}

/* ============================================================
   LEISTUNGEN TRIO — clear "what we do" up top
   ============================================================ */
.trio {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
  position: relative;
  border-top: 1px solid var(--line);
}
.trio__head {
  max-width: 820px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.trio__head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.trio__head .eyebrow::before,
.trio__head .eyebrow::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}
.trio__title {
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 0.96;
}
.trio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
.trio-card {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 44px);
  background: var(--bg-3);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s var(--ease), background 0.5s var(--ease), transform 0.5s var(--ease);
  min-height: 320px;
}
.trio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.trio-card:hover {
  border-color: var(--line-strong);
  background: var(--bg-4);
  transform: translateY(-3px);
}
.trio-card:hover::before {
  opacity: 1;
}
.trio-card__num {
  position: absolute;
  top: clamp(20px, 2.2vw, 28px);
  right: clamp(24px, 2.6vw, 32px);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  opacity: 0.55;
  letter-spacing: 0.04em;
}
.trio-card__icon {
  width: 40px; height: 40px;
  color: var(--accent);
  margin-bottom: 28px;
  display: grid;
  place-items: center;
}
.trio-card__icon svg { width: 28px; height: 28px; stroke-width: 1.2; }
.trio-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.05;
  letter-spacing: 0.015em;
  margin-bottom: 14px;
  color: var(--text);
  text-transform: uppercase;
}
.trio-card__desc {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 28px;
  flex: 1;
}
.trio-card__link {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  transition: color 0.3s var(--ease);
}
.trio-card__link span { transition: transform 0.4s var(--ease); display: inline-block; }
.trio-card:hover .trio-card__link { color: var(--accent); }
.trio-card:hover .trio-card__link span { transform: translateX(5px); }

/* ============================================================
   MOBILE REFINEMENTS — premium feel even on small screens
   ============================================================ */
@media (max-width: 1100px) {
  .trio__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 560px;
    margin: 0 auto;
  }
  .trio-card { min-height: auto; }
}

@media (max-width: 720px) {
  /* Breathing room — premium needs space */
  :root {
    --section-px: 24px;
  }

  /* Typography — keep hierarchy strong but not crammed */
  body { font-size: 15px; line-height: 1.65; }

  /* Nav logo — compact on mobile so it doesn't overlap hero text */
  .nav { padding: 14px var(--section-px); }
  .nav.scrolled { padding: 10px var(--section-px); }
  .nav__brand-mark { height: 72px; }
  .nav.scrolled .nav__brand-mark { height: 56px; }

  /* Hero — full breathing room, image first feels more premium */
  .hero {
    padding-top: 130px;
    padding-bottom: 64px;
    min-height: auto;
  }
  .hero__grid {
    gap: 48px;
  }
  .hero__visual {
    aspect-ratio: 4 / 4.4;
    max-width: 100%;
    margin: 0;
  }
  .hero__headline {
    font-size: clamp(40px, 11vw, 56px);
    line-height: 0.94;
  }
  .hero__sub {
    font-size: 15px;
    margin-bottom: 36px;
  }
  .hero__cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero__cta .btn {
    width: 100%;
    padding: 16px 24px;
  }

  /* Trio — generous card padding on mobile */
  .trio {
    padding: 64px 0;
  }
  .trio__head {
    margin-bottom: 40px;
  }
  .trio-card {
    padding: 32px 26px;
  }
  .trio-card__title {
    font-size: 24px;
  }

  /* Page header — give the title room */
  .page-header {
    padding-top: 130px;
    padding-bottom: 56px;
  }
  .page-header__title {
    font-size: clamp(40px, 11vw, 56px);
  }
  .page-header__lead {
    font-size: 15px;
  }

  /* Sections — uniform vertical rhythm */
  .about, .services, .results, .cta, .form-section, .process, .contact-info {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  /* Poster — slightly more breathing room */
  .poster {
    padding: 56px 0;
  }
  .poster__frame, .poster__caption {
    max-width: calc(100vw - 32px);
  }

  /* CTA & form buttons full width on mobile */
  .cta__content .btn,
  .form__submit {
    width: 100%;
  }

  /* Bigger touch targets */
  .nav__link {
    padding: 8px 0;
  }
  .footer__link {
    padding: 4px 0;
    display: inline-block;
  }
}

/* Phones below 380px (rare but premium should still hold) */
@media (max-width: 380px) {
  :root { --section-px: 20px; }
  .hero__headline { font-size: 38px; }
  .page-header__title { font-size: 38px; }
  .nav__brand-mark { height: 60px; }
  .nav.scrolled .nav__brand-mark { height: 48px; }
}
