/* ════════════════════════════════════════
   TOKENS
════════════════════════════════════════ */
:root {
  --navy:     #0a1510;
  --navy-1:   #0f1e16;
  --navy-2:   #132419;
  --navy-3:   #182d20;
  --gold:     #c9a96e;
  --gold-h:   #d9bc8a;
  --gold-b:   rgba(201,169,110,0.25);
  --gold-glow:rgba(201,169,110,0.12);

  --cream:    #f8f5f0;
  --cream-1:  #f0ece5;
  --cream-2:  #e8e2d9;
  --l-text:   #1a1410;
  --l-body:   #4a3f32;
  --l-muted:  #8a7a68;
  --l-bdr:    rgba(26,20,16,0.1);

  --tw:       #ffffff;
  --tm:       rgba(255,255,255,0.75);
  --td:       rgba(255,255,255,0.38);
  --bdr:      rgba(255,255,255,0.08);
  --glass:    rgba(255,255,255,0.04);

  --f-display: 'Cormorant Garant', Georgia, serif;
  --f-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --f-script:  'Pinyon Script', cursive;

  --ease:     cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t:        all 0.4s var(--ease);

  --rl:       20px;
  --rl-lg:    28px;
  --sp:       140px;
  --sp-md:    100px;
  --sp-sm:    72px;
}

/* ════════════════════════════════════════
   RESET + BASE
════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  background: var(--navy);
  color: var(--tw);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* Grain overlay — fixed, GPU-safe */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ════════════════════════════════════════
   LAYOUT
════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.section--dark  { background: var(--navy); }
.section--light {
  background: var(--cream);
  color: var(--l-text);
  position: relative;
}
.section--light::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.90' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.section--light > * { position: relative; z-index: 1; }
.section--light h2  { color: var(--l-text); }
.section--light em  { color: var(--gold); font-style: italic; }
.section--light .body-text { color: var(--l-body); }

/* ════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════ */
h1, h2, h3 { font-family: var(--f-display); font-weight: 400; line-height: 1.12; }

h1 { font-size: clamp(42px, 6vw, 76px); letter-spacing: -0.02em; }
h2 { font-size: clamp(34px, 4.5vw, 58px); letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 500; letter-spacing: -0.01em; }

em { font-family: var(--f-display); font-style: italic; color: var(--gold); }

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.sec-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 80px;
}
.sec-head .eyebrow { display: block; }
.sec-head h2 { margin-bottom: 20px; }
.sec-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--tm);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}
.section--light .sec-sub { color: var(--l-body); }

/* ════════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -110%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn:hover::before { left: 150%; }
.btn--fill {
  background: var(--gold);
  color: var(--navy);
}
.btn--fill:hover {
  background: var(--gold-h);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,169,110,0.35), 0 0 0 1px rgba(201,169,110,0.2);
}
.btn--fill:active { transform: scale(0.98); }

.btn--ghost {
  background: transparent;
  color: var(--tw);
  border: 1px solid var(--bdr);
}
.btn--ghost:hover {
  border-color: var(--gold-b);
  color: var(--gold);
  transform: translateY(-2px);
}
.section--light .btn--ghost {
  color: var(--l-text);
  border-color: var(--l-bdr);
}
.section--light .btn--ghost:hover {
  border-color: rgba(201,169,110,0.4);
  color: var(--l-text);
}
.btn--full { width: 100%; justify-content: center; }

.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.btn--fill .btn__arrow { background: rgba(0,0,0,0.15); }
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn__arrow svg { width: 14px; height: 14px; }

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.4s var(--ease);
}
.nav.scrolled { padding: 12px 0; }

.nav__island {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 12px 20px 12px 28px;
  background: rgba(11,24,38,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--bdr);
  border-radius: 100px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}
.nav__logo:hover .nav__logo-img { opacity: 0.8; }
.nav__logo-img--footer {
  height: 36px;
  opacity: 0.75;
}

.nav__links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav__links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--tm);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--tw); }

.nav__cta {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--t);
}
.nav__cta:hover {
  background: var(--gold-h);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.burger__line {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--tw);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav__burger.open .burger__line:nth-child(1) {
  transform: translateY(3.25px) rotate(45deg);
}
.nav__burger.open .burger__line:nth-child(2) {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* Drawer */
.nav__drawer {
  position: fixed;
  inset: 0;
  background: rgba(11,24,38,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  z-index: 90;
}
.nav__drawer.open {
  opacity: 1;
  pointer-events: all;
}
.nav__drawer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.drawer-link {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--tw);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.3s;
}
.nav__drawer.open .drawer-link {
  opacity: 1;
  transform: none;
}
.nav__drawer.open .drawer-link:nth-child(1) { transition-delay: 0.08s; }
.nav__drawer.open .drawer-link:nth-child(2) { transition-delay: 0.14s; }
.nav__drawer.open .drawer-link:nth-child(3) { transition-delay: 0.20s; }
.nav__drawer.open .drawer-link:nth-child(4) { transition-delay: 0.26s; }
.nav__drawer.open .drawer-link:nth-child(5) { transition-delay: 0.32s; color: var(--gold); }
.drawer-link:hover { color: var(--gold); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.42;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.07' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 500px 500px;
}

.hero__inner { position: relative; z-index: 2; }
.hero__scroll { z-index: 2; }

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero__orb--1 {
  width: 640px; height: 640px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(201,169,110,0.10) 0%, rgba(15,80,40,0.12) 50%, transparent 70%);
}
.hero__orb--2 {
  width: 440px; height: 440px;
  bottom: -60px; left: -100px;
  background: radial-gradient(circle, rgba(20,100,50,0.12) 0%, rgba(201,169,110,0.04) 60%, transparent 70%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__left { max-width: 620px; }

.hero__h1 {
  margin-bottom: 24px;
  animation: heroFade 1s var(--ease-out) forwards 0.2s;
}
.hero__sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--tm);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-item strong {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.trust-item span {
  font-size: 11px;
  color: var(--td);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.trust-div {
  width: 1px; height: 36px;
  background: var(--bdr);
}

/* Photo frame — double bezel */
.hero__right { position: relative; }

.hero__photo-outer {
  position: relative;
  padding: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bdr);
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 40px 80px rgba(0,0,0,0.4);
}
.hero__photo-inner {
  border-radius: calc(28px - 6px);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}
.hero__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero__photo-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,24,38,0.6) 0%, transparent 50%);
}

.hero__badge {
  position: absolute;
  bottom: 20px; left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(11,24,38,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--bdr);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 2px rgba(74,222,128,0.25);
  flex-shrink: 0;
}
.badge-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--tw);
  line-height: 1.2;
}
.badge-role {
  display: block;
  font-size: 10px;
  color: var(--td);
  letter-spacing: 0.03em;
}

.hero__deco-ring {
  position: absolute;
  top: -20px; right: -20px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid var(--gold-b);
  pointer-events: none;
}

.hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--td);
  opacity: 0;
  animation: fade 1s var(--ease) forwards 1.6s;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold-b), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.1); }
}

/* ════════════════════════════════════════
   PAIN
════════════════════════════════════════ */
.pain { padding: var(--sp) 0; }

.pain__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pain__shell {
  padding: 4px;
  background: var(--glass);
  border: 1px solid var(--bdr);
  border-radius: var(--rl-lg);
  transition: var(--t);
}
.pain__card:hover .pain__shell {
  border-color: var(--gold-b);
  box-shadow: 0 0 0 1px var(--gold-glow);
}
.pain__core {
  background: var(--navy-1);
  border-radius: calc(var(--rl-lg) - 4px);
  padding: 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  height: 100%;
}

.pain__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.pain__icon svg { width: 22px; height: 22px; color: var(--gold); }

.pain__core h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--tw);
}
.pain__core p {
  font-size: 14px;
  font-weight: 300;
  color: var(--tm);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about { padding: var(--sp) 0; }

.about__grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 100px;
  align-items: start;
}

/* Photo — double bezel */
.about__visual { position: relative; }
.about__photo-outer {
  padding: 5px;
  background: rgba(26,20,16,0.06);
  border: 1px solid var(--l-bdr);
  border-radius: var(--rl-lg);
  box-shadow: 0 24px 60px rgba(26,20,16,0.12), 0 4px 16px rgba(26,20,16,0.06);
}
.about__photo-inner {
  border-radius: calc(var(--rl-lg) - 5px);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about__deco-border {
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid var(--gold-b);
  border-radius: var(--rl-lg);
  z-index: -1;
}

.about__quote {
  margin-top: 24px;
  padding: 28px 32px;
  background: var(--cream-1);
  border: 1px solid var(--cream-2);
  border-radius: var(--rl);
  position: relative;
}
.quote-mark {
  width: 28px; height: 20px;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.7;
}
.about__quote p {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--l-text);
  line-height: 1.65;
  margin-bottom: 14px;
}
.about__quote cite {
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.about__text { padding-top: 12px; }
.about__text h2 { margin-bottom: 24px; }
.about__lead {
  font-size: 17px;
  font-weight: 400;
  color: var(--l-text);
  line-height: 1.75;
  margin-bottom: 16px;
}
.body-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 36px;
}

.about__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: var(--cream-1);
  border: 1px solid var(--cream-2);
  color: var(--l-body);
}

/* ════════════════════════════════════════
   REFERENZEN
════════════════════════════════════════ */
.referenzen { padding: var(--sp) 0; }

/* Project grid — 4 columns */
.ref__projects {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.ref__project {
  display: block;
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--navy-1);
  border: 1px solid var(--bdr);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  text-decoration: none;
}
.ref__project:hover {
  border-color: var(--gold-b);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35), 0 0 0 1px var(--gold-glow);
}

/* Browser chrome bar */
.ref__p-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--navy-2);
  border-bottom: 1px solid var(--bdr);
}
.ref__dots {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.ref__dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
}
.ref__dots span:nth-child(1) { background: rgba(255,95,87,0.6); }
.ref__dots span:nth-child(2) { background: rgba(255,188,46,0.6); }
.ref__dots span:nth-child(3) { background: rgba(40,200,64,0.6); }
.ref__p-url {
  font-size: 9px;
  color: var(--td);
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Screenshot */
.ref__p-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.ref__p-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s var(--ease);
}
.ref__project:hover .ref__p-img img { transform: scale(1.04); }

/* Info row */
.ref__p-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  gap: 8px;
}
.ref__p-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--tw);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ref__p-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--gold-b);
  padding: 3px 9px;
  border-radius: 100px;
  flex-shrink: 0;
}

/* Bottom CTA row */
.ref__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 40px;
  background: var(--navy-1);
  border: 1px solid var(--bdr);
  border-radius: var(--rl-lg);
}
.ref__bottom p {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--tw);
}

@media (max-width: 1024px) {
  .ref__projects { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ref__projects { grid-template-columns: 1fr; }
  .ref__bottom { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════
   LEISTUNGEN
════════════════════════════════════════ */
.leistungen { padding: var(--sp) 0; }

.lst__grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}

.lst__shell {
  padding: 4px;
  background: rgba(26,20,16,0.06);
  border: 1px solid var(--l-bdr);
  border-radius: var(--rl-lg);
  height: 100%;
  transition: var(--t);
}
.lst__card:hover .lst__shell {
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 12px 40px rgba(26,20,16,0.08);
}
.lst__core {
  background: var(--cream-1);
  border-radius: calc(var(--rl-lg) - 4px);
  padding: 44px;
  height: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.lst__icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--cream-2);
  border: 1px solid var(--l-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.lst__icon svg { width: 24px; height: 24px; color: var(--gold); }

.lst__core h3    { color: var(--l-text); margin-bottom: 10px; }
.lst__sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--l-body);
  margin-bottom: 16px;
}
.lst__core > p   { font-size: 14px; color: var(--l-body); line-height: 1.75; margin-bottom: 24px; font-weight: 300; }

.lst__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lst__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--l-body);
  font-weight: 400;
}
.lst__list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='%23c9a96e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/cover;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ════════════════════════════════════════
   PROZESS
════════════════════════════════════════ */
.prozess { padding: var(--sp) 0; }

.pz__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.pz__step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 28px;
  background: var(--navy-1);
  border: 1px solid var(--bdr);
  border-radius: var(--rl);
  position: relative;
}
.pz__num {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  letter-spacing: -0.02em;
}
.pz__step h3 { font-size: 20px; color: var(--tw); }
.pz__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--gold-b);
  width: fit-content;
}
.pz__step p { font-size: 13px; font-weight: 300; color: var(--tm); line-height: 1.7; }

.pz__line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--gold-b), var(--gold-b));
  align-self: center;
  flex-shrink: 0;
  position: relative;
}
.pz__line::after {
  content: '';
  position: absolute;
  right: -4px; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid var(--gold-b);
  border-top: 1px solid var(--gold-b);
  transform: rotate(45deg);
}

/* ════════════════════════════════════════
   FÜR WEN
════════════════════════════════════════ */
.fuerwen { padding: var(--sp) 0; }

.fw__grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}

.fw__shell {
  padding: 4px;
  border-radius: var(--rl-lg);
  height: 100%;
}
.fw__shell--yes {
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.35);
}
.fw__shell--no {
  background: rgba(180,40,40,0.05);
  border: 1px solid rgba(180,40,40,0.18);
}
.fw__core {
  background: var(--cream-1);
  border-radius: calc(var(--rl-lg) - 4px);
  padding: 44px;
  height: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.fw__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.fw__label svg { width: 18px; height: 18px; flex-shrink: 0; }
.fw__label--yes { color: #7a6020; }
.fw__label--no  { color: #b02020; }

.fw__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fw__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--l-body);
  font-weight: 300;
  line-height: 1.65;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--l-bdr);
}
.fw__list li:last-child { border-bottom: none; padding-bottom: 0; }
.fw__list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}
.fw__list--no li::before { background: #b02020; }

/* ════════════════════════════════════════
   LEISTUNGEN BENEFIT CARDS
════════════════════════════════════════ */
.lst__benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.lst__benefit {
  background: var(--cream-1);
  border: 1px solid var(--l-bdr);
  border-radius: var(--rl);
  padding: 32px 28px;
}
.lst__benefit-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.lst__benefit-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.lst__benefit h4 {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--l-text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.lst__benefit p {
  font-size: 13px;
  color: var(--l-body);
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .lst__benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lst__benefits { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   PROZESS AUFWAND CALLOUT
════════════════════════════════════════ */
.pz__aufwand {
  margin-bottom: 48px;
}
.pz__aufwand-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: var(--rl);
  padding: 20px 28px;
  max-width: 680px;
  margin: 0 auto;
}
.pz__aufwand-inner svg {
  width: 28px; height: 28px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.pz__aufwand-inner strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 2px;
}
.pz__aufwand-inner span {
  font-size: 13px;
  color: var(--td);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   KONTAKT
════════════════════════════════════════ */
.kontakt { padding: var(--sp) 0; }

.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 80px;
  align-items: start;
}

.kontakt__left h2 { margin-bottom: 24px; }
.kontakt__body {
  font-size: 15px;
  font-weight: 300;
  color: var(--tm);
  line-height: 1.8;
  margin-bottom: 36px;
}

.kontakt__proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.proof-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  flex-shrink: 0;
}
.kontakt__proof p { font-size: 13px; color: var(--td); }

.kontakt__mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  transition: gap 0.3s var(--ease);
}
.kontakt__mail:hover { gap: 14px; }
.kontakt__mail svg { width: 18px; height: 18px; }

/* Form — double bezel */
.kontakt__form-shell {
  padding: 4px;
  background: var(--glass);
  border: 1px solid var(--bdr);
  border-radius: var(--rl-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.kontakt__form-core {
  background: var(--navy-1);
  border-radius: calc(var(--rl-lg) - 4px);
  padding: 44px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
}
.kontakt__form-core::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-b), transparent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fg { margin-bottom: 18px; }
.fg label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--td);
  margin-bottom: 8px;
}
.fg input, .fg textarea {
  width: 100%;
  background: rgba(10,21,16,0.6);
  border: 1px solid var(--bdr);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--f-body);
  font-weight: 300;
  color: var(--tw);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  -webkit-appearance: none;
}
.fg textarea { resize: vertical; min-height: 120px; }
.fg input::placeholder, .fg textarea::placeholder { color: var(--td); }
.fg input:focus, .fg textarea:focus {
  border-color: rgba(201,169,110,0.4);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.07);
}
/* ── intl-tel-input overrides ── */
.iti { width: 100%; }
.iti__selected-country {
  background: rgba(10,21,16,0.6) !important;
  border-right: 1px solid var(--bdr) !important;
  border-radius: 10px 0 0 10px !important;
  padding: 0 12px !important;
  color: var(--tw) !important;
}
.iti__selected-dial-code { color: var(--tw) !important; font-size: 13px; }
.iti__arrow { border-top-color: var(--td) !important; }
.iti__flag-container { height: 100%; }
.iti__country-list {
  background: #0f1e16 !important;
  border: 1px solid var(--bdr) !important;
  border-radius: 10px !important;
  color: var(--tw) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5) !important;
}
.iti__country:hover, .iti__country.iti__active { background: rgba(201,169,110,0.1) !important; }
.iti__dial-code { color: var(--td) !important; }
.iti__search-input {
  background: rgba(10,21,16,0.8) !important;
  border: 1px solid var(--bdr) !important;
  color: var(--tw) !important;
  border-radius: 6px !important;
  padding: 8px 10px !important;
}
#phoneInput { border-radius: 0 10px 10px 0 !important; padding-left: 12px !important; }

.form-note {
  margin-top: 16px;
  font-size: 11px;
  color: var(--td);
  text-align: center;
  letter-spacing: 0.03em;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--bdr);
  padding: 64px 0 40px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-b), transparent);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}
.footer__brand p {
  font-size: 13px;
  font-weight: 300;
  color: var(--td);
  margin-top: 10px;
  max-width: 240px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.footer__nav a {
  font-size: 13px;
  color: var(--tm);
  transition: color 0.3s;
}
.footer__nav a:hover { color: var(--gold); }
.footer__copy {
  border-top: 1px solid var(--bdr);
  padding-top: 28px;
  text-align: center;
  font-size: 11px;
  color: var(--td);
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════════
   COOKIE BANNER
════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: rgba(10, 21, 16, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--gold-b);
  padding: 20px 0;
  transform: translateY(110%);
  transition: transform 0.6s var(--ease-out);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cookie-banner__text {
  flex: 1;
}
.cookie-banner__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--tw);
  margin-bottom: 4px;
  font-family: var(--f-body);
}
.cookie-banner__text p {
  font-size: 12px;
  color: var(--td);
  line-height: 1.5;
}
.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btns .btn {
  padding: 10px 20px;
  font-size: 13px;
}
@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cookie-banner__btns { width: 100%; }
  .cookie-banner__btns .btn { flex: 1; justify-content: center; }
}

/* ════════════════════════════════════════
   RESPONSIVE — TABLET 1024px
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner     { grid-template-columns: 1fr 320px; gap: 48px; }
  .about__grid     { grid-template-columns: 300px 1fr; gap: 48px; }
  .ref__projects   { grid-template-columns: repeat(2, 1fr); }
  .pz__grid        { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pz__line        { display: none; }
  .kontakt__grid   { grid-template-columns: 1fr 420px; gap: 48px; }
  .lst__grid       { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE 768px
════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --sp: 72px; --sp-md: 56px; --sp-sm: 48px; }

  .container { padding: 0 16px; }

  /* Nav */
  .nav__island    { margin: 0 12px; padding: 10px 14px; gap: 12px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger    { display: flex; }

  /* Hero */
  .hero { padding: 100px 0 60px; min-height: 100dvh; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__left     { max-width: 100%; }
  .hero__h1       { font-size: clamp(34px, 9vw, 52px); }
  .hero__sub      { max-width: 100%; font-size: 15px; margin-bottom: 32px; }
  .hero__btns     { justify-content: center; flex-direction: column; align-items: center; }
  .hero__btns .btn { width: 100%; justify-content: center; max-width: 340px; }
  .hero__trust    { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .hero__right    { max-width: 280px; margin: 0 auto; }
  .hero__deco-ring { display: none; }
  .hero__scroll   { display: none; }

  /* Sections */
  .sec-head       { margin-bottom: 40px; }
  .sec-sub        { font-size: 15px; }

  /* Pain */
  .pain__grid     { grid-template-columns: 1fr; gap: 12px; }
  .pain__core     { padding: 24px; }

  /* About */
  .about__grid    { grid-template-columns: 1fr; gap: 40px; }
  .about__visual  { max-width: 300px; margin: 0 auto; }
  .about__quote   { padding: 24px; }

  /* Referenzen */
  .ref__projects  { grid-template-columns: 1fr; gap: 12px; }
  .ref__bottom    { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ref__bottom .btn { width: 100%; justify-content: center; }

  /* Leistungen */
  .lst__grid      { grid-template-columns: 1fr; gap: 12px; }
  .lst__core      { padding: 28px; }

  /* Prozess */
  .pz__grid       { grid-template-columns: 1fr; gap: 12px; }
  .pz__line       { display: none; }
  .pz__step       { padding: 24px; }

  /* Für wen */
  .fw__grid       { grid-template-columns: 1fr; gap: 12px; }
  .fw__core       { padding: 28px; }

  /* FAQ */
  .faq .sec-head  { margin-bottom: 0; }

  /* Kontakt */
  .kontakt__grid  { grid-template-columns: 1fr; gap: 40px; }
  .kontakt__form-core { padding: 24px; }
  .form-row       { grid-template-columns: 1fr; }
  .kontakt__mail  {
    font-size: 13px;
    word-break: break-all;
    overflow-wrap: break-word;
  }

  /* Footer */
  .footer__inner  { flex-direction: column; gap: 32px; }
  .footer__nav    { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__copy   { font-size: 10px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE 480px
════════════════════════════════════════ */
@media (max-width: 480px) {
  h2 { font-size: clamp(28px, 8vw, 40px); }
  .hero__h1 { font-size: clamp(30px, 10vw, 44px); }
  .about__chips { gap: 8px; }
  .chip { font-size: 11px; padding: 6px 14px; }
  .kontakt__form-core { padding: 20px; }
}

/* ═══════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════ */
.faq {
  padding: var(--sp) 0;
}
.faq .sec-head {
  margin-bottom: 0;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq__item[open] {
  border-color: rgba(201, 169, 110, 0.35);
}
.faq__q {
  padding: 1.25rem 1.5rem;
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  transition: color 0.2s ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq__item[open] .faq__q {
  color: #fff;
}
.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
}
.faq__a {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.faq__a p {
  font-family: var(--f-body);
  font-size: 0.925rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .faq__q {
    font-size: 0.9rem;
    padding: 1rem 1.125rem;
  }
  .faq__a {
    padding: 0 1.125rem 1rem;
  }
  .faq__a p {
    font-size: 0.875rem;
  }
}
