/* Die Gesundheitswerkstatt — Optimized · v2 */

:root {
  /* Color — refined contrast */
  --peach: #D9A58F;
  --peach-soft: #ECC9B7;
  --peach-wash: #FAEEE6;
  --gold: #D9A441;
  --gold-dark: #AF7C1D;
  --gold-darker: #8A6117;
  --sage: #94B8A6;
  --sage-dark: #6F9886;
  --olive: #7A9668;
  --olive-deep: #5C7A4D;
  --olive-soft: #E4E8D8;
  --cream: #F5F1EB;
  --cream-deep: #EFE6D8;
  --offwhite: #FAF7F2;
  --ink: #23201D;
  --ink-soft: #3D3732;
  --text: #4E4843;
  --muted: #85807A;
  --line: #E8DFD0;
  --line-soft: #F0E8D9;

  /* Type */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Lato", system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(35, 32, 29, 0.04);
  --shadow-md: 0 8px 28px rgba(35, 32, 29, 0.08);
  --shadow-lg: 0 18px 60px rgba(35, 32, 29, 0.10);
  --shadow-card: 0 12px 40px rgba(175, 124, 29, 0.08);

  /* Spacing scale (tighter) */
  --section-y: clamp(40px, 8vw, 104px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--offwhite);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 4.2vw, 3.6rem); font-weight: 500; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--gold-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-darker); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 28px; }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--olive-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.eyebrow.centered { justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-dark);
  color: #fff;
  box-shadow: 0 4px 20px rgba(175, 124, 29, 0.25);
}
.btn-primary:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(35, 32, 29, 0.20);
}
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold-dark);
  color: var(--gold-dark);
}
.btn-outline:hover { background: var(--gold-dark); color: #fff; }
.btn-ghost {
  color: var(--ink);
  padding: 12px 8px;
}
.btn-ghost:hover { color: var(--gold-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.80);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.site-header.scrolled { border-bottom-color: var(--line-soft); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { height: 42px; width: auto; }
.brand-text { font-family: var(--font-display); font-weight: 500; color: var(--ink); font-size: 17px; letter-spacing: -0.01em; line-height: 1; }
.brand-text small { display: block; font-family: var(--font-body); font-size: 10px; font-weight: 500; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--gold-dark); }
.nav-cta { padding: 11px 22px; font-size: 14px; background: var(--olive-deep); border: 1.5px solid var(--olive-deep); }
.nav-cta:hover { background: #fff; color: var(--olive-deep); }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--ink); }

@media (max-width: 880px) {
  .brand-text small { display: none; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 24px; border-bottom: 1px solid var(--line); gap: 20px; }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: block; }
}

/* Sections */
section { padding: var(--section-y) 0; }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--peach-wash) 0%, var(--cream) 60%, var(--offwhite) 100%);
  padding-top: clamp(56px, 8vw, 88px);
  padding-bottom: clamp(72px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 165, 143, 0.25), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(148, 184, 166, 0.22), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  max-width: 580px;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text);
  max-width: 540px;
  margin: 24px 0 32px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-hint { font-size: 0.82rem; color: var(--muted); margin-top: 14px; }
.legal-hint { font-size: 0.78rem; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.hero-stats {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(175, 124, 29, 0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hero-stat-item { text-align: left; }
.hero-stat-item .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-dark);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-item .label { font-size: 13px; color: var(--muted); line-height: 1.3; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 620px;
  margin-top: -60px;
}
.hero-visual-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream);
}
.hero-visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  background: #fff;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--olive); }
.hero-badge-tl { top: 20px; left: -24px; }
.hero-badge-br { bottom: 30px; right: -24px; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-text { order: 2; }
  .hero-visual { order: 1; aspect-ratio: 4/3; max-height: 360px; margin-top: 0; }
  .hero-badge-tl, .hero-badge-br { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; padding-top: 24px; margin-top: 32px; }
  .hero-sub { margin: 20px 0 28px; }
  .hero-hint { margin-top: 10px; }
  .hero { padding-top: clamp(32px, 5vw, 56px); }
}

/* Trust strip */
.trust-strip {
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 48px);
  flex-wrap: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.trust-inner > * { display: flex; align-items: center; gap: 9px; }
.trust-inner svg { flex-shrink: 0; color: var(--olive-deep); opacity: 1; }
.trust-divider { width: 1px; height: 18px; background: var(--line); }

@media (max-width: 640px) {
  .trust-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .trust-inner::-webkit-scrollbar { display: none; }
  .trust-inner > * { flex-shrink: 0; }
  .trust-divider { display: none; }
}

/* Section heading */
.section-heading { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
.section-heading p { font-size: 1.05rem; color: var(--text); max-width: 600px; margin: 12px auto 0; }

/* Pain section */
.pain {
  background: #fff;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.pain-list { list-style: none; padding: 0; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.pain-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--peach-wash);
  border-radius: var(--r-sm);
  font-size: 15.5px;
  color: var(--ink-soft);
}
.pain-list li svg { flex-shrink: 0; color: var(--peach); margin-top: 2px; }
.pain-punch {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-dark);
  line-height: 1.4;
  margin-top: 24px;
  font-style: italic;
}
.pain-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pain-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .pain-grid { grid-template-columns: 1fr; gap: 32px; }
  .pain-image { aspect-ratio: 4/3; }
}

/* About / approach */
.approach {
  background: var(--cream);
  position: relative;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.approach-image {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.approach-image img { width: 100%; height: 100%; object-fit: cover; }
.approach-intro {
  margin-top: 16px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}
.approach-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.approach-principle {
  display: flex;
  gap: 16px;
  padding: 24px 20px 24px 0;
  border-bottom: 1px solid var(--line);
}
.approach-principle:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--line); }
.approach-principle:nth-child(even) { padding-left: 24px; padding-right: 0; }
.principle-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.approach-principle h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.approach-principle p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
/* Standalone (ueber-mich): principles take full width, larger items */
.approach-principles-standalone {
  max-width: 860px;
  margin: 0 auto;
}
.approach-principles-standalone .approach-principle:nth-child(odd) { padding-right: 48px; }
.approach-principles-standalone .approach-principle:nth-child(even) { padding-left: 32px; }
.approach-principles-standalone .principle-num { font-size: 1.8rem; }
.approach-principles-standalone h4 { font-size: 1.1rem; }
.approach-principles-standalone p { font-size: 0.92rem; }
@media (max-width: 880px) {
  .approach-grid { grid-template-columns: 1fr; }
  .approach-image { aspect-ratio: 4/3; }
  .approach-principles { grid-template-columns: 1fr; }
  .approach-principle:nth-child(odd) { padding-right: 0; border-right: none; }
  .approach-principle:nth-child(even) { padding-left: 0; }
  .approach-principles-standalone .approach-principle:nth-child(odd) { padding-right: 0; }
  .approach-principles-standalone .approach-principle:nth-child(even) { padding-left: 0; }
}

/* Services / feature grid */
.services { background: var(--offwhite); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
  display: flex; flex-direction: column;
  border: 1px solid var(--line-soft);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card .img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover img { transform: scale(1.04); }
.service-card-body { padding: 28px; flex: 1; }
.service-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--peach-wash);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { color: var(--text); font-size: 15px; }

.service-card.featured { grid-column: span 8; }
.service-card.featured .img-wrap { aspect-ratio: 16/9; }
.service-card:not(.featured) { grid-column: span 4; }
@media (max-width: 1100px) {
  .service-card.featured, .service-card:not(.featured) { grid-column: span 6; }
}
@media (max-width: 720px) {
  .service-card.featured, .service-card:not(.featured) { grid-column: span 12; }
}
@media (max-width: 600px) {
  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 12px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
  }
  .services-grid::-webkit-scrollbar { display: none; }
  .service-card.featured,
  .service-card:not(.featured) {
    flex: none;
    width: 82vw;
    scroll-snap-align: start;
  }
}

/* Benefits — numbered */
.benefits { background: var(--offwhite); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  padding: 36px 32px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  border-top: 3px solid var(--gold-dark);
}
.benefit-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-dark);
  opacity: 0.45;
  margin-bottom: 18px;
  line-height: 1;
}
.benefit-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.benefit-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; margin: 0; }

@media (max-width: 600px) {
  .benefits-grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding-bottom: 12px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
  }
  .benefits-grid::-webkit-scrollbar { display: none; }
  .benefit-card {
    flex: none;
    width: 80vw;
    scroll-snap-align: start;
    border-right: 1px solid var(--line);
    padding: 28px 24px;
  }
}

/* Process */
.process {
  background: var(--cream);
  position: relative;
}
.process-timeline {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--peach) 0, var(--peach) 6px, transparent 6px, transparent 14px);
}
.process-step {
  display: grid;
  grid-template-columns: 48px 1fr 1fr;
  gap: 32px;
  padding: 32px 0;
  align-items: center;
}
.process-step:last-child { padding-bottom: 0; }
.process-step:first-child { padding-top: 0; }
.process-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-dark);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.process-text h3 { margin-bottom: 10px; }
.process-text p { font-size: 15.5px; }
.process-img {
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.process-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .process-timeline::before { display: none; }
  .process-step { grid-template-columns: 48px 1fr; gap: 16px 20px; }
  .process-img { grid-column: 2; }
}

/* Features — what to expect */
.features { background: var(--offwhite); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  padding: 28px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--line-soft);
  transition: all .2s;
}
.feature-card:hover {
  border-color: var(--peach);
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: inline-flex;
  padding: 10px;
  background: var(--peach-wash);
  border-radius: 10px;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { font-size: 15px; color: var(--text); }

@media (max-width: 600px) {
  .features-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 12px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
  }
  .features-grid::-webkit-scrollbar { display: none; }
  .feature-card {
    flex: none;
    width: 82vw;
    scroll-snap-align: start;
  }
}

/* FAQ */
.faq { background: #fff; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--offwhite);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  transition: border-color .2s, background .2s;
  overflow: hidden;
}
.faq-item[open] { border-color: var(--peach); background: #fff; box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: rotate(45deg);
  transition: transform .25s;
  flex-shrink: 0;
  margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq-item .faq-body {
  padding: 0 28px 24px;
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.65;
}

/* CTA banner */
.cta-section { padding: 0 28px clamp(64px, 8vw, 104px); }
.cta-banner {
  background: linear-gradient(135deg, var(--peach) 0%, var(--gold-dark) 100%);
  color: #fff;
  text-align: center;
  padding: clamp(56px, 8vw, 88px) clamp(24px, 4vw, 48px);
  border-radius: var(--r-lg);
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { font-size: 1.1rem; margin: 0 auto 32px; opacity: 0.95; max-width: 520px; }
.cta-banner .btn-primary { background: #fff; color: var(--gold-darker); }
.cta-banner .btn-primary:hover { background: var(--ink); color: #fff; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-grid h4 { color: #fff; font-size: 13px; margin-bottom: 18px; letter-spacing: 0.1em; }
.site-footer a { color: rgba(255, 255, 255, 0.75); transition: color .2s; }
.site-footer a:hover { color: var(--peach-soft); }
.footer-brand img { height: 38px; margin-bottom: 18px; opacity: 0.85; }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-top: 12px; max-width: 300px; }
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: all .2s;
  color: rgba(255,255,255,0.8);
}
.footer-social a:hover { background: var(--peach); color: #fff; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; gap: 24px; }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Page hero (subpages) */
.page-hero {
  background: linear-gradient(180deg, var(--peach-wash) 0%, var(--cream) 80%);
  padding: clamp(88px, 10vw, 128px) 0 clamp(64px, 7vw, 96px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 165, 143, 0.15), transparent 65%);
}
.page-hero > .container { position: relative; }
.page-hero h1 { max-width: 800px; margin: 0 auto 18px; }
.page-hero p { max-width: 620px; margin: 0 auto; font-size: 1.15rem; color: var(--text); }

/* About story */
.about-story { background: #fff; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.about-portrait {
  position: sticky;
  top: 110px;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-story-text p { font-size: 1.05rem; margin-bottom: 1.2em; line-height: 1.7; }
.about-story-text .highlight {
  font-family: var(--font-display);
  color: var(--olive-deep);
  font-weight: 500;
  font-size: 1.2rem;
  font-style: italic;
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--olive-soft);
  border-radius: var(--r-md);
  border-left: 3px solid var(--olive);
}
@media (max-width: 880px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; aspect-ratio: 4/3; }
}

/* Certs */
.certs { background: var(--cream); }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.cert-card {
  background: #fff;
  padding: 24px 24px 24px 28px;
  border-radius: var(--r-md);
  border-left: 3px solid var(--peach);
  transition: transform .2s;
}
.cert-card:hover { transform: translateX(4px); border-left-color: var(--gold-dark); }
.cert-card h4 {
  color: var(--ink);
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.cert-card p { font-size: 13px; color: var(--muted); margin: 0; }

/* Credentials section (homepage) */
.credentials {
  background: var(--offwhite);
  padding: clamp(28px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.credentials-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--olive-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: center;
  margin-bottom: 20px;
}
.credentials-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Shared cert thumb button */
.cert-doc-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px;
  width: 150px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.cert-doc-thumb:hover {
  border-color: var(--olive);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.cert-doc-thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
  filter: sepia(10%) contrast(0.97);
  pointer-events: none;
}
.cert-doc-thumb span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
  pointer-events: none;
}
.cert-doc-thumb::after {
  content: "Nachweis ansehen";
  position: absolute;
  inset: 0;
  background: rgba(92, 122, 77, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
  border-radius: calc(var(--r-md) - 1px);
  pointer-events: none;
}
.cert-doc-thumb:hover::after { opacity: 1; }

@media (max-width: 600px) {
  .credentials-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 20px 12px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .credentials-row::-webkit-scrollbar { display: none; }
  .cert-doc-thumb {
    flex: none;
    scroll-snap-align: start;
  }
}

/* Cert card with embedded scan (Über Mich) */
.cert-card-scan {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  width: 100%;
  background: #fff;
  padding: 16px 20px 16px 16px;
  border-left: 3px solid var(--olive);
}
.cert-card-scan:hover { border-left-color: var(--olive-deep); transform: translateX(4px); }
.cert-scan-thumb {
  flex-shrink: 0;
  width: 44px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.cert-scan-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: sepia(10%) contrast(0.97);
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(23, 20, 18, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img {
  max-width: min(90vw, 640px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  transform: scale(0.96);
}
.lightbox.is-open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* Kontakt */
.kontakt-section { background: #fff; padding-top: clamp(40px, 5vw, 64px); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}
.kontakt-card {
  background: linear-gradient(160deg, var(--peach-wash) 0%, var(--cream) 100%);
  border-radius: var(--r-lg);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.kontakt-card::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(175, 124, 29, 0.10), transparent 70%);
}
.kontakt-card .ornament {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.kontakt-card .label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  position: relative;
}
.kontakt-card h3 { margin-bottom: 10px; position: relative; }
.kontakt-card p { font-size: 15px; color: var(--text); max-width: 420px; margin: 0 auto 24px; position: relative; }

.kontakt-side {
  background: var(--offwhite);
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
}
.kontakt-side-block { padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.kontakt-side-block:last-child { border-bottom: none; padding-bottom: 0; }
.kontakt-side-block:first-child { padding-top: 0; }
.kontakt-side-block .label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; margin-bottom: 6px; }
.kontakt-side-block .value { color: var(--ink); font-size: 16px; font-weight: 500; }
.kontakt-side-block .value a { color: var(--ink); }
.kontakt-side-block .value a:hover { color: var(--gold-dark); }
.socials-row { display: flex; gap: 10px; margin-top: 8px; }
.socials-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--peach);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.socials-row a:hover { background: var(--gold-dark); transform: translateY(-2px); }

@media (max-width: 880px) { .kontakt-grid { grid-template-columns: 1fr; } }

/* Danke card */
.danke-wrap {
  background: linear-gradient(180deg, var(--peach-wash) 0%, var(--cream) 100%);
  padding: clamp(80px, 10vw, 120px) 0;
  min-height: 70vh;
  display: flex; align-items: center;
}
.danke-card {
  max-width: 580px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.danke-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.danke-card h1 { font-size: clamp(2rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.danke-card p { font-size: 1.02rem; margin-bottom: 1em; color: var(--text); }
.danke-sign { color: var(--olive-deep); font-family: var(--font-display); font-style: italic; font-size: 1.2rem; margin: 24px 0 28px; }

/* Lead magnet section (homepage) */
.leadmagnet {
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.leadmagnet-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.leadmagnet-bullets {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.leadmagnet-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.leadmagnet-bullets svg {
  flex-shrink: 0;
  color: var(--gold-dark);
}
.btn-olive {
  background: var(--gold-dark);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn-olive:hover { background: var(--ink); transform: translateY(-2px); color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* Lead magnet card (visual) */
.leadmagnet-visual { display: flex; justify-content: center; }
.leadmagnet-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 340px;
  position: relative;
  border-top: 4px solid var(--gold-dark);
}
.leadmagnet-card-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.leadmagnet-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 6px;
}
.leadmagnet-card-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.leadmagnet-card-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.leadmagnet-card-lines div {
  height: 8px;
  background: var(--line-soft);
  border-radius: 4px;
  width: 100%;
}
.leadmagnet-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--peach-wash);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-pill);
}

@media (max-width: 880px) {
  .leadmagnet-grid { grid-template-columns: 1fr; gap: 40px; }
  .leadmagnet-visual { display: flex; }
}

/* Optin page */
.optin-hero {
  background: linear-gradient(160deg, var(--olive-soft) 0%, var(--cream) 100%);
  padding: clamp(48px, 7vw, 96px) 0;
}
.optin-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.optin-sub {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.7;
}
.optin-bullets {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.optin-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.optin-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--olive-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.optin-form-wrap { position: sticky; top: 100px; }
.optin-form-card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.optin-form-header {
  background: var(--olive-deep);
  color: #fff;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.optin-doc-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.optin-form-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }
.optin-form-sub { font-size: 13px; opacity: 0.8; margin-top: 2px; }
.optin-form { padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.form-field input {
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  transition: border-color .2s;
  background: var(--offwhite);
}
.form-field input:focus { outline: none; border-color: var(--olive); background: #fff; }
.optin-disclaimer {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}
.optin-about {
  background: #fff;
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line-soft);
}
.optin-about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
.optin-portrait {
  width: 100%;
  border-radius: var(--r-md);
  object-fit: cover;
}

@media (max-width: 880px) {
  .optin-grid { grid-template-columns: 1fr; }
  .optin-form-wrap { position: static; }
  .optin-about-grid { grid-template-columns: 1fr; }
  .optin-portrait { width: 120px; border-radius: 50%; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utils */
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }
