/* =====================================================================
   STUDIO MV WEBDESIGN — v2.0
   Editorial redesign. Brand DNA (warm black · champagne gold · cream ·
   Fraunces + Geist) evolved with dayy-inspired structure:
   big editorial type · sticky-left principle column · numbered manifesto.
   Hand-coded. No framework. GSAP enhances, never gates content.
   ===================================================================== */

/* ============================ TOKENS ============================ */
:root {
  /* Warm near-black canvas */
  --ink:        #16130f;
  --ink-1:      #1b1712;
  --ink-2:      #211c16;
  --ink-3:      #29231b;

  /* Light / cream */
  --cream:      #f4eee3;
  --cream-1:    #faf5ec;
  --paper:      #efe6d6;

  /* Accent — champagne / brass gold */
  --gold:       #c6a15b;
  --gold-soft:  #dabd85;
  --gold-deep:  #a9843f;

  /* Text */
  --on-dark:        #ece4d6;
  --on-dark-muted:  #a99f8d;
  --on-dark-faint:  #6f6656;
  --on-light:       #1a1510;
  --on-light-muted: #5b5245;

  /* Lines */
  --line-dark:  rgba(236, 228, 214, 0.12);
  --line-gold:  rgba(198, 161, 91, 0.32);
  --line-light: rgba(26, 21, 16, 0.14);

  /* Radius */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Shadow (warm) */
  --shadow-sm: 0 2px 10px rgba(0,0,0,.28);
  --shadow:    0 24px 60px -26px rgba(0,0,0,.6);
  --shadow-gold: 0 26px 70px -28px rgba(169, 132, 63, .5);

  /* Type */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-sans: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Fluid display scale */
  --fs-hero:   clamp(2.5rem, 7.4vw, 6.4rem);
  --fs-display:clamp(2.4rem, 5.4vw, 4.6rem);
  --fs-h2:     clamp(1.95rem, 3.9vw, 3.2rem);
  --fs-h3:     clamp(1.25rem, 1.9vw, 1.6rem);

  /* Layout */
  --container: 1220px;
  --container-wide: 1360px;
  --gutter: clamp(1.25rem, 4vw, 3.25rem);
  --section-y: clamp(5rem, 10vw, 9.5rem);
  --header-h: 76px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .32s;
}

/* ============================ RESET ============================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--on-dark);
  line-height: 1.62;
  font-size: clamp(1rem, 1.08vw, 1.075rem);
  font-weight: 400;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
input, select, textarea, button { font-family: inherit; }
::selection { background: var(--gold); color: var(--ink); }

/* Focus visibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================ LAYOUT ============================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container.wide { max-width: var(--container-wide); }

.section { padding-block: var(--section-y); position: relative; }
.section.tight { padding-block: clamp(3.5rem, 6vw, 6rem); }

/* Surfaces */
.on-cream { background: var(--cream); color: var(--on-light); }
.on-paper { background: var(--paper); color: var(--on-light); }
.on-ink-1 { background: var(--ink-1); }

/* Subtle film grain for warmth */
.grain::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .05;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.section > .container { position: relative; z-index: 1; }

/* ============================ TYPE ============================ */
.display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--on-dark);
}
.on-cream .display, .on-cream h1, .on-cream h2, .on-cream h3, .on-cream h4,
.on-paper .display, .on-paper h1, .on-paper h2, .on-paper h3, .on-paper h4 { color: var(--on-light); }

.display { font-size: var(--fs-display); }
.section-title { font-size: var(--fs-h2); line-height: 1.06; }
h3 { font-size: var(--fs-h3); font-weight: 500; line-height: 1.16; }

/* Akzentwörter: gleiche Schrift wie die Überschrift (nicht kursiv), nur Gold-Farbe */
.serif-italic { font-style: normal; font-weight: 500; }
.accent { color: var(--gold); }
.on-cream .accent, .on-paper .accent { color: var(--gold-deep); }

/* Eyebrow / kicker with editorial index */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.on-cream .eyebrow, .on-paper .eyebrow { color: var(--gold-deep); }
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: .6;
}
.eyebrow.center { justify-content: center; }
.eyebrow.no-rule::before { display: none; }

.lead {
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--on-dark-muted);
  max-width: 60ch;
}
.on-cream .lead, .on-paper .lead { color: var(--on-light-muted); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { max-width: 760px; margin-inline: auto; text-align: center; }
.section-head .section-title { margin: 1rem 0 1.1rem; }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem;
  padding: .92rem 1.5rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .005em;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--dur) var(--ease); }
.btn-lg { padding: 1.08rem 1.9rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--gold);
  color: #1a1409;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: var(--line-gold);
}
.btn-ghost:hover { background: rgba(198,161,91,.1); border-color: var(--gold); transform: translateY(-2px); }
.on-cream .btn-ghost, .on-paper .btn-ghost { color: var(--on-light); border-color: var(--line-light); }
.on-cream .btn-ghost:hover, .on-paper .btn-ghost:hover { border-color: var(--gold-deep); background: rgba(169,132,63,.08); }

.btn-dark {
  background: var(--ink);
  color: var(--on-dark);
}
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-dark:hover svg { transform: translateX(4px); }

/* Underline link */
.link-underline {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .95rem;
  color: var(--gold);
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.on-cream .link-underline, .on-paper .link-underline { color: var(--gold-deep); }
.link-underline svg { width: 17px; height: 17px; transition: transform var(--dur) var(--ease); }
.link-underline:hover { background-size: 100% 1px; gap: .7rem; }
.link-underline:hover svg { transform: translateX(3px); }

/* ============================ HEADER ============================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 90;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(22,19,15,.78);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-dark);
}
.site-header .nav {
  width: 100%; max-width: var(--container-wide);
  margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand .mark { width: 40px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; letter-spacing: -.01em; }
.brand-sub { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-faint); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--on-dark-muted);
  position: relative; padding: .25rem 0;
  transition: color var(--dur) var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--on-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav-cta { padding: .68rem 1.2rem; font-size: .9rem; }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--on-dark); border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; left: 0; }
.nav-toggle span::after { position: absolute; top: 7px; left: 0; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--ink-1);
  display: flex; flex-direction: column; justify-content: center; gap: .25rem;
  padding: var(--gutter);
  transform: translateX(100%);
  transition: transform .42s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 500;
  padding: .55rem 0; border-bottom: 1px solid var(--line-dark);
  color: var(--on-dark);
}
.mobile-menu a.btn { font-family: var(--font-sans); font-size: 1rem; border-bottom: none; margin-top: 1.4rem; justify-content: center; }
.mobile-close { position: absolute; top: 1.4rem; right: 1.4rem; width: 46px; height: 46px; color: var(--on-dark); }
.mobile-close svg { width: 26px; height: 26px; }

/* ============================ HERO ============================ */
/* Scroll-scrub Schwarzwald-Hero — von der Live-Seite übernommen.
   Ein Scroll treibt 1:1 drei Dinge: Frame öffnet (clip-path), Video scrubbt/zoomt, Text enthüllt gestaffelt. */
.hero-scroll {
  position: relative;
  width: 100%;
  height: calc(1600px + 100vh);
  background: var(--ink);
}
.hero-sticky {
  position: sticky; top: 0;
  height: 100vh; width: 100%;
  overflow: hidden;
  background: #0a0806;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
  will-change: clip-path;
}
.hero-scrub-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
  background: #0a0806;
  transform: scale(1.18); transform-origin: center;
  will-change: transform;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(96deg, rgba(10,8,6,.94) 0%, rgba(10,8,6,.7) 34%, rgba(10,8,6,.22) 62%, rgba(10,8,6,.42) 100%),
    linear-gradient(180deg, rgba(10,8,6,.5) 0%, transparent 24%, transparent 56%, rgba(10,8,6,.72) 100%);
}
.hero-scroll-inner {
  position: relative; z-index: 3;
  height: 100%;
  display: flex; align-items: center;
  padding-top: 4rem;
}
.hero-copy { display: grid; gap: 1.5rem; max-width: 54ch; }
.hero-scroll-inner h1 {
  font-size: var(--fs-hero); font-weight: 500; letter-spacing: -0.025em; max-width: 18ch;
}
.hero-scroll-inner h1 .serif-italic { color: var(--gold); }
.hero-scroll-inner .lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); max-width: 52ch; color: #e6ddce; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
/* Reveal-Elemente: Sichtbarkeit steuert JS beim Scrollen; ohne JS voll sichtbar */
.hero-reveal { will-change: opacity, transform; }

.hero-stats { display: flex; gap: clamp(1.4rem, 3vw, 2.8rem); flex-wrap: wrap; margin-top: .4rem; }
.hero-stat { display: flex; flex-direction: column; gap: .1rem; }
.hero-stat .k { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; color: var(--on-dark); }
.hero-stat .v { font-size: .78rem; letter-spacing: .04em; color: var(--on-dark-muted); }

.hero-scroll-cue {
  position: absolute; left: 50%; bottom: 1.7rem; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 1.5px solid rgba(236,228,214,.4); border-radius: 14px;
  display: grid; justify-items: center; padding-top: 7px;
}
.hero-scroll-cue span { width: 3px; height: 8px; border-radius: 2px; background: var(--gold-soft); animation: cueMove 1.9s var(--ease) infinite; }
@keyframes cueMove { 0%{opacity:0;transform:translateY(0)} 40%{opacity:1} 100%{opacity:0;transform:translateY(12px)} }

/* Mobile: gleicher cinematischer Hero — Frame öffnet beim Scrollen, Fog läuft im Loop (main.js) */
@media (max-width: 767px) {
  .hero-scroll { height: 220svh; }
  .hero-sticky { height: 100svh; }
  .hero-scroll-inner { align-items: flex-start; padding-top: 7rem; padding-bottom: 3.5rem; }
}
/* Reduced motion: kein Scrub/Reveal, statischer Vollbild-Poster */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll { height: 100vh; }
  .hero-sticky { position: relative; }
  .hero-bg { clip-path: none; }
  .hero-scrub-video { transform: none; }
  .hero-scroll-cue span { animation: none; }
}

/* ============================ MARQUEE / TRUST ============================ */
.marquee {
  border-block: 1px solid var(--line-dark);
  background: var(--ink-1);
  overflow: hidden;
  padding-block: 1.1rem;
}
.marquee-track {
  display: flex; align-items: center; gap: 3.5rem; width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .92rem; color: var(--on-dark-muted); white-space: nowrap; letter-spacing: .02em;
}
.marquee-item svg { width: 18px; height: 18px; color: var(--gold); }
.marquee-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================ TWO-TRACK (HYBRID) ============================ */
.tracks { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.track {
  position: relative; padding: clamp(1.8rem, 3vw, 2.6rem);
  border: 1px solid var(--line-dark); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  overflow: hidden;
}
.track::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 60% at 100% 0%, rgba(198,161,91,.1), transparent 60%);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.track:hover { border-color: var(--line-gold); transform: translateY(-3px); }
.track:hover::after { opacity: 1; }
.track.premium { background: linear-gradient(180deg, #211b12, #191510); border-color: var(--line-gold); }
.track-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.track .tag {
  align-self: flex-start;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: var(--gold); padding: .35rem .7rem; border: 1px solid var(--line-gold); border-radius: var(--r-pill);
}
.track h3 { font-size: clamp(1.5rem, 2.3vw, 2rem); }
.track p { color: var(--on-dark-muted); font-size: .98rem; }
.track ul { display: grid; gap: .55rem; margin-top: .2rem; }
.track ul li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--on-dark); }
.track ul li svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }
.track .track-foot { margin-top: auto; padding-top: .6rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.track .price-from { font-size: .85rem; color: var(--on-dark-muted); }
.track .price-from b { font-family: var(--font-display); font-size: 1.25rem; color: var(--on-dark); font-weight: 500; }

/* ============================ CAPABILITIES — sticky-left / scroll-right ============================ */
.cap-layout { display: grid; grid-template-columns: minmax(280px, 380px) 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.cap-sticky { position: sticky; top: calc(var(--header-h) + clamp(1.5rem, 4vw, 3rem)); align-self: start; }
.cap-sticky .section-title { margin: 1rem 0 1.2rem; }
.cap-index { display: flex; gap: .5rem; margin-top: 2rem; flex-wrap: wrap; }
.cap-index button {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-dark); color: var(--on-dark-muted);
  font-size: .8rem; font-weight: 600; display: grid; place-items: center;
  transition: all var(--dur) var(--ease);
}
.cap-index button.active, .cap-index button:hover { border-color: var(--gold); color: var(--gold); }

.cap-list { display: grid; gap: clamp(1rem, 2vw, 1.4rem); }
.cap-item {
  position: relative;
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
  border: 1px solid var(--line-dark); border-radius: var(--r-lg);
  background: var(--ink-1);
  display: grid; gap: 1rem;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.cap-item:hover { border-color: var(--line-gold); background: var(--ink-2); }
.cap-item .cap-num {
  font-family: var(--font-display); font-size: 1rem; color: var(--gold); font-weight: 500;
  letter-spacing: .05em;
}
.cap-item h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
.cap-item p { color: var(--on-dark-muted); max-width: 60ch; }
.cap-caps { display: flex; flex-wrap: wrap; gap: .5rem; padding-top: .4rem; border-top: 1px solid var(--line-dark); margin-top: .3rem; }
.cap-caps .lbl { width: 100%; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-faint); margin-bottom: .3rem; }
.cap-caps span:not(.lbl) {
  font-size: .82rem; color: var(--on-dark-muted);
  padding: .38rem .7rem; border: 1px solid var(--line-dark); border-radius: var(--r-pill);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.cap-item:hover .cap-caps span:not(.lbl) { border-color: var(--line-gold); color: var(--on-dark); }

/* ============================ MANIFESTO — numbered principles, sticky-left ============================ */
.manifesto { background: var(--ink); }
.mani-layout { display: grid; grid-template-columns: minmax(260px, 360px) 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.mani-sticky { position: sticky; top: calc(var(--header-h) + clamp(1.5rem, 4vw, 3rem)); align-self: start; }
.mani-sticky p { color: var(--on-dark-muted); margin-top: 1rem; max-width: 34ch; }
.mani-list { display: grid; }
.mani-item {
  display: grid; grid-template-columns: 1fr auto;
  gap: 1rem 2rem; align-items: baseline;
  padding: clamp(1.5rem, 3vw, 2.3rem) 0;
  border-top: 1px solid var(--line-dark);
}
.mani-item:last-child { border-bottom: 1px solid var(--line-dark); }
.mani-item .mani-text { max-width: 40ch; }
.mani-item .neg { color: var(--on-dark-faint); font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 2rem); font-weight: 400; line-height: 1.12; }
.mani-item .pos { color: var(--on-dark); font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 2rem); font-weight: 500; font-style: normal; line-height: 1.12; }
.mani-item .pos .accent { color: var(--gold); }
.mani-item .mani-num {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold); font-weight: 400; letter-spacing: .04em;
  opacity: .85; justify-self: end;
}
.mani-item:hover .mani-num { opacity: 1; }

/* ============================ WORK GRID ============================ */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 1.8rem); }
.work {
  border: 1px solid var(--line-light); border-radius: var(--r-lg); overflow: hidden;
  background: var(--cream-1);
  display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.work:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.work-shot {
  position: relative; aspect-ratio: 16/11; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between; padding: 1.1rem;
  color: var(--cream);
}
.shot-nails { background: linear-gradient(150deg, #6c5a48, #2c2419); }
.shot-resto { background: linear-gradient(150deg, #7a4b34, #2a1c14); }
.shot-bar   { background: linear-gradient(150deg, #3b3550, #1a1622); }
.shot-brand { background: linear-gradient(150deg, #3a4a45, #17201d); }
.work-shot::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 80% 10%, rgba(255,255,255,.14), transparent 55%);
  pointer-events: none;
}
.work-shot .chip {
  position: relative; z-index: 1; align-self: flex-start;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  background: rgba(20,16,11,.5); backdrop-filter: blur(6px);
  padding: .34rem .7rem; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.14);
}
.work-shot .shot-label { position: relative; z-index: 1; display: flex; flex-direction: column; }
.work-shot .shot-label .k { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; }
.work-shot .shot-label .s { font-size: .82rem; opacity: .82; }
.work-body { padding: 1.5rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.work-meta { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .2rem; }
.work-meta span { font-size: .72rem; letter-spacing: .04em; color: var(--on-light-muted); padding: .24rem .55rem; border: 1px solid var(--line-light); border-radius: var(--r-pill); }
.work-body h3 { color: var(--on-light); }
.work-body p { font-size: .95rem; color: var(--on-light-muted); }
.work-body .work-goal { color: var(--on-light); }
.work-body .link-underline { margin-top: auto; padding-top: .6rem; }

/* ============================ PRICING ============================ */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2.2vw, 1.6rem); align-items: stretch; }
.price {
  position: relative;
  border: 1px solid var(--line-dark); border-radius: var(--r-lg);
  padding: clamp(1.7rem, 2.6vw, 2.3rem);
  background: var(--ink-1);
  display: flex; flex-direction: column; gap: .3rem;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.price:hover { transform: translateY(-4px); border-color: var(--line-gold); }
.price.featured {
  background: linear-gradient(180deg, #221c12, #18140e);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #1a1409;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .34rem .9rem; border-radius: var(--r-pill); white-space: nowrap;
}
.price h3 { color: var(--on-dark); }
.price .who { color: var(--on-dark-muted); font-size: .9rem; min-height: 2.6em; margin-bottom: .4rem; }
.price .amount { display: flex; align-items: baseline; gap: .3rem; margin: .3rem 0 .1rem; }
.price .amount .ab { font-size: .82rem; color: var(--on-dark-muted); }
.price .amount .num { font-family: var(--font-display); font-size: 2.9rem; font-weight: 500; color: var(--on-dark); line-height: 1; }
.price .amount .cur { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }
.price .tax { font-size: .78rem; color: var(--on-dark-faint); margin-bottom: 1.1rem; }
.price ul { display: grid; gap: .62rem; margin-bottom: 1.4rem; }
.price ul li { display: flex; gap: .6rem; font-size: .92rem; color: var(--on-dark); align-items: flex-start; }
.price ul li svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }
.price .btn { margin-top: auto; }
.price-note {
  display: flex; align-items: center; gap: .7rem; justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem); text-align: center; flex-wrap: wrap;
  font-size: .95rem; color: var(--on-dark-muted);
}
.price-note b { color: var(--gold); }
.price-note svg { flex: none; }

/* Social-Media / Instagram Add-on (Justine) */
.social-addon {
  display: flex; gap: clamp(1.2rem, 3vw, 2.1rem); align-items: flex-start;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line-gold); border-radius: var(--r-lg);
  background: linear-gradient(120deg, rgba(198,161,91,.09), transparent 58%), var(--ink-1);
}
.social-addon-icon { flex: none; width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(140deg, var(--gold-soft), var(--gold-deep)); color: #1a1409; }
.social-addon-icon svg { width: 28px; height: 28px; }
.social-addon-text .tag { display: inline-block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--gold); border: 1px solid var(--line-gold); padding: .3rem .7rem; border-radius: var(--r-pill); margin-bottom: .8rem; }
.social-addon-text h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); margin-bottom: .5rem; }
.social-addon-text p { color: var(--on-dark-muted); max-width: 64ch; margin-bottom: 1.1rem; }
.social-addon-list { display: grid; gap: .55rem; }
.social-addon-list li { display: flex; gap: .65rem; align-items: flex-start; font-size: .95rem; color: var(--on-dark); }
.social-addon-list li::before { content: ""; flex: none; margin-top: .55rem; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
/* Wer-bekommt-was-Klarstellung: abgesetzt, damit sie nicht als Feature-Zeile untergeht. */
.social-addon-scope {
  margin-top: 1.1rem; margin-bottom: 0 !important;
  padding-top: .9rem; border-top: 1px solid var(--line-gold);
  font-size: .88rem; line-height: 1.55;
}
.social-addon-scope b { color: var(--on-dark); }
@media (max-width: 620px) { .social-addon { flex-direction: column; } }

/* ============================ PROCESS ============================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); counter-reset: step; }
.step {
  padding: clamp(1.4rem, 2.4vw, 2rem) 0 0;
  border-top: 2px solid var(--line-light);
  display: grid; gap: .5rem;
  transition: border-color var(--dur) var(--ease);
}
.step:hover { border-top-color: var(--gold-deep); }
.step .num { font-family: var(--font-display); font-size: 1rem; color: var(--gold-deep); font-weight: 600; letter-spacing: .05em; }
.step h3 { color: var(--on-light); font-size: 1.25rem; }
.step p { color: var(--on-light-muted); font-size: .95rem; }

/* ============================ FOUNDER / STATS ============================ */
.founder { display: grid; grid-template-columns: 1fr 1.12fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.founder-portrait { position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line-gold); }
.founder-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(18,15,11,.5)); }
.founder-portrait img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* Founder duo — Philipp & Justine, each framed, names & roles beneath */
.founder-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.4vw, 1.6rem); align-items: start; }
.fp-cell { margin: 0; }
.fp-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-gold); }
.fp-frame img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.fp-cap { text-align: center; padding-top: clamp(.75rem, 1.7vw, 1.05rem); }
.fp-cap b { display: block; font-family: var(--font-sans); font-weight: 600; font-size: clamp(1.02rem, 1.15vw, 1.16rem); letter-spacing: -.005em; line-height: 1.2; color: var(--on-dark); }
.fp-cap span { display: block; margin-top: .28rem; font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; color: var(--on-dark-muted); }
.founder blockquote {
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 500; line-height: 1.18; letter-spacing: -.01em; margin: 1rem 0 1.3rem;
}
.founder blockquote .accent { color: var(--gold); }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.4rem; margin: 1.8rem 0; }
.pillar { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--on-dark-muted); }
.pillar svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }
.pillar b { color: var(--on-dark); font-weight: 600; }
.founder-sign { display: flex; align-items: center; gap: .8rem; padding-top: 1.4rem; border-top: 1px solid var(--line-dark); }
.founder-sign .sign-mark { width: 46px; height: auto; opacity: .9; }
.founder-sign .who { display: flex; flex-direction: column; }
.founder-sign .who b { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; }
.founder-sign .who span { font-size: .82rem; color: var(--on-dark-muted); }

/* Honest stat row */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.stat {
  padding: 1.4rem; border: 1px solid var(--line-dark); border-radius: var(--r); text-align: center;
  transition: border-color var(--dur) var(--ease);
}
.stat:hover { border-color: var(--line-gold); }
.stat .k { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500; color: var(--on-dark); line-height: 1; }
.stat .k .accent { color: var(--gold); }
.stat .v { display: block; font-size: .82rem; color: var(--on-dark-muted); margin-top: .5rem; letter-spacing: .02em; }

/* ============================ CHECK / FORM ============================ */
.check-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.check-points { display: grid; gap: 1rem; margin-top: 1.8rem; }
.check-points li { display: flex; gap: .9rem; align-items: flex-start; }
.check-points .ck { width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(198,161,91,.12); border: 1px solid var(--line-gold); }
.check-points .ck svg { width: 20px; height: 20px; color: var(--gold); }
.check-points b { display: block; color: var(--on-dark); font-weight: 600; margin-bottom: .1rem; }
.check-points p { font-size: .92rem; color: var(--on-dark-muted); }

.check-alt { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.pill-link {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1rem; border: 1px solid var(--line-gold); border-radius: var(--r-pill);
  font-size: .9rem; font-weight: 500; color: var(--on-dark);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.pill-link svg { width: 18px; height: 18px; color: var(--gold); }
.pill-link:hover { background: rgba(198,161,91,.1); transform: translateY(-2px); }

.form-card { background: var(--cream-1); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.4rem); position: relative; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.span-2 { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; color: var(--on-light); letter-spacing: .01em; }
.field .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; border-radius: var(--r-sm);
  border: 1px solid var(--line-light); background: #fff; color: var(--on-light);
  font-size: .95rem; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 108px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(198,161,91,.2);
}
.field input::placeholder, .field textarea::placeholder { color: #9a9081; }
.form-foot { margin-top: 1.2rem; display: grid; gap: 1rem; }
.form-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .82rem; color: var(--on-light-muted); }
.form-consent input { margin-top: 3px; accent-color: var(--gold-deep); width: 16px; height: 16px; flex: none; }
.form-consent a { color: var(--gold-deep); text-decoration: underline; }
.hp { position: absolute; left: -9999px; }

.form-success {
  position: absolute; inset: 0; background: var(--cream-1); border-radius: var(--r-lg);
  display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: .8rem; padding: 2rem;
}
.form-success.show { display: flex; }
.form-success .ok { width: 60px; height: 60px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; }
.form-success .ok svg { width: 30px; height: 30px; color: #1a1409; }
.form-success h3 { color: var(--on-light); }
.form-success p { color: var(--on-light-muted); max-width: 36ch; }

/* ============================ FAQ ============================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-top: 1px solid var(--line-dark); }
.faq-item:last-child { border-bottom: 1px solid var(--line-dark); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.35rem 0;
  font-family: var(--font-display); font-size: clamp(1.08rem, 1.7vw, 1.3rem); font-weight: 500;
  color: var(--on-dark); transition: color var(--dur) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item .ic { width: 32px; height: 32px; flex: none; border: 1px solid var(--line-gold); border-radius: 50%; display: grid; place-items: center; transition: transform var(--dur) var(--ease); }
.faq-item .ic svg { width: 16px; height: 16px; color: var(--gold); }
.faq-item[open] .ic { transform: rotate(45deg); }
.faq-item .answer { overflow: hidden; }
.faq-item .answer p { padding-bottom: 1.4rem; color: var(--on-dark-muted); max-width: 70ch; }
.faq-item .answer b { color: var(--on-dark); }

/* ============================ FINAL CTA ============================ */
.final-cta { text-align: center; background: var(--ink); position: relative; overflow: hidden; }
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 50% 0%, rgba(198,161,91,.14), transparent 60%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { font-size: var(--fs-display); max-width: 20ch; margin: 1rem auto 1.2rem; }
.final-cta .lead { margin-inline: auto; margin-bottom: 2rem; }
.final-cta .hero-actions { justify-content: center; }

/* ============================ FOOTER ============================ */
.site-footer { background: var(--ink-1); border-top: 1px solid var(--line-dark); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-dark); }
.footer-brand .footer-logo img { width: 190px; height: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--on-dark-muted); font-size: .95rem; max-width: 40ch; }
.footer-brand p em { color: var(--gold); font-style: italic; }
.footer-col h4 { font-family: var(--font-sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-faint); margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { color: var(--on-dark-muted); font-size: .95rem; display: inline-flex; align-items: center; gap: .5rem; transition: color var(--dur) var(--ease); }
.footer-col a svg { width: 17px; height: 17px; color: var(--gold); }
.footer-col a:hover { color: var(--on-dark); }
/* Zuordnung hinter den beiden Team-Mailadressen, damit klar ist, wer wofuer zustaendig ist. */
.foot-who { display: block; font-size: .74rem; color: var(--on-dark-faint); padding-left: calc(17px + .5rem); margin-top: .1rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; }
.footer-bottom p { font-size: .84rem; color: var(--on-dark-faint); }
.legal { display: flex; gap: 1.4rem; }
.legal a { font-size: .84rem; color: var(--on-dark-muted); transition: color var(--dur) var(--ease); }
.legal a:hover { color: var(--gold); }

/* ============================ LEGAL / PROSE PAGES ============================ */
.legal-page { padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem)); }
.prose { max-width: 760px; margin-inline: auto; }
.prose .back-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .9rem; font-weight: 500; color: var(--on-dark-muted); margin-bottom: 2rem;
  transition: color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.prose .back-link svg { width: 18px; height: 18px; }
.prose .back-link:hover { color: var(--gold); gap: .75rem; }
.prose h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin: .8rem 0 1.6rem; }
.prose h2 { font-size: clamp(1.25rem, 2vw, 1.55rem); margin: 2.2rem 0 .7rem; color: var(--on-dark); }
.prose p, .prose li { color: var(--on-dark-muted); margin-bottom: .8rem; }
.prose ul { list-style: disc; padding-left: 1.3rem; margin-bottom: .8rem; }
.prose li { margin-bottom: .4rem; }
.prose b { color: var(--on-dark); }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--gold-soft); }
.legal-note {
  background: var(--ink-2); border: 1px solid var(--line-gold); border-radius: var(--r);
  padding: 1.1rem 1.3rem; margin: 1.4rem 0 2rem; font-size: .9rem; color: var(--on-dark-muted);
}
.legal-note b { color: var(--gold); }

/* Simple centered success/thanks page badge */
.thanks-badge {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .55rem .95rem; border: 1px solid var(--line-gold); border-radius: var(--r-pill);
  margin: 0 auto 2rem;
}
.thanks-badge .ic { width: 34px; height: 34px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; }
.thanks-badge .ic svg { width: 18px; height: 18px; color: #1a1409; }
.thanks-badge .tx { display: flex; flex-direction: column; text-align: left; line-height: 1.2; }
.thanks-badge .tx b { color: var(--on-dark); font-size: .92rem; }
.thanks-badge .tx small { color: var(--on-dark-muted); font-size: .76rem; }

/* ============================ PORTFOLIO — EXPANDING CARDS (Referenzen) ============================
   Adaptiert von CodePen "Expanding Cards" von z- — https://codepen.io/z-/pen/OBPJKK (MIT).
   Abweichungen vom Original, jeweils bewusst:
   - SCSS (@for/@include dark) von Hand auf Plain-CSS + Marken-Tokens kompiliert.
   - <button> statt <div>: Original ist per Tastatur nicht bedienbar.
   - Inline-SVG statt Font-Awesome-CDN: kein Fremd-Request fuer 5 Icons.
   - Mobil vertikal gestapelt. Das Original blendet ab 798px Karten per display:none
     aus — auf dem Handy waere damit die Haelfte der Referenzen unerreichbar.
   Reduced-Motion greift global ueber den Block am Dateiende.
   ================================================================================================ */
.pf { position: relative; max-width: 980px; margin-inline: auto; }

.pf-opts {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  height: 440px;
}

.pf-opt {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  min-width: 60px;
  margin: 8px;
  padding: 0;
  border: 0;
  border-radius: var(--r-lg);
  cursor: pointer;
  font: inherit;
  text-align: left;
  display: block;                                  /* Karten sind inzwischen <a>-Links */
  text-decoration: none;
  color: inherit;
  background-color: var(--pf-bg, var(--ink-2));   /* Fallback, falls Bild fehlt */
  background-image: var(--pf-img);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 120%;
  transition: flex-grow .55s var(--ease), max-width .55s var(--ease),
              margin .55s var(--ease), border-radius .55s var(--ease),
              background-size .55s var(--ease), box-shadow .45s var(--ease);
}
.pf-opt:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.pf-opt.is-active {
  flex-grow: 10000;
  max-width: 620px;
  margin: 0;
  border-radius: var(--r-xl);
  background-size: auto 100%;
  box-shadow: var(--shadow-gold);
}

/* Scrim — traegt die Label-Lesbarkeit, aktiv kraeftiger */
.pf-opt-shadow {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(10,8,6,.72) 0%, rgba(10,8,6,.24) 52%, rgba(10,8,6,0) 100%);
  transition: background .55s var(--ease);
}
.pf-opt.is-active .pf-opt-shadow {
  background: linear-gradient(to top, rgba(10,8,6,.9) 0%, rgba(10,8,6,.38) 36%, rgba(10,8,6,0) 68%);
}

.pf-opt-label {
  position: absolute; right: 0; display: flex; align-items: center;
  transition: bottom .55s var(--ease), left .55s var(--ease);
}
.pf-opt.is-active .pf-opt-label { bottom: 22px; left: 22px; }
.pf-opt:not(.is-active) .pf-opt-label { bottom: 12px; left: 12px; }

.pf-opt-icon {
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream-1); color: var(--ink);
}
.pf-opt-icon svg { width: 20px; height: 20px; }

.pf-opt-info {
  display: flex; flex-direction: column; justify-content: center;
  margin-left: 12px; min-width: 0; color: var(--cream); white-space: nowrap;
}
.pf-opt-info > * {
  position: relative; left: 20px; opacity: 0;
  transition: left .55s var(--ease), opacity .45s ease-out;
}
.pf-opt.is-active .pf-opt-info > * { left: 0; opacity: 1; }

.pf-opt-chip {
  align-self: flex-start;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  background: rgba(20,16,11,.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-pill);
  padding: .26rem .6rem; margin-bottom: .42rem;
}
.pf-opt-main { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; line-height: 1.15; }
.pf-opt-sub { font-size: .86rem; color: rgba(244,238,227,.8); margin-top: .18rem; transition-delay: .08s; }
.pf-opt-visit { font-size: .8rem; font-weight: 600; color: var(--gold); margin-top: .55rem; letter-spacing: .03em; transition-delay: .12s; }

.pf-hint { text-align: center; margin-top: 1.1rem; font-size: .78rem; letter-spacing: .04em; color: var(--on-light-muted); }

/* Mobil: vertikal stapeln statt Karten zu verstecken. Eingeklappt bleibt der Titel lesbar. */
@media (max-width: 760px) {
  .pf-opts { flex-direction: column; height: auto; overflow: visible; }
  .pf-opt {
    flex: 0 0 auto; height: 76px; min-width: 0; max-width: none;
    margin: 5px 0; border-radius: var(--r);
    background-size: cover;
    transition: height .55s var(--ease), border-radius .55s var(--ease), box-shadow .45s var(--ease);
  }
  .pf-opt.is-active { height: 330px; max-width: none; margin: 5px 0; border-radius: var(--r-lg); }
  .pf-opt-label,
  .pf-opt.is-active .pf-opt-label { left: 14px; bottom: 14px; }
  .pf-opt-info > * { left: 0; opacity: 1; }
  .pf-opt:not(.is-active) .pf-opt-chip,
  .pf-opt:not(.is-active) .pf-opt-sub,
  .pf-opt:not(.is-active) .pf-opt-visit { display: none; }
}

/* ============================ TEAM (Philipp + Justin) ============================ */
.team-members { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); margin-top: 1.6rem; }
.team-member { display: flex; align-items: center; gap: .8rem; }
.tm-photo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-gold); }
.tm-mono { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(150deg, var(--ink-3), var(--ink-1)); border: 1px solid var(--line-gold); color: var(--gold); font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.tm-info { display: flex; flex-direction: column; line-height: 1.28; }
.tm-info b { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--on-dark); }
.tm-info span { font-size: .82rem; color: var(--on-dark-muted); }
.tm-info em { color: var(--gold); font-style: italic; }

/* ============================ LIVE-EFFEKTE: TILT + AMBIENT (fusioniert) ============================ */
/* Magnetische Tilt-Cards (Desktop, JS): 3D-Perspektive auf den Grids, Karten neigen sich zum Cursor. */
.tracks, .work-grid { perspective: 1100px; }
.track, .work { transform-style: preserve-3d; }
/* Während des Tiltens 1:1 tracken (keine Transition); beim Verlassen sanft zurück. */
.track.is-tilting, .work.is-tilting { transition: none; }

/* Ambient-Sheen für Touch-Geräte: weicher goldener Lichtschein driftet langsam über die Premium-Karten,
   damit sie auch ohne Cursor lebendig wirken. Nur Touch + wenn Motion erlaubt. */
@media (hover: none) and (pointer: coarse) and (prefers-reduced-motion: no-preference) {
  .track { position: relative; }
  .track > * { position: relative; z-index: 1; }
  .track::before {
    content: ""; position: absolute; inset: -35%; z-index: 0; pointer-events: none;
    background: radial-gradient(closest-side, rgba(198,161,91,.14), transparent 72%);
    animation: sheenDrift 11s ease-in-out infinite alternate;
  }
  .track.premium::before { animation-duration: 13.5s; animation-direction: alternate-reverse; }
}
@keyframes sheenDrift {
  0%   { transform: translate(-16%, -12%); opacity: .5; }
  50%  { opacity: 1; }
  100% { transform: translate(16%, 14%); opacity: .6; }
}

/* ============================ REVEAL / MOTION ============================ */
.gsap-enabled .reveal { opacity: 0; transform: translateY(26px); }
.gsap-enabled .reveal-stagger > * { opacity: 0; transform: translateY(22px); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--ink); padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .cap-layout, .mani-layout { grid-template-columns: 1fr; gap: clamp(1.6rem, 4vw, 2.4rem); }
  .cap-sticky, .mani-sticky { position: static; }
  .cap-index { display: none; }
  .founder { grid-template-columns: 1fr; }
  .founder-portrait { max-width: 440px; }
  .founder-duo { max-width: 460px; margin-inline: auto; }
}
@media (max-width: 960px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price.featured { order: -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .check-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .tracks { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .mani-item { grid-template-columns: 1fr; gap: .5rem; }
  .mani-item .mani-num { justify-self: start; order: -1; }
  .hero-copy { width: 100%; max-width: 100%; }
  .hero-scroll-inner h1 { max-width: 100%; }
  .hero-scroll-inner .lead { max-width: 100%; }
}
@media (max-width: 480px) {
  .stat-row, .steps { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

/* ============================ REDUCED MOTION ============================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gsap-enabled .reveal, .gsap-enabled .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  .scroll-cue span { animation: none; }
  * { transition-duration: .01ms !important; }
}
