
/* ═══ LOKALE SCHRIFTEN – Keine externen Server! ═══ */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 300; font-display: swap;
  src: url('../fonts/cormorant-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic; font-weight: 300; font-display: swap;
  src: url('../fonts/cormorant-300-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/cormorant-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic; font-weight: 400; font-display: swap;
  src: url('../fonts/cormorant-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/cormorant-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic; font-weight: 600; font-display: swap;
  src: url('../fonts/cormorant-600-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal; font-weight: 300; font-display: swap;
  src: url('../fonts/dmsans-300.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/dmsans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/dmsans-500.woff2') format('woff2');
}

:root {
  /* Hintergründe */
  --bg-warm-white: #fdfcf8;    /* Hero, Kontakt — fast weiß */
  --bg-cream: #bcaa9e;          /* Über mich — warmer Braunton (vom Kunden gewählt) */
  --bg-sage-cream: #f1f4ec;    /* Pakete — heller Sage-Cream zum Kontrast */
  --bg-charcoal: #2a2520;      /* Ansatz, Footer — tief */

  /* Alias */
  --cream: #bcaa9e;
  --warm-white: #fdfcf8;
  --cream-light: #ddd2c8;      /* Hellere Variante für Karten auf Cream-Sektionen */

  /* Sage-Töne */
  --sage: #8a9e8c;
  --sage-light: #c4d4c5;
  --sage-dark: #4f6856;

  /* Warme Akzente — deutlich heller, freundlicher */
  --earth: #c4a47e;            /* von #a8855e auf hell-warm */
  --earth-light: #e2caa6;

  /* Textfarben — Braunton heller & weniger gelblich */
  --charcoal: #2a2520;          /* Überschriften */
  --charcoal-soft: #3a342c;     /* dunkler Text auf hellem Grund */
  --muted: #786f64;             /* von #5d554c → spürbar heller, sanfter */
  --muted-light: #9a8f82;       /* für sekundäre Hinweise */

  --border: rgba(138,158,140,0.22);
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; -webkit-text-size-adjust:100%; }
body {
  font-family:'DM Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:var(--warm-white); color:var(--charcoal);
  font-weight:400;
  overflow-x:hidden; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}
img { max-width:100%; height:auto; display:block; }

/* ── DATENSCHUTZ-BANNER (modal style) ── */
.cookie-modal {
  position:fixed; bottom:24px; left:24px; right:24px;
  max-width:480px; margin:0 auto;
  z-index:999;
  opacity:0; transform:translateY(24px);
  transition:opacity 0.45s ease, transform 0.45s ease;
  pointer-events:none;
}
.cookie-modal.show { opacity:1; transform:translateY(0); pointer-events:auto; }
.cookie-card {
  background:var(--warm-white);
  border:1px solid rgba(138,158,140,0.18);
  border-radius:18px;
  padding:28px 30px;
  box-shadow:0 24px 60px rgba(42,37,32,0.18), 0 4px 12px rgba(42,37,32,0.05);
}
.cookie-header {
  display:flex; align-items:center; gap:13px;
  margin-bottom:14px;
}
.cookie-icon {
  width:38px; height:38px; flex-shrink:0;
  border-radius:50%;
  background:#f5ede0;
  display:flex; align-items:center; justify-content:center;
  color:var(--sage-dark);
}
.cookie-icon svg { width:18px; height:18px; }
.cookie-card h3 {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:22px; font-weight:600; line-height:1.2;
  color:var(--charcoal); margin:0;
}
.cookie-card p {
  font-size:13px; line-height:1.75;
  color:var(--muted); font-weight:300;
  margin:0 0 22px;
}
.cookie-card p strong { color:var(--charcoal); font-weight:500; }
.cookie-actions {
  display:flex; gap:10px; margin-bottom:14px;
}
.cookie-btn-primary, .cookie-btn-secondary {
  flex:1;
  padding:12px 18px;
  border-radius:50px;
  font-size:13px; font-weight:500;
  font-family:inherit; cursor:pointer;
  transition:all 0.2s;
  border:1px solid;
  min-height:44px;
}
.cookie-btn-primary {
  background:var(--sage-dark); color:#fff;
  border-color:var(--sage-dark);
}
.cookie-btn-primary:hover { background:var(--charcoal); border-color:var(--charcoal); }
.cookie-btn-secondary {
  background:transparent; color:var(--muted);
  border-color:var(--border);
}
.cookie-btn-secondary:hover { border-color:var(--sage); color:var(--charcoal); }
.cookie-settings-link {
  background:none; border:none;
  color:var(--sage-dark);
  font-size:12px; font-family:inherit;
  cursor:pointer; text-decoration:underline;
  padding:4px 0;
  text-align:left;
  display:inline-block;
}
.cookie-settings-link:hover { color:var(--charcoal); }
@media (max-width:640px) {
  /* Mobile (≤640px): 5 Blätter — Hero ruhiger aber sichtbar belebt */
  .hero-leaf.lf6, .hero-leaf.lf7, .hero-leaf.lf8, .hero-leaf.lf9 { display:none; }
  .hero-leaf.lf1 { width:44px; opacity:0.20; }
  .hero-leaf.lf2 { width:36px; opacity:0.18; }
  .hero-leaf.lf3 { width:30px; opacity:0.16; }
  .hero-leaf.lf4 { width:32px; opacity:0.16; }
  .hero-leaf.lf5 { width:28px; opacity:0.14; }
  /* Hintergrund-Blobs kleiner */
  .hero-bg-blob { filter:blur(20px); will-change:transform; transform:translateZ(0); }
  .hero-bg-blob.b1 { width:320px; height:320px; }
  .hero-bg-blob.b2 { width:280px; height:280px; }
  .hero-bg-blob.b3 { width:360px; height:360px; }
  .hero-bg-blob.b4 { width:240px; height:240px; }

  .cookie-modal { bottom:8px; left:8px; right:8px; max-width:none; }
  .cookie-card { padding:18px 20px; border-radius:14px; }
  .cookie-card p { font-size:12.5px; line-height:1.65; margin:0 0 16px; }
  .cookie-actions { gap:8px; flex-direction:column-reverse; margin-bottom:10px; }
  .cookie-card h3 { font-size:18px; }
  .cookie-header { gap:11px; margin-bottom:10px; }
  .cookie-icon { width:32px; height:32px; }
  .cookie-icon svg { width:16px; height:16px; }
}

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:20px 48px; display:flex; justify-content:space-between; align-items:center;
  transition:background 0.4s,box-shadow 0.4s;
}
nav.scrolled { background:rgba(250,248,244,0.95); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); box-shadow:0 1px 0 var(--border); }
.nav-logo { display:inline-flex; align-items:center; gap:12px; text-decoration:none; min-height:44px; }
.nav-logo img { width:44px; height:44px; object-fit:contain; flex-shrink:0; }
.nav-logo-text { font-family:'Cormorant Garamond',Georgia,serif; font-size:19px; font-weight:600; color:var(--charcoal); letter-spacing:0.2px; line-height:1.1; }
.nav-logo-text em { font-style:italic; font-weight:400; color:var(--sage-dark); }
.nav-logo span { color:var(--sage-dark); font-style:italic; font-weight:300; }
.nav-links { display:flex; gap:36px; list-style:none; }
.nav-links a { font-size:14px; font-weight:500; color:var(--charcoal); text-decoration:none; letter-spacing:0.3px; transition:color 0.2s; }
.nav-links a:hover { color:var(--charcoal); }
.nav-cta { font-size:13px; font-weight:500; color:#fff; background:var(--sage-dark); border-radius:50px; padding:9px 24px; text-decoration:none; transition:background 0.2s,transform 0.2s; }
.nav-cta:hover { background:var(--charcoal); transform:translateY(-1px); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:8px; min-width:44px; min-height:44px; justify-content:center; align-items:center; position:relative; z-index:110; }
.hamburger span { display:block; width:24px; height:1.8px; background:var(--charcoal); border-radius:2px; transition:transform 0.3s ease, opacity 0.3s ease; transform-origin:center; }
.hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }
.mobile-menu { display:none; position:fixed; inset:0; background:var(--warm-white); z-index:99; flex-direction:column; align-items:center; justify-content:center; gap:36px; }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-family:'Cormorant Garamond',Georgia,serif; font-size:34px; font-weight:300; color:var(--charcoal); text-decoration:none; letter-spacing:0.5px; }
/* ── HERO ── */
.hero {
  position:relative;
  min-height:88vh; min-height:88dvh;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  isolation:isolate;
}
.hero-left {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding:100px 32px 64px;
  max-width:780px; width:100%;
  position:relative; z-index:2;
  animation:fadeUp 0.9s ease both;
}

/* ── DEZENTE HINTERGRUND-ANIMATION ── */
.hero-bg {
  position:absolute; inset:0; z-index:1;
  pointer-events:none; overflow:hidden;
}
.hero-bg-blob {
  position:absolute;
  border-radius:50%;
  filter:blur(30px);
  opacity:0.4;
  will-change:transform;
}
.hero-bg-blob.b1 {
  width:520px; height:520px;
  background:radial-gradient(circle, var(--sage-light), transparent 70%);
  top:-10%; left:-8%;
  animation:hero-drift-1 22s ease-in-out infinite;
}
.hero-bg-blob.b2 {
  width:440px; height:440px;
  background:radial-gradient(circle, var(--earth-light), transparent 70%);
  top:30%; right:-8%;
  animation:hero-drift-2 26s ease-in-out infinite;
  opacity:0.35;
}
.hero-bg-blob.b3 {
  width:600px; height:600px;
  background:radial-gradient(circle, #c4d4c5, transparent 70%);
  bottom:-15%; left:25%;
  animation:hero-drift-3 30s ease-in-out infinite;
  opacity:0.3;
}
.hero-bg-blob.b4 {
  width:340px; height:340px;
  background:radial-gradient(circle, #e8d4b0, transparent 70%);
  top:55%; left:8%;
  animation:hero-drift-4 28s ease-in-out infinite;
  opacity:0.25;
}
.hero-leaf {
  position:absolute;
  opacity:0.18;
  will-change:transform;
  pointer-events:none;
}
.hero-leaf.lf1 { top:12%; right:10%; width:62px; opacity:0.22; animation:leaf-float-1 14s ease-in-out infinite; }
.hero-leaf.lf2 { bottom:16%; left:7%; width:50px; opacity:0.20; animation:leaf-float-2 16s ease-in-out infinite; }
.hero-leaf.lf3 { top:55%; right:16%; width:42px; opacity:0.18; animation:leaf-float-3 13s ease-in-out infinite; }
.hero-leaf.lf4 { top:28%; left:16%; width:46px; opacity:0.18; animation:leaf-float-4 17s ease-in-out infinite; }
.hero-leaf.lf5 { bottom:30%; right:28%; width:38px; opacity:0.16; animation:leaf-float-5 15s ease-in-out infinite; }
.hero-leaf.lf6 { top:42%; left:42%; width:32px; opacity:0.14; animation:leaf-float-6 19s ease-in-out infinite; }
.hero-leaf.lf7 { top:8%; left:35%; width:34px; opacity:0.15; animation:leaf-float-7 18s ease-in-out infinite; }
.hero-leaf.lf8 { bottom:8%; right:48%; width:30px; opacity:0.14; animation:leaf-float-8 16s ease-in-out infinite; }
.hero-leaf.lf9 { top:72%; left:25%; width:36px; opacity:0.16; animation:leaf-float-9 20s ease-in-out infinite; }

@keyframes hero-drift-1 {
  0%,100% { transform:translate(0,0) scale(1); }
  50% { transform:translate(60px,40px) scale(1.08); }
}
@keyframes hero-drift-2 {
  0%,100% { transform:translate(0,0) scale(1); }
  50% { transform:translate(-50px,30px) scale(0.92); }
}
@keyframes hero-drift-3 {
  0%,100% { transform:translate(0,0) scale(1); }
  50% { transform:translate(30px,-50px) scale(1.05); }
}
@keyframes hero-drift-4 {
  0%,100% { transform:translate(0,0) scale(1); }
  50% { transform:translate(40px,-30px) scale(1.1); }
}
@keyframes leaf-float-1 {
  0%,100% { transform:translate(0,0) rotate(0deg); }
  33% { transform:translate(-22px,28px) rotate(14deg); }
  66% { transform:translate(15px,12px) rotate(-8deg); }
}
@keyframes leaf-float-2 {
  0%,100% { transform:translate(0,0) rotate(0deg); }
  33% { transform:translate(28px,-22px) rotate(-15deg); }
  66% { transform:translate(-10px,-8px) rotate(10deg); }
}
@keyframes leaf-float-3 {
  0%,100% { transform:translate(0,0) rotate(0deg); }
  33% { transform:translate(-16px,25px) rotate(18deg); }
  66% { transform:translate(12px,-10px) rotate(-12deg); }
}
@keyframes leaf-float-4 {
  0%,100% { transform:translate(0,0) rotate(0deg); }
  33% { transform:translate(30px,-18px) rotate(-12deg); }
  66% { transform:translate(-12px,20px) rotate(15deg); }
}
@keyframes leaf-float-5 {
  0%,100% { transform:translate(0,0) rotate(0deg); }
  33% { transform:translate(-26px,-30px) rotate(22deg); }
  66% { transform:translate(18px,15px) rotate(-14deg); }
}
@keyframes leaf-float-6 {
  0%,100% { transform:translate(0,0) rotate(0deg); }
  33% { transform:translate(18px,22px) rotate(-15deg); }
  66% { transform:translate(-20px,10px) rotate(18deg); }
}
@keyframes leaf-float-7 {
  0%,100% { transform:translate(0,0) rotate(0deg); }
  33% { transform:translate(-15px,32px) rotate(20deg); }
  66% { transform:translate(20px,18px) rotate(-10deg); }
}
@keyframes leaf-float-8 {
  0%,100% { transform:translate(0,0) rotate(0deg); }
  33% { transform:translate(24px,-25px) rotate(-18deg); }
  66% { transform:translate(-14px,-15px) rotate(12deg); }
}
@keyframes leaf-float-9 {
  0%,100% { transform:translate(0,0) rotate(0deg); }
  33% { transform:translate(-22px,18px) rotate(16deg); }
  66% { transform:translate(15px,28px) rotate(-12deg); }
}
@keyframes btnPulse {
  0%,100% { box-shadow:0 4px 14px rgba(79,104,86,0.25); }
  50% { box-shadow:0 6px 22px rgba(79,104,86,0.45); }
}
@media (prefers-reduced-motion:reduce) {
  .hero-bg-blob, .hero-leaf, .btn-primary { animation:none; }
}
.accent-line { width:48px; height:2px; background:var(--sage); border-radius:2px; margin:0 auto 28px; }
.hero-tag { font-size:13px; font-weight:600; color:var(--sage-dark); letter-spacing:3px; text-transform:uppercase; margin-bottom:28px; }
.hero h1 {
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(44px,5.8vw,76px);
  font-weight:400; line-height:1.12; color:var(--charcoal); margin-bottom:22px;
  letter-spacing:-0.5px;
}
.hero h1 em { font-style:italic; color:var(--sage-dark); }
.hero-sub { font-size:16px; line-height:1.85; color:var(--charcoal-soft); max-width:520px; margin:0 auto 36px; font-weight:400; }
.pills { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:40px; }
.pill { font-size:12.5px; color:var(--charcoal); background:var(--cream); border:1px solid var(--border); border-radius:50px; padding:7px 16px; font-weight:400; letter-spacing:0.2px; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; align-items:center; justify-content:center; }
.btn-primary { display:inline-block; background:var(--sage-dark); color:#fff; font-size:15px; font-weight:600; padding:16px 36px; border-radius:50px; text-decoration:none; transition:all 0.3s; white-space:nowrap; min-height:48px; letter-spacing:0.2px; box-shadow:0 4px 14px rgba(79,104,86,0.25); animation:btnPulse 4s ease-in-out infinite; }
.btn-primary:hover { background:var(--charcoal); transform:translateY(-1px); }
.btn-ghost { display:inline-flex; align-items:center; gap:8px; font-size:14px; color:var(--muted); text-decoration:none; transition:color 0.2s; white-space:nowrap; padding:15px 8px; min-height:44px; }
.btn-ghost:hover { color:var(--charcoal); }
.btn-ghost svg { transition:transform 0.2s; }
.btn-ghost:hover svg { transform:translateX(4px); }
.hero-right { position:relative; animation:fadeIn 1.1s ease both; overflow:hidden; background:var(--cream); }
.hero-img-wrap { position:absolute; inset:0; }
.hero-img-wrap img { width:100%; height:100%; object-fit:cover; object-position:center 15%; }
.hero-img-wrap .hero-svg { position:absolute; inset:0; width:100%; height:100%; }
.hero-img-wrap::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(to right, var(--warm-white) 0%, transparent 8%),
             linear-gradient(to bottom, transparent 60%, rgba(42,37,32,0.15) 100%);
}

/* ── TRUST BAR ── */
.trust-bar { background:var(--cream); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:20px 80px; }
.trust-inner { max-width:1100px; margin:0 auto; display:flex; align-items:center; justify-content:center; gap:48px; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:10px; font-size:13px; color:var(--charcoal); font-weight:400; white-space:nowrap; opacity:0.85; }
.trust-item svg { color:var(--sage-dark); flex-shrink:0; }
.trust-divider { width:1px; height:28px; background:var(--border); }

/* ── SHARED ── */
.section { padding:80px 80px; }
.section-inner { max-width:1100px; margin:0 auto; }
.section-label {
  font-size:12px; font-weight:600; color:var(--sage-dark);
  letter-spacing:3px; text-transform:uppercase; margin-bottom:18px;
  display:flex; align-items:center; gap:12px;
}
.section-label::after { content:''; display:block; width:28px; height:1px; background:var(--sage-light); }
h2.serif { font-family:'Cormorant Garamond',Georgia,serif; font-size:clamp(34px,4.2vw,54px); font-weight:400; line-height:1.18; color:var(--charcoal); letter-spacing:-0.3px; }
h2.serif em { font-style:italic; color:var(--sage-dark); }

/* ── ABOUT ── */
.about { background:#f6ece0; }
.about-grid { display:grid; grid-template-columns:5fr 6fr; gap:72px; align-items:center; }
.about-img-wrap { position:relative; }
.about-img {
  border-radius:16px; overflow:hidden; aspect-ratio:3/4;
  box-shadow:0 24px 70px rgba(42,37,32,0.15), 0 8px 24px rgba(42,37,32,0.08);
  background: #e8e5dc;
  position:relative;
}
.about-img picture, .about-img img {
  display:block; width:100%; height:100%;
}
.about-img img {
  object-fit:cover; object-position:center 20%;
}

.about-img img { width:100%; height:100%; object-fit:cover; object-position:center 8%; }
/* dekorativer Rahmen entfernt – modern minimalistisch */

.about-text h2 { margin-bottom:24px; }
.about-text p { font-size:16px; line-height:1.85; color:var(--charcoal); margin-bottom:20px; font-weight:400; }
.credentials { display:flex; flex-direction:column; gap:11px; margin-top:32px; }
.cred { display:flex; align-items:flex-start; gap:13px; font-size:13.5px; color:var(--charcoal); line-height:1.6; opacity:1; }
.cred-dot { width:6px; height:6px; border-radius:50%; background:var(--sage); flex-shrink:0; margin-top:5px; }

/* ── LEISTUNGEN ── */
.leistungen-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:52px; }
.leistung-card {
  background:var(--warm-white); border:1px solid var(--border);
  border-radius:16px; padding:26px 20px;
  transition:transform 0.3s,box-shadow 0.3s; position:relative;
  overflow:hidden; text-decoration:none; display:block; color:inherit;
}
.leistung-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2.5px;
  background:linear-gradient(90deg,var(--sage),var(--earth-light));
  transform:scaleX(0); transform-origin:left; transition:transform 0.3s;
}
.leistung-card:hover { transform:translateY(-5px); box-shadow:0 14px 40px rgba(42,37,32,0.09); }
.leistung-card:hover::before { transform:scaleX(1); }
.leistung-icon { width:30px; height:30px; margin-bottom:18px; color:var(--sage-dark); display:flex; align-items:center; justify-content:center; }
.leistung-icon svg { width:100%; height:100%; }
.leistung-cta .leistung-icon { color:rgba(255,255,255,0.85); }
.leistung-card h3 { font-family:'Cormorant Garamond',Georgia,serif; font-size:19px; font-weight:600; color:var(--charcoal); margin-bottom:8px; }
.leistung-card p { font-size:13px; line-height:1.7; color:var(--muted); font-weight:300; }
.leistung-card .duration { font-size:11px; color:var(--sage-dark); margin-top:12px; font-weight:500; letter-spacing:0.8px; }
.leistung-cta { background:var(--sage-dark); border:none; }
.leistung-cta h3, .leistung-cta p { color:rgba(255,255,255,0.9); }
.leistung-cta p { color:rgba(255,255,255,0.6); }
.leistung-cta:hover { transform:translateY(-5px); box-shadow:0 14px 40px rgba(90,114,96,0.3); }
.leistung-cta-btn { display:inline-block; background:#fff; color:var(--sage-dark); font-size:12px; font-weight:600; padding:8px 20px; border-radius:50px; text-decoration:none; margin-top:16px; transition:background 0.2s; }

/* ── PAKETE ── */
.pakete { background:var(--bg-sage-cream); }
.pakete-intro { max-width:560px; }
.pakete-intro p { font-size:15px; line-height:1.85; color:var(--charcoal-soft); margin-top:18px; font-weight:400; }
.pakete-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:52px; }
.paket-card {
  background:var(--warm-white); border:1px solid var(--border);
  border-radius:20px; padding:36px 28px; position:relative;
  display:flex; flex-direction:column; transition:transform 0.3s,box-shadow 0.3s;
}
.paket-card:hover { transform:translateY(-6px); box-shadow:0 20px 50px rgba(42,37,32,0.1); }
.paket-card.featured { background:#f6ece0; border-color:transparent; box-shadow:0 24px 70px rgba(42,37,32,0.18); }
.paket-badge {
  position:absolute; top:-12px; left:50%; transform:translateX(-50%);
  background:var(--sage-dark); color:#fff; font-size:10px; font-weight:600;
  letter-spacing:1.5px; text-transform:uppercase; padding:5px 16px; border-radius:50px;
  white-space:nowrap;
}
.paket-icon { width:36px; height:36px; margin-bottom:18px; color:var(--sage-dark); }
.paket-icon svg { width:100%; height:100%; }
.paket-card.featured .paket-icon { color:var(--sage-dark); }
.paket-card h3 { font-family:'Cormorant Garamond',Georgia,serif; font-size:26px; font-weight:600; color:var(--charcoal); margin-bottom:6px; letter-spacing:-0.2px; }
.paket-card.featured h3 { color:var(--charcoal); }
.paket-duration { font-size:11px; color:var(--sage-dark); letter-spacing:1px; text-transform:uppercase; margin-bottom:16px; font-weight:500; }
.paket-card.featured .paket-duration { color:var(--sage-dark); opacity:0.9; }
.paket-price { font-family:'Cormorant Garamond',Georgia,serif; font-size:42px; font-weight:300; color:var(--charcoal); line-height:1; margin-bottom:6px; }
.paket-card.featured .paket-price { color:var(--charcoal); }
.paket-price span { font-size:18px; }
.paket-price-note { font-size:11px; color:var(--muted); margin-bottom:24px; }
.paket-card.featured .paket-price-note { color:rgba(42,37,32,0.65); }
.paket-divider { height:1px; background:var(--border); margin-bottom:22px; }
.paket-card.featured .paket-divider { background:rgba(42,37,32,0.18); }
.paket-features { list-style:none; display:flex; flex-direction:column; gap:10px; flex:1; }
.paket-features li { display:flex; align-items:flex-start; gap:11px; font-size:13.5px; color:var(--charcoal-soft); line-height:1.6; font-weight:400; }
.paket-card.featured .paket-features li { color:var(--charcoal); }
.paket-check { width:16px; height:16px; border-radius:50%; background:rgba(138,158,140,0.2); flex-shrink:0; margin-top:1px; display:flex; align-items:center; justify-content:center; }
.paket-card.featured .paket-check { background:rgba(79,104,86,0.18); }
.paket-check::after { content:'✓'; font-size:9px; color:var(--sage-dark); font-weight:600; }
.paket-card.featured .paket-check::after { color:var(--sage-dark); }
.paket-btn {
  display:block; text-align:center; text-decoration:none;
  margin-top:28px; padding:13px 24px; border-radius:50px;
  font-size:13px; font-weight:500; transition:all 0.2s;
  background:transparent; border:1px solid var(--sage); color:var(--sage-dark);
  min-height:44px;
}
.paket-btn:hover { background:var(--sage-dark); color:#fff; border-color:var(--sage-dark); }
.paket-card.featured .paket-btn { background:var(--sage-dark); color:#fff; border:none; }
.paket-card.featured .paket-btn:hover { background:var(--charcoal); color:#fff; }
.paket-hinweis {
  margin-top:36px; padding:20px 24px;
  background:rgba(138,158,140,0.08); border:1px solid var(--border);
  border-radius:12px; font-size:12px; color:var(--muted); line-height:1.75;
}
.paket-hinweis strong { color:var(--charcoal); }

/* ── APPROACH ── */
.approach { background:#f6ece0; position:relative; }
.approach .section-label { color:var(--sage-dark); }
.approach .section-label::after { background:rgba(79,104,86,0.4); }
.approach h2.serif { color:var(--charcoal); }
.approach h2.serif em { color:var(--sage-dark); }
.approach-sub { font-size:15.5px; color:var(--charcoal-soft); margin-top:14px; font-weight:400; max-width:460px; line-height:1.85; }
.steps { display:grid; grid-template-columns:repeat(4,1fr); margin-top:60px; border-top:1px solid rgba(42,37,32,0.12); align-items:stretch; min-height:280px; }
.step { padding:36px 24px; border-right:1px solid rgba(42,37,32,0.12); display:flex; flex-direction:column; justify-content:center; }
.step:last-child { border-right:none; }
.step-num { font-family:'Cormorant Garamond',Georgia,serif; font-size:48px; font-weight:500; color:var(--charcoal); line-height:1; margin-bottom:18px; opacity:0.85; }
.step h4 { font-size:15px; font-weight:600; color:var(--charcoal); margin-bottom:11px; letter-spacing:0.2px; }
.step p { font-size:14px; color:var(--charcoal-soft); line-height:1.7; font-weight:400; }

/* ── KONTAKT ── */
.kontakt-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.kontakt-left h2 { margin-bottom:18px; }
.kontakt-left > p { font-size:15px; color:var(--charcoal-soft); line-height:1.85; font-weight:400; margin-bottom:36px; }
.contact-info { display:flex; flex-direction:column; gap:15px; }
.contact-item { display:flex; align-items:center; gap:14px; }
.contact-icon { width:38px; height:38px; border-radius:50%; background:#f5ede0; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-text { font-size:14px; color:var(--muted); }
.contact-text strong { display:block; font-size:10px; letter-spacing:1.2px; text-transform:uppercase; color:var(--charcoal); margin-bottom:2px; font-weight:500; }
.contact-text a { color:var(--muted); text-decoration:none; }
.contact-text a:hover { color:var(--sage-dark); }
.social-row { display:flex; gap:10px; margin-top:28px; flex-wrap:wrap; }
.social-btn { display:flex; align-items:center; gap:7px; font-size:12px; color:var(--muted); text-decoration:none; border:1px solid var(--border); border-radius:50px; padding:8px 16px; transition:all 0.2s; min-height:36px; }
.social-btn:hover { border-color:var(--sage); color:var(--sage-dark); }

/* ── FORM ── */
.form-wrap { background:#f5ede0; border-radius:20px; padding:36px; border:1px solid rgba(188,170,158,0.15); }
.form { display:flex; flex-direction:column; gap:14px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form label { font-size:10px; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted); font-weight:500; display:block; margin-bottom:6px; }
.form input,.form textarea,.form select { width:100%; padding:13px 16px; background:#ffffff; border:1px solid rgba(138,158,140,0.3); border-radius:10px; font-family:inherit; font-size:16px; color:var(--charcoal); outline:none; transition:border-color 0.2s; -webkit-appearance:none; appearance:none; }
.form input:focus,.form textarea:focus,.form select:focus { border-color:var(--sage); }
.form textarea { min-height:90px; resize:vertical; }
.form select { background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M3 5l3 3 3-3' stroke='%237a7068' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>"); background-repeat:no-repeat; background-position:right 16px center; padding-right:40px; }






.dsgvo-check input[type="checkbox"] { width:22px; height:22px; min-width:22px; min-height:22px; cursor:pointer; accent-color:var(--sage-dark); margin-top:1px; padding:0; border-radius:4px; flex-shrink:0; }

.dsgvo-check label button.link { background:none; border:none; color:var(--sage-dark); text-decoration:underline; cursor:pointer; font-family:inherit; font-size:inherit; padding:0; }
.form-submit { width:100%; padding:15px; font-family:inherit; font-size:14px; font-weight:500; background:var(--sage-dark); color:#fff; border:none; border-radius:50px; cursor:pointer; transition:background 0.2s; margin-top:4px; min-height:48px; }
.form-submit:hover { background:var(--charcoal); }
.form-submit:disabled { opacity:0.6; cursor:wait; }
.form-success { display:none; background:rgba(138,158,140,0.1); border:1px solid var(--sage-light); border-radius:12px; padding:20px; font-size:14px; color:var(--sage-dark); line-height:1.75; }
.form-error { display:none; background:rgba(200,80,80,0.1); border:1px solid rgba(200,80,80,0.3); border-radius:12px; padding:14px 18px; font-size:13px; color:#a44; margin-top:8px; }
.form-error.show { display:block; }

/* ── MODAL ── */
.modal-overlay { display:none; position:fixed; inset:0; background:rgba(42,37,32,0.55); backdrop-filter:blur(3px); -webkit-backdrop-filter:blur(3px); z-index:200; align-items:center; justify-content:center; padding:20px; }
.modal-overlay.open { display:flex; }
.modal { background:var(--warm-white); border-radius:18px; max-width:680px; width:100%; max-height:88vh; overflow-y:auto; padding:48px; position:relative; -webkit-overflow-scrolling:touch; }
.modal-close { position:absolute; top:18px; right:22px; background:none; border:none; font-size:20px; cursor:pointer; color:var(--muted); width:36px; height:36px; display:flex; align-items:center; justify-content:center; border-radius:50%; transition:background 0.2s; }
.modal-close:hover { background:var(--cream); color:var(--charcoal); }
.modal h2 { font-family:'Cormorant Garamond',Georgia,serif; font-size:30px; font-weight:300; color:var(--charcoal); margin-bottom:28px; }
.modal h3 { font-size:13px; font-weight:600; color:var(--charcoal); margin:20px 0 7px; text-transform:uppercase; letter-spacing:0.5px; }
.modal p { font-size:14px; line-height:1.85; color:var(--charcoal-soft); margin-bottom:10px; font-weight:400; }
.modal ul { padding-left:18px; margin-bottom:10px; }
.modal ul li { font-size:14px; line-height:1.85; color:var(--charcoal-soft); font-weight:400; margin-bottom:3px; }
.modal a { color:var(--sage-dark); }

/* ── FOOTER ── */
footer { background:#f2f3eb; padding:48px 80px; color:var(--charcoal); position:relative; }
.footer-top { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; padding-bottom:22px; border-bottom:1px solid rgba(42,37,32,0.15); margin-bottom:18px; }
.footer-logo { display:inline-flex; align-items:center; gap:12px; }
.footer-logo img { width:36px; height:36px; object-fit:contain; opacity:0.9; }
.footer-logo-text { font-family:'Cormorant Garamond',Georgia,serif; font-size:18px; color:var(--charcoal); font-weight:500; line-height:1; }
.footer-logo-text em { font-style:italic; font-weight:400; color:var(--sage-dark); }

.footer-links { display:flex; gap:22px; flex-wrap:wrap; }
.footer-links button { background:none; border:none; font-size:13px; color:var(--charcoal); cursor:pointer; font-family:inherit; transition:color 0.2s; padding:8px 0; min-height:36px; font-weight:500; opacity:0.75; }
.footer-links button:hover { color:var(--sage-dark); opacity:1; }
.footer-copy { font-size:12px; color:var(--charcoal); opacity:0.7; }
.footer-credit {
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(42,37,32,0.15);
  font-size:11.5px;
  color:var(--charcoal);
  opacity:0.75;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}
.footer-credit a {
  color:var(--sage-dark);
  text-decoration:none;
  transition:color 0.2s;
  font-weight:500;
}
.footer-credit a:hover { color:var(--charcoal); text-decoration:underline; }
.footer-sep { opacity:0.4; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes slideIn { from{opacity:0;transform:translateX(-16px)} to{opacity:1;transform:translateX(0)} }
.reveal { opacity:0; transform:translateY(22px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.d1 { transition-delay:0.1s; } .d2 { transition-delay:0.2s; } .d3 { transition-delay:0.3s; }
@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after { animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile · Tablet · Desktop
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet landscape & kleine Desktops (1100px) ── */
@media (max-width:1100px) {
  nav { padding:18px 32px; }
  .nav-links { gap:24px; }
  .hero-left { padding:110px 40px 70px 40px; }
  .section { padding:88px 40px; }
  .trust-bar { padding:18px 40px; }
  .trust-inner { gap:32px; }
  footer { padding:40px 40px; }
  .leistungen-grid { grid-template-columns:repeat(3,1fr); }
  .pakete-grid { grid-template-columns:1fr; max-width:520px; margin-left:auto; margin-right:auto; }
  .kontakt-grid { gap:56px; }
  .about-grid { gap:56px; }
}

/* ── Tablet (900px) ── */
@media (max-width:900px) {
  nav { padding:16px 24px; }
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }

  /* Hero: Bild oben, Text unten */
  .hero { grid-template-columns:1fr; grid-template-rows:auto auto; min-height:auto; }
  .hero-right { height:60vw; min-height:300px; max-height:480px; order:-1; }
  .hero-img-wrap img { object-position:center 12%; }
  .hero-img-wrap .hero-svg { width:100%; height:100%; }
  .hero-img-wrap::after { background:linear-gradient(to bottom, transparent 70%, var(--warm-white) 100%); }

  .hero-left { padding:100px 24px 56px; align-items:center; text-align:center; }
  .accent-line { margin-bottom:18px; }
  .hero h1 { font-size:clamp(38px,7vw,56px); }
  .hero-sub { font-size:15px; max-width:100%; }

  .trust-bar { padding:18px 24px; }
  .trust-inner { gap:20px 28px; justify-content:flex-start; }
  .trust-divider { display:none; }
  .trust-item { font-size:12px; }

  .section { padding:72px 28px; }

  /* About: gestapelt */
  .about-grid { grid-template-columns:1fr; gap:56px; }
  .about-img { aspect-ratio:4/3; max-width:460px; }
  .about-img img { object-position:center 5%; }
  
  .about-img-wrap::after { display:none; }

  /* Leistungen: 2 Spalten */
  .leistungen-grid { grid-template-columns:repeat(2,1fr); gap:14px; }

  /* Pakete: 1 Spalte zentriert */
  .pakete-grid { grid-template-columns:1fr; max-width:480px; }

  /* Steps: 2x2 Grid */
  .steps { grid-template-columns:1fr 1fr; min-height:auto; }
  .step { padding:28px 18px; border-bottom:1px solid rgba(42,37,32,0.12); }
  .step:nth-child(odd) { border-right:1px solid rgba(255,255,255,0.07); }
  .step:nth-child(even) { border-right:none; }
  .step:nth-last-child(-n+2) { border-bottom:none; }

  /* Kontakt: gestapelt */
  .kontakt-grid { grid-template-columns:1fr; gap:48px; }
  .form-wrap { padding:28px; }

  footer { padding:36px 28px; }
  .footer-top { flex-direction:column; align-items:flex-start; }

  .modal { padding:32px 24px; max-height:92vh; }
}

/* ── Mobile (640px) ── */
@media (max-width:640px) {
  nav { padding:14px 20px; }
  .section { padding:60px 20px; }
  .hero-left { padding:90px 20px 48px; }
  .hero h1 { font-size:clamp(34px,9vw,46px); line-height:1.15; }
  .hero-right { height:70vw; min-height:280px; }
  .hero-btns { width:100%; }
  .btn-primary { flex:1; text-align:center; }
  .pills { gap:8px; }
  .pill { font-size:12px; padding:6px 14px; }

  .trust-bar { padding:14px 20px; }
  .trust-inner { gap:12px 20px; }
  .trust-item { font-size:11px; }

  .leistungen-grid { grid-template-columns:1fr; }
  .pakete-grid { gap:32px; }
  .paket-card { padding:32px 22px; }

  .steps { grid-template-columns:1fr; }
  .step { border-right:none !important; padding:24px 0; }
  .step:last-child { border-bottom:none; }

  .form-wrap { padding:22px; }
  .form-row { grid-template-columns:1fr; }

  footer { padding:32px 20px; }

  .modal { padding:28px 20px; border-radius:14px; }
  .modal h2 { font-size:26px; }

  #cookieBanner { padding:14px 20px; }
  .cookie-btns { width:100%; }
  .cookie-accept, .cookie-decline { flex:1; text-align:center; }
}

/* ── Sehr kleine Geräte (380px) ── */
@media (max-width:380px) {
  .hero h1 { font-size:32px; }
  .section { padding:52px 16px; }
  .hero-left { padding:20px 16px 40px; }

  .nav-logo { font-size:16px; }
}

/* ══════════════════════════════════════════════════════════════
   SANFTE ÜBERGÄNGE — Sektionen fließen ineinander
   Verlauf sitzt am OBEREN Rand der nächsten Sektion und reicht
   NICHT in interaktive Elemente der vorigen Sektion hinein.
   ══════════════════════════════════════════════════════════════ */
section, footer { position:relative; }

.about::before,
.pakete::before,
.approach::before,
.kontakt::before,
footer::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:100px;
  pointer-events:none;
  z-index:0;
}

/* Hero (#fdfcf8) → Über mich (#f6ece0) */
.about::before { background:linear-gradient(to bottom, #fdfcf8, transparent); }

/* Über mich (#f6ece0) → Pakete (#f1f4ec) */
.pakete::before { background:linear-gradient(to bottom, #f6ece0, transparent); }

/* Pakete (#f1f4ec) → Ansatz (#f6ece0) */
.approach::before { background:linear-gradient(to bottom, #f1f4ec, transparent); }

/* Ansatz (#f6ece0) → Kontakt (#fdfcf8) */
.kontakt::before { background:linear-gradient(to bottom, #f6ece0, transparent); }

/* Kontakt (#fdfcf8) → Footer (#f2f3eb) */
footer::before { background:linear-gradient(to bottom, #fdfcf8, transparent); }

/* Inhalte über den Verläufen */
section > *, footer > * { position:relative; z-index:2; }
.hero-bg { z-index:0; }


/* TABLET (641-1024px): 7 Blätter — angenehm voll, aber nicht überladen */
@media (min-width:641px) and (max-width:1024px) {
  .hero-leaf.lf8, .hero-leaf.lf9 { display:none; }
  .hero-leaf { opacity:0.18; }
  .hero-bg-blob { filter:blur(25px); }
  .section { padding:70px 40px; }
}


/* ═══════ DSGVO-Checkbox: custom, garantiert klickbar ═══════ */
.dsgvo-check {
  display:flex; align-items:flex-start; gap:14px;
  padding:16px 18px; margin-top:8px;
  background:#ffffff;
  border:2px solid rgba(138,158,140,0.3);
  border-radius:12px;
  cursor:pointer; user-select:none;
  transition:background 0.2s, border-color 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color:rgba(138,158,140,0.2);
  position:relative;
}
.dsgvo-check:hover {
  background:#fafaf7; border-color:var(--sage);
  box-shadow:0 2px 8px rgba(42,37,32,0.04);
}
/* Native Checkbox unsichtbar machen, aber accessible halten */
.dsgvo-check input[type="checkbox"] {
  position:absolute; opacity:0; pointer-events:none;
  width:1px; height:1px; padding:0; margin:0;
}
/* Eigene Checkbox-Box */
.dsgvo-box {
  width:24px; height:24px; flex-shrink:0;
  border:2px solid var(--sage-dark);
  border-radius:6px;
  background:#ffffff;
  display:inline-flex; align-items:center; justify-content:center;
  transition:background 0.2s, border-color 0.2s;
  margin-top:1px;
}
.dsgvo-box svg {
  width:18px; height:18px;
  color:#ffffff;
  opacity:0;
  transform:scale(0.5);
  transition:opacity 0.2s ease, transform 0.2s ease;
}
/* Geprüft-Status: Box wird sage-dark, Häkchen erscheint */
.dsgvo-check input[type="checkbox"]:checked ~ .dsgvo-box {
  background:var(--sage-dark);
  border-color:var(--sage-dark);
}
.dsgvo-check input[type="checkbox"]:checked ~ .dsgvo-box svg {
  opacity:1;
  transform:scale(1);
}
/* Geprüft-Status: ganzer Container highlighten */
.dsgvo-check:has(input:checked) {
  background:rgba(196,212,197,0.18);
  border-color:var(--sage-dark);
}
/* Focus-Ring für Tastatur-Navigation */
.dsgvo-check input[type="checkbox"]:focus-visible ~ .dsgvo-box {
  box-shadow:0 0 0 3px rgba(79,104,86,0.3);
}
/* Text */
.dsgvo-text {
  font-size:13.5px; line-height:1.65;
  color:var(--charcoal-soft);
  font-weight:400; flex:1;
  text-transform:none;
  letter-spacing:0;
}
/* Link */
.dsgvo-link {
  color:var(--sage-dark);
  text-decoration:underline;
  text-underline-offset:2px;
  font-weight:500;
  cursor:pointer;
}
.dsgvo-link:hover { color:var(--charcoal); }
/* Ungültig-Status (browser native validation) */
.dsgvo-check input[type="checkbox"]:invalid ~ .dsgvo-box {
  border-color:#c44;
}

.dsgvo-check, .dsgvo-check * {
  text-transform:none !important;
  letter-spacing:0 !important;
}
.dsgvo-check { 
  font-family:'DM Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}

/* Klassen für ehemalige inline-style Attribute (für CSP-Konformität) */
.is-honeypot { position:absolute; left:-9999px; opacity:0; height:0; width:0; }
.text-helper-muted { font-size:11px; color:var(--muted); margin-top:6px; }
.text-helper-sage { font-size:11px; color:var(--sage-dark); margin-bottom:4px; }
.color-sage { color:var(--sage-dark); }


/* ─── Performance-Optimierungen ─── */
/* Sektionen unter dem Fold lazy rendern (massiv schneller in Safari) */
.about, .pakete, .approach, .kontakt, footer {
  content-visibility:auto;
  contain-intrinsic-size:1px 800px;
}
/* Bei prefers-reduced-motion: Animationen aus */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:0.001s !important;
    animation-iteration-count:1 !important;
    transition-duration:0.001s !important;
  }
  .hero-bg, .hero-leaf { display:none; }
}
/* Auf älteren/schwächeren Geräten: Animation drosseln */
@media (max-width:640px) and (max-resolution:1.5dppx) {
  .hero-bg-blob { filter:blur(15px) !important; }
}

/* Auf Geräten mit weniger Power: Hero-Blätter und Blobs minimal halten */
@media (max-width:640px) {
  .hero-leaf.lf5, .hero-leaf.lf6, .hero-leaf.lf7, .hero-leaf.lf8, .hero-leaf.lf9 {
    display:none !important;
  }
  .hero-bg-blob.b3, .hero-bg-blob.b4 { display:none !important; }
  .hero-bg-blob { filter:blur(20px) !important; opacity:0.5 !important; }
}
