/* ============================================================
   HEBAMME ANNABELL — Shared Design System
   Soft-pastel, editorial, warm. Used by every page.
   Palette: sage · rose · beige · cream · muted gold/lavender accents
   ============================================================ */

:root {
  /* ----- Colours ----- */
  --cream:       #fcf8f2;
  --beige:       #f5eee3;
  --beige-warm:  #ece1cd;
  --sage:        #b3c99b;
  --sage-soft:   #cfdcbc;
  --sage-deep:   #779456;
  --rose:        #f1d2c8;
  --rose-soft:   #f8e6df;
  --rose-deep:   #c98a7f;
  --blush:       #f8dbd1;
  --lavender:    #d4cae2;
  --gold:        #ccab72;
  --ink:         #463f38;
  --ink-soft:    #6f6960;
  --ink-faint:   #968f85;
  --line:        #e7ded1;
  --white:       #ffffff;

  /* ----- Typography ----- */
  --font-display: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-body:    'Mulish', 'Helvetica Neue', 'Segoe UI', system-ui, sans-serif;

  /* ----- Form ----- */
  --shadow-sm: 0 4px 16px rgba(136, 160, 115, 0.10);
  --shadow:    0 12px 40px rgba(136, 160, 115, 0.14);
  --shadow-lg: 0 24px 60px rgba(70, 63, 56, 0.16);
  --radius:    20px;
  --radius-sm: 12px;
  --radius-pill: 50px;
  --transition: 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-soft:  cubic-bezier(0.22, 0.61, 0.36, 1);
  --maxw: 1180px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--cream);
  line-height: 1.75;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); margin-bottom: 0.6rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }

p { color: var(--ink-soft); }
p + p { margin-top: 1rem; }

a { color: var(--sage-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose-deep); }

strong { color: var(--ink); font-weight: 700; }
em { font-style: italic; }

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

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

/* skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.8rem 1.4rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 999;
}
.skip-link:focus { left: 0; color: var(--cream); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.6rem;
}
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 1.6rem; }

section { padding: 7rem 0; position: relative; }
.section-tight { padding: 4.5rem 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-block;
  margin-bottom: 1.1rem;
}
.eyebrow-rose { color: var(--rose-deep); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-header p { margin-top: 1rem; font-size: 1.1rem; }

.lead { font-size: 1.18rem; color: var(--ink-soft); }
.text-center { text-align: center; }

/* soft decorative blobs (use inside position:relative parents) */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary { background: var(--sage-deep); color: var(--cream); }
.btn-primary:hover {
  background: var(--ink); color: var(--cream);
  transform: translateY(-2px); box-shadow: 0 10px 28px rgba(70, 63, 56, 0.22);
}
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: var(--white); color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ============================================================
   NAVIGATION  (identical markup on every page)
   ============================================================ */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(251, 248, 243, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding var(--transition), border-color var(--transition), background var(--transition);
}
nav.site-nav.scrolled {
  border-bottom-color: var(--line);
  padding: 0.7rem 0;
  background: rgba(251, 248, 243, 0.93);
}
nav.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.logo span { color: var(--sage-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--sage-deep);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--sage-deep); }
.nav-links .btn { padding: 0.6rem 1.4rem; }
.nav-links .btn::after { display: none; }

.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative; z-index: 110;
}
.menu-toggle span {
  display: block; width: 24px; height: 1.6px;
  background: var(--ink); margin: 6px auto;
  transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* ============================================================
   HERO  (home page)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 4rem;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 58%, var(--rose) 135%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -22%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, var(--sage) 0%, transparent 65%);
  opacity: 0.35; border-radius: 50%;
  animation: float 16s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute; bottom: -32%; left: -16%;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, var(--rose) 0%, transparent 65%);
  opacity: 0.4; border-radius: 50%;
  animation: float 20s ease-in-out infinite reverse;
}
.hero .container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-content h1 { margin-bottom: 1.5rem; }
.hero-content h1 em { color: var(--sage-deep); }
.hero-content .subline { font-size: 1.18rem; max-width: 540px; margin-bottom: 2.5rem; }

.hero-visual {
  aspect-ratio: 3/4;
  background: linear-gradient(155deg, var(--sage) 0%, var(--blush) 55%, var(--rose) 100%);
  border-radius: 42% 58% 63% 37% / 47% 42% 58% 53%;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
  animation: morph 16s ease-in-out infinite;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.18), transparent 50%);
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-30px) scale(1.05); }
}
@keyframes morph {
  0%, 100% { border-radius: 42% 58% 63% 37% / 47% 42% 58% 53%; }
  33%      { border-radius: 60% 40% 38% 62% / 56% 58% 42% 44%; }
  66%      { border-radius: 50% 50% 55% 45% / 38% 55% 45% 62%; }
}
@keyframes morph-soft {
  0%, 100% { border-radius: 63% 37% 44% 56% / 49% 60% 40% 51%; }
  50%      { border-radius: 38% 62% 58% 42% / 57% 43% 57% 43%; }
}

/* ============================================================
   PAGE HERO  (sub-pages — shorter banner)
   ============================================================ */
.page-hero {
  padding: 11rem 0 4.5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 70%, var(--blush) 130%);
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; top: -30%; right: -5%;
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, var(--sage) 0%, transparent 60%);
  opacity: 0.3; border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 1.2rem; }
.page-hero h1 em { color: var(--sage-deep); }
.page-hero p { max-width: 640px; margin: 0 auto; font-size: 1.15rem; }

.breadcrumb {
  font-family: var(--font-body);
  font-size: 0.85rem; letter-spacing: 0.04em;
  color: var(--ink-faint);
  margin-bottom: 1.4rem;
}
.breadcrumb a { color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--sage-deep); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.6; }

/* ============================================================
   GENERIC PANELS / BACKGROUNDS
   ============================================================ */
.bg-cream { background: var(--cream); }
.bg-beige { background: var(--beige); }
.bg-beige-warm { background: linear-gradient(180deg, var(--cream) 0%, var(--beige-warm) 100%); }
.bg-rose  { background: linear-gradient(180deg, var(--beige-warm) 0%, var(--rose) 100%); }
.bg-sage  { background: var(--sage); color: var(--cream); }
.bg-sage h2, .bg-sage h3, .bg-sage h4 { color: var(--cream); }
.bg-sage p { color: rgba(251,248,243,0.9); }
.bg-sage .eyebrow { color: var(--rose-soft); }
.bg-sage a { color: var(--rose-soft); }

/* ============================================================
   PILLARS  (4 Säulen — preview cards)
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.pillar {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition);
  position: relative;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--sage);
}
.pillar-icon {
  width: 60px; height: 60px;
  border-radius: 58% 42% 47% 53% / 52% 44% 56% 48%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--sage) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--ink);
  margin-bottom: 1.4rem;
  transition: transform var(--transition), border-radius var(--transition);
}
.pillar:hover .pillar-icon {
  border-radius: 42% 58% 53% 47% / 48% 56% 44% 52%;
  transform: rotate(-4deg);
}
.pillar h3 { margin-bottom: 0.7rem; }
.pillar p { font-size: 0.97rem; }
.pillar .pillar-link {
  display: inline-block; margin-top: 1rem;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ============================================================
   PILLAR DETAIL  (philosophie page — full Säule blocks)
   ============================================================ */
.pillar-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
}
.pillar-detail:last-child { border-bottom: none; }
.pillar-detail.reverse .pillar-detail-media { order: 2; border-radius: 0.8rem 2.8rem 0.8rem 2.8rem; }
.pillar-detail-media {
  aspect-ratio: 4/3;
  border-radius: 2.8rem 0.8rem 2.8rem 0.8rem;
  background: linear-gradient(150deg, var(--sage-soft) 0%, var(--blush) 55%, var(--rose-soft) 100%);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pillar-detail-media .big-num {
  font-family: var(--font-display);
  font-size: 8rem; font-style: italic;
  color: rgba(255,255,255,0.65); line-height: 1;
}
.pillar-detail-media img { width: 100%; height: 100%; object-fit: cover; }

/* feature list (the strong + span sub-points) */
.feature-list { list-style: none; margin-top: 1.6rem; }
.feature-list li {
  padding: 1rem 0 1rem 2rem;
  border-bottom: 1px solid var(--line);
  position: relative; color: var(--ink-soft);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  position: absolute; left: 0; top: 1.55rem;
  width: 10px; height: 10px;
  background: var(--sage-deep); border-radius: 50%;
}
.feature-list strong { display: block; color: var(--ink); margin-bottom: 0.2rem; font-weight: 700; }
.feature-list span { font-size: 0.95rem; }
/* checkmark variant on sage background */
.bg-sage .feature-list li { border-bottom-color: rgba(251,248,243,0.25); color: rgba(251,248,243,0.9); }
.bg-sage .feature-list li::before { background: var(--rose); }
.bg-sage .feature-list strong { color: var(--cream); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--beige);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all var(--transition);
}
.service-card:hover {
  background: var(--rose-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--rose);
}
.service-num {
  font-family: var(--font-display);
  font-style: italic; font-size: 2.6rem;
  color: var(--sage-deep); line-height: 1;
  margin-bottom: 0.9rem;
}
.service-card h3 { margin-bottom: 0.7rem; }
.service-card p { font-size: 0.97rem; }
.service-card .pillar-link {
  display: inline-block; margin-top: 1rem;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* alternating detail rows (leistungen page) */
.detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--line);
}
.detail-row:last-child { border-bottom: none; }
.detail-row.reverse .detail-media { order: 2; border-radius: 2.8rem 0.8rem 2.8rem 0.8rem; }
.detail-media {
  aspect-ratio: 4/3;
  border-radius: 0.8rem 2.8rem 0.8rem 2.8rem;
  background: linear-gradient(150deg, var(--sage-soft) 0%, var(--lavender) 55%, var(--blush) 100%);
  box-shadow: var(--shadow-sm);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-content .meta {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose-deep);
  margin-bottom: 0.6rem; display: inline-block;
}
.detail-content ul { list-style: none; margin-top: 1.2rem; }
.detail-content ul li {
  position: relative; padding-left: 1.7rem; margin-bottom: 0.6rem;
  color: var(--ink-soft); font-size: 0.97rem;
}
.detail-content ul li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--sage-deep); font-weight: 700;
}

/* ============================================================
   TIMELINE  (über mich — Werdegang)
   ============================================================ */
.timeline {
  max-width: 820px;
  margin: 3rem auto 0;
  position: relative;
  padding-left: 2.2rem;
}
.timeline::before {
  content: '';
  position: absolute; left: 6px; top: 10px; bottom: 10px;
  width: 2px; background: var(--sage);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.8rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute; left: -2.2rem; top: 8px;
  width: 14px; height: 14px;
  background: var(--rose-deep); border-radius: 50%;
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 6px var(--sage);
}
.timeline-item .year {
  font-family: var(--font-body);
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-deep); display: block; margin-bottom: 0.4rem; font-weight: 700;
}
.timeline-item h3 { font-style: italic; margin-bottom: 0.4rem; }
/* sage-bg timeline */
.bg-sage .timeline::before { background: rgba(251,248,243,0.4); }
.bg-sage .timeline-item::before { background: var(--rose); box-shadow: 0 0 0 4px var(--sage); }
.bg-sage .timeline-item .year { color: var(--rose-soft); }

/* ============================================================
   SPLIT  (image + text generic)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  aspect-ratio: 1;
  border-radius: 63% 37% 44% 56% / 49% 60% 40% 51%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--lavender) 55%, var(--rose) 100%);
  box-shadow: var(--shadow);
  animation: morph-soft 18s ease-in-out infinite;
  position: relative; overflow: hidden;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   STATS / NUMBERS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: 3rem; color: var(--sage-deep); line-height: 1;
  display: block; margin-bottom: 0.4rem;
}
.bg-sage .stat .num { color: var(--cream); }
.stat .label { font-size: 0.92rem; letter-spacing: 0.04em; }

/* ============================================================
   QUOTE / TESTIMONIAL
   ============================================================ */
.quote-block {
  max-width: 820px; margin: 0 auto; text-align: center;
  position: relative; padding: 2rem 1rem;
}
.quote-block::before {
  content: '„';
  font-family: var(--font-display);
  font-size: 7rem; color: var(--sage); line-height: 0.5;
  display: block; margin-bottom: 1rem;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic; color: var(--ink); line-height: 1.4;
}
.quote-block cite {
  display: block; margin-top: 1.4rem;
  font-family: var(--font-body); font-style: normal;
  font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rose-deep);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem; color: var(--ink);
  padding: 1.5rem 3rem 1.5rem 0;
  position: relative;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--sage-deep); }
.faq-question::after {
  content: '+';
  position: absolute; right: 0.4rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem; color: var(--sage-deep);
  transition: transform var(--transition);
  font-family: var(--font-body); font-weight: 300;
}
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height var(--transition);
}
.faq-answer-inner { padding: 0 0 1.5rem; color: var(--ink-soft); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 3rem auto;
}
.contact-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--line);
  transition: all var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.contact-card .ci-icon { font-size: 1.6rem; margin-bottom: 0.8rem; display: block; }
.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: 0.6rem;
}
.contact-card p { color: var(--ink); font-size: 1rem; }

/* contact form */
.contact-form {
  background: var(--cream);
  padding: 2.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block; font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--ink); margin-bottom: 0.45rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font-body); font-size: 1rem;
  color: var(--ink);
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(136,160,115,0.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-check {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.9rem; color: var(--ink-soft);
}
.form-check input { width: auto; margin-top: 0.35rem; flex-shrink: 0; }
.form-note {
  font-size: 0.82rem; color: var(--ink-faint); margin-top: 1rem;
}
.form-success {
  display: none;
  background: var(--sage-soft); color: var(--ink);
  padding: 1rem 1.3rem; border-radius: var(--radius-sm);
  margin-top: 1rem; font-size: 0.95rem;
}
.form-success.show { display: block; }

/* map / location frame */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  min-height: 320px;
  background: var(--beige-warm);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--rose) 0%, var(--sage) 130%);
  border-radius: var(--radius);
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { max-width: 560px; margin: 0 auto 1.8rem; color: var(--ink); }
.cta-band .btn-row { justify-content: center; }

/* callout / info banner */
.callout {
  background: var(--rose-soft);
  border-left: 4px solid var(--rose-deep);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
}
.callout.sage { background: var(--sage-soft); border-left-color: var(--sage-deep); }
.callout strong { display: block; margin-bottom: 0.3rem; }

/* placeholder marker — used for fields Annabell must fill in */
.placeholder-note {
  background: #fff6e0;
  border: 1px dashed var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  font-size: 0.9rem;
  color: #7a6633;
  margin: 1.5rem 0;
}
.ph {
  background: #fff2cf;
  border-radius: 4px;
  padding: 0.05em 0.4em;
  font-style: normal;
  color: #8a6d1f;
  font-weight: 700;
}

/* ============================================================
   LEGAL PROSE  (impressum / datenschutz)
   ============================================================ */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { margin-top: 2.6rem; margin-bottom: 0.8rem; font-size: 1.7rem; }
.legal-content h3 { margin-top: 1.8rem; font-size: 1.25rem; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul, .legal-content ol { margin: 0 0 1rem 1.4rem; }
.legal-content li { margin-bottom: 0.5rem; }
.legal-content address { font-style: normal; line-height: 1.9; }
.legal-content .toc {
  background: var(--beige);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.8rem;
  margin-bottom: 2.5rem;
  list-style: none;
}
.legal-content .toc li { margin-bottom: 0.4rem; }

/* ============================================================
   FOOTER  (identical markup on every page)
   ============================================================ */
footer.site-footer {
  background: var(--ink);
  color: rgba(251, 248, 243, 0.72);
  padding: 4.5rem 0 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
footer.site-footer .logo { color: var(--cream); display: block; margin-bottom: 1rem; }
footer.site-footer .logo span { color: var(--sage); }
footer.site-footer h4 {
  font-family: var(--font-body);
  color: var(--cream);
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
footer.site-footer ul { list-style: none; }
footer.site-footer ul li { margin-bottom: 0.6rem; }
footer.site-footer a { color: rgba(251,248,243,0.72); }
footer.site-footer a:hover { color: var(--rose); }
.footer-bottom {
  border-top: 1px solid rgba(251,248,243,0.15);
  padding-top: 1.8rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  font-size: 0.82rem;
  color: rgba(251,248,243,0.55);
}
.footer-bottom .footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.9s var(--ease-soft), transform 0.9s var(--ease-soft);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 82%; max-width: 340px; height: 100vh;
    background: var(--cream);
    flex-direction: column; justify-content: center;
    align-items: flex-start;
    gap: 2rem; padding: 5rem 2.5rem 2rem;
    transition: right var(--transition);
    box-shadow: -10px 0 50px rgba(0,0,0,0.12);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.25rem; }

  .hero { padding-top: 8rem; }
  .hero .container,
  .split, .pillar-detail, .detail-row {
    grid-template-columns: 1fr; gap: 3rem;
  }
  .pillar-detail.reverse .pillar-detail-media,
  .detail-row.reverse .detail-media,
  .split.reverse .split-media { order: 0; }
  .hero-visual, .split-media { max-width: 400px; margin: 0 auto; width: 100%; }

  section { padding: 5rem 0; }
  .page-hero { padding: 9rem 0 3.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 2.5rem 1.6rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 1.8rem 1.4rem; }
  .btn { width: 100%; justify-content: center; }
  .nav-links .btn { width: auto; }
}
