/* =========================================================
   Coach & Care – Sabine Gebert
   Achtsames, warm-natürliches Design für Hotellerie & Gastronomie
   ========================================================= */

:root {
  /* Farben – ruhig, natürlich, gastfreundlich */
  --bg:        #FBF9F5;   /* warmes Creme */
  --bg-alt:    #F2EDE3;   /* sanfter Sand */
  --surface:   #FFFFFF;
  --ink:       #2C2A26;   /* Espresso, fast schwarz */
  --ink-soft:  #5E584E;   /* gedämpftes Braun-Grau */
  --sage:      #8A9A7B;   /* Salbeigrün – Achtsamkeit */
  --sage-deep: #5F6E52;
  --sage-tint: #E7ECE0;
  --gold:      #C29A63;   /* warmes Ocker – Gastlichkeit */
  --gold-deep: #A87F49;
  --line:      rgba(44, 42, 38, .10);
  --shadow:    0 18px 50px -20px rgba(44, 42, 38, .28);
  --shadow-sm: 0 8px 24px -14px rgba(44, 42, 38, .30);

  --wrap: 1160px;
  --radius: 18px;
  --radius-lg: 28px;

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: .2px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { width: min(var(--wrap), 90vw); margin-inline: auto; }

/* ---------- Typografie ---------- */
h1, h2, h3 { font-family: var(--ff-display); font-weight: 500; line-height: 1.1; letter-spacing: .3px; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
p  { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .74rem;
  font-weight: 500;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.lead { font-size: 1.18rem; color: var(--ink-soft); font-weight: 300; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
}
.btn-primary { background: var(--sage-deep); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -14px rgba(95,110,82,.7); background: #55643f; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--gold); color: var(--gold-deep); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 22px 0;
  transition: padding .4s var(--ease), background .4s, box-shadow .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(251, 249, 245, .88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .name { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 600; letter-spacing: .5px; }
.brand .name b { color: var(--gold-deep); font-weight: 600; }
.brand .sub { font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { font-size: .85rem; font-weight: 400; position: relative; color: var(--ink); }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.nav-links a:not(.btn):hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--gold-deep); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 30px; height: 22px; position: relative; }
.nav-toggle span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: .35s var(--ease); }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ---------- Sektionen ---------- */
section { position: relative; }
.section { padding: clamp(70px, 11vw, 140px) 0; }
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 18px 0 20px; }
.bg-alt { background: var(--bg-alt); }
.bg-sage { background: var(--sage-deep); color: #F4F1EA; }
.bg-sage h2, .bg-sage h3 { color: #fff; }
.bg-sage p { color: rgba(244, 241, 234, .8); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 0 80px;
}
.hero-inner { max-width: 860px; position: relative; z-index: 2; }
.hero h1 { margin: 26px 0 24px; }
.hero h1 .accent { font-style: italic; color: var(--gold-deep); }
.hero .lead { max-width: 560px; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-meta { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 28px; }
.hero-meta div { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--ink-soft); }
.hero-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }

/* schwebende, "atmende" Farbverläufe */
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; z-index: 1; pointer-events: none; }
.orb-1 { width: 460px; height: 460px; background: radial-gradient(circle, #cfe0c0, transparent 70%); top: -120px; right: -80px; animation: float1 18s ease-in-out infinite; }
.orb-2 { width: 380px; height: 380px; background: radial-gradient(circle, #ecd9b6, transparent 70%); bottom: -120px; left: -60px; animation: float2 22s ease-in-out infinite; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #e0cfc2, transparent 70%); top: 40%; left: 55%; animation: float1 26s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(-30px,40px) scale(1.08);} }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(40px,-30px) scale(1.12);} }

/* ---------- Karten-Grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card .ic {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: var(--sage-tint); color: var(--sage-deep);
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: .96rem; }
.card .tag { position: absolute; top: 20px; right: 20px; font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; }

/* Problem-/Themen-Karten mit Ziffer */
.theme-card { padding-top: 34px; }
.theme-card .num { font-family: var(--ff-display); font-size: 2.6rem; color: var(--gold); line-height: 1; margin-bottom: 14px; display: block; }
.theme-card .frage { font-style: italic; color: var(--sage-deep); font-family: var(--ff-display); font-size: 1.1rem; margin-bottom: 10px; }

/* ---------- Split (Text + Bild/Panel) ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.panel {
  border-radius: var(--radius-lg);
  min-height: 440px;
  background: linear-gradient(150deg, var(--sage) 0%, var(--sage-deep) 100%);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
  display: grid; place-items: center;
}
.panel.gold { background: linear-gradient(150deg, #d3ab72 0%, var(--gold-deep) 100%); }
.panel .quote { color: #fff; font-family: var(--ff-display); font-size: 1.9rem; line-height: 1.35; padding: 44px; text-align: center; font-style: italic; }
.panel .badge {
  position: absolute; bottom: 24px; right: 24px;
  background: rgba(255,255,255,.16); backdrop-filter: blur(6px);
  color: #fff; padding: 10px 18px; border-radius: 100px; font-size: .8rem; letter-spacing: .5px;
}
.panel.photo { background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding: 34px; }
/* Verlauf nur am unteren Rand – das Hauptmotiv bleibt frei */
.panel.photo::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(24,22,19,.9) 0%, rgba(24,22,19,.4) 28%, rgba(24,22,19,0) 56%); }
.panel.photo .badge { position: static; z-index: 2; order: 1; background: transparent; backdrop-filter: none; padding: 0; margin: 0 0 9px; color: #ecd9b6; letter-spacing: 2px; text-transform: uppercase; font-size: .7rem; }
.panel.photo .quote { position: static; z-index: 2; order: 2; text-align: left; padding: 0; margin: 0; font-size: 1.25rem; line-height: 1.35; max-width: 94%; }

/* ---------- Atmender Kreis (Achtsamkeit) ---------- */
.breathe { display: grid; place-items: center; gap: 26px; text-align: center; }
.breathe-circle {
  width: 190px; height: 190px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.9), rgba(255,255,255,.15));
  display: grid; place-items: center;
  color: var(--sage-deep); font-family: var(--ff-display); font-size: 1.4rem; font-style: italic;
  animation: breathe 8s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255,255,255,.4);
}
.bg-sage .breathe-circle { color: var(--sage-deep); }
@keyframes breathe {
  0%, 100% { transform: scale(.82); box-shadow: 0 0 0 0 rgba(255,255,255,.35); }
  50% { transform: scale(1.1); box-shadow: 0 0 0 40px rgba(255,255,255,0); }
}

/* ---------- Ablauf / Schritte ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 20px; }
.step .n {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold-deep);
  display: grid; place-items: center; font-family: var(--ff-display); font-size: 1.3rem;
  margin-bottom: 18px; background: var(--surface);
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { font-size: .92rem; }

/* ---------- Preis-Pakete ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 40px 32px;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.price:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.price.featured { border-color: var(--gold); box-shadow: var(--shadow); position: relative; }
.price.featured::before {
  content: "Beliebt"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; padding: 5px 18px; border-radius: 100px;
  font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
}
.price .kicker { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--sage-deep); font-weight: 500; }
.price h3 { margin: 8px 0 6px; }
.price .desc { font-size: .92rem; min-height: 48px; }
.price .amount { font-family: var(--ff-display); font-size: 2.7rem; color: var(--ink); margin: 20px 0 2px; }
.price .amount small { font-size: 1rem; color: var(--ink-soft); font-family: var(--ff-body); }
.price .unit { font-size: .82rem; color: var(--ink-soft); margin-bottom: 22px; }
.price ul { list-style: none; margin-bottom: 28px; display: grid; gap: 12px; }
.price li { font-size: .92rem; padding-left: 28px; position: relative; color: var(--ink-soft); }
.price li::before { content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 8px; border-left: 2px solid var(--sage); border-bottom: 2px solid var(--sage); transform: rotate(-45deg); }
.price .btn { margin-top: auto; justify-content: center; }
.price-note { text-align: center; font-size: .86rem; color: var(--ink-soft); margin-top: 34px; }

/* Format-Umschalter online / vor Ort */
.formats { display: inline-flex; gap: 8px; background: var(--bg-alt); padding: 6px; border-radius: 100px; margin-top: 20px; }
.formats span { padding: 8px 20px; border-radius: 100px; font-size: .85rem; }
.formats .on { background: var(--sage-deep); color: #fff; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line); padding: 6px 0;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 44px 22px 4px;
  font-family: var(--ff-display); font-size: 1.35rem; position: relative;
  transition: color .3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-body); font-weight: 300; font-size: 1.7rem; color: var(--gold-deep); transition: transform .35s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--gold-deep); }
.faq .answer { padding: 0 44px 22px 4px; font-size: 1rem; color: var(--ink-soft); }

/* ---------- CTA-Band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin: 18px auto 20px; max-width: 640px; }
.cta-band p { max-width: 560px; margin: 0 auto 34px; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .82rem; letter-spacing: .5px; margin-bottom: 8px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px;
  font-family: var(--ff-body); font-size: .95rem; background: var(--surface); color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px var(--sage-tint); }
.field textarea { min-height: 130px; resize: vertical; }
.contact-info { display: grid; gap: 22px; align-content: start; }
.contact-info .row { display: flex; gap: 16px; align-items: flex-start; }
.contact-info .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--sage-tint); color: var(--sage-deep); display: grid; place-items: center; flex: none; }
.contact-info .ic svg { width: 20px; height: 20px; }
.contact-info a:hover { color: var(--gold-deep); }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: 6px; }

/* ---------- Footer ---------- */
.site-footer { background: #211F1B; color: #C9C3B8; padding: 80px 0 30px; }
.site-footer a { color: #C9C3B8; }
.site-footer a:hover { color: var(--gold); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .name { font-family: var(--ff-display); font-size: 1.9rem; color: #fff; }
.footer-brand p { color: #9A9488; margin-top: 14px; max-width: 320px; font-size: .92rem; }
.footer-col h4 { font-family: var(--ff-body); font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 500; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { font-size: .92rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: .82rem; color: #827D72; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* ---------- Gerahmte Bilder / Porträt ---------- */
.img-frame { border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; margin: 0; }
.img-frame img { width: 100%; display: block; }
.portrait { margin: 0; }
.portrait img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); display: block; }
.portrait figcaption { margin-top: 16px; text-align: center; font-family: var(--ff-display); font-style: italic; font-size: 1.2rem; color: var(--sage-deep); }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery figure { margin: 0; }
.gallery .ph { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); }
.gallery .ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.gallery .ph.ph-contain { background: var(--bg-alt); }
.gallery .ph.ph-contain img { object-fit: contain; }
.gallery figure:hover .ph img { transform: scale(1.06); }
.gallery figcaption { margin-top: 10px; font-size: .85rem; color: var(--ink-soft); text-align: center; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
a.post-card { color: inherit; }
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.post-thumb { height: 150px; background: linear-gradient(150deg, var(--sage), var(--sage-deep)); position: relative; }
.post-thumb.gold { background: linear-gradient(150deg, #d3ab72, var(--gold-deep)); }
.post-thumb.sand { background: linear-gradient(150deg, #e0cfc2, #b98d6b); }
.post-thumb .cat { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); color: var(--ink); padding: 5px 12px; border-radius: 100px; font-size: .68rem; letter-spacing: 1px; text-transform: uppercase; }
.post-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-body h3 { font-size: 1.32rem; margin-bottom: 10px; line-height: 1.2; }
.post-body p { font-size: .92rem; flex: 1; }
.post-meta { display: flex; gap: 14px; font-size: .78rem; color: var(--ink-soft); margin-top: 16px; align-items: center; }
.read-more { margin-top: 14px; font-size: .85rem; color: var(--gold-deep); font-weight: 500; display: inline-flex; gap: 6px; align-items: center; }
.post-card.soon { opacity: .7; }
.post-card.soon .post-thumb::after { content: "Bald"; position: absolute; right: 14px; bottom: 14px; background: var(--ink); color: #fff; padding: 4px 12px; border-radius: 100px; font-size: .68rem; letter-spacing: 1px; }

.featured-post { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow); }
.featured-post .fp-visual { background: linear-gradient(150deg, var(--gold) 0%, var(--gold-deep) 100%); min-height: 340px; position: relative; display: grid; place-items: center; }
.featured-post .fp-visual .cat { position: absolute; top: 20px; left: 20px; background: rgba(255,255,255,.92); color: var(--ink); padding: 6px 14px; border-radius: 100px; font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; }
.featured-post .fp-visual .em { font-family: var(--ff-display); font-size: 4.5rem; color: rgba(255,255,255,.85); }
.fp-visual.photo { background-size: cover; background-position: center; }
.fp-visual.photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,42,38,.5), rgba(44,42,38,.05)); }
.fp-visual.photo .cat { z-index: 2; }
.featured-post .fp-body { padding: 46px 44px; display: flex; flex-direction: column; justify-content: center; }
.featured-post .fp-body .kicker { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; margin-bottom: 12px; }
.featured-post .fp-body h3 { font-size: 2.1rem; margin-bottom: 14px; }

/* Artikel-Text */
.article { max-width: 760px; margin-inline: auto; }
.article .meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: .85rem; color: var(--ink-soft); margin-bottom: 10px; }
.article .answer-box { background: var(--sage-tint); border-left: 4px solid var(--sage); border-radius: 0 12px 12px 0; padding: 20px 24px; margin: 30px 0; font-size: 1.06rem; color: var(--ink); }
.article h2 { font-size: 1.9rem; margin: 46px 0 16px; }
.article h3 { margin: 30px 0 10px; }
.article p { margin-bottom: 16px; font-size: 1.02rem; color: var(--ink-soft); }
.article ul { margin: 0 0 18px 0; padding-left: 22px; }
.article ul li { margin-bottom: 10px; color: var(--ink-soft); }
.article .cta-inline { background: var(--bg-alt); border-radius: var(--radius); padding: 30px 32px; margin: 40px 0 10px; text-align: center; }

@media (max-width: 940px) {
  .post-grid { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 80vw);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
    background: var(--bg); padding: 40px; box-shadow: -20px 0 60px -30px rgba(0,0,0,.4);
    transform: translateX(100%); transition: transform .45s var(--ease); z-index: 90;
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: block; z-index: 95; }
  .grid-3, .grid-2, .price-grid, .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 620px) {
  .steps { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .card { padding: 30px 26px; }
}

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