/* Isabell Florath — Stylesheet */

:root {
  --cream: #F7F1EA;
  --cream-soft: #F2E4DB;
  --card: #FDFAF6;
  --card-border: #EFDFD5;
  --card-border-warm: #E8D2C7;
  --ink: #3A2C28;
  --ink-soft: #5A4841;
  --ink-mute: #7E6C64;
  --ink-faint: #A08A82;
  --wine: #7A3446;
  --wine-light: #A9646F;
  --copper: #C99686;
  --rose: #E2B3A6;
  --mauve-1: #9A7684;
  --mauve-2: #7E5A6A;
  --mauve-3: #674656;
  --line: #EBDACF;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id], div[id] { scroll-margin-top: 104px; }

body {
  margin: 0;
  font-family: 'Jost', 'Century Gothic', 'Futura', 'Trebuchet MS', sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  font-size: 16px;
  line-height: 1.6;
}

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

a { color: var(--wine); text-decoration: none; }
a:hover { color: var(--wine-light); }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  margin: 0;
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
  line-height: 1.28;
}
p { margin: 0; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.narrow { max-width: 820px; margin: 0 auto; padding: 0 40px; }

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: #A9827C;
  font-weight: 600;
}

.rule { width: 48px; height: 1px; background: var(--copper); }

.lead { font-size: 18px; line-height: 1.8; color: var(--ink-soft); }
.body-text { font-size: 16.5px; line-height: 1.85; color: var(--ink-soft); }
.body-text + .body-text { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 40px;
  font-size: 15px;
  letter-spacing: 0.6px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--wine);
  color: #FAF4EE;
  box-shadow: 0 10px 24px -12px rgba(122,52,70,0.55);
  font-family: inherit;
  transition: background .2s ease, transform .2s ease;
}
.btn-primary:hover { background: #8C3D50; color: #FAF4EE; transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 40px;
  font-size: 15px;
  letter-spacing: 0.4px;
  font-weight: 500;
  background: transparent;
  border: 1px solid #DEC6BD;
  color: var(--ink);
  transition: border-color .2s ease;
}
.btn-secondary:hover { border-color: var(--copper); color: var(--ink); }

/* ---------- Icons ---------- */
.icon {
  width: 26px; height: 26px;
  stroke: var(--wine); fill: none;
  stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 32px 28px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,241,234,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 86px; gap: 24px;
}
.brand { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; letter-spacing: 3px; font-weight: 600; color: var(--ink);
}
.brand-sub {
  white-space: nowrap;
  font-size: 10.5px; letter-spacing: 1.6px; color: #A9827C;
  text-transform: uppercase; margin-top: 3px;
}
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { font-size: 14px; letter-spacing: 0.4px; color: #574540; white-space: nowrap; }
.site-nav a:hover { color: var(--wine); }
.site-nav a.nav-cta {
  padding: 11px 24px; border-radius: 40px;
  border: 1px solid var(--wine); color: var(--wine);
}
.site-nav a.nav-cta:hover { background: var(--wine); color: #FAF4EE; }

.nav-toggle {
  display: none;
  background: none; border: 1px solid #DEC6BD; border-radius: 8px;
  padding: 9px 11px; cursor: pointer; line-height: 0;
}

/* ---------- Hero (Startseite) ---------- */
.hero {
  position: relative;
  background: linear-gradient(170deg, #FAF4EE 0%, #F4E7DE 100%);
  overflow: hidden;
}
.hero-blob-a {
  position: absolute; top: 60px; right: 40px; width: 520px; height: 520px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 50% 45%, rgba(226,179,166,0.45), rgba(226,179,166,0) 68%);
}
.hero-blob-b {
  position: absolute; bottom: -230px; left: -130px; width: 480px; height: 480px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(169,100,111,0.16), rgba(169,100,111,0) 70%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 32px;
  align-items: end;
  min-height: 640px;
}
.hero-text { padding: 96px 0 110px; align-self: center; max-width: 640px; }
.hero h1 { font-size: 44px; line-height: 1.26; }
.hero h1 span { display: block; }
.hero h1 em { color: var(--wine); font-style: italic; }
.hero-actions { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero-note { margin-top: 26px; font-size: 14px; color: var(--ink-faint); }

.hero-figure { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.hero-rings {
  position: absolute; bottom: 150px; left: 50%; transform: translateX(-50%);
  width: 470px; height: 470px; pointer-events: none;
}
.hero-shadow {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  width: 330px; height: 64px; border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(122,52,70,0.22), rgba(122,52,70,0) 68%);
}
.hero-figure img { position: relative; height: 830px; width: auto; margin-bottom: 46px; }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-cream { background: var(--cream); }
.section-warm { background: var(--cream-soft); }
.section-mauve {
  background: linear-gradient(165deg, var(--mauve-1) 0%, var(--mauve-2) 45%, var(--mauve-3) 100%);
  color: #F7F1EA; position: relative; overflow: hidden;
}
.section-mauve h2, .section-mauve h3 { color: #FDF7F2; }
.section-mauve .eyebrow { color: #F2D2C8; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: 34px; }

/* Erkennen-Liste */
.recog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  max-width: 940px; margin: 0 auto;
}
.recog {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 10px; padding: 24px 26px;
}
.recog svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 3px; stroke: var(--copper); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.recog p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.recog-close {
  max-width: 640px; margin: 52px auto 0; text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 25px; line-height: 1.6; font-style: italic; color: var(--ink);
}

/* Zwei-Spalten mit Bild */
.split { display: grid; gap: 72px; align-items: center; }
.split-img-left { grid-template-columns: 0.82fr 1.18fr; }
.split-text-left { grid-template-columns: 1.12fr 0.88fr; }
.split-quote { grid-template-columns: 260px 1fr; gap: 60px; }
.portrait {
  width: 300px; height: 364px; object-fit: cover;
  border-radius: 150px 150px 12px 12px; border: 1px solid #E6CFC4;
  margin: 0 auto;
}

/* Zitatkarte */
.quote-card {
  background: var(--card); border: 1px solid var(--card-border-warm);
  border-radius: 12px; padding: 40px 36px;
}
.quote-card p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 25px; line-height: 1.6; font-style: italic; color: var(--ink);
}
.quote-meta { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.quote-meta span { font-size: 13.5px; letter-spacing: 1px; color: var(--ink-faint); }

/* Drei Schritte */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.steps3 > div { border-top: 1px solid #B295A0; padding-top: 22px; }
.steps3 .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px; color: #F7DDD2; margin-bottom: 10px;
}
.steps3 h3 { font-size: 19px; margin-bottom: 8px; }
.steps3 p { font-size: 14.5px; line-height: 1.7; color: #E7D8D8; }

/* Ablauf */
.steps4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.steps4 > div {
  background: var(--card); border: 1px solid var(--card-border-warm);
  border-radius: 10px; padding: 30px 26px;
}
.steps4 .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px; color: var(--copper); line-height: 1; margin-bottom: 16px;
}
.steps4 h3 { font-size: 19px; margin-bottom: 10px; }
.steps4 p { font-size: 14.5px; line-height: 1.7; color: #6B5850; }

/* Angebotskarten */
.offer-row-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 20px; }
.offer-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer {
  border-radius: 12px; padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.offer:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -22px rgba(58,44,40,0.5); }
.offer.tall { min-height: 240px; justify-content: flex-end; }
.offer h3 { font-size: 21px; margin-bottom: 10px; }
.offer p { font-size: 15px; line-height: 1.7; }
.offer .more { font-size: 14px; margin-top: 16px; font-weight: 500; display: inline-block; }
.offer .price { font-size: 13.5px; letter-spacing: 0.6px; margin-top: 14px; opacity: 0.85; }
.offer svg { width: 30px; height: 30px; fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 18px; }

.offer-rose { background: linear-gradient(165deg, #F6E1DA 0%, #E8BEB2 45%, #D19C90 100%); }
.offer-rose h3 { color: #4A1F2C; }
.offer-rose p, .offer-rose .price { color: #5E2635; }
.offer-rose svg { stroke: #5E2635; }
.offer-rose .more { color: #4A1F2C; }

.offer-mauve { background: linear-gradient(165deg, #9A7684 0%, #7E5A6A 45%, #674656 100%); }
.offer-mauve h3 { color: #F7F1EA; }
.offer-mauve p, .offer-mauve .price { color: #E6D8DC; }
.offer-mauve svg { stroke: #F7F1EA; }
.offer-mauve .more { color: #F7F1EA; }

.offer-sage { background: linear-gradient(165deg, #E3DFC8 0%, #D2CFB4 45%, #B9B79A 100%); }
.offer-sage h3 { color: #35331F; }
.offer-sage p, .offer-sage .price { color: #454229; }
.offer-sage svg { stroke: #413E28; }
.offer-sage .more { color: #35331F; }

.offer-cream { background: var(--card); border: 1px solid var(--card-border); }
.offer-cream p, .offer-cream .price { color: #6B5850; }
.offer-cream svg { stroke: var(--wine); }

.offer-dark { background: linear-gradient(165deg, #5A2E3C 0%, #40212B 100%); }
.offer-dark h3 { color: #F7F1EA; }
.offer-dark p, .offer-dark .price { color: #D6C2C0; }
.offer-dark svg { stroke: #F7F1EA; }
.offer-dark .more { color: #F7F1EA; }

.offer-note { text-align: center; margin-top: 40px; font-size: 14.5px; color: #8E7A72; }

/* Für wen */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.fit-box { background: var(--card); border: 1px solid var(--card-border); border-radius: 12px; padding: 38px 34px; }
.fit-box.dashed { background: transparent; border: 1px dashed #DEC6BD; }
.fit-box h3 { font-size: 22px; margin-bottom: 20px; }
.fit-list { display: flex; flex-direction: column; gap: 14px; }
.fit-list > div { display: flex; gap: 12px; align-items: flex-start; }
.fit-list .mark { color: var(--copper); font-size: 18px; line-height: 1.5; }
.fit-box.dashed .mark { color: #CBB6AE; }
.fit-list p { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); }
.fit-box.dashed .fit-list p { color: var(--ink-mute); }
.fit-disclaimer {
  font-size: 13.5px; line-height: 1.7; color: var(--ink-faint);
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--card-border-warm);
}

/* Journal */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.journal-card { background: var(--card); border: 1px solid var(--card-border-warm); border-radius: 10px; padding: 32px 28px; }
.journal-card h3 {
  font-family: inherit; font-weight: 500; font-size: 17.5px;
  line-height: 1.45; margin-bottom: 10px;
}
.journal-card p { font-size: 14px; line-height: 1.7; color: var(--ink-mute); }
.journal-card .icon { stroke: var(--wine-light); margin-bottom: 16px; }

/* Kontakt */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; }
.contact-list > div { display: flex; gap: 12px; align-items: flex-start; }
.contact-list .icon { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }
.contact-list span, .contact-list a { font-size: 15px; color: var(--ink-soft); }
.contact-list a:hover { color: var(--wine); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-top: 16px; }
label.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
input, textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E4D2C8;
  border-radius: 6px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
}
input::placeholder, textarea::placeholder { color: #AC9A92; }
input:focus, textarea:focus { outline: none; border-color: #C08A93; }
.form-hint { font-size: 13px; line-height: 1.65; color: var(--ink-faint); margin-top: 14px; }
.hp { display: none; }

/* ---------- Leistungsseiten ---------- */
.page-hero {
  background: linear-gradient(165deg, var(--mauve-1) 0%, var(--mauve-2) 45%, var(--mauve-3) 100%);
  color: #F7F1EA; padding: 84px 0 76px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; top: -180px; right: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(246,225,218,0.22), rgba(246,225,218,0) 70%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { color: #F2D2C8; }
.page-hero h1 { font-size: 42px; color: #FDF7F2; margin: 18px 0 20px; max-width: 760px; }
.page-hero .intro { font-size: 18px; line-height: 1.8; color: #F0E2E0; max-width: 720px; }

.breadcrumb { font-size: 13.5px; color: #EBD5D0; margin-bottom: 4px; }
.breadcrumb a { color: #EBD5D0; }
.breadcrumb a:hover { color: #FFFFFF; }

.facts {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px;
}
.fact {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 40px; padding: 11px 22px;
  font-size: 14.5px; letter-spacing: 0.4px; color: #FDF7F2;
}
.fact strong { font-weight: 600; }

.prose { max-width: 760px; }
.prose h2 { font-size: 27px; margin: 44px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 16.5px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 16px; }
.prose ul { margin: 0 0 16px; padding: 0; list-style: none; }
.prose ul li {
  font-size: 16px; line-height: 1.75; color: var(--ink-soft);
  padding-left: 26px; position: relative; margin-bottom: 10px;
}
.prose ul li::before {
  content: "✦"; position: absolute; left: 0; top: 0;
  color: var(--copper); font-size: 14px;
}
.prose ol { margin: 0 0 16px; padding-left: 22px; }
.prose ol li { font-size: 16px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 10px; }

.detail-grid { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 56px; align-items: start; }
.side-card {
  background: var(--card); border: 1px solid var(--card-border-warm);
  border-radius: 12px; padding: 30px 28px; position: sticky; top: 110px;
}
.side-card h3 { font-size: 20px; margin-bottom: 14px; }
.side-card .price-big {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px; color: var(--wine); line-height: 1;
}
.side-card .dur { font-size: 14.5px; color: var(--ink-mute); margin-top: 8px; }
.side-card .btn-primary { width: 100%; margin-top: 22px; }
.side-card .note { font-size: 13px; line-height: 1.6; color: var(--ink-faint); margin-top: 14px; }

.other-offers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.other-offers a {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 10px; padding: 22px 22px; display: block;
  transition: border-color .2s ease;
}
.other-offers a:hover { border-color: var(--copper); }
.other-offers strong {
  display: block; font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 6px;
}
.other-offers span { font-size: 13.5px; color: var(--ink-mute); }

.cta-band { background: var(--cream-soft); padding: 84px 0; text-align: center; }
.cta-band h2 { font-size: 32px; margin-bottom: 16px; }
.cta-band p { font-size: 16.5px; line-height: 1.8; color: var(--ink-soft); max-width: 560px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(165deg, #4A2A38 0%, #38202B 100%);
  color: #D6C2C0; padding: 52px 0 40px;
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px; letter-spacing: 2px; color: #F7F1EA; display: block;
}
.footer-brand-sub {
  font-size: 12px; letter-spacing: 1px; color: #A98D8E;
  text-transform: uppercase; margin-top: 6px; display: block;
}
.footer-top p, .footer-top a { font-size: 14px; line-height: 1.9; color: #D6C2C0; }
.footer-top a:hover { color: #FFFFFF; }
.footer-top h4 {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: #E2B3A6; margin: 0 0 12px; font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 24px; font-size: 13px; color: #A98D8E;
}
.footer-bottom a { font-size: 13px; color: #A98D8E; }
.footer-bottom a:hover { color: #F7F1EA; }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Einfache Seiten ---------- */
.simple-page { padding: 76px 0 96px; }
.simple-page h1 { font-size: 38px; margin-bottom: 26px; }
.simple-page h2 { font-size: 23px; margin: 36px 0 12px; }
.simple-page p, .simple-page li { font-size: 16px; line-height: 1.8; color: var(--ink-soft); }
.simple-page p { margin-bottom: 14px; }
.notice {
  background: #FBEEE9; border: 1px solid #E8C9BE; border-left: 3px solid var(--copper);
  border-radius: 8px; padding: 18px 22px; margin: 0 0 28px;
  font-size: 15px; line-height: 1.7; color: #6B4A44;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-figure img { height: 660px; }
  .hero-rings { width: 380px; height: 380px; bottom: 130px; }
  .hero h1 { font-size: 38px; }
  .other-offers { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .side-card { position: static; }
}

@media (max-width: 900px) {
  .wrap, .narrow { padding: 0 24px; }
  .brand-sub { white-space: normal; max-width: 240px; }
  .section { padding: 76px 0; }
  .site-nav {
    display: none;
    position: absolute; top: 86px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 20px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .site-nav a.nav-cta { border: 1px solid var(--wine); text-align: center; margin-top: 14px; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-text { padding: 64px 0 24px; }
  .hero-figure { margin-top: 8px; }
  .hero-figure img { height: 520px; margin-bottom: 0; }
  .hero-rings { display: none; }
  .hero-shadow { display: none; }
  .hero-blob-a { right: -120px; }
  .recog-grid { grid-template-columns: 1fr; }
  .split, .split-img-left, .split-text-left, .split-quote { grid-template-columns: 1fr; gap: 40px; }
  .steps3 { grid-template-columns: 1fr; gap: 26px; margin-top: 40px; }
  .steps4 { grid-template-columns: repeat(2, 1fr); }
  .offer-row-2, .offer-row-3 { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .page-hero { padding: 60px 0 56px; }
  .page-hero h1 { font-size: 33px; }
}

@media (max-width: 560px) {
  .brand-name { font-size: 19px; letter-spacing: 2.4px; }
  .brand-sub { font-size: 9.5px; letter-spacing: 1.1px; max-width: 200px; }
  .hero h1 { font-size: 30px; }
  .section-head h2, .cta-band h2 { font-size: 27px; }
  .steps4 { grid-template-columns: 1fr; }
  .other-offers { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-figure img { height: 420px; }
  .portrait { width: 240px; height: 292px; border-radius: 120px 120px 10px 10px; }
  .prose h2 { font-size: 23px; }
  .simple-page h1 { font-size: 30px; }
  .btn-primary, .btn-secondary { width: 100%; }
}


/* ---------- Farbvarianten der Leistungsseiten ---------- */
.page-hero-rose { background: linear-gradient(163deg, #F6E1DA 0%, #E8BEB2 48%, #D19C90 100%); }
.page-hero-rose h1 { color: #4A1F2C; }
.page-hero-rose .eyebrow { color: #8A4250; }
.page-hero-rose .intro { color: #5E2635; }
.page-hero-rose .breadcrumb, .page-hero-rose .breadcrumb a { color: #7A3A46; }
.page-hero-rose .breadcrumb a:hover { color: #4A1F2C; }
.page-hero-rose .fact { background: rgba(255,255,255,0.40); border-color: rgba(94,38,53,0.22); color: #4A1F2C; }
.page-hero-rose::after { background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.42), rgba(255,255,255,0) 70%); }

.page-hero-mauve { background: linear-gradient(163deg, #9A7684 0%, #7E5A6A 46%, #674656 100%); }

.page-hero-sage { background: linear-gradient(163deg, #E3DFC8 0%, #D2CFB4 46%, #B9B79A 100%); }
.page-hero-sage h1 { color: #2E3524; }
.page-hero-sage .eyebrow { color: #5E6448; }
.page-hero-sage .intro { color: #3E4534; }
.page-hero-sage .breadcrumb, .page-hero-sage .breadcrumb a { color: #555B40; }
.page-hero-sage .breadcrumb a:hover { color: #2E3524; }
.page-hero-sage .fact { background: rgba(255,255,255,0.42); border-color: rgba(46,53,36,0.20); color: #2E3524; }
.page-hero-sage::after { background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.42), rgba(255,255,255,0) 70%); }

.page-hero-dark { background: linear-gradient(163deg, #6B3A48 0%, #4A2733 50%, #351C25 100%); }
.page-hero-dark .eyebrow { color: #E7B9AC; }

.side-card { border-top: 3px solid var(--copper); }
.side-card.theme-rose  { border-top-color: #D19C90; }
.side-card.theme-mauve { border-top-color: #7E5A6A; }
.side-card.theme-sage  { border-top-color: #B9B79A; }
.side-card.theme-dark  { border-top-color: #5A2E3C; }

.other-offers.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1080px) { .other-offers.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .other-offers.cols-3 { grid-template-columns: 1fr; } }
