/* acessio · premium-v7 · warm editorial system */

:root {
  --canvas: #F3F1F0;
  --canvas-2: #EEE9E4;
  --canvas-3: #E7E0D8;
  --ink: #19191C;
  --ink-2: #2B2B2F;
  --muted: #6E6A66;
  --line: rgba(25, 25, 28, 0.10);
  --line-2: rgba(25, 25, 28, 0.18);
  --accent: #B98A3C;        /* champagner-gold — ersetzt cyan */
  --accent-ink: #7A5A24;

  --serif: "Instrument Serif", "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Inter", "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --fs-display: clamp(52px, 8.8vw, 108px);
  --fs-h1: clamp(44px, 6.4vw, 84px);
  --fs-h2: clamp(34px, 4.8vw, 64px);
  --fs-h3: clamp(24px, 3vw, 40px);
  --fs-lead: clamp(18px, 1.4vw, 22px);
  --fs-body: clamp(16px, 1.05vw, 18px);

  --gutter: clamp(20px, 5vw, 72px);
  --section-y: clamp(96px, 14vw, 220px);
  --section-y-tight: clamp(64px, 9vw, 140px);
  --max: 1440px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 700ms;
  --dur-fast: 300ms;
}

@media (prefers-reduced-motion: reduce) {
  :root { --dur: 0ms; --dur-fast: 0ms; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--canvas); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: var(--section-y-tight); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.display, h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: balance;
  font-style: italic;
}
.display { font-size: var(--fs-display); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-family: var(--serif); font-weight: 400; font-size: var(--fs-h3); letter-spacing: -0.015em; line-height: 1.1; }
p { text-wrap: pretty; max-width: 62ch; }
.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-2); max-width: 58ch; }
.muted { color: var(--muted); }

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 20px var(--gutter);
  display: flex; align-items: center; justify-content: center; gap: 40px;
  background: rgba(243, 241, 240, 0);
  transition: background var(--dur-fast) var(--ease), backdrop-filter var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(243, 241, 240, 0.82);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom-color: var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand svg { height: 22px; width: auto; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav ul { list-style: none; display: flex; gap: 32px; }
.nav ul a {
  font-size: 14px; color: var(--ink);
  opacity: 0.72; transition: opacity var(--dur-fast) var(--ease);
}
.nav ul a:hover { opacity: 1; }
.nav-cta, a.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--ink); color: var(--canvas) !important;
  opacity: 1;
  font-size: 14px; font-weight: 500;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.nav-cta:hover { background: #000; transform: translateY(-1px); }
.nav-cta::after { content: "→"; transition: transform var(--dur-fast) var(--ease); }
.nav-cta:hover::after { transform: translateX(3px); }
@media (max-width: 860px) {
  .nav ul { display: none; }
  .nav { gap: 12px; }
  .nav-cta { padding: 9px 14px; font-size: 13px; }
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn--primary { background: var(--ink); color: var(--canvas); }
.btn--primary:hover { background: #000; transform: translateY(-1px); }
.btn--primary::after { content: "→"; transition: transform var(--dur-fast) var(--ease); }
.btn--primary:hover::after { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn--ghost:hover { background: var(--ink); color: var(--canvas); border-color: var(--ink); }

.hero { padding-top: 148px; padding-bottom: var(--section-y); }
.hero__eyebrow { margin-bottom: 40px; display: flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.hero__eyebrow::before {
  content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.hero__title { font-family: var(--serif); font-size: var(--fs-display); font-style: italic; font-weight: 400; line-height: 0.98; letter-spacing: -0.02em; text-wrap: balance; }
.hero__title .word { display: inline-block; overflow: hidden; padding-right: 0.16em; margin-right: -0.02em; padding-bottom: 0.08em; }
.hero__title .word > i {
  display: inline-block; transform: translateY(110%);
  animation: rise 1.1s var(--ease) forwards;
  font-style: italic;
}
.hero__title .word:nth-child(1) > i { animation-delay: 0.15s; }
.hero__title .word:nth-child(2) > i { animation-delay: 0.30s; }
.hero__title .word:nth-child(3) > i { animation-delay: 0.45s; }
.hero__title .word:nth-child(4) > i { animation-delay: 0.60s; }
.hero__title .word:nth-child(5) > i { animation-delay: 0.72s; }
.hero__title .word:nth-child(6) > i { animation-delay: 0.84s; }
.hero__title .word:nth-child(7) > i { animation-delay: 0.96s; }
@keyframes rise { to { transform: translateY(0); } }
.hero__tagline { margin-top: 20px; font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2vw, 28px); color: var(--accent); letter-spacing: -0.01em; }

.hero__body { margin-top: 40px; font-size: clamp(19px, 1.4vw, 23px); line-height: 1.5; max-width: 52ch; color: var(--ink-2); }
.hero__actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__micro { margin-top: 24px; color: var(--muted); font-size: 14px; max-width: 44ch; }

.hero__stage {
  margin-top: 88px;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #EAE4DD 0%, #E1D8CE 100%);
  border: 1px solid var(--line);
}
.hero__stage-note {
  position: absolute; bottom: 22px; left: 22px;
  color: var(--muted); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

.thesis { display: grid; grid-template-columns: 1fr; gap: 48px; padding-block: var(--section-y); }
.thesis__title { font-family: var(--serif); font-style: italic; font-size: var(--fs-h1); font-weight: 400; line-height: 1.02; letter-spacing: -0.02em; max-width: 20ch; }
.thesis__quote { align-self: end; justify-self: end; max-width: 42ch; color: var(--ink-2); font-size: var(--fs-lead); }
@media (min-width: 900px) {
  .thesis { grid-template-columns: 1.35fr 1fr; }
}

.chapters { display: grid; gap: clamp(80px, 12vw, 180px); }
.chapter { display: grid; gap: 32px; align-items: start; }
.chapter__idx { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 20px; letter-spacing: 0.02em; }
.chapter__title { font-family: var(--serif); font-style: italic; font-size: var(--fs-h2); font-weight: 400; line-height: 1.02; letter-spacing: -0.02em; max-width: 16ch; }
.chapter__body { color: var(--ink-2); font-size: var(--fs-lead); max-width: 46ch; }
.chapter__media {
  aspect-ratio: 16 / 10;
  border-radius: 22px; overflow: hidden;
  background: var(--canvas-2);
  position: relative;
  border: 1px solid var(--line);
}
@media (min-width: 900px) {
  .chapter { grid-template-columns: 1fr 1.2fr; gap: 88px; }
  .chapter--right { direction: rtl; }
  .chapter--right > * { direction: ltr; }
}

.asym { display: grid; grid-template-columns: 1fr; gap: 16px; }
.asym__left { aspect-ratio: 4 / 3; border-radius: 26px; overflow: hidden; background: var(--canvas-2); position: relative; border: 1px solid var(--line); }
.asym__right { display: grid; grid-template-rows: auto auto; gap: 24px; }
.asym__video { aspect-ratio: 4 / 3; border-radius: 22px; overflow: hidden; background: var(--canvas-3); position: relative; border: 1px solid var(--line); }
.asym__note { color: var(--muted); font-size: 15px; line-height: 1.55; max-width: 34ch; margin-left: auto; }
@media (min-width: 900px) {
  .asym { grid-template-columns: 7fr 5fr; }
}

.proof-strip {
  padding: clamp(48px, 8vw, 96px) var(--gutter);
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.35) 100%);
}
.proof-strip__wrap { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; }
.proof-strip__title { font-family: var(--serif); font-style: italic; font-size: var(--fs-h3); font-weight: 400; max-width: 24ch; }
.proof-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.metric { display: grid; gap: 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.metric__value {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(64px, 8vw, 108px);
  line-height: 0.9; letter-spacing: -0.02em;
}
.metric__label { color: var(--muted); font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.metric__desc { color: var(--ink-2); font-size: 15px; max-width: 30ch; }
.metric--placeholder .metric__value { color: var(--muted); opacity: 0.55; }
@media (min-width: 900px) {
  .proof-strip__wrap { grid-template-columns: 1fr 2fr; gap: 88px; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
}

.mods__nav {
  display: flex; gap: 4px; flex-wrap: nowrap;
  padding: 6px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  margin-bottom: 56px;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
}
.mods__nav button {
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 14px; font-weight: 500;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.mods__nav button:hover { color: var(--ink); }
.mods__nav button[aria-selected="true"] { background: var(--ink); color: var(--canvas); }

.mods__panel { display: none; grid-template-columns: 1fr; gap: 40px; }
.mods__panel.is-active { display: grid; animation: fadeIn 500ms var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.mod {
  padding: 32px 4px 32px 4px;
  border-top: 1px solid var(--line);
  display: grid; gap: 12px;
}
.mod__num { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 15px; }
.mod__title { font-size: 22px; font-family: var(--sans); font-weight: 500; letter-spacing: -0.005em; line-height: 1.25; }
.mod__body { color: var(--ink-2); font-size: 15px; max-width: 44ch; }
@media (min-width: 900px) {
  .mods__panel { grid-template-columns: repeat(4, 1fr); gap: 24px 32px; }
}

.bespoke { display: grid; grid-template-columns: 1fr; gap: 56px; }
.bespoke__copy { max-width: 44ch; }
.bespoke__diagram {
  padding: 40px 24px;
  background: var(--canvas-2);
  border-radius: 26px;
  border: 1px solid var(--line);
}
@media (min-width: 900px) {
  .bespoke { grid-template-columns: 1fr 1.2fr; gap: 96px; align-items: center; }
}

.opti { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
.opti__diagram {
  aspect-ratio: 1 / 1;
  max-width: 460px; margin: 0 auto;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
  background: radial-gradient(circle at center, var(--canvas-2) 0%, transparent 70%);
}
@media (min-width: 900px) {
  .opti { grid-template-columns: 1.1fr 1fr; gap: 96px; }
}

.projects__grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 64px; }
.project-card {
  display: block; position: relative; overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  background: var(--canvas-2);
  border: 1px solid var(--line);
}
.project-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease); }
.project-card:hover .project-card__img { transform: scale(1.03); }
.project-card__label {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--canvas);
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
  font-family: var(--serif); font-style: italic; font-size: 26px;
}
.project-card__go {
  font-family: var(--sans); font-style: normal; font-size: 13px;
  padding: 8px 14px; border: 1px solid rgba(255,255,255,0.4); border-radius: 999px;
  backdrop-filter: blur(8px); background: rgba(0,0,0,0.15);
  letter-spacing: 0.02em;
}
.project-card__placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--canvas-2), var(--canvas-3));
  color: var(--muted);
  font-family: var(--serif); font-style: italic; font-size: 32px;
  text-align: center;
  padding: 24px;
}

/* Scrolling page cast — real client page runs through the card */
.cast { position: absolute; inset: 0; overflow: hidden; background: #fff; }
.cast img {
  width: 100%; height: auto; display: block;
  animation: castScroll 30s linear infinite alternate;
  animation-delay: var(--cast-delay, 0s);
}
.cast:hover img { animation-play-state: paused; }
@keyframes castScroll {
  from { transform: translateY(0); }
  to { transform: translateY(var(--cast-end, -82%)); }
}
.project-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.52) 100%);
  pointer-events: none;
}
.project-card__label { z-index: 2; }
@media (min-width: 700px) {
  .projects__grid { grid-template-columns: repeat(3, 1fr); }
}

.specs { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 64px; }
.spec { border-top: 1px solid var(--line); padding-top: 24px; display: grid; gap: 8px; }
.spec__label { color: var(--muted); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.spec__value { font-size: 16px; line-height: 1.5; color: var(--ink-2); max-width: 42ch; }
@media (min-width: 700px) {
  .specs { grid-template-columns: repeat(2, 1fr); gap: 32px 88px; }
}

.final { padding-block: var(--section-y); text-align: center; }
.final__title { font-family: var(--serif); font-style: italic; font-size: var(--fs-display); font-weight: 400; line-height: 0.98; max-width: 20ch; margin: 0 auto; }
.final__body { margin: 32px auto 0; max-width: 52ch; color: var(--ink-2); font-size: var(--fs-lead); }
.final__cta { margin-top: 48px; display: inline-flex; }
.final__micro { margin-top: 20px; color: var(--muted); font-size: 14px; }

/* --- Brand-Footer (Nespresso-inspired) --- */
.footer {
  background: #0E0E11;
  color: #F3F1F0;
  padding-block: clamp(96px, 12vw, 160px) 40px;
  margin-top: clamp(64px, 8vw, 120px);
}
.footer__eyebrow {
  margin: 0 auto 18px;
  color: rgba(243, 241, 240, 0.45);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}
.footer__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(72px, 12vw, 168px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-align: center;
  color: #F3F1F0;
  margin: 0 auto clamp(80px, 10vw, 128px);
  max-width: 20ch;
}
.footer__tagline .accent { color: var(--accent); }
.footer__actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
  max-width: 980px;
  margin: 0 auto clamp(64px, 8vw, 112px);
}
.f-action {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 16px;
  padding: 8px 4px;
  color: #F3F1F0;
  text-align: center;
  transition: transform var(--dur-fast) var(--ease);
}
.f-action:hover { transform: translateY(-3px); }
.f-action__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: #F3F1F0;
}
.f-action__icon svg { width: 100%; height: 100%; stroke: #F3F1F0; stroke-width: 1.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.f-action__label { font-size: 14px; font-weight: 500; color: rgba(243,241,240,0.9); letter-spacing: 0.01em; }
.f-action__value { font-size: 13px; color: rgba(243,241,240,0.55); }
@media (min-width: 720px) {
  .footer__actions { grid-template-columns: repeat(4, 1fr); }
}

.footer__meta {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px var(--gutter) 0;
  border-top: 1px solid rgba(243,241,240,0.14);
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(243,241,240,0.5);
  font-size: 12px;
  letter-spacing: 0.02em;
  gap: 16px; flex-wrap: wrap;
}
.footer__meta a { color: rgba(243,241,240,0.7); }
.footer__meta a:hover { color: #F3F1F0; }
.footer__meta .brand svg { height: 20px; }
.footer__meta .brand svg path { fill: #F3F1F0; }

.film {
  position: relative; width: 100%; height: 100%;
  overflow: hidden;
  background: #F6F3EF;
}
.film__slide {
  position: absolute; inset: 0;
  display: grid; place-items: center; align-content: center;
  opacity: 0;
  padding: 40px;
  animation: filmCycle 15s infinite;
}
.film__slide h4 {
  font-family: var(--sans);
  font-weight: 700; font-style: normal;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  text-align: center;
  max-width: 14ch;
  text-wrap: balance;
  margin-bottom: 24px;
}
.film__slide--1 { animation-delay: 0s; }
.film__slide--2 { animation-delay: 5s; }
.film__slide--3 { animation-delay: 10s; }
@keyframes filmCycle {
  0%, 2% { opacity: 0; transform: translateY(20px); }
  6%, 30% { opacity: 1; transform: none; }
  34%, 100% { opacity: 0; transform: translateY(-20px); }
}
.film__brand {
  position: absolute; bottom: 16px; right: 20px;
  font-size: 11px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase;
}

/* Film ui mocks */
.mock-card { background: white; border-radius: 12px; border: 1px solid var(--line); box-shadow: 0 12px 40px rgba(0,0,0,0.06); padding: 16px 18px; }
.mock-search { display: flex; gap: 10px; align-items: center; min-width: 260px; }
.mock-search .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
.mock-search span { color: var(--muted); font-size: 14px; }
.mock-list { display: grid; gap: 6px; min-width: 240px; }
.mock-list div { background: white; padding: 10px 14px; border-radius: 8px; border: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.mock-path { display: grid; gap: 10px; min-width: 240px; }
.mock-path div { padding: 10px 14px; border-radius: 8px; background: white; border: 1px solid var(--line); font-size: 14px; color: var(--ink); }
.mock-path div.on { background: var(--ink); color: var(--canvas); border-color: var(--ink); }
.mock-q { min-width: 280px; }
.mock-q strong { display: block; font-family: var(--serif); font-style: italic; font-size: 18px; margin-bottom: 12px; font-weight: 400; }
.mock-q label { display: block; padding: 10px 14px; border: 1px solid var(--line); border-radius: 8px; margin-bottom: 6px; font-size: 14px; color: var(--ink-2); }
.mock-q label.on { background: var(--ink); color: var(--canvas); border-color: var(--ink); }
.mock-confirm { text-align: center; min-width: 240px; }
.mock-confirm .check { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--canvas); display: grid; place-items: center; margin: 0 auto 14px; font-size: 20px; }
.mock-confirm strong { display: block; font-family: var(--serif); font-style: italic; font-size: 20px; margin-bottom: 4px; font-weight: 400; }
.mock-confirm span { color: var(--muted); font-size: 13px; }

/* Diagrams */
.diagram-svg { width: 100%; height: auto; }

/* Real film embeds */
.filmvid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__stage .filmvid, .chapter__media .filmvid, .asym__video .filmvid { position: absolute; }

.stack-lg { display: grid; gap: 40px; }
.stack-md { display: grid; gap: 24px; }
.stack-sm { display: grid; gap: 12px; }
.max-narrow { max-width: 780px; }
.max-mid { max-width: 980px; }

.page-hero { padding-top: 168px; padding-bottom: 96px; }
.page-hero__eyebrow { color: var(--muted); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
.page-hero__title { font-family: var(--serif); font-style: italic; font-size: var(--fs-h1); font-weight: 400; line-height: 1.02; letter-spacing: -0.02em; max-width: 20ch; }
.page-hero__lead { margin-top: 32px; font-size: var(--fs-lead); color: var(--ink-2); max-width: 56ch; }

.page-steps { display: grid; gap: 40px; padding-block: var(--section-y-tight); }
.page-step { display: grid; grid-template-columns: 40px 1fr; gap: 24px; padding-top: 32px; border-top: 1px solid var(--line); }
.page-step__idx { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 20px; padding-top: 4px; }
.page-step h3 { font-size: 22px; font-family: var(--sans); font-weight: 500; margin-bottom: 8px; font-style: normal; letter-spacing: -0.005em; }
.page-step p { color: var(--ink-2); }

.form-stage {
  min-height: 100vh;
  padding: 96px var(--gutter) 64px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 48px;
}
.form-progress { display: flex; gap: 6px; }
.form-progress__step { flex: 1; height: 3px; background: var(--line); border-radius: 2px; }
.form-progress__step.is-done, .form-progress__step.is-current { background: var(--ink); }
.form-topbar { display: flex; align-items: center; justify-content: space-between; }
.form-topbar__num { color: var(--muted); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.form-question { max-width: 720px; margin: auto 0; display: grid; gap: 24px; }
.form-question h2 { font-size: clamp(28px, 4vw, 44px); font-style: italic; font-family: var(--serif); font-weight: 400; }
.form-question .hint { color: var(--muted); font-size: 15px; }
.form-input {
  width: 100%; padding: 16px 4px;
  background: transparent; border: none; border-bottom: 1px solid var(--line-2);
  font: inherit; color: var(--ink); font-size: 18px;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease);
}
.form-input:focus { border-bottom-color: var(--ink); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-options { display: grid; gap: 8px; }
.form-option {
  padding: 14px 20px; border: 1px solid var(--line-2); border-radius: 999px;
  cursor: pointer; transition: all var(--dur-fast) var(--ease);
  display: flex; align-items: center; gap: 12px;
  background: transparent;
  text-align: left;
  font-size: 15px;
  width: 100%;
}
.form-option:hover { border-color: var(--ink-2); }
.form-option.is-selected { background: var(--ink); color: var(--canvas); border-color: var(--ink); }
.form-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.form-nav button {
  padding: 12px 20px; border-radius: 999px; font-size: 14px;
  border: 1px solid var(--line-2); color: var(--ink);
  background: transparent;
}
.form-nav button:hover:not(:disabled) { background: var(--ink); color: var(--canvas); border-color: var(--ink); }
.form-nav button:disabled { opacity: 0.4; cursor: not-allowed; }
.form-nav .btn-next { background: var(--ink); color: var(--canvas); border-color: var(--ink); }
.form-summary { display: grid; gap: 20px; margin-top: 24px; }
.form-summary__item { display: grid; gap: 6px; padding-top: 20px; border-top: 1px solid var(--line); }
.form-summary__label { color: var(--muted); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.form-summary__value { font-size: 17px; color: var(--ink); white-space: pre-line; }
.form-done { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 96px var(--gutter); }
.form-done h2 { font-size: clamp(36px, 5vw, 60px); font-style: italic; font-family: var(--serif); font-weight: 400; }
.form-done p { margin: 24px auto 0; color: var(--ink-2); font-size: 18px; max-width: 44ch; }

/* ============================================================
   FINALIZE · Pass 1 — additions & overrides
   ============================================================ */

/* Hero scroll link (kein zweiter Button) */
.hero__scrolllink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--muted);
  transition: color var(--dur-fast) var(--ease);
}
.hero__scrolllink span { transition: transform var(--dur-fast) var(--ease); }
.hero__scrolllink:hover { color: var(--ink); }
.hero__scrolllink:hover span { transform: translateY(3px); }
.hero__actions { align-items: center; }

/* Film-Sektionen — je EIN Film pro Viewport, zentral allein */
.filmsec {
  min-height: 100svh;
  display: grid;
  align-content: center;
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(56px, 9vw, 120px);
}
.filmsec__head { max-width: 52ch; }
.filmsec__title {
  font-family: var(--serif); font-style: italic;
  font-size: var(--fs-h2); font-weight: 400;
  line-height: 1.02; letter-spacing: -0.02em;
  max-width: 18ch; margin-top: 16px;
}
.filmsec__body { color: var(--ink-2); font-size: var(--fs-lead); max-width: 48ch; margin-top: 24px; }
.filmsec__video {
  position: relative; width: 100%;
  aspect-ratio: 16 / 9; max-height: 82svh;
  margin-inline: auto;
  border-radius: 24px; overflow: hidden;
  background: var(--canvas-2); border: 1px solid var(--line);
}
.filmsec__video .filmvid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) {
  .filmsec__video { aspect-ratio: 4 / 5; }   /* mobil: großes Hochformat */
}

/* Film ansehen — Sektion + Overlay */
.watch { padding-block: var(--section-y); text-align: center; }
.watch__stage {
  position: relative; display: block;
  width: 100%; max-width: 1100px;
  margin: 48px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 26px; overflow: hidden;
  background: var(--canvas-2); border: 1px solid var(--line);
}
.watch__stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.watch__stage::after { content: ""; position: absolute; inset: 0; background: rgba(14,14,17,0.18); }
.watch__play {
  position: absolute; inset: 0; margin: auto; z-index: 2;
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(243,241,240,0.92);
  display: grid; place-items: center;
  transition: transform var(--dur-fast) var(--ease);
}
.watch__stage:hover .watch__play { transform: scale(1.06); }
.watch__play svg { width: 30px; height: 30px; margin-left: 4px; fill: var(--ink); }
.watch__label {
  position: absolute; left: 0; right: 0; bottom: 22px; z-index: 2;
  color: #F3F1F0; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.filmdialog {
  border: none; padding: 0; background: transparent;
  max-width: min(92vw, 1100px); width: 100%;
  position: fixed; inset: 0; margin: auto;
}
.filmdialog::backdrop { background: rgba(10,10,12,0.82); backdrop-filter: blur(4px); }
.filmdialog video { width: 100%; border-radius: 16px; display: block; }
.filmdialog__close {
  position: absolute; top: -16px; right: -16px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: #F3F1F0; color: var(--ink);
  font-size: 24px; line-height: 1;
  display: grid; place-items: center;
}
@media (max-width: 620px) {
  .filmdialog__close { top: 8px; right: 8px; }
}

/* Footer „Was jetzt" — warm-weiß statt dunkel, kein Blau */
.footer { background: var(--canvas); color: var(--ink); }
.footer__eyebrow { color: var(--accent); }
.footer__tagline { color: var(--ink); }
.footer__tagline .accent { color: var(--accent); }   /* champagner-gold, nicht blau */
.f-action { color: var(--ink); }
.f-action__icon { color: var(--ink); }
.f-action__icon svg { stroke: var(--ink); }
.f-action__label { color: var(--ink); }
.f-action__value { color: var(--muted); }
.footer__meta { border-top-color: var(--line); color: var(--muted); }
.footer__meta a { color: var(--ink-2); }
.footer__meta a:hover { color: var(--ink); }
.footer__meta .brand svg path { fill: var(--ink); }

/* Logo-Lockup (Kranz-a + cessio) + größere Navigation */
.brand { gap: 6px; color: var(--ink); }
.brand svg.brand__logo { height: 34px; width: auto; }
.footer__meta .brand { color: var(--ink); }
.footer__meta .brand svg.brand__logo { height: 30px; }
.nav { gap: 36px; }
.nav ul { gap: 34px; }
.nav ul a { font-size: 15px; }
.nav-cta, a.nav-cta { font-size: 15px; padding: 11px 20px; }
@media (max-width: 860px) {
  .brand svg.brand__logo { height: 30px; }
  /* Kompakter CTA am Phone: kurz "Starten", kein Umbruch, ragt nicht in die Mitte */
  .nav-cta, a.nav-cta { font-size: 0; padding: 9px 15px; white-space: nowrap; line-height: 1; gap: 0; }
  .nav-cta::after { display: none; }
  .nav-cta::before { content: "Starten"; font-size: 14px; font-weight: 500; letter-spacing: 0; }
}

/* Stat-Kacheln (Oura-Prinzip): Icon · Wert · Erklärung · Quelle */
.stats3 { display: grid; grid-template-columns: 1fr; gap: 56px; }
.metric--stat {
  text-align: center;
  display: grid; justify-items: center; align-content: start;
  gap: 12px;
  border-top: none; padding-top: 0;
}
.metric--stat .metric__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--canvas-2);
  display: grid; place-items: center;
  margin-bottom: 8px;
}
.metric--stat .metric__icon svg {
  width: 26px; height: 26px;
  stroke: var(--ink); stroke-width: 1.6; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.metric--stat .metric__value {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(56px, 7vw, 96px); line-height: 0.9; letter-spacing: -0.02em;
  color: var(--ink);
}
.metric__unit { font-size: 0.42em; font-style: italic; margin-left: 0.12em; color: var(--ink-2); }
.metric--stat .metric__label {
  text-transform: none; letter-spacing: 0;
  color: var(--ink); font-size: 16px; font-weight: 500; line-height: 1.3;
  max-width: 24ch;
}
.metric--stat .metric__desc { color: var(--ink-2); font-size: 14px; line-height: 1.5; max-width: 28ch; }
.metric--stat .metric__src {
  color: var(--muted); font-size: 12px; letter-spacing: 0.04em;
  margin-top: 4px;
}
@media (min-width: 800px) {
  .stats3 { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .stats3 .metric--stat { position: relative; padding: 8px clamp(24px, 4vw, 56px); }
  .stats3 .metric--stat:not(:first-child)::before {
    content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 1px; height: 116px; background: var(--line);
  }
}

/* ============================================================
   Hero · codebasierte Smartphone-Sequenz
   Annahmen: beispielhafter Dr.-Herzberg-Flow, keine Live-Verfügbarkeit,
   keine Apple-Assets. Die Gerätegeometrie portiert den geprüften
   IosFrame-Starter; die Produktoberfläche ist vollständig Acessio-eigen.
   ============================================================ */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero__stage.hero-system {
  --phone-scale: 0.72;
  background: var(--canvas-2);
  border-color: rgba(25, 25, 28, 0.12);
  isolation: isolate;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}
.hero__stage.hero-system::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(circle at 17% 22%, rgba(185, 138, 60, 0.08), transparent 26%),
    linear-gradient(115deg, rgba(255,255,255,0.24), transparent 42%);
}

.hero-system__copy {
  position: absolute;
  inset: 0 52% 0 0;
  padding: clamp(32px, 5vw, 72px);
  z-index: 3;
}
.hero-system__sample {
  position: absolute;
  top: clamp(26px, 4vw, 54px);
  left: clamp(32px, 5vw, 72px);
  font-size: clamp(10px, 0.85vw, 12px);
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-system__chapter {
  position: absolute;
  top: 50%;
  left: clamp(32px, 5vw, 72px);
  right: clamp(28px, 3vw, 54px);
  opacity: 0;
  transform: translateY(calc(-50% + var(--chapter-y, 24px))) scale(var(--chapter-scale, 1));
  filter: blur(7px);
  will-change: transform, opacity, filter;
  pointer-events: none;
}
.hero-system__chapter[data-hero-scene="0"] {
  opacity: 1;
  --chapter-y: 0px;
  filter: none;
}
.hero-system__kicker {
  margin-bottom: clamp(12px, 1.4vw, 20px);
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent-ink);
  font-weight: 500;
}
.hero-system__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(46px, 6.2vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero-system__body {
  margin-top: clamp(18px, 2vw, 28px);
  max-width: 35ch;
  color: var(--ink-2);
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.5;
}
.hero-system__chapter--final .hero-system__title { font-size: clamp(44px, 5.4vw, 78px); }
.hero-system__scope {
  position: absolute;
  left: clamp(32px, 5vw, 72px);
  bottom: clamp(30px, 4vw, 56px);
  color: var(--muted);
  font-size: clamp(10px, 0.85vw, 12px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-system__control {
  position: absolute;
  right: clamp(26px, 3vw, 48px);
  bottom: clamp(24px, 3.4vw, 48px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 4px 8px 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: color var(--dur-fast) var(--ease);
  z-index: 5;
}
.hero-system__control:hover,
.hero-system__control:focus-visible { color: var(--ink); }
.hero-system__control:focus-visible { outline: 1px solid var(--ink); outline-offset: 4px; border-radius: 999px; }
.hero-system__control-mark {
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.hero-system__control-mark::before,
.hero-system__control-mark::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 2px;
  height: 6px;
  border-radius: 1px;
  background: currentColor;
}
.hero-system__control-mark::before { left: 5px; }
.hero-system__control-mark::after { right: 5px; }
.hero-system__control[data-state="paused"] .hero-system__control-mark::before,
.hero-system__control[data-state="ended"] .hero-system__control-mark::before {
  left: 6px;
  top: 4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
  border-radius: 0;
  background: transparent;
}
.hero-system__control[data-state="paused"] .hero-system__control-mark::after,
.hero-system__control[data-state="ended"] .hero-system__control-mark::after { display: none; }

.hero-system__device {
  position: absolute;
  inset: 0 0 0 44%;
  overflow: hidden;
  z-index: 2;
}
.hero-phone__scale {
  position: absolute;
  top: 50%;
  left: 57%;
  width: 417px;
  height: 876px;
  transform: translate(-50%, -50%) translateY(var(--phone-lift, 0px)) scale(var(--phone-scale)) rotate(var(--phone-turn, 1.2deg));
  transform-origin: center;
  will-change: transform;
}

/* Exact geometry of the verified 393 × 852 IosFrame starter. */
.hero-phone {
  display: inline-block;
  padding: 12px;
  background: #0B0B0D;
  border-radius: 60px;
  box-shadow: 0 0 0 2px #29282C, 0 36px 90px rgba(25, 25, 28, 0.22), 0 8px 28px rgba(25,25,28,0.12);
  position: relative;
}
.hero-phone__screen {
  position: relative;
  width: 393px;
  height: 852px;
  border-radius: 48px;
  overflow: hidden;
  background: #F8F6F3;
  color: #17171A;
}
.hero-phone__status {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 54px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  z-index: 20;
}
.hero-phone__status-icons { display: flex; align-items: center; gap: 6px; }
.hero-phone__signal { display: flex; align-items: flex-end; gap: 2px; height: 12px; }
.hero-phone__signal i { display: block; width: 3px; background: currentColor; border-radius: 1px; }
.hero-phone__signal i:nth-child(1) { height: 4px; }
.hero-phone__signal i:nth-child(2) { height: 6px; }
.hero-phone__signal i:nth-child(3) { height: 9px; }
.hero-phone__signal i:nth-child(4) { height: 11px; }
.hero-phone__wifi { width: 16px; height: 12px; }
.hero-phone__battery {
  width: 26px;
  height: 12px;
  padding: 1px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  position: relative;
  opacity: 0.82;
}
.hero-phone__battery::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -3px;
  width: 2px;
  height: 6px;
  border-radius: 0 1px 1px 0;
  background: currentColor;
}
.hero-phone__battery i { display: block; width: 82%; height: 100%; border-radius: 1px; background: currentColor; }
.hero-phone__island {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 124px;
  height: 36px;
  transform: translateX(-50%);
  background: #000;
  border-radius: 999px;
  z-index: 30;
}
.hero-phone__content {
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  bottom: 34px;
  overflow: hidden;
  background: #F8F6F3;
}
.hero-phone__home {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 140px;
  height: 5px;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.30);
  border-radius: 999px;
  z-index: 10;
}

.phone-view {
  position: absolute;
  inset: 0;
  padding: 30px 24px 26px;
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  filter: blur(6px);
  will-change: opacity, transform, filter;
  pointer-events: none;
  font-family: var(--sans);
}
.phone-view[data-hero-screen="0"] { opacity: 1; transform: none; filter: none; }
.phone-overline {
  max-width: none;
  margin: 0 0 12px;
  color: var(--accent-ink);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.phone-heading,
.phone-question,
.phone-display {
  margin: 0;
  color: var(--ink);
  font-style: normal;
  text-wrap: balance;
}
.phone-heading { font-family: var(--sans); font-size: 28px; font-weight: 600; line-height: 1.08; letter-spacing: -0.035em; }
.phone-question { font-family: var(--serif); font-style: italic; font-size: 39px; font-weight: 400; line-height: 1.02; letter-spacing: -0.025em; }
.phone-display { font-family: var(--serif); font-style: italic; font-size: 46px; font-weight: 400; line-height: 0.98; letter-spacing: -0.03em; }
.phone-display--small { font-size: 40px; }
.phone-lead {
  margin-top: 20px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
  max-width: 30ch;
}
.phone-help { margin-top: 14px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.phone-primary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  margin-top: 26px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--canvas);
  font-size: 15px;
  font-weight: 500;
}
.phone-primary span { font-size: 19px; }

.phone-searchbar {
  height: 58px;
  margin-top: 24px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 17px;
  background: #FFFFFF;
  border: 1px solid rgba(25,25,28,0.10);
  box-shadow: 0 10px 28px rgba(25,25,28,0.05);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.phone-searchbar svg { width: 19px; height: 19px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }
.phone-caret { display: block; width: 1px; height: 20px; background: var(--ink); animation: phoneCaret 800ms steps(1) infinite; }
@keyframes phoneCaret { 50% { opacity: 0; } }
.phone-section-label { margin-top: 26px; color: var(--muted); font-size: 12px; letter-spacing: 0.04em; }
.phone-result-list { display: grid; gap: 10px; margin-top: 12px; }
.phone-result {
  min-height: 76px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(25,25,28,0.09);
  border-radius: 18px;
  background: rgba(255,255,255,0.68);
  opacity: 0;
  transform: translateY(12px);
  will-change: opacity, transform;
}
.phone-result:first-child { border-color: rgba(185,138,60,0.36); background: rgba(255,255,255,0.94); box-shadow: 0 12px 30px rgba(25,25,28,0.06); }
.phone-result__mark { width: 40px; height: 40px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--canvas); font-family: var(--serif); font-style: italic; font-size: 21px; }
.phone-result__mark--muted { background: var(--canvas-2); color: var(--muted); }
.phone-result span:last-child { display: grid; gap: 4px; min-width: 0; }
.phone-result strong { font-size: 14px; line-height: 1.2; font-weight: 600; }
.phone-result small { color: var(--muted); font-size: 11px; line-height: 1.3; }

.phone-sitebar { display: flex; align-items: center; gap: 7px; margin-bottom: 74px; font-size: 15px; font-weight: 600; }
.phone-sitebar__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.phone-path { display: flex; align-items: center; gap: 8px; margin-top: 30px; color: var(--muted); font-size: 11px; }
.phone-path i { width: 16px; height: 1px; background: rgba(25,25,28,0.22); }

.phone-progress { display: grid; gap: 9px; margin-bottom: 70px; color: var(--muted); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.phone-progress > i { display: block; height: 2px; background: rgba(25,25,28,0.10); border-radius: 2px; overflow: hidden; }
.phone-progress b { display: block; width: 0; height: 100%; background: var(--ink); border-radius: inherit; }
.phone-options { display: grid; gap: 10px; margin-top: 36px; }
.phone-options button {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(25,25,28,0.16);
  border-radius: 999px;
  text-align: left;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  transform: translateY(10px);
  opacity: 0;
}
.phone-options button.is-selected { background: var(--ink); color: var(--canvas); border-color: var(--ink); }

.phone-facts { display: grid; margin-top: 34px; border-top: 1px solid rgba(25,25,28,0.11); }
.phone-facts > div { display: grid; grid-template-columns: 78px 1fr; gap: 12px; padding: 15px 0; border-bottom: 1px solid rgba(25,25,28,0.11); opacity: 0; transform: translateY(10px); }
.phone-facts span { color: var(--muted); font-size: 12px; }
.phone-facts strong { font-size: 13px; font-weight: 500; line-height: 1.35; }

.phone-days { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 34px; }
.phone-days span { height: 46px; display: grid; place-items: center; border: 1px solid rgba(25,25,28,0.12); border-radius: 999px; color: var(--muted); font-size: 13px; }
.phone-days span.is-active { background: var(--ink); border-color: var(--ink); color: var(--canvas); }
.phone-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.phone-slots button { height: 64px; border: 1px solid rgba(25,25,28,0.13); border-radius: 17px; background: rgba(255,255,255,0.58); font-size: 15px; font-weight: 500; opacity: 0; transform: translateY(10px); }
.phone-slots button.is-selected { background: var(--ink); border-color: var(--ink); color: var(--canvas); }
.phone-calendar-note { margin: 18px auto 0; color: var(--muted); font-size: 11px; text-align: center; }

.phone-view--done { display: flex; flex-direction: column; justify-content: center; text-align: center; padding-inline: 34px; }
.phone-done__check { width: 84px; height: 84px; display: grid; place-items: center; margin: 0 auto 30px; border-radius: 50%; background: var(--ink); color: var(--canvas); transform: scale(0.72); opacity: 0; }
.phone-done__check svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.phone-view--done .phone-overline { text-align: center; }
.phone-view--done .phone-lead { margin-inline: auto; }
.phone-done__summary { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 36px; color: var(--ink); font-size: 11px; }
.phone-done__summary i { width: 10px; height: 1px; background: rgba(25,25,28,0.28); }
.phone-done__note { margin: 28px auto 0; color: var(--muted); font-size: 12px; line-height: 1.45; max-width: 24ch; }

.phone-tap {
  position: absolute;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.45);
  box-shadow: 0 0 0 0 rgba(185,138,60,0.18);
  will-change: opacity, transform, box-shadow;
}
.phone-view--landing .phone-tap { right: 54px; bottom: 62px; }
.phone-view--question .phone-tap { right: 54px; top: 345px; }
.phone-view--recommendation .phone-tap { right: 54px; bottom: 64px; }
.phone-view--calendar .phone-tap { left: 86px; top: 355px; }

@media (max-width: 1250px) {
  .hero__stage.hero-system { --phone-scale: 0.59; }
  .hero-system__copy { right: 50%; }
}

@media (max-width: 1000px) and (min-width: 761px) {
  .hero__stage.hero-system { --phone-scale: 0.47; }
  .hero-system__copy { right: 48%; padding: 30px; }
  .hero-system__sample,
  .hero-system__chapter,
  .hero-system__scope { left: 30px; }
  .hero-system__title { font-size: clamp(40px, 6vw, 58px); }
  .hero-system__body { font-size: 13px; }
  .hero-system__control { right: 22px; bottom: 18px; }
}

@media (max-width: 760px) {
  .hero__stage.hero-system {
    --phone-scale: 0.55;
    aspect-ratio: auto;
    min-height: 820px;
    border-radius: 22px;
  }
  .hero-system__copy { inset: 0; padding: 0; }
  .hero-system__sample { top: 24px; left: 22px; right: 22px; }
  .hero-system__chapter {
    top: 118px;
    left: 22px;
    right: 22px;
    transform: translateY(var(--chapter-y, 18px)) scale(var(--chapter-scale, 1));
  }
  .hero-system__chapter[data-hero-scene="0"] { --chapter-y: 0px; }
  .hero-system__kicker { margin-bottom: 8px; font-size: 10px; }
  .hero-system__title { font-size: 46px; line-height: 0.94; }
  .hero-system__chapter--final .hero-system__title { font-size: 42px; }
  .hero-system__body { margin-top: 12px; font-size: 13px; line-height: 1.42; max-width: 31ch; }
  .hero-system__scope { display: none; }
  .hero-system__control { top: 48px; right: 18px; bottom: auto; min-height: 40px; }
  .hero-system__device { inset: 274px 0 0; }
  .hero-phone__scale { left: 50%; top: 48%; }
}

@media (max-width: 380px) {
  .hero__stage.hero-system { --phone-scale: 0.51; min-height: 790px; }
  .hero-system__title { font-size: 42px; }
  .hero-system__device { top: 266px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-system__control { display: none; }
  .phone-caret { animation: none; opacity: 0; }
}

/* ============================================================
   Header-Ausrichtung: Logo & CTA enden auf Sektionsbreite,
   Navigationspunkte sitzen mittig im Viewport.
   ============================================================ */
.header {
  justify-content: space-between;
  padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  padding-right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}
.header .nav ul {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ============================================================
   Zentrales Balken-Menü (drei Balken in Logostärke) + Overlay
   ============================================================ */
.header { z-index: 100; }
.nav-bars {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-bars span {
  display: block;
  width: 30px;
  height: 5px;
  border-radius: 3px;
  background: var(--ink);
  transition: transform 300ms var(--ease), opacity 300ms var(--ease);
}
.nav-bars:hover span { background: #8c641f; }
.nav-bars[aria-expanded="true"] span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.nav-bars[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-bars[aria-expanded="true"] span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-content: center;
  gap: 16px;
  text-align: center;
  background: rgba(243, 241, 240, 0.97);
  backdrop-filter: blur(14px);
}
.site-menu[hidden] { display: none; }
.site-menu nav { display: grid; gap: clamp(10px, 2.4vh, 24px); }
.site-menu nav a {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  color: var(--ink);
  text-decoration: none;
  transition: color 200ms var(--ease);
}
.site-menu nav a:hover,
.site-menu nav a:focus-visible { color: #8c641f; }
.site-menu > .btn { margin-top: 26px; justify-self: center; }

@media (max-width: 640px) {
  .nav-cta { padding: 10px 14px; font-size: 12px; }
  .nav-bars span { width: 26px; height: 4.5px; }
}

/* ------------------------------------------------------------------
   Projektseiten: „Das System dahinter" — Kette, Bausteine, Datenpunkte
   ------------------------------------------------------------------ */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.entry-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.entry-card .cast { position: absolute; inset: 0; }
.entry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.entry-card__label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 16px 18px;
  color: #fff;
}
.entry-card__label strong { display: block; font-size: 15px; font-weight: 600; letter-spacing: 0.01em; }
.entry-card__label span { display: block; margin-top: 3px; font-size: 12px; opacity: 0.82; }
@media (max-width: 760px) {
  .entry-grid { grid-template-columns: 1fr; }
  .entry-card { aspect-ratio: 4 / 5; }
}

.autochain {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  align-items: stretch;
  margin-top: 36px;
}
.autochain__step {
  display: grid;
  align-content: center;
  justify-items: center;
  flex: 1 1 140px;
  min-width: 140px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(250, 248, 245, 0.85);
  text-align: center;
}
.autochain__step small {
  display: block;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}
.autochain__step strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 20px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}
.autochain__step span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.autochain__step--auto { border-color: rgba(185, 138, 60, 0.5); }
.autochain__arrow { align-self: center; color: var(--accent); font-size: 18px; }
@media (max-width: 900px) {
  .autochain { flex-direction: column; }
  .autochain__step { min-width: 0; }
  .autochain__arrow { transform: rotate(90deg); align-self: center; }
}

.sysuse {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.sysuse__item {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(250, 248, 245, 0.85);
  text-align: center;
}
.sysuse__icon {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(185, 138, 60, 0.42);
  border-radius: 50%;
  background: var(--canvas);
  color: var(--ink);
}
.sysuse__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.sysuse__icon { margin-bottom: 14px; }
.sysuse__item strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
}
.sysuse__item span { display: block; margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.55; }
@media (max-width: 980px) { .sysuse { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .sysuse { grid-template-columns: 1fr; } }

.datapoints {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.datapoint strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 54px);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}
.datapoint span { display: block; margin-top: 10px; color: var(--muted); font-size: 13px; line-height: 1.5; }
@media (max-width: 900px) { .datapoints { grid-template-columns: repeat(2, 1fr); } }

.sysuse__item--wide {
  grid-column: 1 / -1;
  border-color: rgba(185, 138, 60, 0.5);
  background: rgba(185, 138, 60, 0.06);
}

/* Kundenstimme auf Referenzseiten */
.case-review { max-width: 760px; margin: 0 auto; text-align: center; }
.case-review__stars { display: inline-flex; gap: 6px; margin-bottom: 22px; color: var(--accent); }
.case-review__stars svg { width: 20px; height: 20px; fill: currentColor; }
.case-review blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 44px);
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.case-review figcaption { margin-top: 20px; color: var(--muted); font-size: 14px; }
.case-review figcaption strong { color: var(--ink); font-weight: 600; }

.footer__grating { white-space: nowrap; }
.footer__grating i { font-style: normal; color: var(--accent); }

/* Referenz-Platzhalter: Coming soon */
.project-card--soon {
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #1b1b1f 0%, #0e0e11 100%);
  border: 1px solid rgba(201, 162, 75, 0.22);
  cursor: default;
}
.project-card--soon::after { display: none; }
.project-card--soon__inner { display: grid; justify-items: center; gap: 14px; padding: 24px; text-align: center; }
.soon-mark {
  width: 34px;
  aspect-ratio: 1;
  background: var(--accent);
  opacity: 0.85;
  -webkit-mask: url("../img/acessio-mark.svg") center / contain no-repeat;
  mask: url("../img/acessio-mark.svg") center / contain no-repeat;
}
.project-card--soon strong {
  color: #F3F1F0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
  max-width: 14ch;
}
.soon-sub {
  color: rgba(243, 241, 240, 0.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-review--full blockquote { font-size: clamp(24px, 2.8vw, 36px); }
.case-review__body { max-width: 640px; margin: 28px auto 0; text-align: left; }
.case-review__body p { margin: 0 0 1.2em; color: var(--ink-2); font-size: 16.5px; line-height: 1.7; }
.case-review__body p:last-child { margin-bottom: 0; }
.case-review figcaption a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(185,138,60,.55); text-underline-offset: 4px; }
.case-review figcaption a:hover { text-decoration-color: var(--accent); }
