/* =================================================================
   Praxis Ramos Diaz — Onepage Stylesheet
   Color world: warm cream, sand-beige, light taupe, sage/mint,
   muted lavender. Typography: Cormorant Garamond + Inter.
   ================================================================= */

:root {
  /* warm neutrals */
  --cream: #faf5ec;
  --cream-2: #f6efe4;
  --sand: #ece1cb;
  --sand-deep: #e0d2b6;
  --taupe: #d8cdb8;
  --taupe-deep: #b8aa8e;

  /* sage / mint */
  --sage: #8a9b7c;
  --sage-deep: #6b7a5e;
  --mint: #c4d2bb;

  /* lavender */
  --lavender: #b9a7c9;
  --lavender-soft: #d9cce4;
  --lavender-deep: #7a6a8e;

  /* ink */
  --ink: #33352f;
  --ink-soft: #5a574e;
  --ink-mute: #8a8676;
  --line: #d9cfbb;

  /* fonts */
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Inter', 'Helvetica Neue', system-ui, -apple-system, sans-serif;

  /* layout */
  --container: 1180px;
  --container-narrow: 760px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  /* motion */
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ----------- Reset / base ----------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 12% 4%, rgba(217, 204, 228, .16), transparent 36rem),
    radial-gradient(ellipse at 92% 8%, rgba(196, 210, 187, .16), transparent 34rem),
    var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-deep); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--lavender-deep); }
button { font-family: inherit; cursor: pointer; }

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

/* ----------- Typography ----------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.005em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.25rem, 4.6vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
h4 { font-size: 1.02rem; font-family: var(--sans); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }

.serif-italic { font-style: italic; font-weight: 400; color: var(--sage-deep); }

p { margin: 0 0 1rem; }
.lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 36rem; }
.lead-soft { font-size: 1.02rem; color: var(--ink-soft); margin-bottom: 1.25rem; }

.eyebrow, .section-eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}
.eyebrow::before, .section-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--sage); display: inline-block;
}
.section-eyebrow.on-dark { color: var(--lavender-deep); }
.section-eyebrow.on-dark::before { background: var(--lavender-deep); }

.section-title { max-width: 22ch; }
.section-intro { color: var(--ink-soft); max-width: 56ch; font-size: 1.05rem; }

.subhead {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 1.75rem 0 .75rem;
}

.muted { color: var(--ink-mute); }
.small { font-size: .9rem; }
.xsmall { font-size: .8rem; }

/* ----------- Layout primitives ----------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.25rem);
}
.container.narrow { max-width: var(--container-narrow); }

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  position: relative;
}
.section-cream  { background: var(--cream); }
.section-sand   { background: var(--sand); }
.section-taupe  { background: var(--taupe); }
.section-lavender {
  background: linear-gradient(135deg, #ece2f1 0%, #d8c9e2 100%);
  color: var(--ink);
}

.section-head { margin-bottom: 3rem; max-width: 60ch; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-eyebrow { justify-content: center; }
.section-head.center .section-title { margin-left: auto; margin-right: auto; }

/* ----------- Buttons ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  text-decoration: none;
}
.btn-primary {
  background: var(--sage);
  color: #fdfaf3;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 24px -12px rgba(106,122,94,.55);
}
.btn-primary:hover { background: var(--sage-deep); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--taupe-deep);
}
.btn-ghost:hover { background: var(--cream-2); color: var(--sage-deep); }
.btn-block { width: 100%; }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 24px -12px rgba(37, 211, 102, .55);
}
.btn-whatsapp:hover { background: #1ebe5d; color: #fff; transform: translateY(-1px); }
.btn-lavender {
  background: var(--lavender);
  color: #fdfaf3;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 24px -12px rgba(122, 106, 142, .55);
}
.btn-lavender:hover { background: var(--lavender-deep); color: #fff; transform: translateY(-1px); }


/* ----------- Header / Nav ----------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 236, .85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(184, 170, 142, .25);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .9rem;
  padding-bottom: .9rem;
  gap: 1rem;
}
.brand-tag { display: inline-block; }
@media (max-width: 1400px) {
  .site-header .brand-tag { display: none; }
}
@media (max-width: 1180px) {
  .nav-list { gap: 0; }
}
@media (max-width: 1050px) and (min-width: 901px) {
  .nav-list a { padding: .45rem .55rem; font-size: .82rem; }
  .nav-list .nav-cta { padding: .5rem .85rem; }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--sage-deep);
}
.brand-mark { width: 42px; height: 42px; flex: 0 0 42px; }
.dynamic-brand-mark {
  width: 62px;
  height: 52px;
  flex: 0 0 62px;
  color: var(--sage-deep);
  transition: color .35s var(--ease), transform .35s var(--ease), opacity .25s var(--ease);
}
.dynamic-brand-mark.is-changing { opacity: .45; transform: translateY(-1px) scale(.96); }
.site-header[data-logo="main"] .dynamic-brand-mark { color: var(--sage-deep); }
.site-header[data-logo="kbt"] .dynamic-brand-mark { color: var(--sage-deep); }
.site-header[data-logo="children"] .dynamic-brand-mark { color: var(--lavender-deep); }
.site-header[data-logo="paar"] .dynamic-brand-mark { color: #2f6f73; }
.nav-list a.active {
  background: rgba(250, 245, 236, .76);
  color: var(--sage-deep);
}
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.15; white-space: nowrap; }
.brand-name { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); letter-spacing: .005em; white-space: nowrap; }
.brand-tag  { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }

.site-nav { display: flex; align-items: center; }
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: .25rem;
  align-items: center;
}
.nav-list a {
  display: inline-block;
  padding: .5rem .7rem;
  font-size: .88rem;
  white-space: nowrap;
  color: var(--ink);
  border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
@media (min-width: 1180px) {
  .nav-list a { padding: .55rem .9rem; font-size: .92rem; }
}
.nav-list a:hover { background: rgba(138, 155, 124, .12); color: var(--sage-deep); }
.nav-list .nav-cta {
  background: var(--sage);
  color: #fdfaf3;
  padding: .55rem 1.1rem;
  margin-left: .5rem;
}
.nav-list .nav-cta:hover { background: var(--sage-deep); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 10px 8px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.nav-toggle-bar { display: block; height: 1.5px; background: var(--ink); border-radius: 1px; transition: transform .25s var(--ease), opacity .25s var(--ease); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .5rem;
    gap: 0;
    box-shadow: 0 20px 40px -20px rgba(0,0,0,.18);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav-list.open { opacity: 1; transform: translateY(.5rem); pointer-events: auto; }
  .nav-list a { padding: .75rem 1rem; border-radius: 8px; }
  .nav-list .nav-cta { margin: .35rem 0 0; text-align: center; }
}

/* ----------- Hero ----------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(3.25rem, 6vw, 5.5rem);
  background:
    radial-gradient(ellipse at 80% 10%, rgba(255, 244, 220, .9), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(216, 205, 184, .6), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin-top: .25rem; }
.hero-quote {
  margin: 1.5rem 0 1.75rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--sage);
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(196,210,187,.18), transparent 70%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--sage-deep);
  max-width: 36rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
}
.hero-credentials {
  font-size: .92rem;
  color: var(--ink-soft);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  max-width: 38rem;
}
.hero-credentials strong { color: var(--ink); font-weight: 600; }

.hero-art {
  position: relative;
  aspect-ratio: 480 / 560;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #f7eedd 0%, #ead9bd 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 30px 60px -30px rgba(120, 100, 70, .35);
}
.art-svg { width: 100%; height: 100%; display: block; }
.image-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250,245,236,0) 52%, rgba(250,245,236,.16) 100%),
    radial-gradient(ellipse at 70% 18%, rgba(255,255,255,.24), transparent 36%);
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: 1px;
  height: 36px;
  overflow: hidden;
}
.hero-scroll-line {
  display: block;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--taupe-deep));
  animation: scrollHint 2.6s var(--ease) infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(0); }
  100% { transform: translateY(120%); }
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; aspect-ratio: 4 / 3; }
}

/* ----------- Practice snapshot ----------- */
.practice-snapshot {
  position: relative;
  z-index: 2;
  margin-top: -1.75rem;
  padding: 0 0 2.75rem;
}
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.snapshot-grid > div {
  min-height: 112px;
  padding: 1.15rem 1.1rem;
  background: rgba(250, 245, 236, .82);
  border: 1px solid rgba(184, 170, 142, .32);
  border-radius: 18px;
  box-shadow: 0 22px 44px -34px rgba(90, 75, 50, .28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.snapshot-label {
  display: block;
  margin-bottom: .35rem;
  color: var(--ink-mute);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.snapshot-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--sage-deep);
}
.snapshot-grid span:not(.snapshot-label) {
  display: block;
  margin-top: .3rem;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.45;
}
@media (max-width: 880px) {
  .practice-snapshot { margin-top: 0; padding-top: 1.25rem; }
  .snapshot-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) { .snapshot-grid { grid-template-columns: 1fr; } }

/* ----------- Prose / paragraphs ----------- */
.prose p { color: var(--ink-soft); max-width: 64ch; }
.prose p:last-child { margin-bottom: 0; }

/* pull quote — unified format (references the Über mich quote) */
.pull-quote {
  margin: 2.5rem 0 0;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--sage);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--sage-deep);
  background: linear-gradient(90deg, rgba(196,210,187,.18), transparent 70%);
  border-radius: 4px;
}
.pull-quote.small { font-size: 1.1rem; }
.section-lavender .pull-quote {
  border-left-color: var(--lavender-deep);
  color: var(--lavender-deep);
  background: linear-gradient(90deg, rgba(217,204,228,.6), transparent 70%);
}

.wide-image {
  margin: 3rem 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(184, 170, 142, .28);
  box-shadow: 0 28px 58px -36px rgba(90, 75, 50, .32);
}
.wide-image img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

/* ----------- Two-col layouts ----------- */
.two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.two-col.reverse { grid-template-columns: 1.15fr .85fr; }
@media (max-width: 880px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .two-col.reverse .duo-art { order: -1; }
}

/* portrait frame */
.portrait-col { position: relative; }
.portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand-deep);
  box-shadow:
    0 1px 0 rgba(255,255,255,.55) inset,
    0 30px 60px -34px rgba(90, 75, 50, .35);
}
.portrait-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(.95) contrast(.98);
}
.portrait-frame::after {
  /* warm tint overlay */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(250,245,236,0) 60%, rgba(216,205,184,.18) 100%);
  pointer-events: none;
}
.portrait-tag {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(250, 245, 236, .92);
  color: var(--ink);
  padding: .45rem .85rem;
  border-radius: 999px;
  font-size: .82rem;
  letter-spacing: .03em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.portrait-deco { width: 200px; margin: 1rem auto 0; display: block; }

/* check list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem 1.5rem;
}
.check-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .96rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 3px rgba(138, 155, 124, .18);
}
@media (max-width: 600px) { .check-list { grid-template-columns: 1fr; } }

/* ----------- Cards (KBT) ----------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.6rem 1.55rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--taupe-deep);
  box-shadow: 0 24px 40px -24px rgba(90, 75, 50, .25);
}
.card h3 { margin-top: .5rem; margin-bottom: .55rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--mint);
  color: var(--sage-deep);
  display: grid; place-items: center;
}
.card-icon svg { width: 26px; height: 26px; }
.card-highlight {
  background: linear-gradient(155deg, #efe7d6 0%, #e3d6bb 100%);
  border-color: rgba(140, 120, 84, .28);
}
.card-highlight .card-icon { background: var(--lavender-soft); color: var(--lavender-deep); }
.card-quote {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(0,0,0,.1);
  font-family: var(--serif);
  font-style: italic;
  color: var(--lavender-deep);
}
@media (max-width: 880px) { .card-grid { grid-template-columns: 1fr; } }

/* ----------- KBT section cards ----------- */
#psychotherapie-kbt .section-head { margin-bottom: 2rem; }

.kbt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
.kbt-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem 1.7rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.kbt-card:hover {
  transform: translateY(-3px);
  border-color: var(--taupe-deep);
  box-shadow: 0 24px 40px -24px rgba(90, 75, 50, .25);
}
.kbt-card-accent {
  background: linear-gradient(155deg, #efe7d6 0%, #e3d6bb 100%);
  border-color: rgba(140, 120, 84, .28);
}
.kbt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: .85rem;
}
.kbt-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.kbt-eyebrow-lavender { color: var(--lavender-deep); }
.kbt-title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 .8rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(184, 170, 142, .35);
}
.kbt-card p {
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.7;
  margin: 0;
}
.kbt-supervision {
  margin-top: 1.25rem;
  background: rgba(217, 204, 228, .28);
  border-color: rgba(122, 106, 142, .25);
}
.kbt-supervision .kbt-title { border-bottom-color: rgba(122, 106, 142, .25); }

@media (max-width: 760px) {
  .kbt-grid { grid-template-columns: 1fr; gap: 1rem; }
  .kbt-card { padding: 1.5rem 1.3rem 1.3rem; }
  .kbt-supervision { margin-top: 1rem; }
}

.aside-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(217, 204, 228, .35);
  border-left: 2px solid var(--lavender);
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: .94rem;
  max-width: 70ch;
}
.aside-note em { color: var(--lavender-deep); font-style: normal; font-weight: 600; }
.aside-note.compact {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .45rem .8rem;
  align-items: baseline;
  border-radius: 999px;
  padding: .85rem 1.15rem;
  background: rgba(217, 204, 228, .28);
}
.aside-note.compact strong {
  color: var(--lavender-deep);
  font-weight: 600;
}

/* ----------- Focus grid (Schwerpunkte) ----------- */
.focus-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}
.focus-grid li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 1.3rem 1.4rem 1.3rem 1.65rem;
  background: rgba(250, 245, 236, .82);
  border: 1px solid rgba(184, 170, 142, .35);
  border-radius: var(--radius);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  overflow: hidden;
}
.focus-grid li::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--sage);
}
.focus-grid li:hover {
  background: var(--cream);
  transform: translateY(-2px);
  border-color: var(--taupe-deep);
  box-shadow: 0 18px 32px -22px rgba(90, 75, 50, .25);
}
.focus-tile-sage::before { background: var(--sage); }
.focus-tile-lavender::before { background: var(--lavender); }
/* legacy dot styles kept for backwards compatibility */
.dot { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 10px; display: none; }
.dot-sage { background: var(--sage); }
.dot-lavender { background: var(--lavender); }
@media (max-width: 880px) { .focus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .focus-grid { grid-template-columns: 1fr; } }

/* ----------- Steps (Ablauf) ----------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: rgba(246, 239, 228, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.step-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--lavender-deep);
  letter-spacing: .04em;
  margin-bottom: .75rem;
}
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--ink-soft); font-size: .98rem; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.info-card {
  padding: 1.25rem 1.25rem 1rem;
  background: rgba(236, 225, 203, .78);
  border-radius: var(--radius);
  border: 1px solid rgba(184, 170, 142, .35);
}
.info-card h4 { color: var(--sage-deep); margin-bottom: .35rem; }
.info-card p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.info-card-soft { background: rgba(217, 204, 228, .45); border-color: rgba(122, 106, 142, .25); }
.info-card-soft h4 { color: var(--lavender-deep); }
@media (max-width: 880px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .info-grid { grid-template-columns: 1fr; } }

/* ----------- Paarberatung ----------- */
.section-lavender .section-title { color: var(--lavender-deep); }
.section-lavender .prose p { color: rgba(51, 53, 47, .8); }
.duo-art {
  aspect-ratio: 360 / 420;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.35);
  box-shadow: 0 30px 60px -30px rgba(122, 106, 142, .35);
  position: relative;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.pill-list li {
  padding: .4rem .9rem;
  background: rgba(253, 250, 243, .55);
  border: 1px solid rgba(122, 106, 142, .25);
  border-radius: 999px;
  font-size: .88rem;
  color: var(--ink);
}

/* ----------- Supervision / duo cards ----------- */
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.duo-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}
.duo-card h3 { color: var(--sage-deep); }
.duo-card p { color: var(--ink-soft); margin: 0; }
@media (max-width: 760px) { .duo-grid { grid-template-columns: 1fr; } }

/* ----------- Kontakt ----------- */
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}
.contact-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}
.contact-card h3 { margin-bottom: .85rem; }
.contact-card address { font-style: normal; color: var(--ink-soft); margin-bottom: 1rem; }
.contact-card .btn {
  padding: .65rem 1.1rem;
  font-size: .88rem;
}
.contact-card .btn + .btn { margin-top: .55rem; }
.contact-card .btn:last-of-type { margin-bottom: 1.75rem; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: .65rem;
}
.contact-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: .65rem;
}
.contact-list li:first-child { border-top: none; padding-top: 0; }
.contact-label {
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute);
}

.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: grid;
  gap: 1rem;
}
.form-intro {
  background: rgba(217, 204, 228, .35);
  border-radius: 10px;
  padding: .85rem 1rem;
  font-size: .9rem;
  color: var(--ink-soft);
  margin: 0;
}
.field { display: grid; gap: .35rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label, .field legend {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: .75rem .9rem;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: .98rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(138, 155, 124, .15);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.field.inline, label.inline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .92rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
  margin-right: 1rem;
}
fieldset.field { border: none; padding: 0; margin: 0; }
fieldset.field legend { margin-bottom: .4rem; }
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--ink-soft);
}
.checkbox input { margin-top: .25rem; }
.form-status {
  font-size: .92rem;
  color: var(--sage-deep);
  margin: 0;
  min-height: 1.4em;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* ----------- Footer ----------- */
.site-footer {
  background: #2c2e29;
  color: #cfc8b8;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  margin-top: 0;
}
.site-footer .brand { color: #d8cdb8; text-decoration: none; }
.site-footer .brand:hover,
.site-footer .brand:hover .brand-name,
.site-footer .brand:hover .brand-tag { color: inherit; }
.site-footer .brand-name { color: #f3ecdc; }
.site-footer .brand-tag { color: #8c8676; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.site-footer h4 { color: #d8cdb8; margin-bottom: .8rem; }
.site-footer p { color: #aea692; font-size: .92rem; line-height: 1.7; }
.site-footer a { color: #c4d2bb; }
.site-footer a:hover { color: #e0d2b6; }
.foot-list { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: .35rem; font-size: .92rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ----------- Reveal animation ----------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ----------- Cookie banner ----------- */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(250, 245, 236, .97);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.28);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  animation: cookieBannerIn .45s var(--ease) both;
}
@keyframes cookieBannerIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.cookie-banner-text { min-width: 0; }
.cookie-banner-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 .3rem;
}
.cookie-banner p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.cookie-banner-link {
  color: var(--sage-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-link:hover { color: var(--lavender-deep); }
.cookie-banner-btn {
  flex-shrink: 0;
  min-height: 44px;
  padding: .7rem 1.3rem;
  font-size: .9rem;
}
@media (max-width: 640px) {
  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 1.1rem 1.15rem 1.2rem;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: .85rem;
  }
  .cookie-banner-btn { width: 100%; }
}

/* ----------- Legal pages ----------- */
.legal-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.legal-block:last-of-type { border-bottom: none; }
.legal-block h2 {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1rem;
}
.legal-block h3 {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 1.5rem 0 .6rem;
}
.legal-block address {
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.legal-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .45rem;
}
.legal-block ul li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.6;
}
.legal-block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .65em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
}
.legal-contact {
  display: grid;
  gap: 0;
}
.legal-contact li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: .75rem;
  align-items: baseline;
  padding: .55rem 0;
  border-top: 1px solid var(--line);
}
.legal-contact li::before { display: none; }
.legal-contact li:first-child { border-top: none; }
.legal-label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.legal-page h1 { margin-bottom: 2rem; }
.legal-page h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 2rem;
}
.legal-content h2 {
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2.2rem;
  color: var(--sage-deep);
}
.legal-content a { word-break: break-word; }
.legal-nav { display: flex; }
@media (max-width: 900px) {
  .legal-nav { display: flex; position: static; background: transparent; border: 0; box-shadow: none; padding: 0; }
}

/* ----------- Mobile refinements ----------- */
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: clamp(3rem, 8vw, 4.5rem) 0; }
  .section-head { margin-bottom: 2rem; }
  .hero { padding: 2.5rem 0 2.5rem; }
  .hero-actions { gap: .6rem; }
  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
    padding: .8rem 1.1rem;
    font-size: .9rem;
  }
  .hero-credentials { font-size: .88rem; line-height: 1.55; }
  .nav-list a { min-height: 44px; display: flex; align-items: center; }
  .btn { min-height: 44px; }
  .focus-grid li {
    font-size: 1.04rem;
    min-height: 80px;
    padding: 1.1rem 1.2rem 1.1rem 1.5rem;
  }
  .pull-quote, .hero-quote {
    padding: 1rem 1.15rem;
    font-size: 1.02rem;
  }
  .card-wide { padding: 1.5rem 1.25rem; }
  .card-supervision { padding: 1.2rem 1.25rem; }
  .step { padding: 1.4rem 1.25rem; }
  .contact-card, .contact-form { padding: 1.5rem 1.25rem; }
  .contact-card .btn { padding: .7rem 1rem; font-size: .9rem; }
  .info-card { padding: 1.1rem 1.1rem .9rem; }
  .duo-card { padding: 1.5rem 1.25rem; }
  .snapshot-grid > div { padding: 1rem; min-height: 0; }
  .snapshot-grid strong { font-size: 1.15rem; }
  .footer-grid { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .focus-grid li { font-size: 1rem; }
  .check-list { gap: .4rem 0; }
  .pill-list li { font-size: .82rem; padding: .35rem .75rem; }
}
