/* ================================================
   JANINE · JAK COACHING — Premium Design
   ================================================ */

:root {
  --plum: #3d2854;
  --plum-mid: #4e3268;
  --plum-light: #5a3d72;
  --plum-dark: #1f1229;
  --rose: #c49a7a;
  --rose-light: #d4b49a;
  --rose-pale: #f0e4da;
  --rose-glow: rgba(196, 154, 122, 0.25);
  --blush: #faf6f4;
  --cream: #fffcf9;
  --white: #ffffff;
  --text: #2e2438;
  --text-muted: #6b5f70;
  --border: rgba(61, 40, 84, 0.08);
  --shadow-sm: 0 2px 20px rgba(61, 40, 84, 0.06);
  --shadow-md: 0 8px 40px rgba(61, 40, 84, 0.1);
  --shadow-lg: 0 20px 60px rgba(61, 40, 84, 0.14);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

.hero__content > *,
.hero__visual {
  opacity: 0;
}

body.is-ready .hero__content > * {
  animation: hero-enter 1s var(--ease) forwards;
}

body.is-ready .hero__visual {
  animation: hero-visual-enter 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

body.is-ready .hero__content > *:nth-child(1) { animation-delay: 0.15s; }
body.is-ready .hero__content > *:nth-child(2) { animation-delay: 0.28s; }
body.is-ready .hero__content > *:nth-child(3) { animation-delay: 0.4s; }
body.is-ready .hero__content > *:nth-child(4) { animation-delay: 0.52s; }
body.is-ready .hero__content > *:nth-child(5) { animation-delay: 0.64s; }

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-visual-enter {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

::selection {
  background: var(--rose-pale);
  color: var(--plum);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1140px, calc(100% - 2.5rem));
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 0;
}

/* ---- JAK letters ---- */
.jak-j, .jak-a, .jak-k {
  color: var(--rose);
  font-family: var(--font-serif);
  font-weight: 700;
}

.jak-word {
  font-family: var(--font-serif);
  font-style: italic;
}

.jak-word--dark { font-style: normal; font-weight: 500; }

/* ---- Loader ---- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  text-align: center;
  animation: loader-fade-in 0.6s ease;
}

.page-loader__logo {
  width: 130px;
  margin: 0 auto;
  animation: loader-pulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 12px 28px rgba(61, 40, 84, 0.1));
}

.page-loader__text {
  margin-top: 1.25rem;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  opacity: 0.85;
}

@keyframes loader-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loader-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1); }
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--plum);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

em { font-style: italic; color: var(--rose); }

.section__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.85rem;
}

.section__intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.section__header { margin-bottom: 3.5rem; }
.section__header--center { text-align: center; max-width: 600px; margin-inline: auto; margin-bottom: 4rem; }

.section { position: relative; padding: 6.5rem 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn--lg { padding: 1rem 2.25rem; font-size: 0.92rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
  box-shadow: 0 4px 24px rgba(61, 40, 84, 0.25);
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn--primary:hover::after {
  transform: translateX(120%);
}

.btn--primary:hover {
  background: var(--plum-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(61, 40, 84, 0.3);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--plum);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}

.btn--outline:hover {
  background: var(--plum);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--plum);
  border-color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--light:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: max(1rem, env(safe-area-inset-top)) 0 1rem;
  transition: all 0.4s var(--ease);
}

.header.is-scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 252, 249, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo { height: 44px; width: auto; transition: height 0.3s; }
.header.is-scrolled .nav__logo { height: 38px; }

.nav__byline {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--rose);
  border-left: 1px solid var(--border);
  padding-left: 0.75rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transition: width 0.3s var(--ease);
}

.nav__links a:hover::after,
.nav__links a.is-active::after { width: 100%; }

.nav__links a:hover,
.nav__links a.is-active { color: var(--plum); }

.nav__cta {
  background: var(--plum) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 100px;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  background: var(--plum-light) !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  z-index: 210;
  -webkit-tap-highlight-color: transparent;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--plum);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

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

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 12s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px; height: 500px;
  background: var(--rose-pale);
  top: -10%; right: -5%;
  opacity: 0.7;
}

.hero__orb--2 {
  width: 400px; height: 400px;
  background: rgba(61, 40, 84, 0.08);
  bottom: 10%; left: -10%;
  animation-delay: -4s;
}

.hero__orb--3 {
  width: 300px; height: 300px;
  background: var(--rose-glow);
  top: 40%; left: 30%;
  animation-delay: -8s;
}

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

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  min-width: 0;
}

.hero__content,
.hero__visual {
  min-width: 0;
  max-width: 100%;
}

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

.hero__title { margin-bottom: 1.25rem; }

.hero__lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero__pill {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

.hero__pill:hover {
  border-color: var(--rose-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.hero__pill-key {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
}

.hero__pill-val {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.hero__logo-stage {
  position: relative;
  width: min(380px, 82vw);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.95) 0%, rgba(250, 246, 244, 0.75) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.55) 0%, rgba(240, 228, 218, 0.35) 100%);
  border: 1px solid rgba(196, 154, 122, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 24px 64px rgba(61, 40, 84, 0.1),
    0 8px 24px rgba(61, 40, 84, 0.05);
  backdrop-filter: blur(12px);
}

.hero__logo-stage::before {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(196, 154, 122, 0.14);
  pointer-events: none;
}

.hero__logo-stage::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    transparent 0deg,
    rgba(196, 154, 122, 0.22) 42deg,
    transparent 84deg,
    transparent 180deg,
    rgba(196, 154, 122, 0.12) 222deg,
    transparent 264deg
  );
  opacity: 0.55;
  pointer-events: none;
  mask: radial-gradient(circle, transparent 62%, black 63%, black 66%, transparent 67%);
  -webkit-mask: radial-gradient(circle, transparent 62%, black 63%, black 66%, transparent 67%);
}

.hero__logo {
  width: 72%;
  position: relative;
  z-index: 2;
  opacity: 0;
  filter: drop-shadow(0 16px 32px rgba(61, 40, 84, 0.14));
}

body.is-ready .hero__logo {
  animation: hero-logo-unveil 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

@keyframes hero-logo-unveil {
  0% {
    opacity: 0;
    transform: scale(0.88);
    filter: drop-shadow(0 8px 20px rgba(61, 40, 84, 0.06)) blur(6px);
  }
  55% {
    opacity: 1;
    transform: scale(1.02);
    filter: drop-shadow(0 20px 40px rgba(61, 40, 84, 0.14)) blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 16px 32px rgba(61, 40, 84, 0.14));
  }
}

.hero__quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--plum);
  text-align: left;
  line-height: 1.55;
  max-width: 340px;
  padding: 1.5rem 1.75rem 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--rose);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.hero__quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--rose);
  margin-top: 0.75rem;
  font-weight: 500;
}

/* ---- Von Frauen · Für Frauen Stripe ---- */
.frauen-stripe {
  background: linear-gradient(90deg, var(--plum-dark) 0%, var(--plum) 50%, var(--plum-mid) 100%);
  color: var(--white);
  padding: 1.35rem 0;
}

.frauen-stripe__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: left;
}

.frauen-stripe__logo {
  width: 44px;
  flex-shrink: 0;
  filter: brightness(1.4);
  opacity: 0.9;
}

.frauen-stripe__main {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.frauen-stripe__main strong {
  color: var(--rose-light);
  font-weight: 600;
}

.frauen-stripe__sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 520px;
}

/* ---- Problem ---- */
.problem {
  background: var(--white);
}

.problem__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.problem h2 { margin-bottom: 2rem; }

.problem__list {
  margin-bottom: 2rem;
}

.problem__list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.75rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
}

.problem__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.6;
}

.problem__solution {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--plum);
  line-height: 1.6;
}

.problem__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.problem__thought {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-style: italic;
  color: var(--plum);
  line-height: 1.55;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}

.problem__thought::before {
  content: '„';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-size: 3rem;
  color: var(--rose);
  opacity: 0.35;
  line-height: 1;
  font-family: var(--font-serif);
}

.problem__logo {
  width: 100px;
  opacity: 0.75;
}

/* ---- Story ---- */
.story {
  background: var(--blush);
}

.story__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}

.story__body {
  max-width: 720px;
  margin: 0 auto;
}

.story__chapter {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

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

.story__year {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
}

.story__voice {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--plum);
  margin-bottom: 1.25rem;
}

.story__chapter p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story__chapter p:last-child {
  margin-bottom: 0;
}

.story__chapter strong {
  color: var(--plum);
  font-weight: 600;
}

.story__chapter em {
  color: var(--plum);
  font-style: italic;
}

.story__closing {
  max-width: 640px;
  margin: 4rem auto 0;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.story__closing p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--plum);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.story__closing cite {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--rose);
  font-weight: 500;
}

.story__timeline {
  position: relative;
  padding-left: 2rem;
}

.story__timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose), var(--rose-pale));
}

.story__chapter {
  position: relative;
  padding-left: 1.5rem;
}

.story__chapter::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.55rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px var(--blush);
  transform: translateX(-4px);
}

/* ---- Promise ---- */
.promise {
  background: var(--white);
  padding: 5rem 0;
}

.promise__inner {
  text-align: center;
}

.promise__inner h2 {
  margin-bottom: 3rem;
}

.promise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.promise__item {
  padding: 2rem 1.75rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.promise__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-light);
}

.promise__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--rose);
  margin-bottom: 1rem;
}

.promise__item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.promise__item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- Ornament ---- */
.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
  background: var(--cream);
}

.section-ornament span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.ornament-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.5;
}

/* ---- Konzept ---- */
.konzept { background: var(--white); }

.konzept__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.konzept__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.konzept__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--plum));
  opacity: 0;
  transition: opacity 0.3s;
}

.konzept__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.konzept__card:hover::before { opacity: 1; }

.konzept__card--featured {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--white);
}

.konzept__card--featured h3 { color: var(--white); }
.konzept__card--featured p { color: rgba(255, 255, 255, 0.8); }
.konzept__card--featured .konzept__num { color: rgba(255, 255, 255, 0.2); }
.konzept__card--featured::before { opacity: 1; background: var(--rose); }

.konzept__card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.konzept__letter {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.konzept__num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  opacity: 0.4;
}

.konzept__card h3 { margin-bottom: 0.75rem; }
.konzept__card p { font-size: 0.95rem; color: var(--text-muted); }

/* ---- Transformation ---- */
.transformation { background: var(--white); }

.transformation__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.transformation__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.transformation__logo {
  width: min(280px, 80%);
  filter: drop-shadow(0 16px 40px rgba(61, 40, 84, 0.1));
}

.transformation__text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.process {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process__step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

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

.process__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rose);
  margin-top: 0.35rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--rose-pale);
}

.process__step strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--plum);
  margin-bottom: 0.2rem;
}

.process__step p {
  font-size: 0.9rem !important;
  margin-bottom: 0 !important;
}

/* ---- Angebote ---- */
.angebote { background: var(--cream); }

.angebote__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.angebot {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative;
}

.angebot:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.angebot--featured {
  border: 2px solid var(--plum);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.angebot--featured:hover { transform: scale(1.02) translateY(-4px); }

.angebot__tier {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.angebot--featured .angebot__tier {
  background: var(--rose);
  color: var(--white);
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  width: fit-content;
}

.angebot__logo {
  width: 48px;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.angebot h3 { margin-bottom: 0.5rem; }

.angebot__price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 1.25rem;
}

.angebot__price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.angebot p {
  font-size: 0.92rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.5rem;
}

.angebot__features {
  margin-bottom: 2rem;
}

.angebot__features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.angebot__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ---- Methode ---- */
.methode {
  background: var(--plum-dark);
  color: var(--white);
  overflow: hidden;
}

.methode__bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  max-width: 700px;
  opacity: 0.04;
  pointer-events: none;
  filter: brightness(3);
}

.methode__header {
  text-align: center;
  margin-bottom: 4rem;
}

.methode__header h2 { color: var(--white); margin-bottom: 0.5rem; }
.methode__header p { color: rgba(255, 255, 255, 0.5); font-size: 0.95rem; }
.methode .section__tag { color: var(--rose-light); }

.methode h2 .jak-j,
.methode h2 .jak-a,
.methode h2 .jak-k {
  font-size: 1.2em;
  color: var(--rose-light);
}

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

.methode__item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.4s var(--ease);
}

.methode__item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(196, 154, 122, 0.3);
  transform: translateY(-4px);
}

.methode__big {
  display: block;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.methode__item h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.methode__item p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

/* ---- Über Janine ---- */
.ueber { background: var(--blush); }

.ueber__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

.ueber__visual { position: relative; }

.ueber__frame {
  position: relative;
}

.ueber__frame-inner {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--rose-pale), var(--cream));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.ueber__watermark {
  width: 160px;
  opacity: 0.12;
  margin-bottom: 1rem;
}

.ueber__frame-inner small { font-size: 0.75rem; opacity: 0.6; }

.ueber__frame-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--rose);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: -1;
}

.ueber__badge {
  position: absolute;
  bottom: -16px;
  right: 24px;
  width: 90px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.75rem;
  box-shadow: var(--shadow-md);
}

.ueber__role {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--plum);
  margin-bottom: 1.5rem !important;
}

.ueber__content p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
}

.ueber__content strong { color: var(--plum); }

.ueber__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.ueber__tags span {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--plum);
}

/* ---- Testimonials ---- */
.testimonials { background: var(--white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem 2.5rem;
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.testimonial-card--accent {
  background: var(--white);
  border-color: var(--rose-light);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card__mark {
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--rose);
  opacity: 0.15;
  pointer-events: none;
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--plum);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card p::after {
  content: '"';
}

.testimonial-card footer {
  font-size: 0.82rem;
  color: var(--rose);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* ---- FAQ ---- */
.faq { background: var(--cream); }

.faq__inner {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 4rem;
  align-items: start;
}

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

.faq__item summary {
  padding: 1.35rem 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--plum);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--rose);
  transition: transform 0.3s;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item summary:hover { color: var(--rose); }

.faq__item p {
  padding-bottom: 1.35rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- CTA Banner ---- */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-mid) 50%, var(--plum-light) 100%);
  padding: 5.5rem 0;
  overflow: hidden;
  text-align: center;
}

.cta-banner__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  opacity: 0.06;
  filter: brightness(3);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
}

.cta-banner__logo {
  width: 70px;
  margin: 0 auto 1.5rem;
  filter: brightness(1.5);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner h2 em { color: var(--rose-light); }

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ---- Kontakt ---- */
.kontakt { background: var(--white); }

.kontakt__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.kontakt__info h2 { margin-bottom: 1rem; }
.kontakt__info > p { color: var(--text-muted); margin-bottom: 2rem; }

.kontakt__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.kontakt__detail {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.kontakt__detail-label {
  font-weight: 600;
  color: var(--plum);
}

.kontakt__logo {
  width: 140px;
  opacity: 0.85;
}

.kontakt__form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form__group--full { grid-column: 1 / -1; }

.form__group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.02em;
}

.form__group input,
.form__group select,
.form__group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  transition: all 0.3s var(--ease);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px var(--rose-glow);
}

.form__group textarea { resize: vertical; min-height: 110px; }

.form__note {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -0.25rem;
}

.kontakt__form.is-success {
  pointer-events: none;
}

.kontakt__form.is-success::after {
  content: 'Danke für deine Nachricht. Janine meldet sich persönlich bei dir — versprochen.';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 252, 249, 0.97);
  border-radius: var(--radius-lg);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--plum);
  text-align: center;
  padding: 2rem;
}

.kontakt__form { position: relative; }

/* ---- Footer ---- */
.footer {
  background: var(--plum-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 3rem;
}

.footer__logo {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(1.5);
}

.footer__brand p { font-size: 0.85rem; line-height: 1.7; }
.footer__brand strong { color: var(--rose-light); }

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav a {
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer__nav a:hover { color: var(--rose-light); }

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__legal a {
  font-size: 0.8rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.footer__legal a:hover { opacity: 1; }

.footer__copy {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  opacity: 0.35;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .nav__toggle { display: flex; }
  .nav__byline { display: none; }

  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(255, 252, 249, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: max(2rem, env(safe-area-inset-top)) 1.5rem max(2rem, env(safe-area-inset-bottom));
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s var(--ease);
    pointer-events: none;
    z-index: 205;
  }

  .nav__links.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a {
    font-size: 1.2rem;
    font-family: var(--font-serif);
    padding: 0.5rem 1rem;
  }

  .nav__cta {
    margin-top: 0.5rem;
    min-height: 48px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .hero__inner,
  .problem__inner,
  .transformation__inner,
  .ueber__inner,
  .kontakt__inner,
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .konzept__grid,
  .angebote__grid,
  .methode__grid,
  .testimonials__grid,
  .promise__grid {
    grid-template-columns: 1fr;
  }

  .frauen-stripe__inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .story__timeline { padding-left: 1.5rem; }

  .hero { padding: 6.5rem 0 3.5rem; }
  .hero__inner { gap: 2rem; width: 100%; }
  .hero__visual { order: -1; width: 100%; }
  .hero__content { text-align: left; width: 100%; }
  .hero__lead { max-width: none; }
  .hero__actions { justify-content: stretch; }
  .hero__trust { justify-content: stretch; width: 100%; }
  .hero__logo-stage {
    width: min(260px, 100%);
    max-width: 260px;
    padding: 1.75rem;
    margin: 0 auto;
  }
  .hero__quote {
    max-width: none;
    width: 100%;
    text-align: center;
    padding: 1.25rem 1.5rem;
  }

  .hero__orb--1 { width: 280px; height: 280px; }
  .hero__orb--2 { width: 220px; height: 220px; }
  .hero__orb--3 { width: 160px; height: 160px; }

  .angebot--featured { transform: none; }
  .angebot--featured:hover { transform: translateY(-4px); }

  .transformation__visual { order: -1; }
  .transformation__logo-wrap { padding: 1.5rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .container { width: min(1140px, calc(100% - 1.5rem)); }

  .problem__inner,
  .transformation__inner,
  .ueber__inner,
  .kontakt__inner,
  .faq__inner,
  .konzept__grid,
  .angebote__grid {
    min-width: 0;
  }

  .section { padding: 3.5rem 0; }
  .section__header { margin-bottom: 2.5rem; }
  .section__header--center { margin-bottom: 2.5rem; }

  h1 { font-size: clamp(2rem, 9vw, 2.75rem); }
  h2 { font-size: clamp(1.65rem, 7vw, 2.25rem); }

  .hero { padding: 5.5rem 0 3rem; }

  .page-loader__logo {
    width: 100px;
    animation: none;
    opacity: 1;
  }

  .page-loader__text {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    padding-inline: 1rem;
  }

  .hero__trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    width: 100%;
  }

  .hero__pill {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.9rem 1.1rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn { width: 100%; }

  .frauen-stripe { padding: 1.1rem 0; }
  .frauen-stripe__sub { font-size: 0.82rem; max-width: none; }

  .problem__thought { padding: 1.75rem 1.25rem; }
  .problem__list li { font-size: 0.92rem; padding-left: 1.5rem; }

  .story__header { margin-bottom: 2.5rem; }
  .story__voice { font-size: 1.05rem; }
  .story__chapter { padding: 1.75rem 0 1.75rem 1rem; }
  .story__chapter::before { left: -1.65rem; }
  .story__closing { margin-top: 2.5rem; padding: 1.75rem 1.25rem; }
  .story__closing p { font-size: 1.05rem; }

  .promise { padding: 3.5rem 0; }
  .promise__item { padding: 1.5rem 1.25rem; }

  .section-ornament {
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    padding: 1.5rem 1rem;
  }

  .konzept__card,
  .angebot,
  .testimonial-card {
    padding: 1.75rem 1.35rem;
  }

  .testimonial-card p { font-size: 1.05rem; }

  .cta-banner { padding: 3.5rem 0; }
  .cta-banner p { font-size: 0.95rem; padding-inline: 0.5rem; }
  .cta-banner .btn { width: min(100%, 320px); }

  .kontakt__inner { gap: 2rem; }
  .kontakt__form {
    grid-template-columns: 1fr;
    padding: 1.35rem;
  }

  .form__group input,
  .form__group select,
  .form__group textarea {
    font-size: 16px;
    padding: 0.85rem 1rem;
  }

  .kontakt__form.is-success::after {
    font-size: 1.05rem;
    padding: 1.25rem;
  }

  .kontakt__detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .ueber__visual { max-width: 320px; margin-inline: auto; width: 100%; }
  .ueber__frame-accent { right: 0; bottom: -8px; }

  .faq__item summary {
    font-size: 1rem;
    gap: 1rem;
    padding: 1.1rem 0;
  }

  .footer { padding: 3rem 0 max(2rem, env(safe-area-inset-bottom)); }
}

@media (max-width: 380px) {
  .container { width: min(1140px, calc(100% - 1rem)); }

  .nav__logo { height: 36px; }
  .hero__logo-stage { width: min(220px, 68vw); padding: 1.25rem; }
  .hero__eyebrow { font-size: 0.72rem; letter-spacing: 0.12em; }

  .btn--lg { padding: 0.95rem 1.25rem; font-size: 0.92rem; }
}

@media (min-width: 1100px) {
  .hero__title { font-size: 4.5rem; }
  .hero__lead { font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  .hero__content > *, .hero__visual, .hero__logo { opacity: 1; }
}
