/* ============================================
   SELBST GEHOSTETE FONTS (DSGVO-konform,
   keine Verbindung zu Google-Servern)
   ============================================ */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../assets/fonts/fraunces-v38-latin_latin-ext-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/fraunces-v38-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/fraunces-v38-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../assets/fonts/fraunces-v38-latin_latin-ext-300italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/fraunces-v38-latin_latin-ext-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/inter-v20-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2');
}

/* ============================================
   VALEA CLINICAL — Design System
   ============================================ */

:root {
  /* Colors — extracted from current valea.cc */
  --wine: #6E0007;
  --wine-deep: #4A0005;
  --crimson: #B53846;
  --crimson-bright: #C03E48;
  --rose-50: #FBF6F4;
  --rose-100: #F5EBE7;
  --cream: #F8F4EE;
  --bone: #EFEAE3;
  --ink: #14110F;
  --ink-soft: #2B2622;
  --surface-dark: #3D2E2A;
  --surface-dark-hover: #2C201D;
  --slate: #5C544D;
  --mist: #A89F95;
  --line: #E5DED4;
  --white: #FFFFFF;

  /* Typography */
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;

  /* Layout */
  --container: 1280px;
  --container-narrow: 920px;
  --radius: 4px;
  --radius-lg: 18px;

  /* Motion */
  --ease: cubic-bezier(0.6, 0.05, 0.1, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  overflow-x: clip;
}

::selection {
  background: var(--wine);
  color: var(--cream);
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--wine);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
h4 { font-size: 1.4rem; }

p {
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.lead {
  font-size: clamp(1.125rem, 1.5vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(248, 244, 238, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), padding 0.3s var(--ease);
}

.nav.scrolled {
  border-bottom-color: var(--line);
  padding: 0.85rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 400;
}

.nav__logo-mark {
  display: inline-block;
  width: 22px;
  height: 22px;
  color: var(--wine);
}

.nav__logo-img {
  display: block;
  height: 28px;
  width: auto;
}

.nav.scrolled .nav__logo-img {
  height: 24px;
  transition: height 0.3s var(--ease);
}

.nav__menu {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  font-size: 0.94rem;
  font-weight: 450;
}

.nav__menu a {
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}

.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--wine);
  transition: width 0.4s var(--ease);
}

.nav__menu a:hover {
  color: var(--wine);
}

.nav__menu a:hover::after,
.nav__menu a.active::after {
  width: 100%;
}

.nav__menu a.active {
  color: var(--wine);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: var(--surface-dark);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1;
  transition: background 0.3s var(--ease);
}

.nav__cta:hover {
  background: var(--wine);
}

.nav__toggle {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
}

.nav__toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}

.nav__toggle span:nth-child(1) { top: 4px; }
.nav__toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__toggle span:nth-child(3) { bottom: 4px; }

.nav__toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: block; }
}

.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--cream);
  padding: 6rem 2rem 2rem;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}

.nav__overlay.open {
  transform: translateY(0);
}

.nav__overlay-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-display);
}

.nav__overlay-menu a {
  display: block;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: -0.03em;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.nav__overlay-menu a:hover {
  color: var(--wine);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  cursor: pointer;
}

.btn--primary {
  background: var(--wine);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--surface-dark);
  transform: translateY(-2px);
}

.btn--ink {
  background: var(--surface-dark);
  color: var(--cream);
}

.btn--ink:hover {
  background: var(--wine);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn--ghost:hover {
  background: var(--surface-dark);
  color: var(--cream);
}

.btn--inverse {
  background: var(--cream);
  color: var(--ink);
}

.btn--inverse:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn__arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--wine);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.3s var(--ease);
}

.text-link:hover {
  gap: 0.85rem;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__blob {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.hero__blob--1 {
  background: radial-gradient(circle at 30% 30%, var(--rose-100) 0%, transparent 65%);
  top: -10%;
  right: -10%;
  opacity: 0.7;
  animation: float 20s ease-in-out infinite;
}

.hero__blob--2 {
  background: radial-gradient(circle at 70% 70%, var(--bone) 0%, transparent 65%);
  bottom: -20%;
  left: -10%;
  opacity: 0.6;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  max-width: 18ch;
}

.hero__subtitle {
  max-width: 52ch;
  margin-bottom: 2.5rem;
  color: var(--ink-soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--slate) 50%, transparent 50%);
  background-size: 1px 8px;
  animation: scroll-down 1.6s linear infinite;
}

@keyframes scroll-down {
  from { background-position: 0 0; }
  to { background-position: 0 16px; }
}

/* ============================================
   PAGE HEADER (subpages)
   ============================================ */

.page-header {
  position: relative;
  padding-top: 11rem;
  padding-bottom: 5rem;
  background: var(--cream);
  overflow: hidden;
}

.page-header__inner {
  position: relative;
  z-index: 2;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.page-header__bg .hero__blob {
  width: 50vw;
  height: 50vw;
  filter: blur(100px);
}

.page-header__title {
  max-width: 16ch;
  margin-top: 1.25rem;
}

.page-header__lead {
  max-width: 60ch;
  margin-top: 2rem;
  color: var(--ink-soft);
}

/* ============================================
   SERVICE CARDS GRID
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.4s var(--ease);
  border: 1px solid var(--line);
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.service-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(20,17,15,0.05) 0%, rgba(20,17,15,0.45) 55%, rgba(20,17,15,0.92) 100%);
  transition: background 0.4s var(--ease);
}

.service-card:hover .service-card__media::after {
  background: linear-gradient(180deg, rgba(110,0,7,0.15) 0%, rgba(20,17,15,0.55) 55%, rgba(20,17,15,0.95) 100%);
}

.service-card__media svg,
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.06);
}

.service-card__content {
  position: relative;
  z-index: 2;
  color: var(--cream);
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.service-card__title {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--cream);
}

.service-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--wine);
  transition: transform 0.3s var(--ease);
}

.service-card:hover .service-card__arrow {
  transform: rotate(-45deg);
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values {
  background: var(--bone);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values__intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .values__intro { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 3rem; }
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 768px) {
  .values__grid { grid-template-columns: 1fr; }
}

.value-item {
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left 0.4s var(--ease);
}

.value-item:nth-child(odd) {
  padding-right: 3rem;
  border-right: 1px solid var(--line);
}

.value-item:nth-child(even) {
  padding-left: 3rem;
}

@media (max-width: 768px) {
  .value-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .value-item:nth-child(even) { padding-left: 0; }
}

.value-item__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.value-item__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.value-item__text {
  color: var(--ink-soft);
  max-width: 50ch;
}

/* ============================================
   PROFILE / ABOUT
   ============================================ */

.profile {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 880px) {
  .profile { grid-template-columns: 1fr; gap: 3rem; }
}

.profile__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-100), var(--bone));
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile__photo svg {
  width: 60%;
  opacity: 0.5;
}

.profile__details {
  padding-top: 1rem;
}

.profile__name {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 0.6rem;
}

.profile__role {
  font-size: 1rem;
  color: var(--wine);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.profile__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  border-left: 2px solid var(--wine);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

.profile__bio p {
  margin-bottom: 1.25rem;
}

.profile__contact {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

/* ============================================
   FEATURE LIST
   ============================================ */

.feature-list {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.feature-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding-left 0.4s var(--ease);
}

.feature-list li:hover {
  padding-left: 1rem;
}

.feature-list__num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--wine);
  font-weight: 400;
}

.feature-list__text {
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.5;
}

/* ============================================
   PROSE / RICH TEXT BLOCK
   ============================================ */

.prose {
  max-width: 68ch;
  margin: 0 auto;
}

.prose p {
  margin-bottom: 1.4rem;
  font-size: 1.075rem;
  line-height: 1.7;
}

.prose h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.prose h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose ul, .prose ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
}

.prose li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

/* ============================================
   STAT BLOCK
   ============================================ */

.stats {
  background: var(--surface-dark);
  color: var(--cream);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
}

.stat {
  padding: 2.5rem 1.75rem;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: rgba(245, 235, 231, 0.15);
}

@media (max-width: 768px) {
  .stat:not(:last-child)::after { display: none; }
  .stat { border-bottom: 1px solid rgba(245, 235, 231, 0.15); }
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1;
}

.stat__number .accent {
  color: var(--crimson-bright);
}

.stat__label {
  font-size: 0.95rem;
  color: var(--mist);
  margin-top: 0.75rem;
  max-width: 28ch;
}

/* ============================================
   TWO-COLUMN BLOCK
   ============================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
}

.split--narrow {
  gap: 3rem;
}

.split__sticky {
  position: sticky;
  top: 7rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  position: relative;
  background: var(--surface-dark);
  color: var(--cream);
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, var(--wine) 0%, transparent 65%);
  filter: blur(60px);
  opacity: 0.7;
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 880px) {
  .cta__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.cta__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--cream);
}

.cta__title em {
  color: var(--crimson-bright);
  font-style: italic;
}

.cta__text {
  color: var(--rose-100);
  font-size: 1.0625rem;
  max-width: 50ch;
  margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--cream);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 540px) {
  .footer__top { grid-template-columns: 1fr; }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer__brand-mark {
  width: 26px;
  height: 26px;
  color: var(--wine);
}

.footer__brand-img {
  height: 32px;
  width: auto;
  display: block;
}

/* ============================================
   PROFILE PHOTO (real image)
   ============================================ */

.profile__photo--real {
  background: var(--bone);
}

.profile__photo--real img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile__photo--real::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(110,0,7,0.18) 100%);
  pointer-events: none;
}

/* ============================================
   WKO BADGE
   ============================================ */

.wko-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-top: 1rem;
}

.wko-badge img {
  height: 28px;
  width: auto;
}

.wko-badge__text {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.footer__tagline {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 35ch;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1.25rem;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.95rem;
}

.footer__list a {
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}

.footer__list a:hover {
  color: var(--wine);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--slate);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a:hover {
  color: var(--wine);
}

/* ============================================
   FORM
   ============================================ */

.form {
  display: grid;
  gap: 1.25rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.form__field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--slate);
}

.form__field input,
.form__field textarea,
.form__field select {
  width: 100%;
  padding: 0.95rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(110, 0, 7, 0.08);
}

.form__field textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============================================
   ANIMATIONS / REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }
.reveal-delay-5 { transition-delay: 0.6s; }

/* ============================================
   MARQUEE
   ============================================ */

.marquee {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.marquee__track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}

.marquee__item::after {
  content: '✦';
  color: var(--wine);
  font-size: 0.7em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   ACCORDION
   ============================================ */

.accordion {
  border-top: 1px solid var(--line);
}

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}

.accordion__btn:hover {
  color: var(--wine);
}

.accordion__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.4s var(--ease);
}

.accordion__icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}

.accordion__icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
}

.accordion__item.open .accordion__icon::after {
  transform: translateX(-50%) scaleY(0);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.accordion__panel-inner {
  padding: 0 0 1.75rem;
  max-width: 70ch;
  color: var(--ink-soft);
}

.accordion__panel-inner ul,
.accordion__panel-inner ol {
  margin-left: 1.25rem;
  margin-top: 0.5rem;
}

.accordion__panel-inner li {
  margin-bottom: 0.5rem;
}

/* ============================================
   PILL / BADGE
   ============================================ */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--white);
}

.pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wine);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* ============================================
   QUOTE
   ============================================ */

.bigquote {
  text-align: center;
  max-width: 30ch;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.bigquote em {
  font-style: italic;
  color: var(--wine);
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.divider {
  height: 1px;
  background: var(--line);
  margin: 4rem 0;
}

/* ============================================
   COMPARISON CHART (Ohne Valea vs Mit Valea)
   ============================================ */

.compare {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  margin-top: 3rem;
}

.compare__header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  align-items: end;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

@media (max-width: 700px) {
  .compare__header { grid-template-columns: 1fr; gap: 0.5rem; }
}

.compare__metric-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}

.compare__col-label {
  text-align: right;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compare__col-label--without { color: var(--mist); }
.compare__col-label--with { color: var(--wine); }

@media (max-width: 700px) {
  .compare__col-label { text-align: left; }
}

.compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.compare__row:last-child { border-bottom: none; }

@media (max-width: 700px) {
  .compare__row { grid-template-columns: 1fr; gap: 0.6rem; padding: 1.25rem 0; }
}

.compare__metric {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
}

.compare__metric-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--slate);
  margin-top: 0.2rem;
}

.compare__bar-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: flex-end;
}

.compare__bar-wrap--without { flex-direction: row; }
.compare__bar-wrap--with { flex-direction: row-reverse; }

@media (max-width: 700px) {
  .compare__bar-wrap--without,
  .compare__bar-wrap--with { flex-direction: row; justify-content: flex-start; }
}

.compare__bar {
  flex: 1;
  height: 10px;
  background: var(--bone);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.compare__bar-fill {
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--mist);
  border-radius: 999px;
  transition: inset 1.4s var(--ease-out);
}

.compare__bar-wrap--with .compare__bar-fill {
  background: linear-gradient(90deg, var(--wine), var(--crimson));
}

.compare__bar.in .compare__bar-fill {
  inset: 0 calc(100% - var(--fill, 50%)) 0 0;
}

.compare__value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  min-width: 4.5ch;
  text-align: right;
}

.compare__bar-wrap--without .compare__value { color: var(--slate); }
.compare__bar-wrap--with .compare__value { color: var(--wine); }

@media (max-width: 700px) {
  .compare__value { text-align: left; min-width: 0; }
}

.compare__delta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  background: var(--rose-50);
  color: var(--wine);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ============================================
   CASE STUDY
   ============================================ */

.case-study {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
}

@media (max-width: 880px) {
  .case-study { grid-template-columns: 1fr; gap: 2.5rem; }
}

.case-study::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, var(--rose-100), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.case-study__meta {
  position: relative;
  z-index: 1;
}

.case-study__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: var(--rose-50);
  color: var(--wine);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-study__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.case-study__client {
  font-size: 0.92rem;
  color: var(--slate);
  margin-bottom: 2rem;
  display: grid;
  gap: 0.4rem;
}

.case-study__client-row {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.35rem;
}

.case-study__client-key {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  min-width: 80px;
}

.case-study__client-val {
  color: var(--ink);
}

.case-study__quote {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--cream);
  border-left: 2px solid var(--wine);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
}

.case-study__quote-author {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  color: var(--slate);
}

.case-study__body {
  position: relative;
  z-index: 1;
}

.case-study__step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.case-study__step:last-of-type { border-bottom: none; }

.case-study__step-num {
  font-family: var(--font-display);
  color: var(--wine);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.case-study__step-title {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.case-study__step-text {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.case-study__results {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.case-study__result {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.case-study__result-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--wine);
  letter-spacing: -0.02em;
  line-height: 1;
}

.case-study__result-label {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.35;
}

/* ============================================
   TIMELINE / FUNNEL CHART
   ============================================ */

.funnel {
  display: grid;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.funnel__row {
  display: grid;
  grid-template-columns: 180px 1fr 80px;
  gap: 1rem;
  align-items: center;
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .funnel__row { grid-template-columns: 1fr; gap: 0.3rem; }
}

.funnel__label {
  color: var(--ink-soft);
  font-weight: 500;
}

.funnel__bar {
  height: 38px;
  background: var(--bone);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.funnel__bar-fill {
  position: absolute;
  inset: 0 100% 0 0;
  background: linear-gradient(90deg, var(--wine), var(--crimson));
  border-radius: 8px;
  transition: inset 1.5s var(--ease-out);
}

.funnel__bar.in .funnel__bar-fill {
  inset: 0 calc(100% - var(--fill, 60%)) 0 0;
}

.funnel__bar-fill--mist {
  background: var(--mist);
}

.funnel__value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  text-align: right;
}

@media (max-width: 700px) {
  .funnel__value { text-align: left; }
}

/* ============================================
   KINETIC CAPABILITY DISPLAY
   ============================================ */

.capability-display {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--surface-dark);
  color: var(--cream);
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.capability-display::before,
.capability-display::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.capability-display::before {
  top: -30%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, var(--wine) 0%, transparent 60%);
  opacity: 0.6;
  animation: blob-drift-a 26s ease-in-out infinite;
}

.capability-display::after {
  bottom: -30%;
  right: -10%;
  width: 45vw;
  height: 45vw;
  max-width: 540px;
  max-height: 540px;
  background: radial-gradient(circle, var(--crimson) 0%, transparent 60%);
  opacity: 0.4;
  animation: blob-drift-b 30s ease-in-out infinite;
}

.capability-display__inner {
  position: relative;
  z-index: 2;
}

.capability-display__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-100);
  margin-bottom: 1.5rem;
}

.capability-display__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--crimson-bright);
}

.capability-display__line {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 0;
}

.capability-display__line-static {
  display: inline;
}

.capability-display__rotator {
  display: inline-grid;
  grid-template-columns: 1fr;
  vertical-align: baseline;
  position: relative;
  min-width: 7ch;
}

.capability-display__word {
  grid-column: 1;
  grid-row: 1;
  font-style: italic;
  color: var(--crimson-bright);
  font-weight: 300;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(0.6em);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
  pointer-events: none;
}

.capability-display__word.is-active {
  opacity: 1;
  transform: translateY(0);
}

.capability-display__word.is-leaving {
  opacity: 0;
  transform: translateY(-0.6em);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.capability-display__bar {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 235, 231, 0.12);
}

.capability-display__step-sub {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--mist);
  margin-top: 0.25rem;
  line-height: 1.35;
}

.capability-display__step {
  position: relative;
  padding: 1.5rem;
  border-right: 1px solid rgba(245, 235, 231, 0.12);
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--mist);
  transition: color 0.3s var(--ease);
}

.capability-display__step:last-child { border-right: none; }

.capability-display__step::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--crimson-bright);
  transition: width 0.6s var(--ease);
}

.capability-display__step.is-active::before {
  width: 100%;
}

.capability-display__step:hover {
  color: var(--cream);
}

.capability-display__step-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--mist);
}

.capability-display__step.is-active .capability-display__step-num {
  color: var(--crimson-bright);
}

.capability-display__step-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: inherit;
  display: block;
  line-height: 1.3;
}

.capability-display__step.is-active .capability-display__step-name {
  color: var(--cream);
}

@media (max-width: 880px) {
  .capability-display__bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .capability-display__step:nth-child(odd) { border-right: 1px solid rgba(245,235,231,0.12); }
  .capability-display__step:nth-child(even) { border-right: none; }
  .capability-display__step:nth-child(n+3) { border-top: 1px solid rgba(245,235,231,0.12); }
}

@media (max-width: 560px) {
  .capability-display__bar { grid-template-columns: 1fr; }
  .capability-display__step { border-right: none !important; border-top: 1px solid rgba(245,235,231,0.12); }
}

/* ============================================
   ENHANCED HERO BACKGROUND
   ============================================ */

.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: multiply;
  will-change: transform;
}

.hero__mesh-blob--a {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, var(--rose-100) 0%, transparent 60%);
  top: -10%; right: -5%;
  opacity: 0.55;
  animation: blob-drift-a 24s ease-in-out infinite;
}

.hero__mesh-blob--b {
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, var(--bone) 0%, transparent 60%);
  bottom: -15%; left: -10%;
  opacity: 0.5;
  animation: blob-drift-b 30s ease-in-out infinite;
}

.hero__mesh-blob--c {
  width: 30vw; height: 30vw;
  background: radial-gradient(circle, var(--rose-100) 0%, transparent 60%);
  top: 30%; left: 40%;
  opacity: 0.6;
  animation: blob-drift-c 22s ease-in-out infinite;
}

@keyframes blob-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-60px, 40px) scale(1.08); }
  50% { transform: translate(30px, 80px) scale(0.95); }
  75% { transform: translate(70px, -30px) scale(1.05); }
}

@keyframes blob-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, -50px) scale(1.1); }
  66% { transform: translate(-40px, 60px) scale(0.92); }
}

@keyframes blob-drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -70px) scale(1.15); }
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  mix-blend-mode: multiply;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero__lines svg {
  width: 100%;
  height: 100%;
  opacity: 0.18;
}

.hero__lines path {
  stroke: var(--wine);
  stroke-width: 0.8;
  fill: none;
  stroke-dasharray: 6 14;
  animation: dash-flow 30s linear infinite;
}

@keyframes dash-flow {
  to { stroke-dashoffset: -200; }
}

/* ============================================
   COMPLIANCE STRIP (above H1)
   ============================================ */

.compliance-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.compliance {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.005em;
  white-space: nowrap;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.compliance:hover {
  border-color: var(--wine);
  transform: translateY(-1px);
}

.compliance__check {
  width: 12px;
  height: 12px;
  color: var(--wine);
  flex-shrink: 0;
}

.compliance__sub {
  color: var(--slate);
  font-weight: 400;
  margin-left: 0.1rem;
}

@media (max-width: 600px) {
  .compliance-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding: 0 1.25rem;
    scrollbar-width: none;
  }
  .compliance-strip::-webkit-scrollbar { display: none; }
}

/* ============================================
   TRUST ANCHORS (Hero)
   ============================================ */

.trust-anchors {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}

@media (max-width: 880px) {
  .trust-anchors { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 460px) {
  .trust-anchors { grid-template-columns: 1fr 1fr; }
}

.trust {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.trust__num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.15em;
}

.trust__num em {
  font-size: 0.55em;
  color: var(--wine);
  font-style: normal;
  font-weight: 500;
}

.trust__label {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.3;
  max-width: 24ch;
}

/* ============================================
   PARTNER CAROUSEL
   ============================================ */

.partners {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.partners__intro {
  text-align: center;
  margin-bottom: 3rem;
}

.partners__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}

.partners__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-top: 0.5rem;
  color: var(--ink);
}

.partners__title em {
  color: var(--wine);
  font-style: italic;
}

.partners__carousel {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.partners__track {
  display: flex;
  gap: clamp(3rem, 7vw, 5.5rem);
  align-items: center;
  width: max-content;
  animation: partners-scroll 50s linear infinite;
  padding: 0 clamp(3rem, 7vw, 5.5rem) 0 0;
}

.partners:hover .partners__track {
  animation-play-state: paused;
}

.partners__logo {
  flex-shrink: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%) brightness(0.5);
  opacity: 0.55;
  transition: filter 0.4s var(--ease), opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.partners__logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

.partners__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
}

.partners__logo a:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 6px;
  border-radius: 4px;
}

.partners__logo img {
  max-height: 100%;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.partners__logo--xl img { max-width: 240px; }

@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   COUNT-UP STATS
   ============================================ */

.stat__number[data-count] {
  font-variant-numeric: tabular-nums;
}

.stats {
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, var(--crimson-bright) 0%, transparent 60%);
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
  animation: blob-drift-a 30s ease-in-out infinite;
}

.stats > * { position: relative; z-index: 1; }

/* ============================================
   COOKIE BANNER (DSGVO/GDPR)
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1000;
  background: var(--surface-dark);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 18px 60px rgba(61,46,42,0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
  font-size: 0.9rem;
  line-height: 1.5;
  border: 1px solid rgba(245, 235, 231, 0.08);
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.cookie-banner__text {
  color: var(--rose-100);
  margin-bottom: 1.25rem;
}

.cookie-banner__text a {
  color: var(--crimson-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-banner__btn {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.2s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}

.cookie-banner__btn--primary {
  background: var(--crimson-bright);
  color: var(--cream);
}

.cookie-banner__btn--primary:hover {
  background: var(--cream);
  color: var(--ink);
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 235, 231, 0.25);
}

.cookie-banner__btn--secondary:hover {
  background: rgba(245, 235, 231, 0.1);
}

.cookie-banner__btn--ghost {
  background: transparent;
  color: var(--rose-100);
  font-size: 0.78rem;
  flex: 0 0 auto;
}

.cookie-banner__btn--ghost:hover {
  color: var(--cream);
}

@media (max-width: 480px) {
  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner__btn { width: 100%; }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-right: 0.5rem;
}

.lang-switch__btn {
  padding: 0.45rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--slate);
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  border: none;
  line-height: 1;
}

.lang-switch__btn.is-active {
  background: var(--surface-dark);
  color: var(--cream);
}

.lang-switch__btn:not(.is-active):hover {
  color: var(--ink);
}

@media (max-width: 980px) {
  .lang-switch {
    margin-right: 0;
    margin-left: auto;
  }
}

/* ============================================
   MOBILE OPTIMIZATIONS — iPhone 16 Pro (393px) and below
   ============================================ */

@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 3rem 0; }

  /* HERO ----------------------------------- */
  .hero {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
  .hero__title {
    margin-top: 1rem;
    margin-bottom: 1.25rem;
  }
  .hero__subtitle {
    margin-bottom: 1.75rem;
    font-size: 1rem;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__actions .text-link {
    align-self: flex-start;
    margin-top: 0.4rem;
  }
  .hero__scroll { display: none; }

  /* Hero blobs reduce intensity (improve performance + readability) */
  .hero__mesh-blob { filter: blur(60px); }
  .hero__mesh-blob--a, .hero__mesh-blob--b, .hero__mesh-blob--c {
    opacity: 0.35;
  }
  .hero__lines svg { opacity: 0.1; }

  /* Display heading tighter */
  .display {
    font-size: clamp(2rem, 9.5vw, 3rem);
    line-height: 1.05;
  }

  /* Compliance strip - smaller pills, indicator that it scrolls */
  .compliance-strip {
    -webkit-mask-image: linear-gradient(90deg, #000 78%, transparent);
    mask-image: linear-gradient(90deg, #000 78%, transparent);
    padding-bottom: 0.5rem;
  }
  .compliance {
    font-size: 0.72rem;
    padding: 0.4rem 0.7rem;
  }
  .compliance__check { width: 11px; height: 11px; }

  /* Trust anchors compact */
  .trust-anchors {
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    gap: 1rem 1.25rem;
  }
  .trust__num { font-size: 1.5rem; }
  .trust__num em { font-size: 0.6em; }
  .trust__label { font-size: 0.75rem; line-height: 1.3; }

  /* Pill hero */
  .pill { font-size: 0.78rem; padding: 0.4rem 0.85rem; }

  /* PAGE HEADER ---------------------------- */
  .page-header {
    padding-top: 7rem;
    padding-bottom: 2.5rem;
  }
  .page-header__lead {
    margin-top: 1.5rem;
    font-size: 1rem;
  }

  /* NAV ------------------------------------ */
  .nav { padding: 0.85rem 0; }
  .nav.scrolled { padding: 0.65rem 0; }
  .nav__inner { gap: 0.5rem; }
  .nav__logo-img { height: 24px; }
  .lang-switch { padding: 0.2rem; }
  .lang-switch__btn { padding: 0.35rem 0.7rem; font-size: 0.82rem; }

  /* SERVICE CARDS -------------------------- */
  .services-grid {
    margin-top: 2rem;
    gap: 0.85rem;
  }
  .service-card {
    min-height: 280px;
    padding: 1.25rem;
  }
  .service-card__title { font-size: 1.2rem; }
  .service-card__num { font-size: 0.85rem; }

  /* STATS ---------------------------------- */
  .stats__grid { grid-template-columns: 1fr; }
  .stat {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(245, 235, 231, 0.15);
  }
  .stat:last-child { border-bottom: none; }
  .stat__number { font-size: 2.5rem; }
  .stat__label { font-size: 0.85rem; max-width: none; }

  /* VALUES --------------------------------- */
  .values__intro {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .value-item {
    padding: 2rem 0;
  }
  .value-item__num { font-size: 2.75rem; margin-bottom: 0.5rem; }
  .value-item__title { font-size: 1.35rem; }

  /* COMPARE CHART -------------------------- */
  .compare {
    padding: 1.25rem;
    margin-top: 2rem;
  }
  .compare__header {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
  }
  .compare__col-label { text-align: left; }
  .compare__row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.25rem 0;
  }
  .compare__metric { font-size: 1rem; }
  .compare__metric-sub { font-size: 0.78rem; }
  .compare__value { font-size: 1.05rem; min-width: 0; text-align: left; }
  .compare__bar { height: 8px; }
  .compare__bar-wrap--without,
  .compare__bar-wrap--with {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.7rem;
  }

  /* FUNNEL --------------------------------- */
  .funnel__row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .funnel__bar { height: 30px; }

  /* CASE STUDY ----------------------------- */
  .case-study {
    padding: 1.5rem;
    gap: 1.75rem;
  }
  .case-study__title { font-size: 1.3rem; margin-bottom: 1rem; }
  .case-study__client-row {
    flex-direction: column;
    gap: 0.15rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.65rem;
  }
  .case-study__client-row:last-child { border-bottom: none; }
  .case-study__client-key {
    min-width: 0;
    font-size: 0.68rem;
  }
  .case-study__step {
    grid-template-columns: 30px 1fr;
    gap: 0.85rem;
    padding: 0.85rem 0;
  }
  .case-study__results {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  .case-study__result-num { font-size: 1.6rem; }
  .case-study__result-label { font-size: 0.75rem; }

  /* CAPABILITY DISPLAY --------------------- */
  .capability-display {
    padding: 3rem 0 3.5rem;
  }
  .capability-display__line {
    font-size: clamp(1.5rem, 7.5vw, 2.4rem);
  }
  .capability-display__bar {
    grid-template-columns: 1fr !important;
    margin-top: 2rem;
  }
  .capability-display__step {
    border-right: none !important;
    border-top: 1px solid rgba(245,235,231,0.12);
    padding: 0.85rem 0 !important;
  }
  .capability-display__step:first-child { border-top: none; }
  .capability-display__step::before { top: 0; }
  .capability-display__step-num { font-size: 0.72rem; margin-bottom: 0.25rem; }
  .capability-display__step-name { font-size: 0.95rem; }

  /* CTA ----------------------------------- */
  .cta__inner { gap: 1.5rem; }
  .cta__title { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  .cta__text { font-size: 0.95rem; }

  /* PARTNERS ------------------------------- */
  .partners { padding: 2.5rem 0; }
  .partners__intro { margin-bottom: 1.75rem; }
  .partners__title { font-size: clamp(1rem, 4.5vw, 1.25rem); padding: 0 0.5rem; }
  .partners__logo { height: 38px; }
  .partners__logo img { max-width: 130px; }
  .partners__logo--xl img { max-width: 160px; }
  .partners__track { gap: 2.5rem; padding-right: 2.5rem; }

  /* PROFILE ------------------------------- */
  .profile {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .profile__photo { aspect-ratio: 4/3.5; }
  .profile__name { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  .profile__quote {
    font-size: 1.05rem;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
  }

  /* FORM ---------------------------------- */
  .form__row { grid-template-columns: 1fr; }
  .form__field input,
  .form__field textarea,
  .form__field select { font-size: 16px; /* prevent iOS zoom */ }

  /* FOOTER -------------------------------- */
  .footer { padding: 3rem 0 1.5rem; }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.25rem;
  }
  .footer__brand-img { height: 28px; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
  }

  /* SPLIT SECTIONS ------------------------- */
  .split { gap: 2rem; }
  .split__sticky { position: static; }

  /* COOKIE BANNER ------------------------- */
  .cookie-banner {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    padding: 1.25rem;
    font-size: 0.85rem;
  }
  .cookie-banner__title { font-size: 1.05rem; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner__btn { width: 100%; }

  /* PROSE / RICH TEXT ---------------------- */
  .prose h2 { font-size: 1.55rem; margin-top: 2.5rem; }
  .prose h3 { font-size: 1.2rem; margin-top: 1.75rem; }
  .prose p { font-size: 1rem; }

  /* WKO BADGE ----------------------------- */
  .wko-badge { padding: 0.85rem; }
  .wko-badge__text { font-size: 0.78rem; }

  /* MARQUEE ITEMS (any leftover) ---------- */
  .marquee__item { font-size: 1.15rem; gap: 2.5rem; }
  .marquee__item::after { font-size: 0.6em; }

  /* BIG QUOTE ----------------------------- */
  .bigquote { font-size: clamp(1.6rem, 7.5vw, 2.5rem); }

  /* FEATURE LIST -------------------------- */
  .feature-list li {
    grid-template-columns: 40px 1fr;
    gap: 0.85rem;
    padding: 1.1rem 0;
  }
  .feature-list__num { font-size: 1rem; }
  .feature-list__text { font-size: 0.95rem; }
  .feature-list li:hover { padding-left: 0; }
}

/* Extra tiny screens / iPhone SE / 360px */
@media (max-width: 380px) {
  .container,
  .container-narrow {
    padding: 0 1rem;
  }
  .nav__logo-img { height: 22px; }
  .nav__cta { padding: 0.55rem 0.95rem; font-size: 0.82rem; }
  .display { font-size: clamp(1.85rem, 10vw, 2.6rem); }
  .compliance { font-size: 0.7rem; padding: 0.35rem 0.6rem; }
  .trust__num { font-size: 1.35rem; }
}

/* ============================================
   EDITORIAL CASE STUDY (Home Trial Support)
   ============================================ */

.cs-intro {
  max-width: 860px;
  margin: 3.5rem 0 0;
}

.cs-intro__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.cs-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--slate);
}

.cs-intro__text {
  font-size: 1.12rem;
  line-height: 1.7;
}

.cs-chapters {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 7vw, 6rem);
}

.cs-chapter {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.cs-chapter--flip .cs-figure { order: 2; }
.cs-chapter--flip .cs-chapter__body { order: 1; }

.cs-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--ease-out);
  transition-delay: 0.15s;
}

.cs-chapter--flip .cs-figure {
  clip-path: inset(0 0 0 100%);
}

.cs-chapter.reveal.in .cs-figure {
  clip-path: inset(0 0 0 0);
}

.cs-figure {
  width: 100%;
}

.cs-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 5s var(--ease-out);
  will-change: transform;
}

.cs-chapter.reveal.in .cs-figure img {
  transform: scale(1.02);
}

.cs-figure--portrait img { aspect-ratio: 3 / 4; }

.cs-chapter__num {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--crimson-bright);
  margin-bottom: 0.9rem;
}

.cs-chapter__num::after {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease-out) 0.5s;
}

.cs-chapter.reveal.in .cs-chapter__num::after {
  transform: scaleX(1);
}

.cs-chapter__title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 1rem;
}

.cs-conclusion {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  background: var(--surface-dark);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.cs-conclusion::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 180%;
  background: radial-gradient(circle, var(--crimson-bright) 0%, transparent 60%);
  filter: blur(80px);
  opacity: 0.22;
  pointer-events: none;
}

.cs-conclusion > * { position: relative; }

.cs-conclusion .eyebrow { color: var(--rose-100); }

.cs-conclusion__text {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  font-weight: 300;
  line-height: 1.55;
  margin-top: 1.25rem;
  max-width: 62ch;
}

.cs-conclusion__list {
  margin-top: 1.5rem;
  color: var(--rose-100);
  max-width: 72ch;
  font-size: 0.98rem;
}

@media (max-width: 880px) {
  .cs-chapter { grid-template-columns: 1fr; }
  .cs-chapter--flip .cs-figure { order: 0; clip-path: inset(0 100% 0 0); }
  .cs-chapter--flip .cs-chapter__body { order: 1; }
  .cs-chapter.reveal.in .cs-figure { clip-path: inset(0 0 0 0); }
  .cs-figure--portrait img { aspect-ratio: 4 / 3; }
}

/* Gestaffelte Reveals für Listen */
.reveal-stagger .reveal { transition-delay: calc(var(--stagger-i, 0) * 70ms); }

/* Accordion: sichtbare Kurzantwort */
.accordion__btn-main { display: block; min-width: 0; }
.accordion__q { display: block; }
.accordion__short {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--slate);
  letter-spacing: 0;
  line-height: 1.55;
}

/* Hero-Statement: potenzierter Leitsatz in Rot */
.hero__statement {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--wine);
  max-width: 34em;
}

.hero__statement em {
  color: var(--crimson-bright);
  font-style: italic;
}

/* Case-Study-Hero: Panorama mit Overlay-Karte */
.cs-hero {
  position: relative;
  margin: 3rem 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cs-hero img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.cs-hero__card {
  position: absolute;
  left: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2.5rem);
  max-width: 460px;
  background: rgba(248, 244, 238, 0.96);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  box-shadow: 0 16px 50px rgba(20, 17, 15, 0.18);
}

.cs-hero__title {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin-bottom: 0.6rem;
}

.cs-hero__text {
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .cs-hero img { aspect-ratio: 4 / 3; }
  .cs-hero__card {
    position: static;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--white);
    border-top: 1px solid var(--line);
  }
}

/* Belegte Fakten */
.cs-facts-wrap {
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.cs-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.cs-fact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.cs-fact__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1;
  color: var(--wine);
  letter-spacing: -0.02em;
}

.cs-fact__label {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

.cs-fact__src {
  margin-top: 1.1rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--mist);
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

/* Formular: DSGVO-Checkbox */
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--slate);
  cursor: pointer;
}

.form__consent input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--wine);
  cursor: pointer;
}

/* Qualitäts-Karten (A–E): eine Reihe, mobil horizontal scrollbar */
.quality-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 1080px) {
  .quality-row {
    grid-auto-columns: min(72%, 300px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-left: calc(-1 * clamp(1.25rem, 4vw, 2.5rem));
    margin-right: calc(-1 * clamp(1.25rem, 4vw, 2.5rem));
    padding: 0 clamp(1.25rem, 4vw, 2.5rem) 1rem;
    scrollbar-width: none;
  }
  .quality-row::-webkit-scrollbar { display: none; }
  .quality-row > * { scroll-snap-align: start; }
}
