/* ============================================================
   Martina Ertl — Coaching & Beratung
   Design system
   ============================================================ */

:root {
  /* Brand */
  --orange: #E8820C;
  --orange-600: #D17209;
  --orange-300: #F4A340;
  --orange-100: #FCE6CC;
  --orange-50:  #FDF3E6;

  /* Neutrals — warm */
  --ink:      #1B1813;
  --ink-700:  #3A3329;
  --ink-500:  #6B6256;
  --ink-400:  #8C8377;
  --ink-300:  #B7AEA0;
  --line:     rgba(27, 24, 19, 0.08);
  --line-strong: rgba(27, 24, 19, 0.16);

  --cream:    #FAF6F0;
  --cream-2:  #F2EBDF;
  --paper:    #FFFFFF;
  --tint:     #F7F1E6;

  /* Type */
  --font: "Poppins", system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 48px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(27,24,19,.05), 0 1px 1px rgba(27,24,19,.03);
  --shadow-md: 0 8px 24px -8px rgba(27,24,19,.10), 0 2px 6px rgba(27,24,19,.04);
  --shadow-lg: 0 30px 60px -20px rgba(27,24,19,.18), 0 10px 24px -12px rgba(27,24,19,.10);
  --shadow-orange: 0 16px 36px -12px rgba(232,130,12,.45);

  --container: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 16px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ----------------------------- Type */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 4rem); font-weight: 600; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.3vw, 2.75rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.01em; }

p { margin: 0; color: var(--ink-700); text-wrap: pretty; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-700); line-height: 1.65; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-600);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--orange);
  border-radius: 2px;
}

/* ----------------------------- Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: clamp(72px, 9vw, 140px) 0; position: relative; }
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--tint  { background: var(--tint); }
.section--dark  {
  background: linear-gradient(180deg, #1F1A14 0%, #15110C 100%);
  color: #F5EFE3;
}
.section--dark p { color: #C9C0AF; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #FBF5E8; }

/* ----------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.97rem;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.7,.2,1),
              box-shadow .25s ease,
              background .2s ease,
              color .2s ease;
  white-space: nowrap;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover { background: var(--orange-600); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--paper); border-color: var(--ink); }
.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover { background: #0F0C09; }

.btn .arrow {
  width: 16px; height: 16px;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* Text link with animated underline */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--orange-600);
  position: relative;
  padding-bottom: 2px;
}
.tlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1.5px;
  width: 100%;
  background: var(--orange);
  transform-origin: left;
  transform: scaleX(0.3);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.tlink:hover::after { transform: scaleX(1); }
.tlink svg { transition: transform .25s ease; }
.tlink:hover svg { transform: translateX(3px); }

/* ----------------------------- Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(250, 246, 240, 0.75);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 246, 240, 0.9);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo img { height: 26px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__links a {
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-700);
  transition: color .2s ease, background .2s ease;
}
.nav__links a:hover { color: var(--ink); background: rgba(27,24,19,.05); }
.nav__links a.is-active {
  color: var(--orange-600);
}
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 50%;
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 999px;
  transform: translateX(-50%);
}
.nav__cta { display: flex; gap: 10px; align-items: center; }
.nav__cta .btn { padding: 12px 20px; font-size: 0.9rem; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line-strong);
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--ink);
  position: relative;
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0;
  width: 100%; height: 100%; background: var(--ink);
}
.nav__burger span::before { top: -5px; }
.nav__burger span::after  { top: 5px; }

@media (max-width: 880px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__burger { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 100;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.7,0,.2,1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__close {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  border: none;
  font-size: 18px;
}
.mobile-menu__nav {
  padding: 40px 28px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.mobile-menu__nav a {
  padding: 18px 0;
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}

/* ----------------------------- Cards */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              box-shadow .35s ease,
              border-color .35s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,130,12,.25);
}
.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--orange-50);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background .25s ease, color .25s ease;
}
.card:hover .card__icon {
  background: var(--orange);
  color: #fff;
}
.card__icon svg { width: 24px; height: 24px; }
.card h4 { margin-bottom: 10px; }
.card p { font-size: 0.96rem; line-height: 1.6; color: var(--ink-500); }

/* ----------------------------- Image placeholders */
.placeholder {
  position: relative;
  background: var(--tint);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg,
      transparent 0 14px,
      rgba(232,130,12,.07) 14px 15px);
}
.placeholder__label {
  position: relative;
  font-family: "JetBrains Mono", "SF Mono", "Menlo", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(232,130,12,.18);
  z-index: 1;
}

/* Portrait placeholder — warm gradient with subtle "silhouette" */
.portrait {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 110%, rgba(232,130,12,.25) 0%, transparent 60%),
    linear-gradient(180deg, #F7E6CC 0%, #ECD3A9 100%);
}
.portrait::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 50% at 50% 35%, rgba(27,24,19,.18) 0%, transparent 65%),
    radial-gradient(60% 60% at 50% 110%, rgba(27,24,19,.32) 0%, transparent 60%);
}
.portrait .placeholder__label {
  position: absolute;
  left: 50%; bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
}

/* ----------------------------- Trust badges */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-700);
  font-size: 0.92rem;
  font-weight: 500;
}
.trust__item svg {
  width: 18px; height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ----------------------------- Footer */
.site-footer {
  background: #15110C;
  color: #C9C0AF;
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-grid h5 {
  color: #FBF5E8;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-grid a { display: block; padding: 6px 0; color: #C9C0AF; transition: color .2s; font-size: 0.95rem; }
.footer-grid a:hover { color: var(--orange-300); }
.footer__logo {
  filter: brightness(0) invert(0.95);
  height: 28px;
  margin-bottom: 18px;
}
.footer__tag { color: #9A9285; font-size: 0.93rem; max-width: 280px; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 0.85rem;
  color: #7A7264;
  gap: 24px;
}
.footer__bottom-links { display: flex; gap: 20px; }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ----------------------------- Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1),
              transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }
.reveal.delay-5 { transition-delay: 0.40s; }

/* ----------------------------- Floating shapes */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.orb--1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #F4A340 0%, transparent 60%);
  top: -120px; right: -80px;
  animation: float 18s ease-in-out infinite;
}
.orb--2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, #E8820C 0%, transparent 60%);
  bottom: -100px; left: -60px;
  opacity: 0.25;
  animation: float 22s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.08); }
}

/* ----------------------------- Helpers */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 920px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.center { text-align: center; }
.mt-3  { margin-top: 24px; }
.mt-5  { margin-top: 40px; }
.mt-8  { margin-top: 64px; }
.mb-3  { margin-bottom: 24px; }

.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { font-size: 1.05rem; }

.section-head--left {
  margin-left: 0;
  text-align: left;
}

/* Marquee/Strip */
.kicker-strip {
  background: var(--ink);
  color: #F5EFE3;
  padding: 14px 0;
  overflow: hidden;
}
.kicker-strip__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
.kicker-strip__track span { display: inline-flex; align-items: center; gap: 48px; flex-shrink: 0; }
.kicker-strip__track svg { width: 14px; height: 14px; color: var(--orange-300); flex-shrink: 0; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Numbered list (process) */
.steps {
  counter-reset: step;
  display: grid;
  gap: 20px;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .3s ease, transform .3s ease;
}
.step:hover { border-color: rgba(232,130,12,.3); transform: translateX(4px); }
.step__num {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--orange-50);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.step h4 { margin-bottom: 6px; }
.step p { font-size: 0.97rem; color: var(--ink-500); }

/* Quote / Testimonial */
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.quote:hover { border-color: rgba(232,130,12,.3); box-shadow: var(--shadow-md); }
.quote__mark {
  font-family: serif;
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--orange);
  height: 18px;
}
.quote__text {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-700);
  flex: 1;
}
.quote__person {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.quote__avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-300), var(--orange-600));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
}
.quote__name { font-weight: 600; font-size: 0.95rem; }
.quote__loc  { font-size: 0.85rem; color: var(--ink-400); }

/* USP row with icons */
.usp-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.usp-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}
.usp-list__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--orange-50);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
}
.usp-list__icon svg { width: 20px; height: 20px; }
.usp-list strong { display: block; margin-bottom: 2px; font-weight: 600; font-size: 1rem; color: var(--ink); }
.usp-list span { font-size: 0.93rem; color: var(--ink-500); line-height: 1.55; }

/* Method list */
.method {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.method:last-child { border-bottom: none; }
.method__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.method__icon svg { width: 18px; height: 18px; }
.method strong { display: block; font-weight: 600; margin-bottom: 4px; font-size: 1.02rem; }
.method p { font-size: 0.95rem; color: var(--ink-500); }

/* Comparison table */
.compare {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.compare__head, .compare__row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.6fr;
  gap: 24px;
  padding: 22px 32px;
  align-items: start;
}
.compare__head {
  background: var(--ink);
  color: #FBF5E8;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.compare__head .accent { color: var(--orange-300); }
.compare__row {
  border-bottom: 1px solid var(--line);
  transition: background .25s ease;
}
.compare__row:last-child { border-bottom: none; }
.compare__row:hover { background: var(--orange-50); }
.compare__topic { font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.compare__old   { color: var(--ink-500); font-size: 0.95rem; line-height: 1.55; }
.compare__new   { color: var(--ink); font-size: 0.97rem; line-height: 1.55; font-weight: 500; position: relative; padding-left: 22px; }
.compare__new::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 4px;
}
@media (max-width: 760px) {
  .compare__head { display: none; }
  .compare__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .compare__old, .compare__new {
    padding-left: 90px;
    position: relative;
    min-height: 24px;
  }
  .compare__old::before, .compare__new::before {
    content: "Herkömmlich";
    position: absolute;
    left: 0; top: 0;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-400);
    font-weight: 500;
    width: 80px;
    background: none;
    border-radius: 0;
  }
  .compare__new::before { content: "Mein Ansatz"; color: var(--orange-600); background: none; }
}

/* Hero compositions */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) 0 clamp(80px, 9vw, 130px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy h1 { margin-bottom: 24px; }
.hero__copy .lead { margin-bottom: 36px; max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  border-radius: var(--r-xl);
}
.hero__visual .portrait,
.hero__visual .placeholder {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.hero__floating {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero__floating--1 {
  top: 12%; left: -28px;
  animation: floatUp 5s ease-in-out infinite;
}
.hero__floating--2 {
  bottom: 14%; right: -28px;
  animation: floatUp 6s ease-in-out infinite reverse;
}
.hero__floating-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--orange-50);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
}
.hero__floating-icon svg { width: 16px; height: 16px; }
.hero__floating-text {
  font-size: 0.8rem;
}
.hero__floating-text strong { display: block; font-weight: 600; font-size: 0.88rem; }
.hero__floating-text span   { color: var(--ink-400); font-size: 0.75rem; }
@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .hero__floating--1 { left: 8px; }
  .hero__floating--2 { right: 8px; }
}

/* Stats row */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.stat__num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--orange-600);
  line-height: 1;
}
.stat__label {
  font-size: 0.92rem;
  color: var(--ink-500);
  margin-top: 8px;
  line-height: 1.4;
}
@media (max-width: 620px) { .stats { grid-template-columns: 1fr; gap: 20px; } }

/* Big CTA — warm, einladend */
.big-cta {
  background:
    radial-gradient(120% 90% at 100% 0%, #FCE6CC 0%, transparent 55%),
    radial-gradient(110% 80% at 0% 100%, #FDF3E6 0%, transparent 60%),
    linear-gradient(160deg, #FFF8EE 0%, #FAEFD8 100%);
  color: var(--ink);
  border: 1px solid rgba(232,130,12,.18);
  border-radius: var(--r-2xl);
  padding: clamp(48px, 6vw, 88px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(232,130,12,.30),
              0 8px 24px -12px rgba(27,24,19,.08);
}
.big-cta h2 {
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.big-cta .lead {
  color: var(--ink-700);
  max-width: 620px;
  margin: 0 auto 36px;
}
.big-cta__orb {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(232,130,12,.45) 0%, rgba(244,163,64,.18) 35%, transparent 65%);
  filter: blur(50px);
  top: -200px; right: -160px;
  z-index: 0;
  animation: float 18s ease-in-out infinite;
}
.big-cta__orb--2 {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,163,64,.35) 0%, transparent 65%);
  filter: blur(60px);
  bottom: -160px; left: -100px;
  z-index: 0;
  animation: float 24s ease-in-out infinite reverse;
}
.big-cta__inner { position: relative; z-index: 1; }
.big-cta__inner .eyebrow {
  color: var(--orange-600);
}
.big-cta .btn--primary {
  padding: 18px 32px;
  font-size: 1rem;
  box-shadow: 0 16px 32px -8px rgba(232,130,12,.55),
              0 0 0 6px rgba(255,255,255,.5);
}
.big-cta__trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px;
  margin-top: 32px;
  font-size: 0.9rem;
}
.big-cta__trust .trust__item {
  color: var(--ink-700);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(232,130,12,.18);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500;
}
.big-cta__trust .trust__item svg { color: var(--orange); }

/* Contact form */
.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
}
.form .field { margin-bottom: 22px; }
.form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.form textarea { min-height: 130px; resize: vertical; }
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(232,130,12,.12);
}
.form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 620px) { .form .field-row { grid-template-columns: 1fr; } }
.form__note {
  font-size: 0.82rem;
  color: var(--ink-400);
  margin-top: 14px;
  text-align: center;
}

/* Tag pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--orange-50);
  color: var(--orange-600);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
}
.pill svg { width: 14px; height: 14px; }

/* Audience cards */
.aud-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.7,.2,1),
              box-shadow .4s ease,
              border-color .4s ease;
}
.aud-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,130,12,.3);
}
.aud-card__media {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}
.aud-card__media .placeholder { position: absolute; inset: 0; border-radius: 0; }
.aud-card__body { padding: 32px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.aud-card__body h4 { font-size: 1.4rem; letter-spacing: -0.02em; }
.aud-card__body p  { color: var(--ink-500); font-size: 0.97rem; line-height: 1.6; flex: 1; }
.aud-card__cta { margin-top: 8px; }

/* Book section */
.book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.book__cover {
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, #2A231A 0%, #1B1813 60%);
  border-radius: 6px 18px 18px 6px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  margin: 0 auto;
  transform: rotate(-2deg);
  transition: transform .5s ease;
}
.book__cover:hover { transform: rotate(0deg); }
.book__cover::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 14px;
  background: linear-gradient(90deg, rgba(0,0,0,.4), transparent);
  z-index: 2;
}
.book__cover-content {
  position: absolute;
  inset: 36px;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.book__cover h3 {
  font-size: 1.6rem;
  color: #FBF5E8;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.book__cover-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-300);
}
.book__cover-author {
  font-size: 0.9rem;
  color: #C9C0AF;
  letter-spacing: 0.05em;
}
.book__cover-line {
  height: 2px; width: 50px;
  background: var(--orange);
  margin-bottom: 12px;
}
@media (max-width: 880px) {
  .book { grid-template-columns: 1fr; gap: 48px; }
}

/* About section */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  border-radius: var(--r-xl);
}
.about__media .portrait { position: absolute; inset: 0; border-radius: var(--r-xl); overflow: hidden; }
.about__sign {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.about__sign-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.about__sign strong { display: block; font-weight: 600; font-size: 1rem; line-height: 1.2; }
.about__sign span   { color: var(--ink-500); font-size: 0.83rem; }
@media (max-width: 880px) {
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about__media { max-width: 480px; margin: 0 auto; }
}

/* Feature row alt */
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
@media (max-width: 920px) { .feat-row { grid-template-columns: repeat(2, 1fr); } }
.feat {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .25s ease, transform .25s ease;
}
.feat:hover { border-color: rgba(232,130,12,.3); transform: translateY(-3px); }
.feat__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--orange-50);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
}
.feat__icon svg { width: 18px; height: 18px; }
.feat strong { font-weight: 600; font-size: 1rem; }
.feat p { font-size: 0.9rem; color: var(--ink-500); line-height: 1.5; }

/* Page hero (subpages) */
.page-hero {
  padding: clamp(80px, 10vw, 130px) 0 clamp(48px, 7vw, 80px);
  position: relative;
  background: linear-gradient(180deg, var(--tint) 0%, var(--cream) 100%);
  overflow: hidden;
}
.page-hero .orb--1 { opacity: 0.4; }
.page-hero__inner { position: relative; z-index: 1; max-width: 820px; }

/* Section transitions */
.section + .section { /* keeps backgrounds adjacent cleanly */ }
