/* ============================================================
   ALEX BANNENBERG — Performance Branding
   Obsidian Grove Design System
   Schwarz #0e0e0e · Beige #eeebda · Terrakotta #8b5e3c
   Olive #2b2e23 · Petrol #1f3a3d
   ============================================================ */

:root {
  --bg: #0e0e0e;
  --bg-soft: #131311;
  --card: #161613;
  --card-2: #1a1a16;
  --ink: #eeebda;
  --ink-dim: rgba(238, 235, 218, 0.62);
  --ink-faint: rgba(238, 235, 218, 0.38);
  --line: rgba(238, 235, 218, 0.09);
  --line-strong: rgba(238, 235, 218, 0.16);
  --terra: #8b5e3c;
  --terra-bright: #b07a4e;
  --olive: #2b2e23;
  --petrol: #1f3a3d;
  --grad-top: #fdfcf5;
  --grad-mid: #eeebda;
  --grad-bot: rgba(238, 235, 218, 0.45);
  --nav-bg: rgba(14, 14, 14, 0.72);
  --hero-filter: brightness(0.5) saturate(0.85);
  --hero-veil: linear-gradient(180deg, rgba(14,14,14,0.82) 0%, rgba(14,14,14,0.55) 45%, var(--bg) 96%),
    radial-gradient(ellipse at 50% 110%, rgba(139,94,60,0.14), transparent 55%);
  --radius: 24px;
  --radius-lg: 32px;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --font-brand: "Bricolage Grotesque", var(--font-sans);
  --max: 1180px;
}

/* Light Mode — Obsidian Grove Tageslicht-Variante */
html[data-theme="light"] {
  --bg: #f4f1e8;
  --bg-soft: #edeadf;
  --card: #faf8f1;
  --card-2: #ffffff;
  --ink: #0e0e0e;
  --ink-dim: rgba(14, 14, 14, 0.66);
  --ink-faint: rgba(14, 14, 14, 0.42);
  --line: rgba(14, 14, 14, 0.09);
  --line-strong: rgba(14, 14, 14, 0.18);
  --terra: #8b5e3c;
  --terra-bright: #8b5e3c;
  --olive: #2d3a1f;
  --grad-top: #0e0e0e;
  --grad-mid: #2d3a1f;
  --grad-bot: rgba(14, 14, 14, 0.55);
  --nav-bg: rgba(244, 241, 232, 0.78);
  --hero-filter: brightness(1.05) saturate(0.7);
  --hero-veil: linear-gradient(180deg, rgba(244,241,232,0.88) 0%, rgba(244,241,232,0.78) 45%, var(--bg) 96%),
    radial-gradient(ellipse at 50% 110%, rgba(139,94,60,0.12), transparent 55%);
}

html { background: #0e0e0e; }
html[data-theme="light"] { background: #f4f1e8; }

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* clip statt hidden: verhindert horizontalen Überlauf, ohne den Body
     zu einem eigenen Scroll-Container zu machen (sonst bricht window-Scroll
     und sticky-Verhalten). */
  overflow-x: clip;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */

h1, h2, h3 { font-weight: 700; letter-spacing: -0.035em; line-height: 1.05; }

.display {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  background: linear-gradient(180deg, var(--grad-top) 0%, var(--grad-mid) 45%, var(--grad-bot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  background: linear-gradient(180deg, var(--grad-top) 0%, var(--grad-mid) 55%, var(--grad-bot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--terra-bright);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 18px;
}

.lead { color: var(--ink-dim); font-size: clamp(1.05rem, 1.8vw, 1.25rem); max-width: 620px; }

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Nav ---------- */

.nav-shell {
  position: fixed;
  top: 16px; left: 0; right: 0;
  z-index: 100;
  padding: 0 16px;
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px 12px 22px;
  border-radius: 999px;
  background: var(--nav-bg);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-tools { display: flex; align-items: center; gap: 8px; }

.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, transform 0.2s;
}
.theme-toggle:hover { border-color: var(--terra); transform: rotate(15deg); }

.lang-switch {
  display: flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--ink-faint);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 12px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active { background: var(--ink); color: var(--bg); }

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.68rem;
  color: var(--terra-bright);
  letter-spacing: 0.28em;
  margin-top: 4px;
}

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.92rem;
  color: var(--ink-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); opacity: 0.92; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ---------- Buttons ---------- */

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 999px;
  background: var(--card-2);
  border: 1px solid var(--line-strong);
  padding: 8px;
  padding-right: 30px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.btn-pill .btn-icon {
  width: 52px; height: 52px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--terra-bright), var(--terra) 70%);
  display: flex; align-items: center; justify-content: center;
  margin-right: 18px;
  font-size: 1.2rem;
  color: #0e0e0e;
  transition: transform 0.25s;
}
.btn-pill:hover { transform: translateY(-2px); border-color: var(--terra); box-shadow: 0 16px 50px rgba(139,94,60,0.25); }
.btn-pill:hover .btn-icon { transform: rotate(-45deg); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--terra); background: rgba(139,94,60,0.08); }

.scarcity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(238,235,218,0.04);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-dim);
}
.scarcity .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--terra-bright);
  box-shadow: 0 0 12px 2px rgba(176,122,78,0.8);
  animation: pulse 2.2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 160px 24px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url("../assets/alex-hero.jpg");
  background-size: cover;
  background-position: center 30%;
  filter: var(--hero-filter);
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background: var(--hero-veil);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--nav-bg);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  color: var(--ink-dim);
  margin-bottom: 30px;
}
.badge .spark { color: var(--terra-bright); }

.hero h1 { max-width: 980px; }

.hero .lead { margin: 26px auto 40px; max-width: 660px; }
.hero .lead strong { color: var(--ink); font-weight: 600; }

/* ---------- Quote / Laurel ---------- */

.laurel-quote {
  padding: 90px 24px 30px;
  text-align: center;
}
.laurel-quote .avatar {
  width: 64px; height: 64px;
  border-radius: 18px;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 1px solid var(--line-strong);
}
.laurel-quote .handle { font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 14px; }
.laurel-line {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
}
.laurel-line .leaf { color: var(--terra); font-size: 1.6em; }
.laurel-quote .attribution { margin-top: 12px; font-size: 0.9rem; color: var(--ink-faint); }

/* ---------- VSL ---------- */

.vsl { padding: 60px 24px 40px; }
.vsl-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(31,58,61,0.55), transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(139,94,60,0.3), transparent 55%),
    var(--card);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.vsl-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vsl-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.vsl-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(14,14,14,0.28), rgba(14,14,14,0.62));
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s;
}
.vsl-frame[data-loaded] .vsl-poster,
.vsl-frame[data-loaded]::after { display: none; }
.vsl-play {
  position: relative;
  z-index: 2;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--terra-bright), var(--terra) 75%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #0e0e0e;
  box-shadow: 0 0 0 14px rgba(139,94,60,0.15), 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.25s;
}
.vsl-frame:hover .vsl-play { transform: scale(1.07); }
.vsl-note {
  position: absolute; bottom: 22px; left: 0; right: 0;
  z-index: 2;
  text-align: center;
  font-size: 0.85rem; color: rgba(238,235,218,0.82);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* ---------- Trust strip ---------- */

.trust { padding: 70px 0 20px; text-align: center; }
.trust p { font-size: 0.9rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 34px; }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; gap: 64px;
  width: max-content;
  animation: scroll 32s linear infinite;
}
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee-track span {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink-faint);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* ---------- Sections ---------- */

section.block { padding: 110px 0; }
section.block-tight { padding: 70px 0; }

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head .lead { margin-top: 20px; }

/* ---------- Cards grid ---------- */

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

.card {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.3s, border-color 0.3s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.card .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 22px;
  background: rgba(139,94,60,0.14);
  border: 1px solid rgba(139,94,60,0.3);
  color: var(--terra-bright);
}
.card h3 { font-size: 1.3rem; margin-bottom: 12px; letter-spacing: -0.02em; }
.card p { color: var(--ink-dim); font-size: 0.98rem; }

/* ---------- Client / testimonial cards ---------- */

.client-card {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}
.client-card:hover { border-color: rgba(139,94,60,0.5); transform: translateY(-4px); }
.client-visual {
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 15%, rgba(43,46,35,0.9), transparent 65%),
    radial-gradient(ellipse at 85% 90%, rgba(139,94,60,0.35), transparent 60%),
    #121210;
}
.client-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,14,0.1), rgba(14,14,14,0.62));
  opacity: 0;
  transition: opacity 0.3s;
}
.client-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.76);
  transition: transform 0.45s, filter 0.45s;
}
.client-card:hover .client-visual img {
  transform: scale(1.035);
  filter: saturate(0.98) brightness(0.86);
}
.client-visual:has(img)::after { opacity: 1; }
.client-visual .initials {
  position: absolute; top: 18px; left: 20px;
  z-index: 2;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
}
.client-meta { padding: 22px 24px 26px; }
.client-meta h3 { font-size: 1.15rem; letter-spacing: -0.01em; }
.client-meta .role { color: var(--terra-bright); font-size: 0.85rem; margin-top: 4px; font-family: var(--font-serif); font-style: italic; }
.client-meta .hint { margin-top: 14px; font-size: 0.82rem; color: var(--ink-faint); display: flex; align-items: center; gap: 8px; }

/* Client detail expander */
.client-detail {
  grid-column: 1 / -1;
  display: none;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 40px;
}
.client-detail.open { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.client-detail .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0; }
.client-detail .step {
  border-left: 2px solid var(--terra);
  padding-left: 18px;
}
.client-detail .step .label {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--terra-bright); margin-bottom: 8px;
}
.client-detail .step p { color: var(--ink-dim); font-size: 0.95rem; }
.client-detail .close-detail {
  margin-top: 26px;
  background: none; border: none; cursor: pointer;
  color: var(--ink-faint); font-size: 0.88rem;
  font-family: var(--font-sans);
}
.client-detail .close-detail:hover { color: var(--ink); }

/* ---------- Flagship Case Studies ---------- */
.case { padding: 40px 0 20px; border-top: 1px solid var(--line); }
.case:first-of-type { border-top: none; }
.case-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 56px;
  align-items: start;
}
/* Name bleibt beim Scrollen stehen, der Rest zieht darunter durch */
.case-head {
  position: sticky;
  top: 104px;
  align-self: start;
}
.case-kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--terra-bright);
  letter-spacing: 0.02em;
}
.case-name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 14px 0 16px;
  background: linear-gradient(180deg, var(--grad-top) 0%, var(--grad-mid) 60%, var(--grad-bot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.case-name span { display: block; }
.case-role {
  font-size: 0.95rem;
  color: var(--ink-dim);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  max-width: 280px;
}
.case-body { display: flex; flex-direction: column; gap: 34px; }
.case-hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  aspect-ratio: 4 / 5;
}
.case-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.case-steps { display: grid; gap: 22px; }
.case-step {
  border-left: 2px solid var(--terra);
  padding-left: 20px;
}
.case-label {
  display: block;
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra-bright); margin-bottom: 8px; font-weight: 600;
}
.case-step p { color: var(--ink-dim); font-size: 1rem; max-width: 640px; }
.case-videos { margin-top: 6px; }

/* ---------- VSL Video-Embed ---------- */
.vsl-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.vsl-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vsl-caption {
  text-align: center;
  margin: 18px auto 0;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-dim);
  font-size: 0.95rem;
}
.more-clients-head { margin: 20px 0 26px; text-align: center; }
.more-clients-head .eyebrow { margin-bottom: 0; }

/* ---------- System ---------- */

.system-list { display: flex; flex-direction: column; gap: 14px; }
.system-row {
  display: grid;
  grid-template-columns: 90px 1fr 2fr;
  gap: 30px;
  align-items: center;
  padding: 34px 38px;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
}
.system-row:hover { border-color: rgba(139,94,60,0.45); transform: translateX(6px); }
.system-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--terra);
}
.system-row h3 { font-size: 1.35rem; letter-spacing: -0.02em; }
.system-row p { color: var(--ink-dim); font-size: 0.98rem; }

.loop-strip {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.loop-strip .loop-item {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 1.15rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--card);
}
.loop-strip .arrow { color: var(--terra-bright); font-size: 1.3rem; }

/* ---------- Mission ---------- */

.mission { position: relative; }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.mission-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55);
  position: relative;
}
.mission-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.mission-copy p { color: var(--ink-dim); margin-bottom: 20px; font-size: 1.05rem; }
.mission-copy p strong { color: var(--ink); font-weight: 600; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.stat {
  padding: 26px 22px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  text-align: center;
}
.stat .num {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--grad-top), var(--grad-bot));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat .cap { font-size: 0.82rem; color: var(--ink-faint); margin-top: 6px; }

/* ---------- Speaking ---------- */

.speak-carousel {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 58px 42px;
}
.speak-track {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 18px 0 24px;
}
.speak-track::-webkit-scrollbar { display: none; }
/* Slides behalten die Höhe, die Breite folgt dem Format des Motivs
   (Hochkant bleibt schmal, Querformat wird breit) */
.speak-slide {
  position: relative;
  flex: 0 0 auto;
  height: clamp(360px, 52vw, 560px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #121210;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transform: scale(0.82);
  opacity: 0.48;
  filter: saturate(0.72);
  transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease, border-color 0.3s;
}
.speak-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,14,14,0.6));
  pointer-events: none;
}
.speak-slide.active {
  transform: scale(1);
  opacity: 1;
  filter: none;
  border-color: rgba(139,94,60,0.46);
}
.speak-slide img,
.speak-slide video {
  display: block;
  height: 100%;
  width: auto;
  max-width: min(88vw, 940px);
  object-fit: cover;
}
.speak-video video { background: rgba(14,14,14,0.35); }
.speak-video { cursor: pointer; }
.speak-video .ig-overlay {
  z-index: 2;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, transparent 55%, rgba(14,14,14,0.55) 100%);
}
.speak-video .ig-overlay .ig-icon { width: 54px; height: 54px; font-size: 1rem; }
.speak-video .ig-mute { z-index: 3; }
.speak-video .tag { z-index: 3; }
.speak-slide .tag {
  position: absolute;
  z-index: 2;
  left: 32px;
  bottom: 30px;
  font-size: 0.82rem;
  color: #eeebda;
  background: rgba(14,14,14,0.58);
  border: 1px solid rgba(238,235,218,0.16);
  border-radius: 999px;
  padding: 8px 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.speak-arrow {
  position: absolute;
  top: calc(50% - 18px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(238,235,218,0.2);
  background: rgba(238,235,218,0.92);
  color: #0e0e0e;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  z-index: 4;
  transition: transform 0.2s, background 0.2s;
}
.speak-prev { left: 8px; }
.speak-next { right: 8px; }
.speak-arrow:hover { transform: translateY(-50%) scale(1.08); background: #eeebda; }
.speak-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.speak-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(238,235,218,0.34);
  transition: width 0.2s, background 0.2s;
}
.speak-dots span.active {
  width: 24px;
  border-radius: 999px;
  background: #eeebda;
}

/* ---------- YouTube ---------- */

.yt-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 18px; }
.yt-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  transition: transform 0.3s, border-color 0.3s;
}
.yt-card:hover { transform: translateY(-4px); border-color: rgba(139,94,60,0.5); }
.yt-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.yt-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.yt-card:hover .yt-thumb img { transform: scale(1.04); }
.yt-thumb .yt-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,14,14,0.25);
  opacity: 0;
  transition: opacity 0.3s;
}
.yt-card:hover .yt-play { opacity: 1; }
.yt-thumb .yt-play span {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(238,235,218,0.95); color: #0e0e0e;
  display: flex; align-items: center; justify-content: center;
}
.yt-card .yt-title { padding: 16px 18px 20px; font-size: 0.92rem; font-weight: 600; line-height: 1.4; }
.yt-label {
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint); margin: 34px 0 16px;
}

/* ---------- Comparison ---------- */

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare-col {
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--line);
  background: var(--card);
}
.compare-col.win {
  background: linear-gradient(180deg, rgba(139,94,60,0.14), rgba(139,94,60,0.04)), var(--card);
  border-color: rgba(139,94,60,0.45);
  box-shadow: 0 30px 80px rgba(139,94,60,0.12);
}
.compare-col h3 {
  font-family: var(--font-brand);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 26px;
  color: var(--ink-faint);
}
.compare-col.win h3 { color: var(--terra-bright); }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.compare-col li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-dim); font-size: 0.98rem; }
.compare-col li .mark { flex-shrink: 0; margin-top: 2px; }
.compare-col li .mark.x { color: rgba(238,235,218,0.3); }
.compare-col li .mark.check { color: var(--terra-bright); }
.compare-col.win li { color: var(--ink); }

/* ---------- FAQ ---------- */

.faq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 28px;
  background: none; border: none; cursor: pointer;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.05rem; font-weight: 600;
  text-align: left;
}
.faq-q .chev { transition: transform 0.3s; color: var(--terra-bright); flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 28px 26px; color: var(--ink-dim); font-size: 0.98rem; }

/* ---------- Final CTA ---------- */

.final-cta {
  position: relative;
  text-align: center;
  padding: 140px 24px;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(139,94,60,0.22), transparent 60%),
    radial-gradient(ellipse at 50% -20%, rgba(31,58,61,0.3), transparent 55%);
  z-index: -1;
}
.final-cta .display { max-width: 850px; margin: 0 auto 24px; }
.final-cta .lead { margin: 0 auto 44px; }

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid var(--line);
  padding: 70px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-grid h4 {
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 18px; font-weight: 600;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-grid a { color: var(--ink-dim); font-size: 0.95rem; transition: color 0.2s; }
.footer-grid a:hover { color: var(--ink); }
.footer-brand p { color: var(--ink-faint); font-size: 0.9rem; margin-top: 14px; max-width: 300px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint); font-size: 0.85rem;
  flex-wrap: wrap;
}

/* ---------- Page hero (subpages) ---------- */

.page-hero {
  padding: 200px 24px 80px;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 50% -30%, rgba(31,58,61,0.35), transparent 60%);
}

/* ---------- Transformation entries ---------- */

.transfo {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  gap: 0;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.transfo:last-of-type { border-bottom: none; }

/* ---------- Instagram ---------- */

.ig-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 980px; margin: 0 auto; }
.ig-tile {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  aspect-ratio: 9 / 14;
  transition: transform 0.3s, border-color 0.3s;
}
.ig-tile:hover { transform: translateY(-4px); border-color: rgba(139,94,60,0.5); }
.ig-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
  padding: 20px;
  background: linear-gradient(180deg, transparent 55%, rgba(14,14,14,0.75) 100%);
}
.ig-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(238,235,218,0.92); color: #0e0e0e;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.ig-cap {
  color: #eeebda;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Video-Tiles: Klick spielt direkt auf der Seite ab */
.ig-video { cursor: pointer; }
.ig-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.ig-video .ig-overlay,
.speak-video .ig-overlay { transition: opacity 0.3s; pointer-events: none; }
.ig-video.playing .ig-overlay,
.speak-video.playing .ig-overlay { opacity: 0; }

.ig-mute {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(238,235,218,0.25);
  background: rgba(14,14,14,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #eeebda;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 3;
}
.ig-mute:hover { background: rgba(14,14,14,0.8); transform: scale(1.08); }
.ig-mute .i-off { display: none; }
.ig-video.muted .ig-mute .i-on,
.speak-video.muted .ig-mute .i-on { display: none; }
.ig-video.muted .ig-mute .i-off,
.speak-video.muted .ig-mute .i-off { display: block; }

/* Mallorca-Karussell: komplettes Bild vor milchigem Blur-Hintergrund */
.ig-carousel { cursor: default; }
.ig-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 100%;
  padding: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.ig-track::-webkit-scrollbar { display: none; }
.ig-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.ig-slide img,
.ig-slide video {
  position: relative;
  z-index: 1;
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  filter: brightness(0.82) saturate(0.94);
  transform: scale(1.03);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.ig-slide.active img,
.ig-slide.active video {
  filter: none;
  transform: none;
}
.ig-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(238,235,218,0.96);
  color: #0e0e0e;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  opacity: 1;
  z-index: 5;
  box-shadow: 0 10px 28px rgba(0,0,0,0.42);
  transition: transform 0.2s, background 0.2s;
  display: flex; align-items: center; justify-content: center;
  padding-bottom: 3px;
}
.ig-prev { left: 14px; }
.ig-next { right: 14px; }
.ig-arrow:hover { transform: translateY(-50%) scale(1.08); background: #eeebda; }
.ig-carousel-foot {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 58px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(14,14,14,0.84));
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  z-index: 4;
}
.ig-dots { display: flex; gap: 6px; }
.ig-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(238,235,218,0.4);
  transition: background 0.2s;
}
.ig-dots span.active { background: #eeebda; }

/* ---------- Light-Mode Feinschliff ---------- */

/* Hero bleibt in beiden Themes dark: Foto + dunkler Verlauf + helle Schrift */
html[data-theme="light"] .hero-bg { filter: brightness(0.5) saturate(0.85); }
html[data-theme="light"] .hero-veil {
  background:
    linear-gradient(180deg, rgba(14,14,14,0.82) 0%, rgba(14,14,14,0.55) 45%, var(--bg) 98%),
    radial-gradient(ellipse at 50% 110%, rgba(139,94,60,0.14), transparent 55%);
}
html[data-theme="light"] .hero .display {
  background: linear-gradient(180deg, #fdfcf5 0%, #eeebda 45%, rgba(238,235,218,0.45) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
html[data-theme="light"] .hero .lead { color: rgba(238,235,218,0.7); }
html[data-theme="light"] .hero .lead strong { color: #fdfcf5; }
html[data-theme="light"] .hero .badge {
  background: rgba(14,14,14,0.55);
  border-color: rgba(238,235,218,0.16);
  color: rgba(238,235,218,0.62);
}
html[data-theme="light"] .hero .scarcity {
  background: rgba(14,14,14,0.4);
  border-color: rgba(238,235,218,0.12);
  color: rgba(238,235,218,0.62);
}
html[data-theme="light"] .hero .btn-pill {
  background: #1a1a16;
  border-color: rgba(238,235,218,0.16);
  color: #eeebda;
}

html[data-theme="light"] .client-visual {
  background:
    radial-gradient(ellipse at 25% 15%, rgba(45,58,31,0.18), transparent 65%),
    radial-gradient(ellipse at 85% 90%, rgba(139,94,60,0.2), transparent 60%),
    #e7e3d5;
}
html[data-theme="light"] .speak-slide { background: #e7e3d5; }
html[data-theme="light"] .vsl-frame {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(45,58,31,0.16), transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(139,94,60,0.16), transparent 55%),
    var(--card);
  box-shadow: 0 30px 80px rgba(14,14,14,0.15);
}
html[data-theme="light"] .btn-pill { box-shadow: 0 12px 40px rgba(14,14,14,0.12); }
html[data-theme="light"] .yt-thumb .yt-play span { background: #0e0e0e; color: #eeebda; }
html[data-theme="light"] .mission-photo { box-shadow: 0 40px 100px rgba(14,14,14,0.2); }
html[data-theme="light"] .final-cta::before {
  background:
    radial-gradient(ellipse at 50% 120%, rgba(139,94,60,0.14), transparent 60%),
    radial-gradient(ellipse at 50% -20%, rgba(45,58,31,0.12), transparent 55%);
}

/* ---------- Reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .grid-3, .yt-row, .ig-row, .client-detail .steps { grid-template-columns: 1fr 1fr; }
  .mission-grid, .compare, .transfo { grid-template-columns: 1fr; }
  .speak-carousel { padding-left: 48px; padding-right: 48px; }
  .system-row { grid-template-columns: 60px 1fr; }
  .system-row p { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Case: einspaltig. Auf Mobile NICHT sticky (sonst überlagert der Name
     die Nav und wirkt doppelt) — Name scrollt normal mit dem Inhalt. */
  .case-grid { grid-template-columns: 1fr; gap: 22px; }
  .case-head {
    position: static;
    top: auto;
  }
  .case-name { font-size: clamp(1.9rem, 8vw, 2.6rem); margin: 10px 0 14px; }
  .case-name span { display: inline; }
  .case-kicker { font-size: 0.85rem; }
  .case-role { max-width: none; }
}

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav { position: relative; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(14,14,14,0.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
    backdrop-filter: blur(18px);
    z-index: 99;
  }
  .burger { display: block; }
}

@media (max-width: 560px) {
  .nav-cta { display: none; }
}

@media (max-width: 680px) {
  .grid-3, .grid-2, .yt-row, .ig-row,
  .client-detail .steps,
  .stats { grid-template-columns: 1fr; }
  .speak-carousel { padding-left: 16px; padding-right: 16px; }
  .speak-slide { height: min(112vw, 460px); }
  /* Querformat-Motive nicht randlos beschneiden, sondern komplett und
     kleiner ins Frame legen; Hochformate füllen weiterhin. */
  .speak-slide img,
  .speak-slide video { max-width: 78vw; object-fit: contain; }
  .speak-arrow { width: 40px; height: 40px; }
  .speak-prev { left: 0; }
  .speak-next { right: 0; }
  section.block { padding: 70px 0; }
  .btn-pill { font-size: 0.95rem; }
  .btn-pill .btn-icon { width: 44px; height: 44px; margin-right: 14px; }

  /* Mobile-Nav aufgeräumt: Name mittig oben, Subtitle weg,
     Sprachen + Theme in zweiter Reihe, Burger klar erreichbar. */
  .nav {
    position: relative;
    flex-wrap: wrap;
    row-gap: 14px;
    padding: 14px 20px;
    justify-content: center;
  }
  .brand-sub { display: none; }
  .brand {
    order: 1;
    flex: 1 1 100%;
    align-items: center;
    text-align: center;
  }
  .brand-name { font-size: 0.98rem; letter-spacing: 0.14em; }
  .burger {
    order: 2;
    position: absolute;
    top: 16px;
    right: 20px;
    padding: 6px;
  }
  .nav-tools {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 14px;
  }
  .nav-cta { display: none; }
  .nav-links.open { order: 4; width: 100%; }
}
