/* ==========================================================
   Dentertain — Website v3
   Clean white · deep black · blush. Proxima Nova throughout.
   Inspired by julianbaecher.de's directness + emotional voice.
   ========================================================== */

/* ---------- Token overrides (kill the beige) ---------- */
:root {
  /* Backgrounds: pure white, with a faint COOL off-white for variation */
  --bg:         #FFFFFF;
  --bg-alt:     #FAFAFA;
  --bg-soft:    #F5F5F5;        /* neutral cool off-white — no warmth */
  --surface:    #FFFFFF;
  --surface-2:  #FAFAFA;

  /* Foreground: near-black for sharper contrast than --ink-900 espresso */
  --fg:         #0A0A0A;
  --fg-2:       #3D3D3D;
  --fg-3:       #828282;
  --fg-mute:    #BDBDBD;
  --fg-inverse: #FFFFFF;

  /* Borders: hairline, neutral */
  --border:        #ECECEC;
  --border-strong: #0A0A0A;
  --hairline:      rgba(10, 10, 10, 0.08);

  /* Accent: BLUSH — the liebliche farbe */
  --blush-100: #FBE9E2;
  --blush-200: #F6D6CB;
  --blush-300: #F0BCAE;
  --blush-500: #E8A09A;          /* tuned warmer */
  --blush-600: #D77F77;
  --blush-700: #B0594D;
  --blush-ink: #5C2A22;

  /* Active accent (controlled by Tweaks) */
  --accent-active:        var(--blush-500);
  --accent-active-strong: var(--blush-700);
  --accent-active-soft:   var(--blush-100);

  /* Type — Proxima Nova as display AND body (no serif) */
  --font-display: "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-sans:    "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif:   "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif; /* alias kept for back-compat */

  /* Tracking */
  --tracking-display:   0.01em;
  --tracking-eyebrow:   0.32em;
  --tracking-tight:    -0.02em;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent-active); color: #FFFFFF; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1480px; }

section { padding: 110px 0; }
section.tight { padding: 80px 0; }
section.flush { padding: 0; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-3);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent-active);
}
.eyebrow.solo::before { display: none; }
.eyebrow.dark { color: rgba(255,255,255,0.6); }
.eyebrow.dark::before { background: var(--accent-active); }

/* The headline voice — Proxima Nova EXTRABOLD, uppercase, tight tracking */
.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 8.4vw, 124px);
  letter-spacing: var(--tracking-tight);
  line-height: 0.92;
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
  text-transform: uppercase;
}
.h-display em {
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.005em;
  color: var(--accent-active-strong);
  text-transform: none;
  font-family: var(--font-display);
  display: inline-block;
}

.h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: var(--tracking-tight);
  line-height: 1.02;
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
  text-transform: uppercase;
}
.h1 em {
  font-style: normal;
  font-weight: 300;
  color: var(--accent-active-strong);
  text-transform: none;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 44px);
  letter-spacing: var(--tracking-tight);
  line-height: 1.08;
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
  text-transform: uppercase;
}
.h2 em { font-weight: 300; font-style: normal; color: var(--accent-active-strong); text-transform: none; }

.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin: 0;
  text-transform: uppercase;
}

.lead {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 580px;
  text-wrap: pretty;
}
.p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg-2);
  margin: 0;
  text-wrap: pretty;
}
.mono {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--fg-3);
  text-transform: uppercase;
  font-weight: 600;
}
.italic {
  font-style: italic;
  font-weight: 300;
}

.accent-text { color: var(--accent-active-strong); }

/* Editorial pull — light Proxima italic, the "soft moment" */
.editorial {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.4;
  color: var(--fg);
  text-wrap: balance;
  letter-spacing: -0.005em;
}

/* ---------- Buttons (pill rounded) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 18px 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 240ms cubic-bezier(0.22, 1, 0.36, 1);
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn svg { transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--fg);
  color: #FFFFFF;
}
.btn--primary:hover { background: var(--accent-active-strong); }
.btn--primary:active { transform: scale(0.98); }

.btn--accent {
  background: var(--accent-active);
  color: #FFFFFF;
}
.btn--accent:hover { background: var(--accent-active-strong); }

.btn--dark { background: var(--fg); color: #FFFFFF; }
.btn--dark:hover { background: #2C2C2C; }
.btn--dark:active { transform: scale(0.98); }

.btn--inverse { background: #FFFFFF; color: var(--fg); }
.btn--inverse:hover { background: var(--accent-active); color: #FFFFFF; }

.btn--secondary {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}
.btn--secondary:hover { background: var(--fg); color: #FFFFFF; }

.btn--outline-light {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}
.btn--outline-light:hover {
  background: var(--fg);
  color: #FFFFFF;
}

.btn--ghost {
  padding: 8px 0;
  color: var(--fg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}
.btn--ghost:hover { color: var(--accent-active-strong); }

/* ---------- Photo ---------- */
.photo {
  position: relative;
  overflow: hidden;
  background: #1A1A1A;
  background-size: cover;
  background-position: center;
  display: block;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1), filter 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #1A1A1A;
  /* Slight cinematic "shutter reveal" on mount */
  animation: photoVideoIn 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes photoVideoIn {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1.00); }
}
.photo--video { position: relative; }
.photo__live {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  background: rgba(11, 12, 14, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  color: var(--cream-50, #fff);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
}
.photo__live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral-500, #EE5E7C);
  box-shadow: 0 0 0 0 rgba(238, 94, 124, 0.6);
  animation: livePulse 1600ms cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(238, 94, 124, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(238, 94, 124, 0); }
  100% { box-shadow: 0 0 0 0 rgba(238, 94, 124, 0); }
}
.photo--soft  { border-radius: 24px; }
.photo--pill  { border-radius: 50% / 18%; aspect-ratio: 4/9; }
.photo--pill-wide  { border-radius: 32% / 18%; aspect-ratio: 3/4; }   /* gentler pill */
.photo--circle{ border-radius: 50%; aspect-ratio: 1; }
.photo--rounded { border-radius: 20px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.scrolled, .nav.solid {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 14px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  max-width: 1600px;
  margin: 0 auto;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; cursor: pointer; transition: opacity 200ms; }
.nav__brand:hover { opacity: 0.7; }
.nav__brand img { width: 38px; height: 38px; display: block; }
.nav__brand .word {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 16px;
  color: var(--fg);
  text-transform: uppercase;
}
.nav__pill {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 8px 0;
  cursor: pointer;
  transition: color 200ms;
  background: transparent;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 14px; height: 1px;
  background: var(--accent-active);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__link:hover { color: var(--fg); }
.nav__link:hover::after { transform: translateX(-50%) scaleX(1); }
.nav__link.active { color: var(--fg); }
.nav__link.active::after { transform: translateX(-50%) scaleX(1); background: var(--fg); }

/* ---------- Footer ---------- */
.footer {
  background: #0A0A0A;
  color: #FFFFFF;
  padding: 140px 0 36px;
  position: relative;
  overflow: hidden;
}
.footer__giant {
  position: absolute;
  bottom: -56px;
  left: 0; right: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(54px, 11.5vw, 190px);
  letter-spacing: 0.02em;
  text-align: center;
  color: rgba(255,255,255,0.04);
  line-height: 0.9;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  text-transform: uppercase;
}
.footer__inner { position: relative; z-index: 1; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 96px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand { display: flex; flex-direction: column; gap: 20px; max-width: 360px; }
.footer__brand-row { display: flex; align-items: center; gap: 12px; }
.footer__brand img { width: 48px; height: 48px; filter: invert(1) brightness(1.4); }
.footer__brand .word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #FFFFFF;
  text-transform: uppercase;
}
.footer__tag { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer__col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 20px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  padding: 6px 0;
  cursor: pointer;
  transition: color 140ms;
}
.footer__col a:hover { color: var(--accent-active); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: #FFFFFF;
  transition: all 220ms;
}
.footer__social a:hover {
  background: var(--accent-active);
  border-color: var(--accent-active);
}

/* ---------- Page enter ---------- */
@keyframes pageRise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-enter { animation: pageRise 620ms cubic-bezier(0.22, 1, 0.36, 1); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }
.reveal.delay-5 { transition-delay: 400ms; }
.reveal.delay-6 { transition-delay: 480ms; }

/* ---------- HOME — Hero (huge editorial type, single full-bleed background image with white veil) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: #FFFFFF;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: end;
}
.hero__copy { padding-bottom: 40px; }
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fg-2);
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.hero__eyebrow span { white-space: nowrap; }
.hero__eyebrow .sep { width: 18px; height: 1px; background: var(--accent-active); display: inline-block; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 10.5vw, 168px);
  letter-spacing: -0.025em;
  line-height: 0.86;
  color: var(--fg);
  margin: 24px 0 0;
  text-wrap: balance;
  text-transform: uppercase;
}
.hero__title em {
  font-style: normal;
  font-weight: 300;
  color: var(--accent-active-strong);
  text-transform: none;
  letter-spacing: -0.005em;
}
.hero__title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroLineRise 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__title .line:nth-child(1) { animation-delay: 200ms; }
.hero__title .line:nth-child(2) { animation-delay: 340ms; }
.hero__title .line:nth-child(3) { animation-delay: 480ms; }
@keyframes heroLineRise { to { opacity: 1; transform: translateY(0); } }

.hero__sub {
  margin-top: 36px;
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 480px;
  font-weight: 400;
  opacity: 0;
  animation: fadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero__cta-row {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
}
.hero__meta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.3s forwards;
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--fg-3);
  text-transform: uppercase;
  font-weight: 600;
}
.hero__meta-item .dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--accent-active);
  animation: pulse 2s ease-in-out infinite;
}
.hero__meta-item .dot.live { background: #5C9D6E; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

/* Hero pill cluster — two tall pill photos, asymmetric offset */
.hero__cluster {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
  padding-bottom: 0;
}
.hero__cluster .photo {
  width: 100%;
  min-height: 560px;
  aspect-ratio: 4/9;
  opacity: 0;
  animation: shutterReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__cluster .photo:nth-child(1) { animation-delay: 0.5s; transform: translateY(20px); }
.hero__cluster .photo:nth-child(2) { animation-delay: 0.7s; transform: translateY(-40px); }
@keyframes shutterReveal {
  from { opacity: 0; transform: scale(1.06) translateY(20px); }
  to { opacity: 1; }
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  font-weight: 600;
  animation: fadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.6s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--fg-2), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* ---------- Three-word kicker (Julian Bächer voice) ---------- */
.kicker-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fg);
  flex-wrap: wrap;
}
.kicker-row span { display: inline-flex; align-items: center; gap: 24px; }
.kicker-row .dash {
  width: 32px; height: 1px; background: var(--accent-active);
}

/* ---------- Marquee (black band) ---------- */
.marquee {
  background: #0A0A0A;
  color: #FFFFFF;
  padding: 30px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee__track {
  display: inline-flex;
  gap: 56px;
  align-items: center;
  animation: marquee 32s linear infinite;
  padding-right: 56px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.marquee__star {
  font-size: 14px;
  color: var(--accent-active);
  font-weight: 400;
}

/* ---------- Promise band (Julian-Bächer style "Ich fange ein…") ---------- */
.promise {
  padding: 120px 0;
  text-align: center;
  background: #FFFFFF;
}
.promise__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}
.promise__list {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 4.2vw, 56px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--fg);
  text-wrap: balance;
}
.promise__list strong {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  display: inline-block;
}
.promise__list em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-active-strong);
}
.promise__sub {
  margin-top: 36px;
  font-size: 16px;
  color: var(--fg-3);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.promise__sig {
  display: inline-block;
  margin-top: 56px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--accent-active-strong);
  letter-spacing: -0.005em;
}

/* ---------- Section head ---------- */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 64px;
  max-width: 760px;
}
.section-head--center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head--row {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  max-width: none;
  gap: 32px;
  flex-wrap: wrap;
}
.section-head__group { display: flex; flex-direction: column; gap: 18px; max-width: 720px; }

/* ---------- Services (6 cards — rounded, standalone) ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.service-card {
  background: #FFFFFF;
  padding: 44px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--border);
  border-radius: 28px;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 320ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px -28px rgba(10, 10, 10, 0.18);
  border-color: transparent;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-active);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__num {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-active-strong);
  text-transform: uppercase;
}
.service-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), color 360ms;
}
.service-card:hover .service-card__icon {
  transform: translateX(4px);
  color: var(--accent-active-strong);
}
.service-card__icon svg { width: 36px; height: 36px; stroke-width: 1.5; }
.service-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--fg);
  margin: 0;
  text-transform: uppercase;
}
.service-card__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0;
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fg);
  letter-spacing: 0.22em;
  margin-top: 16px;
  transition: color 200ms, gap 200ms;
}
.service-card__link:hover { color: var(--accent-active-strong); gap: 14px; }
.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card__list li {
  font-size: 13px;
  color: var(--fg-2);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--accent-active);
}

/* ---------- About — Dennis intro (pill ovals, like reference 1) ---------- */
.about {
  background: #FFFFFF;
  padding: 120px 0;
  position: relative;
}
.about__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 96px;
  align-items: center;
}
.about__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: end;
}
.about__visual .photo {
  width: 100%;
  aspect-ratio: 4/9;
  min-height: 480px;
  border-radius: 50% / 18%;
  overflow: hidden;
}
.about__visual .photo:nth-child(1) { transform: translateY(0); }
.about__visual .photo:nth-child(2) { transform: translateY(-40px); }
.about__badge {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-active);
  color: #FFFFFF;
  padding: 14px 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 20px 50px -16px rgba(10,10,10,0.25);
}
.about__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 560px;
}
.about__hi {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  color: var(--accent-active-strong);
  letter-spacing: -0.005em;
}
.about__copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-2);
}
.about__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 19px;
  color: var(--fg);
  line-height: 1.55;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--accent-active);
  letter-spacing: -0.005em;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 420px;
}
.about__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: var(--fg);
  letter-spacing: -0.015em;
  line-height: 1;
}
.about__stat-label {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ---------- Style strip — Julian Bächer's "Mein Stil" tone (3 images with caption) ---------- */
.style-strip {
  padding: 120px 0;
  background: var(--bg-soft);
}
.style-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.style-strip__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.style-strip__media {
  width: 100%;
  aspect-ratio: 4/9;
  max-width: 320px;
  min-height: 420px;
  overflow: hidden;
  border-radius: 50% / 18%;
  position: relative;
}
.style-strip__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.style-strip__card:hover .style-strip__media img {
  transform: scale(1.05);
}
.style-strip__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-active-strong);
}
.style-strip__body {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 21px;
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: -0.005em;
  text-wrap: balance;
  max-width: 320px;
}

/* ---------- Process (black) ---------- */
.process {
  background: #0A0A0A;
  color: #FFFFFF;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.process__giant {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(180px, 28vw, 560px);
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.process__head { position: relative; z-index: 1; margin-bottom: 72px; }
.process__head .eyebrow { color: rgba(255,255,255,0.55); }
.process__head .eyebrow::before { background: var(--accent-active); }
.process__head .h1 { color: #FFFFFF; }
.process__head .h1 em { color: var(--accent-active); }
.process__head .lead { color: rgba(255,255,255,0.7); }
.process__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step {
  padding: 36px 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.process-step::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 100%; height: 1px;
  background: var(--accent-active);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}
.process-step:hover::before { transform: scaleX(1); }
.process-step__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--accent-active);
}
.process-step__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: #FFFFFF;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.process-step__body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

/* ---------- Testimonials (white, big quote, no beige) ---------- */
.testimonial {
  background: #FFFFFF;
  padding: 110px 0;
  position: relative;
  border-top: 1px solid var(--border);
}
.testimonial__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.testimonial__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 120px;
  line-height: 0.5;
  color: var(--accent-active);
  margin-bottom: 24px;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.32;
  color: var(--fg);
  letter-spacing: -0.005em;
  text-wrap: balance;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial__stars {
  color: var(--accent-active-strong);
  font-size: 19px;
  letter-spacing: 6px;
  margin-bottom: 18px;
}
.testimonial__quote--long { font-size: clamp(17px, 2.4vw, 23px); line-height: 1.55; max-width: 760px; margin-left: auto; margin-right: auto; }
.testimonial__gcta { margin-top: 26px; }
.testimonial__attr {
  margin-top: 36px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.testimonial__nav {
  display: inline-flex;
  gap: 12px;
  margin-top: 48px;
}
.testimonial__nav button {
  width: 50px; height: 50px;
  border-radius: 999px;
  border: 1px solid var(--fg);
  background: transparent;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms;
}
.testimonial__nav button:hover {
  background: var(--fg);
  color: #FFFFFF;
}

/* ---------- Gear section ---------- */
.gear {
  padding: 110px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
}
.gear-photo {
  margin-top: 48px;
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 14px;
  overflow: hidden;
}
.gear-photo image-slot {
  display: block;
  width: 100%;
  height: 100%;
}
.gear-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.gear-card {
  padding: 36px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-soft);
  border-radius: 24px;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
              background 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gear-card:hover {
  background: #0A0A0A;
  transform: translateY(-4px);
}
.gear-card:hover .gear-card__title,
.gear-card:hover .gear-card__num { color: var(--accent-active); }
.gear-card:hover .gear-card__body { color: rgba(255,255,255,0.7); }
.gear-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--accent-active-strong);
  text-transform: uppercase;
  transition: color 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gear-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--fg);
  text-transform: uppercase;
  transition: color 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gear-card__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-2);
  transition: color 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- CTA band (huge type, soft bg, blush highlight) ---------- */
.cta-band {
  padding: 130px 0;
  text-align: center;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.cta-band__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.cta-band__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: -0.025em;
  line-height: 0.92;
  color: var(--fg);
  margin: 24px 0 36px;
  text-transform: uppercase;
}
.cta-band__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-active-strong);
  text-transform: none;
  letter-spacing: -0.005em;
}
.cta-band__sub {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 44px;
}

/* ---------- Logo strip (featured in) ---------- */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  gap: 40px;
  flex-wrap: wrap;
}
.logo-strip__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.logo-strip__items {
  display: flex;
  gap: 56px;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.logo-strip__item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--fg-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 200ms;
}
.logo-strip__item:hover { color: var(--fg); }

/* ---------- PORTFOLIO PAGE ---------- */
.portfolio-page {
  padding-top: 140px;
  padding-bottom: 60px;
}
.portfolio-hero {
  padding: 0 0 60px;
  text-align: center;
}
.portfolio-hero .eyebrow { justify-content: center; }
.portfolio-hero h1 { margin-top: 24px; }
.portfolio-hero .lead { margin: 32px auto 0; }

.portfolio-tabs {
  display: inline-flex;
  gap: 0;
  margin: 40px auto 0;
  border: 1px solid var(--fg);
  border-radius: 999px;
  padding: 4px;
}
.portfolio-tab {
  padding: 12px 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-2);
  cursor: pointer;
  transition: all 220ms;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border-radius: 999px;
  border: none;
}
.portfolio-tab.active { background: var(--fg); color: #FFFFFF; }
.portfolio-tab:not(.active):hover { color: var(--fg); }
.portfolio-tab__count {
  font-size: 10px;
  opacity: 0.55;
  font-weight: 500;
}

/* Stage above dock */
.portfolio-stage {
  margin: 72px auto 0;
  max-width: 1480px;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.portfolio-stage__viewer {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0A0A0A;
  overflow: hidden;
  border-radius: 28px;
}
.portfolio-stage__viewer .photo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.portfolio-stage__viewer .photo.active { opacity: 1; }
.portfolio-stage__viewer .photo img {
  transform: scale(1.04);
  transition: transform 8s linear;
}
.portfolio-stage__viewer .photo.active img { transform: scale(1); }
.portfolio-stage__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}
.portfolio-stage__caption {
  position: absolute;
  bottom: 36px;
  left: 40px;
  right: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: #FFFFFF;
  z-index: 2;
}
.portfolio-stage__caption-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.portfolio-stage__caption-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.015em;
  line-height: 1.04;
  margin: 10px 0 0;
  text-transform: uppercase;
}
.portfolio-stage__play {
  width: 84px; height: 84px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 220ms;
}
.portfolio-stage__play:hover {
  background: var(--accent-active);
  color: #FFFFFF;
  transform: scale(1.06);
}
.portfolio-stage__play svg { width: 28px; height: 28px; stroke-width: 1.5; }
.portfolio-stage__video-pill {
  position: absolute;
  top: 28px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFFFFF;
  z-index: 2;
}
.portfolio-stage__video-pill .pill-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--accent-active);
  animation: pulse 1.6s ease-in-out infinite;
}

/* Dock */
.portfolio-dock-wrap {
  margin: 96px auto 0;
  padding: 0 32px 120px;
  max-width: 1480px;
  position: relative;
  z-index: 30;
}
.portfolio-dock-hint {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 22px;
}
.portfolio-dock {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  justify-content: center;
  padding: 28px 32px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 28px;
  scrollbar-width: none;
  perspective: 1200px;
  position: relative;
  z-index: 30;
  /* overflow: visible so scale-up items can pop above the dock */
  overflow: visible;
}
.portfolio-dock::-webkit-scrollbar { display: none; }
.dock-item {
  flex-shrink: 1;
  min-width: 0;
  width: clamp(28px, 5.2vw, 64px);
  height: clamp(36px, 6.4vw, 80px);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transform-origin: bottom center;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  background: #0A0A0A;
  border-radius: 12px;
  z-index: 1;
}
.dock-item:hover {
  z-index: 20;
}
.dock-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.dock-item.active {
  outline: 2px solid var(--accent-active);
  outline-offset: 3px;
}
.dock-item__type {
  position: absolute;
  top: 6px; right: 6px;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 200ms;
}
.dock-item__type svg { width: 10px; height: 10px; }
.dock-item:hover .dock-item__type,
.dock-item.active .dock-item__type { opacity: 1; }
.dock-item__label {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--fg);
  color: #FFFFFF;
  padding: 7px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms, transform 200ms;
}
.dock-item:hover .dock-item__label,
.portfolio-dock[data-scrub="1"] .dock-item.active .dock-item__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Portfolio grid (masonry) */
.portfolio-grid {
  margin: 96px auto 0;
  max-width: 1480px;
  padding: 0 32px;
  columns: 3;
  column-gap: 16px;
}
.portfolio-grid__item {
  margin-bottom: 16px;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  border-radius: 24px;
}
.portfolio-grid__item img {
  width: 100%; height: auto;
  display: block;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms;
  filter: grayscale(0.05);
}
/* Hover-Effekte NUR bei echtem Hover — auf iOS schluckt hover-gating sonst den
   ersten Tap (Klick kam erst beim zweiten Tippen an) */
@media (hover: hover) {
  .portfolio-grid__item:hover img { transform: scale(1.04); filter: grayscale(0); }
}
.portfolio-grid__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.78) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 280ms;
  color: #FFFFFF;
}
@media (hover: hover) {
  .portfolio-grid__item:hover .portfolio-grid__item-overlay { opacity: 1; }
}
/* Touch: Labels immer sichtbar (kein Hover vorhanden; fixt zugleich den iOS-Erst-Tap) */
@media (hover: none) {
  .portfolio-grid__item-overlay { opacity: 1; }
}
.portfolio-grid__item-meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.portfolio-grid__item-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.005em;
  margin-top: 6px;
  text-transform: uppercase;
}
.portfolio-grid__type {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: #0A0A0A; /* opak — kein Durchscheinen der Seite (immersiver Viewer) */
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 96px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
/* Top-Bar: Zähler links, Schließen rechts (Muster iOS-Foto-Viewer) */
.lightbox__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  padding-top: max(18px, env(safe-area-inset-top, 0px));
}
.lightbox__count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,0.7);
}
.lightbox__close {
  width: 46px; height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms, color 200ms, border-color 200ms;
  cursor: pointer;
}
.lightbox__close:hover { background: #FFFFFF; color: var(--fg); }
/* Blätter-Pfeile — eigenständig (NICHT .lightbox__close: animations.css erzwingt
   dort position:relative für den Ripple und würde das absolute Layout brechen) */
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms, color 200ms;
  cursor: pointer;
  z-index: 2;
}
.lightbox__nav:hover { background: #FFFFFF; color: var(--fg); }
.lightbox__nav:active { transform: translateY(-50%) scale(0.96); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
/* Filmstreifen — horizontale Snap-Leiste, aktives Thumb mit Blush-Ring */
.lightbox__thumbs {
  display: flex;
  gap: 8px;
  max-width: 100%;
  padding: 4px 6px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.lightbox__thumbs::-webkit-scrollbar { display: none; }
.lightbox__thumb {
  flex: 0 0 auto;
  width: 54px; height: 40px;
  padding: 0; border: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #1A1A1A;
  opacity: 0.55;
  scroll-snap-align: center;
  transition: opacity 240ms var(--ease-out);
}
.lightbox__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox__thumb.active { outline: 2px solid var(--accent-active); outline-offset: 2px; opacity: 1; }
.lightbox__thumb:hover { opacity: 1; }
.lightbox__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.lightbox__media {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 16px;
}
.lightbox__caption {
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  text-align: center;
}

/* ---------- CONTACT PAGE ---------- */
.contact-page {
  padding-top: 140px;
  padding-bottom: 80px;
  background: #FFFFFF;
}
.contact-hero {
  max-width: 1480px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
  align-items: start;
}
.contact-hero__left { padding-top: 20px; }
.contact-hero h1 {
  margin: 24px 0 32px;
}
.contact-hero .lead { font-size: 18px; }
.contact-info {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info__row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg-2);
}
.contact-info__row:last-child { border-bottom: 1px solid var(--border); }
.contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  flex-shrink: 0;
  transition: all 220ms;
}
.contact-info__row:hover .contact-info__icon {
  background: var(--fg);
  color: #FFFFFF;
}
.contact-info__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.contact-info__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
  letter-spacing: -0.005em;
}
.contact-info__row-text {
  display: flex; flex-direction: column; gap: 4px;
}

.contact-form-wrap {
  background: var(--bg-soft);
  padding: 56px 56px 48px;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  width: 100%;
}
.contact-form-wrap::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 999px;
  background: var(--accent-active);
  opacity: 0.25;
  pointer-events: none;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: min-content;
  gap: 28px 36px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.contact-form__head { grid-column: span 2; margin-bottom: 12px; }
.contact-form__head-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.005em;
  margin: 10px 0 4px;
  color: var(--fg);
  text-transform: uppercase;
}
.contact-form__head-sub {
  font-size: 14px;
  color: var(--fg-2);
}
.field { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.field.full { grid-column: span 2; }
.field__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 14px;
}
.field__label > span:last-child {
  font-weight: 500;
  letter-spacing: 0.18em;
  flex-shrink: 0;
  margin-left: auto;
}
.field__label > span:last-child.req,
.field__label .req {
  margin-left: auto;
}
.field__label .req { color: var(--accent-active-strong); }
.field__input,
.field__select,
.field__textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--fg);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--fg-mute);
  padding: 12px 0;
  outline: none;
  width: 100%;
  transition: border-color 220ms;
}
.field__input:focus,
.field__select:focus,
.field__textarea:focus { border-bottom-color: var(--accent-active); }
.field__textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.field__input::placeholder, .field__textarea::placeholder { color: var(--fg-mute); }
.field__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' fill='none' stroke='%230A0A0A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 10px 6px;
  padding-right: 26px;
  cursor: pointer;
}
.field-row {
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}
.consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.02em;
}
.consent input { width: 16px; height: 16px; accent-color: var(--accent-active); cursor: pointer; }

/* Chips */
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  padding: 11px 20px;
  border: 1px solid var(--fg-mute);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--fg);
  cursor: pointer;
  transition: all 200ms;
  background: transparent;
  text-transform: uppercase;
}
.chip:hover { border-color: var(--fg); }
.chip.active {
  background: var(--fg);
  color: #FFFFFF;
  border-color: var(--fg);
}

/* Sent state */
.sent-state {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 32px;
  gap: 22px;
}
.sent-state__icon {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: var(--accent-active);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.sent-state__icon svg { width: 40px; height: 40px; stroke-width: 1.6; }

/* FAQ */
.faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 32px 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--fg);
  text-transform: uppercase;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--fg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 400;
  color: var(--fg);
  flex-shrink: 0;
  transition: all 220ms;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--fg);
  color: #FFFFFF;
}
.faq-item__body {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg-2);
  max-width: 700px;
}

/* ---------- CHATBOT ---------- */
.chat-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--fg);
  color: #FFFFFF;
  padding: 16px 22px 16px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 24px 60px -12px rgba(10,10,10,0.42);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 240ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(80px);
  opacity: 0;
  pointer-events: none;
  max-width: 380px;
}
.chat-bubble.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.chat-bubble:hover {
  transform: translateY(-4px);
  background: #1F1F1F;
}
.chat-bubble__avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--accent-active);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
  position: relative;
  color: #FFFFFF;
}
.chat-bubble__avatar::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 12px; height: 12px;
  border-radius: 999px;
  background: #5C9D6E;
  border: 2px solid var(--fg);
}
.chat-bubble__text { line-height: 1.4; }
.chat-bubble__text-emph {
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
}

.chat-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 95;
  width: 440px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 48px);
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 40px 100px -20px rgba(10,10,10,0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: all 320ms cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid var(--border);
}
.chat-panel.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.chat-panel__head {
  background: var(--fg);
  color: #FFFFFF;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.chat-panel__head .chat-bubble__avatar { background: var(--accent-active); }
.chat-panel__head-text { flex: 1; }
.chat-panel__head-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.chat-panel__head-role {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  font-weight: 600;
}
.chat-panel__close {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 180ms;
}
.chat-panel__close:hover { background: rgba(255,255,255,0.16); }

.chat-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-soft);
  min-height: 280px;
  max-height: 460px;
}

.chat-msg {
  max-width: 84%;
  padding: 14px 18px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.5;
  animation: msgRise 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes msgRise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg--bot {
  background: #FFFFFF;
  color: var(--fg);
  align-self: flex-start;
  border: 1px solid var(--border);
  border-bottom-left-radius: 6px;
}
.chat-msg--user {
  background: var(--fg);
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 6px;
}
.chat-msg em {
  font-style: italic;
  font-weight: 700;
  color: var(--accent-active-strong);
}
.chat-msg--user em { color: var(--accent-active); }

.chat-typing {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FFFFFF;
  padding: 14px 16px;
  border-radius: 20px;
  border-bottom-left-radius: 6px;
  border: 1px solid var(--border);
}
.chat-typing span {
  width: 6px; height: 6px;
  background: var(--fg-3);
  border-radius: 999px;
  animation: typingDot 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.chat-option {
  padding: 10px 18px;
  border: 1px solid var(--fg-mute);
  border-radius: 999px;
  background: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
  transition: all 200ms;
  text-align: left;
}
.chat-option:hover {
  background: var(--fg);
  color: #FFFFFF;
  border-color: var(--fg);
}
/* "Kurze Frage stellen" — dezent abgesetzt von den inhaltlichen Optionen */
.chat-option--ask {
  border-style: dashed;
  color: var(--fg-2);
  background: transparent;
}
.chat-offer__error {
  margin: 10px 0 4px;
  font-size: 12.5px;
  color: #B0594D;
}

.chat-input-row {
  display: flex;
  gap: 10px;
  padding: 16px;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
}
.chat-input {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  outline: none;
  color: var(--fg);
  transition: all 200ms;
}
.chat-input:focus { border-color: var(--accent-active); background: #FFFFFF; }
.chat-send {
  width: 46px; height: 46px;
  border-radius: 999px;
  background: var(--fg);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms;
  flex-shrink: 0;
}
.chat-send:hover { background: var(--accent-active-strong); }
.chat-send:disabled { opacity: 0.4; cursor: not-allowed; }

.chat-offer {
  background: #FFFFFF;
  padding: 20px 20px;
  margin-top: 4px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--fg);
  border-radius: 18px;
}
.chat-offer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.chat-offer__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--fg);
  text-transform: uppercase;
}
.chat-offer__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent-active);
  color: #FFFFFF;
}
.chat-offer__row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fg-2);
  gap: 16px;
}
.chat-offer__row strong { font-weight: 700; color: var(--fg); text-align: right; }
.chat-offer__row-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.chat-offer__note {
  font-size: 12px;
  color: var(--fg-2);
  line-height: 1.6;
  font-style: italic;
  font-weight: 300;
}
.chat-offer__cta {
  margin-top: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--fg);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background 200ms;
}
.chat-offer__cta:hover { background: var(--accent-active-strong); }

/* ---------- Language switch ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--fg-3);
}
.lang-switch button {
  background: transparent;
  color: var(--fg-3);
  padding: 8px 6px;
  cursor: pointer;
  transition: color 160ms;
  font: inherit;
  letter-spacing: inherit;
}
.lang-switch button.active { color: var(--fg); }
.lang-switch button:hover { color: var(--fg); }
.lang-switch span { opacity: 0.4; }

/* ---------- Portfolio view toggle ---------- */
.portfolio-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--fg);
  border-radius: 999px;
  padding: 4px;
  margin: 56px auto 0;
}
.portfolio-view-btn {
  padding: 11px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-2);
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border-radius: 999px;
  border: none;
}
.portfolio-view-btn.active { background: var(--accent-active); color: #FFFFFF; }
.portfolio-view-btn:not(.active):hover { color: var(--fg); }
.portfolio-view-btn svg { stroke-width: 1.6; }

.portfolio-view-row {
  text-align: center;
  margin-bottom: 8px;
}

/* ---------- Portfolio tiles view (uniform square tiles) ---------- */
.portfolio-tiles-wrap {
  margin: 72px auto 0;
  max-width: 1480px;
  padding: 0 32px;
}
.portfolio-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-tile {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  background: #0A0A0A;
  aspect-ratio: 4/5;
  display: block;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.portfolio-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px -28px rgba(10,10,10,0.32);
}
.portfolio-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}
.portfolio-tile:hover img { transform: scale(1.06); }
.portfolio-tile__type {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
}
.portfolio-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px 26px;
  color: #FFFFFF;
  pointer-events: none;
}
.portfolio-tile__meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.portfolio-tile__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin-top: 6px;
  text-transform: uppercase;
}
.portfolio-tile__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 64px; height: 64px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: var(--fg);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: all 320ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.portfolio-tile:hover .portfolio-tile__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.portfolio-tile__play svg { width: 22px; height: 22px; stroke-width: 1.5; }

@media (max-width: 980px) {
  .portfolio-tiles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .portfolio-tiles { grid-template-columns: 1fr; }
}

/* Fade transition between views */
@keyframes viewFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.portfolio-view-fade {
  animation: viewFade 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Accent tweaks (Blush / Sage / Peach) ---------- */
:root { --accent-active: var(--blush-500); --accent-active-strong: var(--blush-700); --accent-active-soft: var(--blush-100); }
:root[data-accent="sage"]   { --accent-active: #A8B89A; --accent-active-strong: #5E6F50; --accent-active-soft: #E6EBDF; }
:root[data-accent="peach"]  { --accent-active: #F3B79A; --accent-active-strong: #B86D49; --accent-active-soft: #FCE6D8; }
:root[data-accent="ink"]    { --accent-active: #0A0A0A; --accent-active-strong: #0A0A0A; --accent-active-soft: #EFEFEF; }

/* ---------- Responsive ---------- */
/* ---------- Nav right cluster + hamburger toggle ---------- */
.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 999px;
  color: var(--fg);
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.nav__menu-toggle:hover { background: var(--fg); color: #FFF; border-color: var(--fg); }
.nav.menu-open .nav__menu-toggle { background: var(--fg); color: #FFF; border-color: var(--fg); }

/* ---------- Responsive: Large tablet & smaller (≤1100) ---------- */
@media (max-width: 1100px) {
  .container, .nav__inner, .hero__inner { padding-left: 28px; padding-right: 28px; }

  /* Sections (scale large paddings down) */
  section { padding: 84px 0; }
  .promise, .about, .style-strip { padding: 88px 0; }
  .process { padding: 96px 0; }

  /* Hero — minmax(0,…): kein Kind (nowrap-Eyebrow, Video) darf die Spalte aufblasen */
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .hero__copy { padding-bottom: 0; min-width: 0; }
  .hero__title { font-size: clamp(64px, 11vw, 132px); }
  .hero__cluster { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; max-width: 760px; margin: 0 auto; }
  .hero__cluster .photo { min-height: 440px; }
  .hero__cluster .photo:nth-child(1) { transform: translateY(12px); }
  .hero__cluster .photo:nth-child(2) { transform: translateY(-24px); }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: 56px; }
  .about__visual { max-width: 600px; margin: 0 auto; }
  .about__visual .photo { min-height: 400px; }

  /* Services / Gear / Process / Style */
  .services { grid-template-columns: 1fr 1fr; }
  .gear-grid { grid-template-columns: 1fr 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .style-strip__grid { grid-template-columns: 1fr; gap: 28px; }
  .style-strip__card { max-width: 520px; margin: 0 auto; }

  /* Process giant background text */
  .process__giant { font-size: clamp(220px, 32vw, 360px); }

  /* Portfolio */
  .portfolio-grid { columns: 2; }

  /* Contact */
  .contact-hero { grid-template-columns: 1fr; gap: 48px; }

  /* Hide nav__pill on tablet — replace with hamburger */
  .nav__pill { display: none; }
  .nav__menu-toggle { display: inline-flex; }

  /* Mobile menu panel (opens via hamburger) */
  .nav.menu-open .nav__pill {
    display: flex;
    position: absolute;
    top: calc(100% + 4px);
    right: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    min-width: 220px;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 24px 56px -20px rgba(10,10,10,0.28);
    animation: menuRise 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  @keyframes menuRise {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav.menu-open .nav__link {
    text-align: left;
    padding: 12px 14px;
    font-size: 13px;
    letter-spacing: 0.16em;
    border-radius: 12px;
    width: 100%;
  }
  .nav.menu-open .nav__link.active { background: var(--cream-100, #FAF6F2); color: var(--fg); }
}

/* ---------- Responsive: Mobile (≤720) ---------- */
@media (max-width: 720px) {
  .container, .nav__inner, .hero__inner { padding-left: 20px; padding-right: 20px; }

  /* Section padding */
  section { padding: 64px 0; }
  .promise, .about, .style-strip { padding: 64px 0; }
  .process { padding: 72px 0; }

  /* Nav */
  .nav { padding: 14px 0; }
  .nav.scrolled { padding: 10px 0; }
  .nav__brand .word { display: none; }
  .nav__brand img { width: 32px; height: 32px; }
  .nav__right { gap: 8px; }
  .nav__cta { padding: 10px 14px; font-size: 11px; }
  .nav__cta svg { width: 12px; height: 12px; }
  .nav.menu-open .nav__pill { right: 16px; left: 16px; min-width: 0; }

  /* Hero */
  .hero { padding: 96px 0 48px; min-height: auto; }
  .hero__title { font-size: clamp(44px, 13vw, 80px) !important; line-height: 0.92; }
  .hero__sub { font-size: 15px; margin-top: 22px; line-height: 1.6; }
  .hero__eyebrow { font-size: 10px; gap: 12px; flex-wrap: wrap; row-gap: 6px; }
  .hero__eyebrow span { white-space: normal; }
  .hero__eyebrow .sep { width: 12px; }
  .hero__cta-row { margin-top: 28px; gap: 10px; }
  .hero__cta-row .btn { padding: 12px 18px; font-size: 11px; }
  .hero__meta { margin-top: 26px; gap: 16px; }
  .hero__meta-item { font-size: 10px; letter-spacing: 0.14em; }
  .hero__cluster { gap: 12px; max-width: 100%; }
  .hero__cluster .photo { min-height: 280px; }
  .hero__scroll { display: none; }

  /* Kicker row */
  .kicker-row { font-size: 11px; gap: 14px; padding: 20px 0; }
  .kicker-row .dash { width: 16px; }

  /* Marquee */
  .marquee { padding: 24px 0; }
  .marquee__item { font-size: 28px; gap: 32px; }
  .marquee__track { gap: 36px; }

  /* Promise band */
  .promise__list { font-size: clamp(26px, 6.8vw, 38px); line-height: 1.18; }
  .promise__sub { font-size: 14px; margin-top: 24px; }
  .promise__sig { font-size: 14px; margin-top: 32px; }

  /* Services */
  .services { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .service-card { padding: 32px 24px 28px; }
  .service-card__title { font-size: 18px; }

  /* Section head */
  .section-head { gap: 14px; }
  .section-head--row { flex-direction: column; align-items: flex-start; gap: 18px; }

  /* About */
  .about__inner { gap: 36px; }
  .about__visual { max-width: 100%; gap: 12px; grid-template-columns: 1fr 1fr; }
  .about__visual .photo { min-height: 280px; }
  .about__visual .photo:nth-child(2) { transform: translateY(-20px); }
  .about__hi { font-size: 19px; }
  .about__copy { gap: 16px; }
  .about__quote { font-size: 15px; }
  .about__badge { top: 12px; right: 12px; font-size: 9px; padding: 6px 12px; }
  .about__stats { gap: 28px; margin-top: 8px; }
  .about__stat-num { font-size: 40px; }

  /* Stil-Sektion: horizontales Snap-Karussell (Peek zeigt die nächste Karte an)
     statt 3 gestapelter Bild+Text-Blöcke — spart ~2 Screens Scrollen */
  .style-strip__grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    margin: 0 -20px;
    padding: 4px 20px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .style-strip__grid::-webkit-scrollbar { display: none; }
  .style-strip__card { flex: 0 0 76vw; max-width: 320px; margin: 0; scroll-snap-align: center; }
  /* Karussell-Karten immer sichtbar — Scroll-Reveal würde den Peek verstecken */
  .style-strip__card.reveal { opacity: 1; transform: none; transition: none; }
  .style-strip__grid .style-strip__card .style-strip__title,
  .style-strip__grid .style-strip__card .style-strip__body { opacity: 1; transform: none; }
  /* Bild = DIESELBE 4/9-Pille (50%/18%) wie Hero & Über-mich — nur schmaler (232px),
     damit Bild + Text zusammen in einen Screen passen (~522px Bildhöhe). */
  .style-strip__media { max-width: 232px; min-height: 0; aspect-ratio: 4/9; border-radius: 50% / 18%; }
  .style-strip__title { font-size: 11px; }
  .style-strip__body { font-size: 15px; }

  /* Über-mich: Fotos kompakter, weniger Versatz */
  .about__visual .photo { min-height: 240px; }
  .about__visual .photo:nth-child(2) { transform: translateY(-12px); }

  /* Gear — Karten behalten ihr Innen-Padding (Text darf nicht an der Kante kleben) */
  .gear-grid { grid-template-columns: 1fr; }
  .gear-card { padding: 26px 22px 24px; }

  /* Process */
  .process__grid { grid-template-columns: 1fr; gap: 28px; }
  .process__giant { font-size: clamp(140px, 32vw, 220px); opacity: 0.06; }
  .process__head { margin-bottom: 48px; }
  .process-step__title { font-size: 18px; }

  /* Testimonial */
  /* Google-Rezensionen: hochkant kleiner setzen — echte Texte sind länger als Zitate */
  .testimonial__quote { font-size: clamp(19px, 4.6vw, 26px); }
  .testimonial__quote--long { font-size: 15.5px; line-height: 1.65; }
  .testimonial__stars { font-size: 16px; letter-spacing: 5px; margin-bottom: 14px; }

  /* CTA band */
  .cta-band { padding: 72px 0; }
  .cta-band__title { font-size: clamp(36px, 10vw, 60px); }
  .cta-band__sub { font-size: 15px; }

  /* Footer */
  .footer__giant { font-size: clamp(40px, 13.5vw, 120px); bottom: -18px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; padding: 56px 0; }
  .footer__brand { grid-column: span 2; max-width: 100%; }
  .footer__bottom { flex-direction: column; gap: 8px; align-items: flex-start; padding: 24px 0; font-size: 10px; }

  /* ============ PORTFOLIO ============ */
  .portfolio-page { padding-top: 96px; padding-bottom: 24px; }
  .portfolio-hero { padding-bottom: 24px; }
  .portfolio-hero h1 { font-size: clamp(48px, 13vw, 80px) !important; margin-top: 16px; }
  .portfolio-hero .lead { font-size: 15px; margin-top: 24px; }
  .portfolio-tabs { flex-wrap: wrap; justify-content: center; margin-top: 28px; gap: 6px; }
  .portfolio-tab { padding: 9px 16px; font-size: 11px; }
  .portfolio-view-toggle { margin-top: 28px; }
  .portfolio-view-btn { padding: 9px 16px; font-size: 10px; }
  .portfolio-view-row { margin-bottom: 0; }

  /* Stage */
  .portfolio-stage { margin-top: 40px; padding: 0 16px; }
  .portfolio-stage__viewer { aspect-ratio: 4/5; border-radius: 16px; }
  .portfolio-stage__caption { left: 18px; right: 18px; bottom: 18px; gap: 14px; }
  .portfolio-stage__caption-meta { font-size: 10px; }
  .portfolio-stage__caption-title { font-size: clamp(20px, 5.6vw, 30px); }
  .portfolio-stage__play { width: 56px; height: 56px; }
  .portfolio-stage__play svg { width: 22px; height: 22px; }
  .portfolio-stage__video-pill { top: 14px; left: 14px; padding: 6px 10px; font-size: 9px; letter-spacing: 0.14em; }

  /* Dock — Touch-Scrubber: alle Items passen in die Leiste, Finger-Drag = Live-Preview */
  .portfolio-dock-wrap { margin-top: 44px; padding: 0 16px 56px; }
  .portfolio-dock { gap: 3px; padding: 14px 10px; justify-content: center; touch-action: none; }
  .dock-item { flex: 1 1 0; min-width: 0; width: auto; height: 52px; max-width: 46px; border-radius: 8px; }
  .dock-item.active { outline-offset: 2px; }
  .dock-item__type { display: none; }
  .dock-item__label { top: -34px; padding: 6px 10px; font-size: 9px; letter-spacing: 0.12em; }
  .portfolio-dock-hint { font-size: 9px; }

  /* Grid */
  .portfolio-grid { margin-top: 40px; padding: 0 16px; columns: 2; column-gap: 8px; }
  .portfolio-grid__item { margin-bottom: 8px; border-radius: 14px; }
  .portfolio-grid__item-title { font-size: 12px; }
  .portfolio-grid__item-overlay { padding: 14px; }

  /* Tiles */
  .portfolio-tiles-wrap { margin-top: 36px; padding: 0 16px; }
  .portfolio-tiles { grid-template-columns: 1fr 1fr; gap: 10px; }
  .portfolio-tile { aspect-ratio: 3/4; }

  /* Lightbox — immersiver Vollbild-Viewer: Zähler+X oben, Bild mittig full-bleed,
     Caption + Filmstreifen unten; blättern per Wisch (Pfeile nur Desktop) */
  .lightbox { padding: calc(72px + env(safe-area-inset-top, 0px)) 0 calc(16px + env(safe-area-inset-bottom, 0px)); }
  .lightbox__bar { padding: 12px 14px; padding-top: max(12px, env(safe-area-inset-top, 0px)); }
  .lightbox__close { width: 44px; height: 44px; }
  .lightbox__nav { display: none; }
  .lightbox__media { border-radius: 0; max-height: 60vh; }
  .lightbox__inner { gap: 14px; }
  .lightbox__caption { font-size: 11px; letter-spacing: 0.14em; padding: 0 16px; }
  .lightbox__thumbs { padding: 4px 16px; scroll-snap-type: x mandatory; }
  .lightbox__thumb { width: 58px; height: 44px; }

  /* ============ CONTACT ============ */
  .contact-page { padding-top: 96px; }
  .contact-hero { gap: 40px; padding: 0; }
  .contact-hero__left .h-display { font-size: clamp(44px, 12vw, 72px); }
  .contact-hero__left .lead { font-size: 15px; }
  .contact-info { gap: 16px; }
  .contact-info__row { gap: 14px; }
  .contact-form { grid-template-columns: 1fr; gap: 16px; }
  .field.full { grid-column: span 1; }
  .field-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .field-row .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 28px 20px; border-radius: 20px; }
  .contact-form__head-title { font-size: 22px; }
  .chips { gap: 6px; }
  .chip { padding: 8px 14px; font-size: 11px; }
  .faq-item { padding: 18px 0; }
  .faq-item summary { font-size: 16px; gap: 16px; }
  .faq-item__body { font-size: 14px; }
  .sent-state { padding: 32px 16px; }

  /* Chatbot */
  .chat-panel { right: 10px; bottom: 10px; left: 10px; width: auto; max-height: 78vh; }
  .chat-bubble { right: 12px; bottom: 12px; max-width: calc(100vw - 24px); }
  .chat-bubble__text { font-size: 12px; }
}

/* ---------- Responsive: Very small phones (≤420) ---------- */
@media (max-width: 420px) {
  .portfolio-tiles { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { grid-column: span 1; }
  .lang-switch { font-size: 10px; }
  .nav__cta { padding: 8px 12px; }
  .nav__cta span { display: none; }
  .hero__cluster { gap: 10px; }
  .hero__cluster .photo { min-height: 240px; }
  .promise__list { font-size: clamp(24px, 7vw, 32px); }
}

/* ---------- Responsive: Handy im QUERFORMAT (Touch, Höhe ≤480) ----------
   Breite liegt dann >720 → die Desktop-/Tablet-Regeln greifen, aber die Höhe
   ist winzig. Dieser Block (am Dateiende = gewinnt bei gleicher Spezifität)
   staucht alles Vertikale. pointer:coarse hält kleine Desktop-Fenster raus. */
@media (orientation: landscape) and (max-height: 480px) and (pointer: coarse) {
  /* Hero: Copy und Videos NEBENEINANDER statt 4 Screens Hochkant-Stapel */
  .hero { min-height: auto; padding: 88px 0 36px; }
  .hero__inner { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 32px; align-items: center; }
  .hero__title { font-size: clamp(36px, 6vw, 56px) !important; }
  .hero__sub { font-size: 14px; margin-top: 14px; }
  .hero__cta-row { margin-top: 18px; }
  .hero__meta { margin-top: 14px; }
  .hero__cluster { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; max-width: none; margin: 0; }
  .hero__cluster .photo { min-height: 0; height: 42vh; min-height: 170px; aspect-ratio: auto; }
  .hero__cluster .photo:nth-child(1),
  .hero__cluster .photo:nth-child(2) { transform: none; }
  .hero__scroll { display: none; }

  /* Sektionen kompakter */
  section { padding: 56px 0; }
  .promise, .about, .style-strip { padding: 56px 0; }
  .process { padding: 64px 0; }
  .cta-band { padding: 64px 0; }

  /* Über-mich: Bilder NEBEN dem Text (statt Stapel = halbes Scrollen) */
  .about__inner { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 28px; align-items: center; }
  .about__visual { max-width: none; margin: 0; }
  .about__visual .photo { min-height: 200px; }
  .about__visual .photo:nth-child(2) { transform: none; }

  /* Stil-Sektion: 3 kompakte Spalten — Bilder als schmale 4/9-Pillen (50%/18%),
     gleiche Form wie Über-mich quer (~150×337px, passt in die knappe Höhe) */
  .style-strip__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .style-strip__card { max-width: none; margin: 0; }
  .style-strip__media { max-width: 150px; min-height: 0; aspect-ratio: 4/9; border-radius: 50% / 18%; }

  /* Portfolio-Kopf + Stage: an die knappe HÖHE koppeln, Caption bleibt sichtbar */
  .portfolio-page { padding-top: 84px; }
  .portfolio-hero h1 { font-size: clamp(36px, 6.5vw, 60px) !important; }
  .portfolio-hero .lead { margin-top: 12px; }
  .portfolio-view-toggle { margin-top: 18px; }
  .portfolio-stage { margin-top: 28px; }
  .portfolio-stage__viewer { aspect-ratio: auto; height: min(62vh, 300px); }
  .portfolio-stage__caption { bottom: 16px; left: 20px; right: 20px; }
  .portfolio-stage__caption-title { font-size: clamp(18px, 3vw, 26px); }
  .portfolio-dock-wrap { margin-top: 36px; padding-bottom: 56px; }
  .portfolio-dock { touch-action: none; } /* Scrubber auch quer ohne Seiten-Scroll */
  .portfolio-grid { margin-top: 40px; }

  /* Lightbox: Bar + Bild + Caption + Filmstreifen müssen in ~390px Höhe passen */
  .lightbox { padding: calc(56px + env(safe-area-inset-top, 0px)) 72px calc(10px + env(safe-area-inset-bottom, 0px)); }
  .lightbox__bar { padding: 8px 14px; padding-top: max(8px, env(safe-area-inset-top, 0px)); }
  .lightbox__close { width: 40px; height: 40px; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 14px; }
  .lightbox__nav--next { right: 14px; }
  .lightbox__inner { gap: 8px; }
  .lightbox__media { max-height: calc(100vh - 176px); border-radius: 8px; }
  .lightbox__caption { font-size: 10px; letter-spacing: 0.14em; }
  .lightbox__thumb { width: 50px; height: 38px; }

  /* Kontakt kompakt */
  .contact-page { padding-top: 84px; }
}
