/* Schrift lokal gehostet (Inter, SIL Open Font License, siehe assets/fonts/LICENSE-OFL.txt) */
@font-face {
  font-family: 'Inter'; font-style: normal; font-display: swap; font-weight: 100 900;
  src: url('assets/fonts/inter-latin-ext-wght-normal.woff2') format('woff2-variations'), url('assets/fonts/inter-latin-ext-wght-normal.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-display: swap; font-weight: 100 900;
  src: url('assets/fonts/inter-latin-wght-normal.woff2') format('woff2-variations'), url('assets/fonts/inter-latin-wght-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   Nina Jiga · Heilpraktikerin & Gesundheitsmentorin
   Shared stylesheet — Corporate Design: Inter, Orange/Pink/Off-White
   ============================================================ */

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

:root {
  --orange: #FA4D05;
  --orange-hover: #DE4304;
  --orange-pale: #FFE6D6;
  --orange-pale-2: #FFF1E8;
  --pink: #FA98E5;
  --pink-pale: #FDE7FA;
  --pink-deep: #D9459B;
  --ink: #201712;
  --ink-mid: #5B534C;
  --ink-light: #948B83;
  --sand: #F2EAE1;
  --paper: #FAFAFA;
  --white: #FFFFFF;
  --line: rgba(32,23,18,0.09);
  --nav-h: 76px;
  --max-w: 1140px;
  --gutter: clamp(1.5rem, 5vw, 5rem);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 14px rgba(32,23,18,0.05);
  --shadow-md: 0 12px 40px rgba(32,23,18,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

/* ──────────── UTILITY ──────────── */
.inner { max-width: var(--max-w); margin: 0 auto; }
.accent { color: var(--orange); }
.accent-pink { color: var(--pink); }

/* ──────────── NAVIGATION ──────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250,250,250,0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
}

.nav-logo {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a:not(.nav-cta) {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-mid);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.25s;
}

.nav-links a:not(.nav-cta):hover { color: var(--orange); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a.is-active:not(.nav-cta) { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.02em !important;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.nav-cta:hover { background: var(--orange-hover); transform: translateY(-1px); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink);
}

.hamburger svg { display: block; }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--paper);
  padding: 2rem var(--gutter);
  border-bottom: 1px solid var(--line);
  z-index: 99;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}

.mobile-menu.open { display: flex; flex-direction: column; gap: 1.4rem; }
.mobile-menu a {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-mid);
  text-decoration: none;
}
.mobile-menu a.nav-cta { text-align: center; }

/* ──────────── BUTTONS ──────────── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: white;
  text-decoration: none;
  padding: 1rem 2.25rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
  border: none;
}

.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  padding: 1rem 2.25rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  transition: all 0.2s;
}

.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-pink {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  text-decoration: none;
  padding: 1rem 2.25rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
  border: none;
}
.btn-pink:hover { background: var(--pink-deep); color: white; transform: translateY(-1px); }

/* ──────────── HERO ──────────── */
#hero {
  min-height: 92vh;
  padding-top: calc(var(--nav-h) + 3rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  gap: 3rem;
  position: relative;
}

.hero-text { position: relative; z-index: 2; }

.eyebrow, .hero-eyebrow, .section-eyebrow {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow::before, .hero-eyebrow::before, .section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.hero-h1 {
  font-family: var(--font);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--orange);
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}

.hero-h1 em, .page-hero h1 em {
  font-style: normal;
  color: var(--pink);
}

.section-title em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-mid);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  height: 600px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-photo-wrap {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background: var(--orange-pale-2);
}

.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }

.hero-photo-wrap::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--pink-pale);
  z-index: -1;
}

.hero-badge {
  position: absolute;
  bottom: 1.75rem;
  right: -1.25rem;
  background: var(--orange);
  color: var(--white);
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-lg);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
  box-shadow: var(--shadow-md);
}

.hero-badge strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.15rem;
}

/* ──────────── SECTIONS GENERAL ──────────── */
section {
  padding: 6.5rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--orange);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

/* ──────────── ABOUT / INTRO ──────────── */
#intro .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.intro-quote {
  font-family: var(--font);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  padding-left: 1.5rem;
  border-left: 4px solid var(--pink);
  letter-spacing: -0.01em;
}

.intro-body {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.85;
}

.intro-body p + p { margin-top: 1.1rem; }
.intro-body strong { color: var(--ink); font-weight: 700; }

/* ──────────── FOKUS ──────────── */
#fokus { background: var(--white); max-width: 100%; padding-left: 0; padding-right: 0; }
#fokus .inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

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

.fokus-card { perspective: 1200px; cursor: pointer; }

.fokus-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.fokus-card.flipped .fokus-card-inner { transform: rotateY(180deg); }

.fokus-front {
  position: relative;
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.fokus-front::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.2s;
}

.fokus-card:hover .fokus-front { box-shadow: var(--shadow-md); }
.fokus-card:hover .fokus-front::before { opacity: 1; }

.fokus-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--pink-pale);
  transform: rotateY(180deg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  gap: 1rem;
  overflow: hidden;
}

.fokus-icon {
  width: 46px; height: 46px;
  background: var(--orange-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.fokus-front h3 {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.fokus-front p {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.7;
}

.fokus-hint {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0.85;
}

.fokus-back-label {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  flex-shrink: 0;
}

.fokus-back-placeholder {
  flex: 1;
  width: 100%;
  border: 1.5px dashed rgba(32,23,18,0.22);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(32,23,18,0.4);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fokus-back img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.zert-img-wrap img { pointer-events: none; -webkit-user-drag: none; -webkit-touch-callout: none; }

.fokus-back-close {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  flex-shrink: 0;
}

.zert-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0.5rem 0;
  border-radius: 8px;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}

.zert-img-wrap::after {
  content: 'nina-jiga.de · nina-jiga.de · nina-jiga.de · nina-jiga.de';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: rgba(32,23,18,0.13);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  word-break: break-all;
  padding: 1rem;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(250,77,5,0.025) 40px, rgba(250,77,5,0.025) 80px);
  pointer-events: none;
}

/* ──────────── ANGEBOTE ──────────── */
#angebote { background: var(--paper); max-width: 100%; padding-left: 0; padding-right: 0; }
#angebote .inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

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

.angebot-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
  text-decoration: none;
}

.angebot-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(250,77,5,0.3);
  transform: translateY(-4px);
}

.angebot-num {
  font-family: var(--font);
  font-size: 3rem;
  font-weight: 800;
  color: var(--pink-pale);
  line-height: 1;
}

.angebot-card h3 {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.angebot-card p {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.7;
  flex: 1;
}

.angebot-link {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.angebot-link::after { content: '→'; transition: transform 0.2s; }
.angebot-card:hover .angebot-link::after { transform: translateX(4px); }

/* ──────────── WANN BIN ICH WO / TERMINE ──────────── */
.wann-kacheln {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.wann-location {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.wann-location h4 {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.wann-location .wann-tag, .anfahrt .wann-tag, .preis-paket .wann-tag, .gutschein .wann-tag, .tag {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--orange-pale);
  color: var(--orange-hover);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}

.wann-location.pink .wann-tag { background: var(--pink-pale); color: var(--pink-deep); }

.wann-location p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  font-weight: 400;
  line-height: 1.65;
}

.booking-box {
  background: var(--paper);
  border: 1.5px solid rgba(250,77,5,0.3);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  text-align: center;
}

.booking-box h3 {
  font-family: var(--font);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.booking-box p {
  font-size: 0.92rem;
  color: var(--ink-mid);
  font-weight: 400;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
  max-width: 480px;
}

.booking-box .btn-primary { font-size: 0.95rem; padding: 1.1rem 2.75rem; }

@media (max-width: 640px) {
  .booking-box { padding: 1.75rem; }
}

/* ──────────── KONTAKT ──────────── */
#kontakt { background: var(--white); max-width: 100%; padding-left: 0; padding-right: 0; }

#kontakt .inner {
  max-width: var(--max-w);
  padding: 0 var(--gutter);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.kontakt-info p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.kontakt-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  margin-bottom: 0.85rem;
  transition: color 0.2s;
}

.kontakt-link:hover { color: var(--orange); }

.kontakt-link .icon {
  width: 38px; height: 38px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.kontakt-form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--line);
}

.kontakt-form h3 {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-hint {
  font-size: 0.78rem;
  color: var(--ink-light);
  margin-top: 1.25rem;
  line-height: 1.6;
}

.form-status {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { color: var(--orange-hover); }

/* ──────────── GENERIC PAGE HERO (Unterseiten) ──────────── */
.page-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4.5rem) var(--gutter) 3.5rem;
}
.page-hero h1 {
  font-family: var(--font);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--orange);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  max-width: 780px;
}
.page-hero p.lead {
  font-size: 1.05rem;
  color: var(--ink-mid);
  max-width: 620px;
  line-height: 1.75;
}
.breadcrumb {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.breadcrumb:hover { color: var(--orange); }

/* Content blocks used on Praxis/Online/Corporate pages */
.content-block { background: var(--white); max-width: 100%; padding-left: 0; padding-right: 0; }
.content-block.tint { background: var(--paper); }
.content-block .inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

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

/* Textspalte breit, Schlagwortspalte schmal */
.split.split-wide { grid-template-columns: 1.85fr 1fr; gap: 3rem; }

/* Kacheln nebeneinander auf gleiche Höhe ziehen */
.split.split-stretch { align-items: stretch; }

/* Schlagwörter untereinander */
.pill-row.stacked { flex-direction: column; align-items: flex-start; gap: 0.65rem; }

.check-list { list-style: none; margin-top: 1.5rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}
.check-list li > div { flex: 1; }
.check-list li > span { display: block; }
.check-list li strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--orange-pale);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23FA4D05' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 10.5l3 3 7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.step-num {
  font-weight: 800;
  font-size: 1rem;
  color: var(--orange);
  background: var(--orange-pale);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.step-card p { font-size: 0.88rem; color: var(--ink-mid); line-height: 1.65; }

.pill-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: var(--pink-pale);
  color: var(--pink-deep);
}
.pill.orange { background: var(--orange-pale); color: var(--orange-hover); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.stat-num { font-size: 2.4rem; font-weight: 800; color: var(--orange); letter-spacing: -0.02em; }
.stat-label { font-size: 0.85rem; color: var(--ink-mid); margin-top: 0.35rem; }

.quote-block {
  background: var(--pink);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-top: 3rem;
}
.quote-block p {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.quote-block span {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--pink-deep);
}

.faq-item { border-bottom: 1px solid var(--line); padding: 1.5rem 0; }
.faq-item h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.faq-item p { font-size: 0.92rem; color: var(--ink-mid); line-height: 1.7; }

.price-note {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-top: 3.5rem;
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.7;
}
.price-note strong { color: var(--ink); }

/* ──────────── LEGAL PAGES ──────────── */
.legal-inner { max-width: 720px; margin: 0 auto; padding: calc(var(--nav-h) + 3.5rem) var(--gutter) 6rem; }
.legal-inner h1 { font-family: var(--font); font-size: 2.3rem; font-weight: 800; color: var(--ink); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.legal-inner .legal-updated { font-size: 0.82rem; color: var(--ink-light); margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.legal-inner h2 { font-family: var(--font); font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-top: 2.5rem; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.legal-inner p, .legal-inner li { font-size: 0.95rem; font-weight: 400; color: var(--ink-mid); line-height: 1.8; }
.legal-inner p { margin-bottom: 1rem; }
.legal-inner ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal-inner li { margin-bottom: 0.4rem; }
.legal-inner a { color: var(--orange); text-decoration: none; }
.legal-inner a:hover { text-decoration: underline; }

/* ──────────── FOOTER ──────────── */
footer { background: var(--paper); border-top: 1px solid var(--line); padding: 3.5rem var(--gutter) 2.5rem; }

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.footer-logo {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 0.85rem; color: var(--ink-mid); margin-top: 0.9rem; line-height: 1.6; max-width: 280px; }

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.88rem; color: var(--ink-mid); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange-hover); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--ink-light); }
.footer-legal-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-legal-links a { font-size: 0.78rem; color: var(--ink-mid); text-decoration: none; }
.footer-legal-links a:hover { color: var(--orange-hover); }

/* ──────────── RESPONSIVE ──────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  #hero { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 3rem; text-align: center; gap: 2rem; min-height: auto; }
  .hero-eyebrow, .eyebrow { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-badge { right: 0; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 0.75rem; }
  .btn-primary, .btn-outline, .btn-pink { width: auto; min-width: 260px; max-width: 340px; text-align: center; }

  #intro .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .split, .split.split-wide { grid-template-columns: 1fr; gap: 2.5rem; }
  .pill-row.stacked { flex-direction: row; }

  .angebote-grid { grid-template-columns: repeat(2, 1fr); }
  #fokus .fokus-grid { grid-template-columns: repeat(2, 1fr); }

  .wann-kacheln { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; gap: 1.5rem; }
  #kontakt .inner { grid-template-columns: 1fr; gap: 2.5rem; }

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

@media (max-width: 600px) {
  :root { --gutter: 1.25rem; }
  section { padding: 4rem var(--gutter); }
  .page-hero { padding: calc(var(--nav-h) + 2.5rem) var(--gutter) 2.5rem; }

  #hero { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 3rem; gap: 2rem; }
  .hero-h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-badge { right: 0; bottom: 0.5rem; padding: 0.85rem 1.1rem; font-size: 0.75rem; }
  .hero-badge strong { font-size: 1.25rem; }

  .btn-primary, .btn-outline, .btn-pink { min-width: 0; width: 100%; max-width: 100%; text-align: center; padding: 1rem 1.5rem; }

  .angebote-grid { grid-template-columns: 1fr; }
  #fokus .fokus-grid { grid-template-columns: 1fr; }
  .fokus-card-inner { position: static; transform-style: flat; min-height: 0; }
  .fokus-front { position: static; height: auto; border-radius: var(--radius-lg); padding-bottom: 2rem; }
  .fokus-back { position: static; transform: none; display: none; border-radius: var(--radius-lg); }
  .fokus-card.flipped .fokus-card-inner { transform: none; }
  .fokus-card.flipped .fokus-front { display: none; }
  .fokus-card.flipped .fokus-back { display: flex; }

  .angebot-card { padding: 1.75rem; }
  .kontakt-form { padding: 1.5rem; }
  .step-grid { gap: 1rem; }
  .quote-block { padding: 2rem; }
  .quote-block p { font-size: 1.1rem; }

  .section-title { font-size: 1.9rem; }
  .mobile-menu { padding: 1.5rem var(--gutter); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .hero-h1 { font-size: 1.85rem; }
}

/* ──────────── ANIMATIONS ──────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.25s; }
.fade-up:nth-child(3) { animation-delay: 0.4s; }
.fade-up:nth-child(4) { animation-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; animation: none; }
}

/* ============================================================
   DYNAMIK-LAYER
   Bewegung, Scroll-Reveals, Micro-Interactions
   ============================================================ */

/* ──────────── SCROLL-REVEAL ──────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.7, 0.3, 1),
              transform 0.7s cubic-bezier(0.22, 0.7, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Karten kommen etwas markanter herein */
.angebot-card.reveal, .fokus-card.reveal, .step-card.reveal, .wann-location.reveal {
  transform: translateY(34px) scale(0.985);
}
.pill.reveal { transform: translateY(10px) scale(0.9); transition-duration: 0.45s; }
.angebot-card.reveal.is-visible, .fokus-card.reveal.is-visible, .step-card.reveal.is-visible,
.wann-location.reveal.is-visible, .pill.reveal.is-visible, .check-list li.reveal.is-visible { transform: none; }
.check-list li.reveal { transform: translateX(-14px); }

/* ──────────── LESEFORTSCHRITT ──────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 120;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.08s linear;
}

/* ──────────── NAVIGATION ──────────── */
nav {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease,
              height 0.3s ease,
              background 0.3s ease;
  will-change: transform;
}
nav.scrolled {
  height: 64px;
  background: rgba(250,250,250,0.94);
  box-shadow: 0 4px 24px rgba(32,23,18,0.07);
}
nav.nav-hidden { transform: translateY(-100%); }

.nav-logo { transition: transform 0.25s ease; }
.nav-logo:hover { transform: translateX(2px); }

.nav-links a:not(.nav-cta).is-active::after { width: 100%; }

body.menu-open { overflow: hidden; }

.mobile-menu.open a {
  opacity: 0;
  animation: fadeUp 0.4s ease forwards;
}
.mobile-menu.open a:nth-child(1) { animation-delay: 0.04s; }
.mobile-menu.open a:nth-child(2) { animation-delay: 0.08s; }
.mobile-menu.open a:nth-child(3) { animation-delay: 0.12s; }
.mobile-menu.open a:nth-child(4) { animation-delay: 0.16s; }
.mobile-menu.open a:nth-child(5) { animation-delay: 0.20s; }
.mobile-menu.open a:nth-child(6) { animation-delay: 0.24s; }

.hamburger svg line { transition: transform 0.25s ease; transform-origin: center; }
.hamburger[aria-expanded="true"] svg line:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger[aria-expanded="true"] svg line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] svg line:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ──────────── BUTTONS: GLANZ & DRUCK ──────────── */
.btn-primary:hover, .btn-pink:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline:hover { transform: translateY(-2px); border-color: var(--orange); color: var(--orange); }
.btn-primary:active, .btn-outline:active, .btn-pink:active, .nav-cta:active { transform: translateY(0) scale(0.98); }

/* ──────────── HERO: LEBENDIGER HINTERGRUND ──────────── */
.hero-image { z-index: 1; }
.hero-badge { animation: badgeIn 0.8s 0.6s cubic-bezier(0.2, 0.8, 0.3, 1) backwards; }
@keyframes badgeIn {
  from { opacity: 0; transform: translateY(18px) scale(0.9); }
  to   { opacity: 1; transform: none; }
}

/* ──────────── KARTEN-INTERAKTIONEN ──────────── */
.angebot-card {
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.angebot-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.angebot-num { transition: color 0.3s ease, transform 0.3s ease; }
.angebot-card:hover .angebot-num { color: var(--orange); transform: translateX(4px); }

.step-card {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(250,77,5,0.28);
}
.step-num { transition: transform 0.3s ease, background 0.3s ease; }
.step-card:hover .step-num { transform: rotate(-8deg) scale(1.1); background: var(--pink-pale); }

.wann-location {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
}
.wann-location:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(250,77,5,0.25);
}

.pill { transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease; cursor: default; }
.pill:hover { transform: translateY(-3px) scale(1.04); }

.kontakt-link .icon { transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease; }
.kontakt-link:hover .icon { transform: translateY(-2px) rotate(-6deg); background: var(--orange-pale); border-color: rgba(250,77,5,0.3); }

.fokus-card .fokus-front { transition: box-shadow 0.25s, transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1); }
.fokus-card:not(.flipped):hover .fokus-front { transform: translateY(-5px); }
.fokus-icon { transition: transform 0.3s ease, background 0.3s ease; }
.fokus-card:hover .fokus-icon { transform: scale(1.1) rotate(-6deg); background: var(--pink-pale); }

.booking-box {
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.booking-box:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.booking-box > * { position: relative; }

/* ──────────── FAQ ALS AKKORDEON ──────────── */
.faq-accordion { padding: 0; }
.faq-accordion h3 { margin: 0; }
.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 1.35rem 0;
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-align: left;
  line-height: 1.45;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: color 0.2s ease;
}
.faq-toggle:hover { color: var(--orange); }

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--orange-pale);
  transition: background 0.25s ease, transform 0.35s ease;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: translate(-50%, -50%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-accordion.open .faq-icon { background: var(--orange); transform: rotate(180deg); }
.faq-accordion.open .faq-icon::before,
.faq-accordion.open .faq-icon::after { background: var(--white); }
.faq-accordion.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; }
.faq-accordion.open .faq-answer { grid-template-rows: 1fr; opacity: 1; }
.faq-accordion.open .faq-answer > div { padding-bottom: 1.4rem; }
/* Fallback für Browser ohne Grid-Row-Animation */
@supports not (grid-template-rows: 0fr) {
  .faq-answer { display: block; max-height: 0; overflow: hidden; }
  .faq-accordion.open .faq-answer { max-height: 60vh; }
}

/* ──────────── NACH OBEN ──────────── */
.to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 90;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--orange);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.2s, color 0.2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ──────────── STICKY CTA (mobil) ──────────── */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: none;
  gap: 0.6rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(250,250,250,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
}
body.cta-visible .sticky-cta { transform: none; }
.sticky-cta-main {
  flex: 1;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.85rem 1rem;
  border-radius: 100px;
}
.sticky-cta-icon {
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  text-decoration: none;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .sticky-cta { display: flex; }
  .to-top { bottom: 5.25rem; right: 1rem; }
  body.cta-visible footer { padding-bottom: 6rem; }
}

/* ──────────── SEITENEINSTIEG ──────────── */
.page-hero h1, .page-hero p.lead, .page-hero .breadcrumb, .page-hero .btn-primary {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.page-hero .breadcrumb { animation-delay: 0.05s; }
.page-hero h1 { animation-delay: 0.15s; }
.page-hero p.lead { animation-delay: 0.28s; }
.page-hero .btn-primary { animation-delay: 0.4s; }

/* ──────────── FOKUS-KARTEN: HINWEIS PULSIERT ──────────── */
.fokus-hint { transition: opacity 0.25s ease, transform 0.25s ease; }
.fokus-card:hover .fokus-hint { opacity: 1; transform: translateX(3px); }

/* ──────────── REDUCED MOTION ──────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  nav.nav-hidden { transform: none; }
  .page-hero h1, .page-hero p.lead, .page-hero .breadcrumb, .page-hero .btn-primary,
  .mobile-menu.open a { opacity: 1; }
}

.hero-photo-wrap { will-change: transform; }

/* ──────────── PRAXISADRESSE ──────────── */
.wann-adresse {
  margin-bottom: 0.85rem;
  color: var(--ink-mid);
  line-height: 1.6;
}
.wann-adresse strong { color: var(--ink); font-weight: 700; }

.footer-adresse {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

.wann-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--orange);
  text-decoration: none;
}
.wann-link::after { content: '→'; transition: transform 0.2s ease; }
.wann-link:hover::after { transform: translateX(4px); }

/* ──────────── BILDLOGO ──────────── */
.nav-logo img {
  height: 22px;
  width: auto;
  display: block;
}
nav.scrolled .nav-logo img { height: 20px; }

.footer-logo img {
  height: 46px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .nav-logo img { height: 19px; }
  .footer-logo img { height: 40px; }
}

/* ──────────── THEMEN-RASTER ──────────── */
.section-lead {
  color: var(--ink-mid);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 720px;
  margin-top: 1rem;
}

.themen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.thema-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
}
.content-block.tint .thema-card { background: var(--white); }

.thema-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.thema-icon {
  width: 48px; height: 48px;
  background: var(--orange-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}
.thema-card:nth-child(even) .thema-icon { background: var(--pink-pale); }
.thema-card:hover .thema-icon { transform: scale(1.08) rotate(-6deg); }

.thema-card h3 {
  font-family: var(--font);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 0.55rem;
}

.thema-card p {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .themen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .themen-grid { grid-template-columns: 1fr; gap: 1rem; }
  .thema-card { padding: 1.5rem; }
}

/* Standort-Kacheln: gleiche Höhe, Aktion bündig unten */
.wann-location { display: flex; flex-direction: column; }
.wann-location .wann-link { margin-top: auto; padding-top: 0.5rem; }


/* ──────────── HERO-PORTRÄT (freigestellt im Kreis) ──────────── */
.hero-image {
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-photo-wrap {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 50%;
  background: var(--sand);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-photo-wrap::before { content: none; }

.hero-photo-wrap picture {
  display: block;
  height: 100%;
  width: auto;
}

.hero-photo-wrap img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  transform: none;
}
.hero-photo-wrap:hover img { transform: none; }

/* Badge liegt leicht überlappend auf dem Kreis */
#hero .hero-badge {
  position: absolute;
  right: -1.25rem;
  bottom: 1.5rem;
  z-index: 2;
  margin: 0;
}

@media (max-width: 900px) {
  .hero-photo-wrap { width: min(100%, 380px); }
  #hero .hero-badge { right: 0; bottom: 1.5rem; }
}

@media (max-width: 600px) {
  .hero-photo-wrap { width: min(100%, 300px); }
  #hero .hero-badge { right: 0; bottom: 1rem; padding: 0.85rem 1.1rem; }
}

/* ──────────── LINIEN-ICONS ──────────── */
.thema-icon svg,
.fokus-icon svg,
.kontakt-link .icon svg {
  width: 26px;
  height: 26px;
  display: block;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Icons durchgehend in Orange – Pink (#FA98E5) hat auf den hellen
   Kachelflächen nur 1,7:1 Kontrast und wäre kaum zu erkennen.
   Die Abwechslung tragen die Kachelflächen (Pfirsich / Rosa). */

.fokus-icon svg { width: 24px; height: 24px; }

.kontakt-link .icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}
.kontakt-link:hover .icon svg { stroke: var(--orange-hover); }

/* Icon-Fläche kippt nicht mehr mit, das Icon selbst reicht */
.fokus-card:hover .fokus-icon { transform: none; background: var(--pink-pale); }
.thema-card:hover .thema-icon { transform: none; }

/* ──────────── ANFAHRT & PARKEN ──────────── */
.anfahrt {
  display: grid;
  /* Spalte 1 = Textbreite der ersten Kachel, Liste startet bündig mit der zweiten Kachel */
  grid-template-columns: calc((100% + 1rem) / 3 - 4rem) minmax(0, 1fr);
  column-gap: 5.5rem;
  row-gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}
.anfahrt h4 { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.anfahrt-list { display: grid; gap: 0; margin: 0; }
.anfahrt-list > div { padding: 1.1rem 0; border-top: 1px solid var(--line); }
.anfahrt-list > div:first-child { padding-top: 0; border-top: 0; }
.anfahrt-list > div:last-child { padding-bottom: 0; }
.anfahrt-list > div { display: grid; grid-template-columns: 6rem 1fr; gap: 1rem; }
.anfahrt-list dt { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); padding-top: 0.2rem; }
.anfahrt-list dd { margin: 0; font-size: 0.92rem; line-height: 1.65; color: var(--ink-mid); }
.anfahrt-list dd strong { color: var(--ink); }
/* Praxis-Seite: 2er-Raster (split, gap 4rem) */
.split + .anfahrt { grid-template-columns: calc(50% - 4rem) minmax(0, 1fr); column-gap: 8rem; }
@media (max-width: 960px) {
  .anfahrt, .split + .anfahrt { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 760px) {
  .anfahrt { padding: 1.5rem; }
  .anfahrt-list > div { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ──────────── PREISE ──────────── */
.preis-liste {
  margin-top: 2.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.preis-row {
  display: grid;
  grid-template-columns: 1fr 5rem 7.5rem;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--line);
}
.preis-row:last-child { border-bottom: 0; }
.preis-row h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 0 0 0.2rem; }
.preis-row p { font-size: 0.88rem; color: var(--ink-mid); margin: 0; line-height: 1.5; }
.preis-dauer { font-size: 0.85rem; color: var(--ink-light); text-align: right; white-space: nowrap; }
.preis-betrag { font-size: 1.15rem; font-weight: 800; color: var(--ink); text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.preis-paket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.5rem;
  padding: 2rem;
  background: var(--orange-pale-2);
  border: 1px solid rgba(250,77,5,0.2);
  border-radius: var(--radius-lg);
}
.preis-paket .wann-tag { display: inline-block; margin-bottom: 0.75rem; }
.preis-paket h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: 0 0 0.3rem; }
.preis-paket p { font-size: 0.92rem; color: var(--ink-mid); margin: 0; }
.preis-paket-betrag { text-align: right; flex-shrink: 0; }
.preis-paket-betrag strong { display: block; font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1.1; }
.preis-alt { font-size: 0.85rem; color: var(--ink-light); text-decoration: line-through; }
@media (max-width: 640px) {
  .preis-row { grid-template-columns: 1fr auto; padding: 1.1rem 1.25rem; row-gap: 0.25rem; }
  .preis-row > div { grid-column: 1 / -1; }
  .preis-dauer { text-align: left; }
  .preis-paket { flex-direction: column; align-items: flex-start; padding: 1.5rem; gap: 1rem; }
  .preis-paket-betrag { text-align: left; }
}

/* ──────────── GUTSCHEIN ──────────── */
.gutschein {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.75rem;
  background: var(--pink-pale);
  border: 1px solid rgba(217,69,155,0.2);
  border-radius: var(--radius-lg);
}
.gutschein h3 { font-size: 1.5rem; font-weight: 800; color: var(--ink); margin: 0 0 0.75rem; letter-spacing: -0.01em; }
.gutschein p { font-size: 0.98rem; color: var(--ink-mid); line-height: 1.75; margin: 0; max-width: 680px; }
.gutschein p strong { color: var(--ink); }
.gutschein-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.75rem 0 2.25rem; padding: 0; }
.gutschein-chips li { font-size: 0.85rem; font-weight: 600; color: var(--ink); background: var(--white); border: 1px solid rgba(217,69,155,0.25); border-radius: 100px; padding: 0.45rem 1rem; }
.gutschein-chips li.is-highlight { background: var(--pink); border-color: var(--pink); color: var(--ink); }
@media (max-width: 760px) { .gutschein { padding: 1.75rem; } }

/* ──────────── BUCHUNG: ZWEI WEGE ──────────── */
.tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  background: var(--orange-pale); color: var(--orange-hover);
  padding: 0.25rem 0.75rem; border-radius: 100px; margin-bottom: 1rem;
}
.tag.tag-pink { background: var(--white); color: var(--pink-deep); }
.booking-half .tag.tag-pink { background: var(--pink-pale); }
.booking-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  text-align: left;
  overflow: hidden;
}
.booking-half {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.75rem;
}
.booking-half + .booking-half { border-left: 1px solid rgba(250,77,5,0.2); }
.booking-split h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.booking-split .booking-half p { margin: 0 0 2rem; max-width: none; }
.booking-split .btn-primary, .booking-split .btn-outline, .booking-split .btn-pink { margin-top: auto; }
.booking-foot {
  grid-column: 1 / -1;
  margin: 0 !important;
  max-width: none !important;
  padding: 1.1rem 2.75rem;
  border-top: 1px solid rgba(250,77,5,0.2);
  font-size: 0.85rem !important;
  color: var(--ink-light) !important;
  text-align: center;
}
.booking-foot a { color: var(--orange); text-decoration: none; }
@media (max-width: 760px) {
  .booking-split { grid-template-columns: 1fr; }
  .booking-half { padding: 1.75rem; }
  .booking-half + .booking-half { border-left: 0; border-top: 1px solid rgba(250,77,5,0.2); }
  .booking-foot { padding: 1rem 1.75rem; }
}
