/* Christina Schaller · Lebensart Kevelaer
   Design tokens, layout primitives, components. */

@import url('../fonts/fonts.css');

:root {
  --paper: #f6f4f1;
  --paper-deep: #efece7;
  --card: #fffefc;
  --blush: #f2e7df;
  --blush-deep: #e9d9cd;
  --clay: #c6987e;
  --clay-deep: #925f47;
  --clay-ink: #6f4736;
  --ink: #2a2622;
  --text: #4a4440;
  --muted: #7d746d;
  --line: rgba(42, 38, 34, 0.1);
  --petrol: #2f6b74;

  --font-display: 'Bodoni Moda', 'Didot', 'Georgia', serif;
  --font-body: 'Figtree', 'Helvetica Neue', Arial, sans-serif;
  --font-hand: 'Nothing You Could Do', 'Bradley Hand', cursive;

  --radius-card: 28px;
  --radius-img: 22px;
  --radius-pill: 999px;

  --shadow-card: 0 1px 2px rgba(74, 52, 40, 0.05), 0 24px 60px -30px rgba(74, 52, 40, 0.28);
  --shadow-hover: 0 2px 4px rgba(74, 52, 40, 0.06), 0 34px 70px -30px rgba(74, 52, 40, 0.36);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(5rem, 10vw, 9rem);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper grain, fixed so it never repaints on scroll */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.5 0 0 0 0 0.45 0 0 0 0.35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

a { color: var(--clay-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--clay-ink); }

::selection { background: var(--blush-deep); color: var(--ink); }

:focus-visible { outline: 2px solid var(--petrol); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0 0 1rem;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 1.9rem); line-height: 1.18; }
h4 { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.01em; }

h1 em, h2 em, h3 em, .display em { font-style: italic; font-weight: 400; }

p { margin: 0 0 1.1rem; max-width: 66ch; }
p:last-child { margin-bottom: 0; }

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

.lead { font-size: clamp(1.1rem, 1.5vw, 1.25rem); line-height: 1.6; color: var(--text); }

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 1.1rem;
}

.hand {
  font-family: var(--font-hand);
  color: var(--petrol);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.3;
  display: inline-block;
  transform: rotate(-2deg);
}

.hand--lg { font-size: clamp(2.2rem, 4vw, 3.4rem); }

.center { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }

.muted { color: var(--muted); }
.small { font-size: 0.9rem; }

/* ---------- Layout ---------- */

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container--narrow { width: min(100% - 2 * var(--gutter), 820px); margin-inline: auto; }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--blush { background: linear-gradient(180deg, var(--blush) 0%, #f4ebe4 100%); }
.section--deep { background: var(--paper-deep); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head p { max-width: 60ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center p { margin-inline: auto; }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--split { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); align-items: center; }
.grid--split-rev { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); align-items: center; }

@media (max-width: 860px) {
  .grid--2, .grid--3, .grid--split, .grid--split-rev { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.1rem;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn--primary { background: var(--clay-deep); color: #fff; box-shadow: 0 10px 24px -12px rgba(146, 95, 71, 0.6); }
.btn--primary:hover { background: var(--clay-ink); color: #fff; box-shadow: 0 16px 30px -14px rgba(146, 95, 71, 0.7); }

.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(42, 38, 34, 0.28); }
.btn--ghost:hover { background: var(--card); color: var(--ink); border-color: rgba(42, 38, 34, 0.45); }

.btn--light { background: rgba(255, 255, 255, 0.92); color: var(--ink); backdrop-filter: blur(8px); }
.btn--light:hover { background: #fff; color: var(--ink); }

.btn--outline-light { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.55); backdrop-filter: blur(8px); }
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.18); color: #fff; border-color: #fff; }

.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; align-items: center; }

.link-more {
  display: inline-block;
  font-weight: 600;
  color: var(--clay-deep);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s var(--ease-out);
}
.link-more:hover { color: var(--clay-ink); }

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  transition: background-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), backdrop-filter 0.35s var(--ease-out);
}
.header.is-scrolled {
  background: rgba(246, 244, 241, 0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 74px;
}

.brand { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.02em; color: var(--ink); }
.brand__sub { font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); margin-top: 0.35rem; }

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 1.8rem); }
.nav a:not(.btn) {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.35rem 0;
}
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--clay-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav .btn { min-height: 2.6rem; padding: 0.6rem 1.25rem; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer;
  position: relative;
  border-radius: 50%;
}
.nav-toggle span {
  position: absolute; left: 11px; width: 22px; height: 1.5px; background: var(--ink);
  transition: transform 0.3s var(--ease-in-out), opacity 0.2s;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 74px 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.25rem;
    padding: 2rem var(--gutter);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a:not(.btn) { font-family: var(--font-display); font-size: 2rem; padding: 0.5rem 0; }
  .nav .btn { margin-top: 1.5rem; font-size: 1rem; min-height: 3.1rem; padding: 0.85rem 1.7rem; }
  body.nav-open { overflow: hidden; }
  .header.is-scrolled, body.nav-open .header { background: var(--paper); }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  margin: 0.5rem clamp(0.5rem, 1.2vw, 1rem) 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: min(88vh, 860px);
  min-height: min(88dvh, 860px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background: var(--paper-deep);
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  animation: hero-zoom 1.8s var(--ease-out) both;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(42, 38, 34, 0.08) 0%, rgba(42, 38, 34, 0) 30%, rgba(42, 38, 34, 0.15) 55%, rgba(42, 38, 34, 0.72) 100%);
}
.hero__content {
  position: relative;
  width: min(100% - 2 * var(--gutter), var(--container));
  margin: 0 auto;
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
}
.hero__hand {
  font-family: var(--font-hand);
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1;
  color: #fff;
  display: block;
  margin-bottom: 0.25rem;
  margin-left: 0.15em;
  transform: rotate(-3deg);
  transform-origin: left bottom;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}
.hero__title {
  color: #fff;
  font-weight: 400;
  font-size: clamp(2.5rem, 6.4vw, 5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.02;
  margin: 0 0 1.4rem;
  max-width: 14ch;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
}
.hero__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.8rem;
}
.hero .reveal-seq > * { animation: rise 0.9s var(--ease-out) both; }
.hero .reveal-seq > *:nth-child(1) { animation-delay: 0.15s; }
.hero .reveal-seq > *:nth-child(2) { animation-delay: 0.3s; }
.hero .reveal-seq > *:nth-child(3) { animation-delay: 0.45s; }
.hero .reveal-seq > *:nth-child(4) { animation-delay: 0.6s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes hero-zoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

/* Split hero (start page) */
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(1.5rem, 4vw, 3.5rem) clamp(3rem, 6vw, 5rem);
  min-height: min(84vh, 780px);
  min-height: min(84dvh, 780px);
}
.hero-split__copy .hand { display: block; font-size: clamp(1.9rem, 3.2vw, 2.8rem); margin-bottom: 0.5rem; margin-left: 0.1em; }
.hero-split__title { font-size: clamp(2.6rem, 5.4vw, 4.6rem); line-height: 1.04; margin: 0 0 1.5rem; }
.hero-split__lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); max-width: 46ch; margin-bottom: 1.9rem; }
.hero-split__media { position: relative; padding: 0 1.25rem 1.5rem 0; }
.hero-split__media::before {
  content: '';
  position: absolute;
  inset: 10% -8% -4% 12%;
  z-index: -1;
  border-radius: 48% 52% 46% 54% / 55% 45% 55% 45%;
  background: radial-gradient(closest-side, var(--blush-deep), rgba(233, 217, 205, 0) 78%);
}
.hero-split__frame { border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow-card); background: #fff; }
.hero-split__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; animation: hero-zoom 1.8s var(--ease-out) both; }
.hero-split__note {
  position: absolute; right: 0; bottom: 0;
  background: var(--card);
  border-radius: 14px;
  padding: 0.7rem 1.1rem 0.55rem;
  box-shadow: var(--shadow-card);
  font-family: var(--font-hand);
  color: var(--petrol);
  font-size: 1.45rem;
  transform: rotate(-3deg);
}
.hero-split .reveal-seq > * { animation: rise 0.9s var(--ease-out) both; }
.hero-split .reveal-seq > *:nth-child(1) { animation-delay: 0.1s; }
.hero-split .reveal-seq > *:nth-child(2) { animation-delay: 0.22s; }
.hero-split .reveal-seq > *:nth-child(3) { animation-delay: 0.34s; }
.hero-split .reveal-seq > *:nth-child(4) { animation-delay: 0.46s; }
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; min-height: 0; gap: 2rem; padding-top: 0.5rem; }
  .hero-split__media { order: -1; max-width: 380px; }
  .hero-split__title { max-width: 14ch; }
}

/* Booking platform */
.platform-embed { margin-top: clamp(2rem, 4vw, 3rem); border-radius: var(--radius-card); overflow: hidden; background: var(--card); box-shadow: var(--shadow-card); }
.platform-embed iframe { display: block; width: 100%; min-height: 720px; border: 0; }

/* Muster & Glaubenssätze */
.belief { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.belief__cards { display: grid; gap: 1rem; }
.belief__cards .card { padding: clamp(1.5rem, 2.5vw, 2rem); }
.belief__cards .card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.belief__cards .card p { font-size: 1rem; }
.belief__cards .card:nth-child(2) { margin-left: clamp(0px, 4vw, 2.5rem); }
.belief blockquote { margin: 0; font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4; color: var(--ink); }
@media (max-width: 860px) { .belief { grid-template-columns: 1fr; } .belief__cards .card:nth-child(2) { margin-left: 0; } }

/* Page hero for subpages */
.page-hero {
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 4vw, 3rem);
}
.page-hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.2rem); max-width: 18ch; }
.page-hero .lead { max-width: 58ch; }

/* ---------- Cards ---------- */

.card {
  background: var(--card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: clamp(1.75rem, 3.5vw, 3rem);
}
.card--flat { box-shadow: none; border: 1px solid var(--line); }

.welcome {
  margin-top: clamp(-3rem, -6vw, -5rem);
  position: relative;
  z-index: 2;
}
.welcome .card { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.welcome__portrait { border-radius: var(--radius-img); overflow: hidden; aspect-ratio: 4 / 5; }
.welcome__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 20%; }
.welcome__questions { list-style: none; margin: 1.5rem 0 1.75rem; padding: 0; display: grid; gap: 0.6rem; }
.welcome__questions li { padding-left: 1.4rem; position: relative; color: var(--text); }
.welcome__questions li::before { content: ''; position: absolute; left: 0; top: 0.72em; width: 0.6rem; height: 1px; background: var(--clay-deep); }
@media (max-width: 860px) {
  .welcome .card { grid-template-columns: 1fr; }
  .welcome__portrait { aspect-ratio: 5 / 4; max-height: 380px; }
}

/* ---------- Bento (Angebote) ---------- */

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.bento__cell {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.bento__cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.bento__cell--big { grid-column: span 7; grid-row: span 2; min-height: 560px; }
.bento__cell--small { grid-column: span 5; }
.bento__media { position: absolute; inset: 0; }
.bento__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.bento__cell:hover .bento__media img { transform: scale(1.04); }
.bento__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42, 38, 34, 0) 35%, rgba(42, 38, 34, 0.82) 100%);
}
.bento__body { position: relative; padding: clamp(1.5rem, 3vw, 2.25rem); color: #fff; }
.bento__body h3 { color: #fff; margin-bottom: 0.5rem; }
.bento__body p { color: rgba(255, 255, 255, 0.86); max-width: 40ch; margin-bottom: 0.9rem; }
.bento__body .link-more { color: #fff; }
.bento__cell--text { background: var(--card); justify-content: center; }
.bento__cell--text .bento__body { color: var(--text); }
.bento__cell--text .bento__body h3 { color: var(--ink); }
.bento__cell--text .bento__body p { color: var(--text); }
.bento__cell--text .bento__body .link-more { color: var(--clay-deep); }
@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento__cell--big, .bento__cell--small { grid-column: auto; grid-row: auto; min-height: 340px; }
}

/* ---------- Feature (Neu ab Oktober) ---------- */

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.feature__media { position: relative; min-height: 380px; }
.feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature__body { padding: clamp(2rem, 4vw, 3.5rem); display: flex; flex-direction: column; justify-content: center; }
.feature__body .hand { margin-bottom: 0.5rem; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature__media { min-height: 280px; }
}
/* Portrait photo shown in full instead of cropped */
.feature--portrait { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
.feature--portrait .feature__media { min-height: 0; background: var(--blush); padding: clamp(1.25rem, 2.5vw, 2rem); display: grid; place-items: center; }
.feature--portrait .feature__media img { position: static; width: auto; height: auto; max-width: 100%; max-height: 460px; object-fit: contain; border-radius: 16px; box-shadow: var(--shadow-card); }
@media (max-width: 860px) {
  .feature--portrait { grid-template-columns: 1fr; }
  .feature--portrait .feature__media img { max-height: 380px; }
}

/* Print: static layout, everything visible */
@media print {
  body::before { display: none; }
  .header { position: static; background: var(--paper); }
  .nav-toggle, .skip-link, .artifact-note { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-split .reveal-seq > *, .hero-split__frame img { animation: none !important; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; }
  .steps { grid-auto-flow: row; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); grid-auto-columns: auto; overflow: visible; margin-inline: 0; padding-inline: 0; }
  .section, .card, .bento__cell, .feature, .testimonial, .step, .quote-card { break-inside: avoid; }
  a[href^="http"]::after { content: none; }
}

/* ---------- Marquee (Qualifikationen) ---------- */

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding-block: 0.5rem;
}
.marquee__track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: marquee 55s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  white-space: nowrap;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--card);
  font-size: 0.95rem;
  color: var(--ink);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */

.about__figure { position: relative; padding: 0 1.5rem 2rem 0; }
.about__portrait { border-radius: var(--radius-img); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-card); }
.about__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.polaroid {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(120px, 28%, 170px);
  background: #fff;
  padding: 0.5rem 0.5rem 1.9rem;
  border-radius: 6px;
  box-shadow: 0 18px 40px -18px rgba(42, 38, 34, 0.45);
  transform: rotate(6deg);
  transition: transform 0.4s var(--ease-out);
}
.polaroid:hover { transform: rotate(3deg) translateY(-4px); }
.polaroid img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: 2px; }
.polaroid figcaption { position: absolute; left: 0; right: 0; bottom: 0.45rem; text-align: center; font-family: var(--font-hand); font-size: 0.95rem; color: var(--petrol); }

.traits { display: flex; flex-wrap: wrap; gap: 0.45rem 0.9rem; margin: 1.5rem 0 1.8rem; padding: 0; list-style: none; }
.traits li { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--clay-deep); }
.traits li:not(:last-child)::after { content: '·'; margin-left: 0.9rem; color: var(--muted); font-style: normal; }

/* ---------- Quote card ---------- */

.quote-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  isolation: isolate;
}
.quote-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.quote-card::before { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(60, 45, 36, 0.28); }
.quote-card__inner {
  background: rgba(255, 254, 252, 0.94);
  border-radius: 18px;
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3.5rem);
  max-width: 720px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.quote-card__text {
  font-family: var(--font-hand);
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  line-height: 1.45;
  color: var(--clay-ink);
  margin: 0 0 1.25rem;
  max-width: none;
}
.quote-card__by { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }

/* ---------- Steps (Impuls) ---------- */

.steps {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem var(--gutter) 1.5rem;
  margin-inline: calc(-1 * var(--gutter));
  scrollbar-width: thin;
  scrollbar-color: var(--blush-deep) transparent;
}
@media (min-width: 1240px) {
  .steps { grid-auto-columns: 1fr; overflow: visible; padding-inline: 0; margin-inline: 0; }
}
.steps--stack { grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: 1fr; overflow: visible; margin-inline: 0; padding: 0; }
.steps--stack .step { min-height: 0; padding: 1.25rem 1.4rem; display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; align-items: start; }
.steps--stack .step__num { font-size: 2rem; grid-row: span 2; }
.steps--stack .step h3 { margin: 0; }
.steps--stack .step p { margin: 0.25rem 0 0; grid-column: 2; }
@media (min-width: 1240px) { .steps--stack { grid-auto-columns: auto; } }
.step {
  scroll-snap-align: start;
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem 1.6rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 300px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step__num { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--clay); }
.step h3 { font-size: 1.35rem; margin: 0.2rem 0 0; }
.step__sub { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.step p { font-size: 0.98rem; margin: 0.3rem 0 0; }
.step ul { margin: 0.3rem 0 0; padding-left: 1.1rem; font-size: 0.98rem; }
.step li { margin-bottom: 0.25rem; }

/* ---------- EMDR ---------- */

.emdr__media { border-radius: var(--radius-img); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-card); position: relative; }
.emdr__media img { width: 100%; height: 100%; object-fit: cover; }
.emdr__badge {
  position: absolute; left: 1.25rem; bottom: 1.25rem;
  background: rgba(255, 254, 252, 0.94);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  max-width: 260px;
  box-shadow: var(--shadow-card);
}
.emdr__badge strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; margin-bottom: 0.15rem; }
.emdr__badge span { font-size: 0.85rem; color: var(--muted); }

.why { list-style: none; margin: 1.5rem 0 1.75rem; padding: 0; display: grid; gap: 0.9rem; }
.why li { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: baseline; padding-top: 0.9rem; border-top: 1px solid var(--line); }
.why b { font-family: var(--font-display); font-weight: 400; font-size: 1.2rem; color: var(--ink); white-space: nowrap; }
.why span { color: var(--text); }

.symptoms { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 1.5rem; padding: 0; list-style: none; }
.symptoms li { padding: 0.45rem 0.9rem; border-radius: var(--radius-pill); background: var(--blush); color: var(--clay-ink); font-size: 0.9rem; }

/* ---------- Kursplan ---------- */

.schedule {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.schedule__day { background: var(--card); padding: 1.4rem 1.2rem 1.6rem; display: flex; flex-direction: column; gap: 0.9rem; }
.schedule__day h3 { font-size: 1.35rem; margin: 0 0 0.25rem; }
.slot { display: grid; gap: 0.1rem; }
.slot time { font-size: 0.78rem; letter-spacing: 0.12em; color: var(--clay-deep); font-weight: 600; }
.slot span { color: var(--ink); font-size: 0.98rem; line-height: 1.35; }
.slot em { font-style: normal; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--petrol); margin-left: 0.35rem; }
@media (max-width: 1000px) { .schedule { grid-template-columns: repeat(3, minmax(0, 1fr)); } .schedule__day:nth-child(4), .schedule__day:nth-child(5) { grid-column: span 1; } }
@media (max-width: 640px) { .schedule { grid-template-columns: 1fr; } }

.schedule-note { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; }

/* ---------- Testimonials ---------- */

.testimonials { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); align-items: start; }
.testimonial {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: clamp(1.6rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial:nth-child(2) { margin-top: clamp(0px, 4vw, 2.5rem); }
.testimonial blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(1.2rem, 1.6vw, 1.4rem); line-height: 1.4; color: var(--ink); }
.testimonial blockquote::before { content: '„'; color: var(--clay); }
.testimonial blockquote::after { content: '“'; color: var(--clay); }
.testimonial figcaption { font-size: 0.85rem; color: var(--muted); }
.testimonial figcaption b { display: block; font-weight: 600; color: var(--text); }
@media (max-width: 860px) { .testimonials { grid-template-columns: 1fr; } .testimonial:nth-child(2) { margin-top: 0; } }

.testimonial--full blockquote { font-family: var(--font-body); font-size: 1.02rem; line-height: 1.65; color: var(--text); }
.testimonial--full blockquote p { max-width: none; }

/* ---------- Contact ---------- */

.contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }

.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--card);
  border: 1px solid rgba(42, 38, 34, 0.22);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.field input::placeholder, .field textarea::placeholder { color: #8a817a; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--clay-deep); box-shadow: 0 0 0 3px rgba(146, 95, 71, 0.18); }
.field textarea { min-height: 150px; resize: vertical; }
.field--check { grid-template-columns: auto 1fr; align-items: start; gap: 0.7rem; font-size: 0.9rem; color: var(--text); }
.field--check input { width: 1.1rem; height: 1.1rem; margin-top: 0.2rem; accent-color: var(--clay-deep); }
.form__hint { font-size: 0.9rem; color: var(--muted); min-height: 1.4em; }
.form__hint.is-error { color: #9b3b2a; }
.form__hint.is-ok { color: var(--petrol); }

.contact__info { display: grid; gap: 1.5rem; }
.contact__block { padding-top: 1.25rem; border-top: 1px solid var(--line); }
.contact__block:first-child { border-top: 0; padding-top: 0; }
.contact__block h4 { margin: 0 0 0.4rem; }
.contact__block p { margin: 0; }
.contact__block a { font-weight: 500; }

/* ---------- Footer ---------- */

.footer { background: var(--paper-deep); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; margin-top: 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { margin: 0 0 0.9rem; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.footer a { color: var(--ink); text-decoration: none; font-size: 0.97rem; }
.footer a:hover { color: var(--clay-deep); text-decoration: underline; }
.footer p { font-size: 0.95rem; }
.footer__brand .brand__name { font-size: 1.7rem; }
.footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; font-size: 0.85rem; color: var(--muted); }
.footer__disclaimer { font-size: 0.85rem; color: var(--muted); max-width: 70ch; margin-top: 1.25rem; }

/* ---------- Subpage helpers ---------- */

.prose h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-top: 2.5rem; }
.prose h3 { margin-top: 1.75rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }

.topic-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden; }
.topic { background: var(--card); padding: 1.6rem 1.5rem; }
.topic h3 { font-size: 1.3rem; margin-bottom: 0.35rem; }
.topic p { font-size: 0.98rem; margin: 0; }
@media (max-width: 640px) { .topic-grid { grid-template-columns: 1fr; } }

.check-list { list-style: none; padding: 0; margin: 1.25rem 0; display: grid; gap: 0.7rem; }
.check-list li { padding-left: 1.6rem; position: relative; }
.check-list li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 0.7rem; height: 0.7rem; border-radius: 50%; background: var(--blush-deep); box-shadow: inset 0 0 0 2px var(--card); border: 1px solid var(--clay); }

.img-round { border-radius: var(--radius-img); overflow: hidden; box-shadow: var(--shadow-card); }
.img-round img { width: 100%; height: 100%; object-fit: cover; }
.img-round--tall { aspect-ratio: 4 / 5; }
.img-round--wide { aspect-ratio: 16 / 10; }

.mosaic { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(0.75rem, 1.5vw, 1.25rem); }
.mosaic figure { margin: 0; border-radius: var(--radius-img); overflow: hidden; aspect-ratio: 4 / 5; }
.mosaic figure:nth-child(2), .mosaic figure:nth-child(3) { margin-top: clamp(1rem, 3vw, 2.5rem); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.mosaic figure:hover img { transform: scale(1.04); }
@media (max-width: 760px) { .mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.cta-band { text-align: center; }
.cta-band .hand { margin-bottom: 0.5rem; }
.cta-band h2 { margin-bottom: 1.5rem; }

.offer-list { display: grid; gap: 1.25rem; }
.offer { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr); gap: 1.5rem; padding: 1.75rem 0; border-top: 1px solid var(--line); }
.offer:last-child { border-bottom: 1px solid var(--line); }
.offer h3 { font-size: 1.45rem; margin: 0 0 0.35rem; }
.offer__meta { font-size: 0.85rem; color: var(--muted); }
.offer p { margin: 0 0 0.6rem; }
@media (max-width: 760px) { .offer { grid-template-columns: 1fr; gap: 0.6rem; } }

/* ---------- Reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

.visually-hidden-inline { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.skip-link { position: absolute; left: 1rem; top: -3rem; background: var(--ink); color: #fff; padding: 0.6rem 1rem; border-radius: var(--radius-pill); z-index: 100; }
.skip-link:focus { top: 1rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero .reveal-seq > *, .hero__media img { animation: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
  .btn, .bento__cell, .step, .polaroid, .bento__media img, .mosaic img { transition: none; }
}
