/*
Theme Name:  Jennifer van Eys – Wechseljahre Coaching
Theme URI:
Author:      Jennifer van Eys
Description: Wechseljahre Coaching Theme – Life Coaching für Frauen mit Lindgrün, Altrosa & Cremeweiß
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: jennifer-vaneys
Tags:        coaching, women, one-page, blog
*/

/* ── CSS VARIABLEN ── */
:root {
  --blush:       #D4909F;
  --rose-deep:   #C0687C;
  --rose-light:  #FAF0F3;
  --sage:        #7FAF78;
  --sage-light:  #DDF0D8;
  --cream:       #FAF8F5;
  --warm-white:  #FFFFFF;
  --dark:        #2D2830;
  --mid:         #6B5E65;
  --border:      #F0DCE2;
  --shadow:      rgba(45,40,48,0.09);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lora', 'Georgia', serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
}
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1.05rem; color: var(--mid); }
a  { color: var(--rose-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blush); }
img { max-width: 100%; height: auto; display: block; }

/* ── UTILITY ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 5rem 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--warm-white); }
.section--rose  { background: var(--rose-light); }
.section--sage  { background: var(--sage-light); }

.tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.75rem;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { max-width: 600px; margin: 1rem auto 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  transition: all .25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--rose-deep);
  color: #fff;
  box-shadow: 0 4px 18px rgba(192,104,124,0.28);
}
.btn-primary:hover {
  background: var(--blush);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(192,104,124,0.32);
}
.btn-outline {
  background: transparent;
  color: var(--rose-deep);
  border: 2px solid var(--rose-deep);
}
.btn-outline:hover {
  background: var(--rose-deep);
  color: #fff;
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--rose-deep);
}
.btn-light:hover {
  background: var(--cream);
  color: var(--rose-deep);
  transform: translateY(-2px);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px var(--shadow); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-name {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
}
.nav__logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav__links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color .2s;
}
.nav__links a:hover { color: var(--rose-deep); }
.nav__links .btn { padding: 0.6rem 1.5rem; font-size: 0.8rem; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; transition: all .3s; }

/* WordPress-Menü Reset */
.nav__links ul { display: flex; gap: 2rem; list-style: none; align-items: center; margin: 0; padding: 0; }
.nav__links li { margin: 0; }
.nav__links li a { font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, #FAF8F5 0%, #FAF0F3 40%, #EDF5EA 100%);
}
.hero__bg-shape { position: absolute; border-radius: 50%; opacity: 0.15; }
.hero__bg-shape--1 { width: 500px; height: 500px; background: var(--blush); top: -100px; right: -100px; }
.hero__bg-shape--2 { width: 300px; height: 300px; background: var(--sage); bottom: 50px; left: -80px; }
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.hero__tag { color: var(--blush); font-family: 'Montserrat',sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.hero__title { color: var(--dark); margin-bottom: 1.5rem; }
.hero__title em { font-style: italic; color: var(--rose-deep); }
.hero__text { font-size: 1.1rem; margin-bottom: 2rem; max-width: 480px; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero__scroll { margin-top: 3rem; display: flex; align-items: center; gap: 0.75rem; color: var(--mid); font-family: 'Montserrat', sans-serif; font-size: 0.75rem; letter-spacing: 0.1em; }
.hero__scroll-line { width: 40px; height: 1px; background: var(--blush); }
.hero__image-wrap { position: relative; display: flex; justify-content: center; }
.hero__image-frame {
  width: 380px; height: 480px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  overflow: hidden;
  background: var(--rose-light);
  box-shadow: 0 20px 60px rgba(192,104,124,0.18);
  position: relative;
}
.hero__image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--sage-light), #8BB882);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
}
.hero__image-placeholder span { font-size: 3rem; }
.hero__image-placeholder p { color: var(--rose-deep); font-size: 0.85rem; text-align: center; padding: 0 2rem; }
.hero__badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--warm-white);
  border-radius: 16px;
  padding: 1rem 1.3rem;
  box-shadow: 0 8px 30px var(--shadow);
  display: flex; align-items: center; gap: 0.75rem;
}
.hero__badge-icon { font-size: 1.8rem; }
.hero__badge-text strong { display: block; font-size: 1rem; color: var(--dark); }
.hero__badge-text span { font-family: 'Montserrat',sans-serif; font-size: 0.7rem; color: var(--mid); letter-spacing: 0.05em; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--rose-deep); padding: 1.5rem 0; }
.trust-bar__inner {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
}
.trust-bar__item { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.9); font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; }
.trust-bar__item span { font-size: 1.1rem; }

/* ── ABOUT ── */
.about__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.about__image-wrap { position: relative; }
.about__image { width: 100%; aspect-ratio: 3/4; border-radius: 40% 60% 40% 60% / 40% 40% 60% 60%; overflow: hidden; background: var(--sage-light); }
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__image-placeholder { width: 100%; height: 100%; min-height: 350px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; background: linear-gradient(160deg, var(--sage-light), #8BB882); }
.about__image-placeholder span { font-size: 4rem; }
.about__accent { position: absolute; top: -20px; right: -20px; width: 100px; height: 100px; border: 3px solid var(--blush); border-radius: 50%; opacity: 0.4; }
.about__accent2 { position: absolute; bottom: 30px; left: -30px; width: 60px; height: 60px; background: var(--rose-light); border-radius: 50%; }
.about__content h2 { margin-bottom: 1.5rem; }
.about__content p { margin-bottom: 1.2rem; }
.about__list { list-style: none; margin: 1.5rem 0 2rem; }
.about__list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 1rem; color: var(--mid); }
.about__list li::before { content: '✦'; color: var(--blush); margin-top: 2px; flex-shrink: 0; }

/* ── PROBLEM ── */
.problem__inner { text-align: center; }
.problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 3rem 0; }
.problem__card { background: var(--warm-white); border-radius: 20px; padding: 2rem 1.5rem; text-align: left; border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; }
.problem__card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow); }
.problem__card-icon { font-size: 2rem; margin-bottom: 1rem; }
.problem__card h4 { color: var(--dark); margin-bottom: 0.5rem; }
.problem__card p { font-size: 0.95rem; }
.problem__cta { background: var(--rose-deep); color: #fff; border-radius: 20px; padding: 2.5rem 3rem; margin-top: 2rem; }
.problem__cta h3 { color: #fff; margin-bottom: 0.75rem; }
.problem__cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }

/* ── METHOD ── */
.method__intro { text-align: center; margin-bottom: 4rem; }
.method__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.method__steps::before { content: ''; position: absolute; top: 2.5rem; left: 16.6%; right: 16.6%; height: 2px; background: linear-gradient(90deg, var(--blush), var(--sage)); }
.method__step { text-align: center; padding: 2rem 1.5rem; position: relative; }
.method__step-num { width: 50px; height: 50px; border-radius: 50%; background: var(--blush); color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(127,175,120,0.38); }
.method__step:nth-child(2) .method__step-num { background: var(--rose-deep); }
.method__step:nth-child(3) .method__step-num { background: var(--sage); }
.method__step h3 { margin-bottom: 0.75rem; }
.method__step p { font-size: 0.95rem; }
.method__epigenetics { margin-top: 4rem; background: var(--warm-white); border-radius: 24px; padding: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; border: 1px solid var(--border); }
.method__epigenetics h3 { margin-bottom: 1rem; color: var(--rose-deep); }
.method__epigenetics p { margin-bottom: 1rem; }
.epigenetics__visual { background: linear-gradient(135deg, var(--rose-light), var(--sage-light)); border-radius: 16px; padding: 2rem; text-align: center; }
.epigenetics__visual .icon-large { font-size: 4rem; margin-bottom: 1rem; }
.epigenetics__fact { display: flex; align-items: center; gap: 1rem; background: var(--warm-white); border-radius: 12px; padding: 1rem 1.2rem; margin-top: 1rem; text-align: left; }
.epigenetics__fact .icon { font-size: 1.5rem; flex-shrink: 0; }
.epigenetics__fact p { font-size: 0.9rem; margin: 0; }

/* ── OFFERS ── */
.offers__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.offer-card { background: var(--warm-white); border-radius: 24px; overflow: hidden; border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.offer-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px var(--shadow); }
.offer-card--featured { background: var(--rose-deep); border-color: var(--rose-deep); position: relative; }
.offer-card--featured::before { content: 'Empfohlen'; position: absolute; top: 1rem; right: 1rem; background: var(--blush); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; padding: 0.3rem 0.8rem; border-radius: 50px; text-transform: uppercase; }
.offer-card__top { padding: 2.5rem 2rem 1.5rem; flex: 1; }
.offer-card__icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.offer-card__title { margin-bottom: 0.5rem; }
.offer-card--featured .offer-card__title { color: #fff; }
.offer-card__subtitle { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blush); margin-bottom: 1rem; }
.offer-card--featured .offer-card__subtitle { color: rgba(255,255,255,0.7); }
.offer-card__desc { font-size: 0.95rem; margin-bottom: 1.5rem; }
.offer-card--featured .offer-card__desc { color: rgba(255,255,255,0.85); }
.offer-card__list { list-style: none; }
.offer-card__list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--mid); margin-bottom: 0.6rem; }
.offer-card--featured .offer-card__list li { color: rgba(255,255,255,0.85); }
.offer-card__list li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; }
.offer-card--featured .offer-card__list li::before { color: var(--sage-light); }
.offer-card__bottom { padding: 1.5rem 2rem 2rem; border-top: 1px solid var(--border); }
.offer-card--featured .offer-card__bottom { border-color: rgba(255,255,255,0.2); }

/* ── TESTIMONIALS ── */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: var(--warm-white); border-radius: 20px; padding: 2rem; border: 1px solid var(--border); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 1rem; left: 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--rose-light); line-height: 1; }
.testimonial-card__text { font-size: 0.98rem; font-style: italic; margin-bottom: 1.5rem; padding-top: 1.5rem; position: relative; z-index: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--rose-light); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.testimonial-card__name strong { display: block; font-size: 0.95rem; color: var(--dark); }
.testimonial-card__name span { font-size: 0.8rem; color: var(--mid); font-family: 'Montserrat', sans-serif; }
.testimonial-card__stars { color: #F4B942; font-size: 0.85rem; margin-bottom: 0.5rem; }

/* ── BLOG CARDS ── */
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.blog-card { background: var(--warm-white); border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow); }
.blog-card:hover .blog-card__title { color: var(--rose-deep); }
.blog-card__image { height: 200px; overflow: hidden; background: var(--rose-light); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card__image img { transform: scale(1.04); }
.blog-card__body { padding: 1.5rem; }
.blog-card__meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.blog-card__category { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose-deep); background: var(--rose-light); padding: 0.25rem 0.7rem; border-radius: 50px; }
.blog-card__date { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; color: var(--mid); }
.blog-card__title { font-size: 1.15rem; margin-bottom: 0.75rem; transition: color .2s; }
.blog-card__excerpt { font-size: 0.9rem; margin-bottom: 1.2rem; }
.blog-card__link { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; color: var(--rose-deep); display: inline-flex; align-items: center; gap: 0.4rem; }
.blog-card__link::after { content: '→'; transition: transform .2s; }
.blog-card:hover .blog-card__link::after { transform: translateX(4px); }
.blog__more { text-align: center; }

/* ── CONTACT ── */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact__content h2 { margin-bottom: 1rem; }
.contact__content p { margin-bottom: 2rem; }
.contact__info-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; font-size: 0.95rem; color: var(--mid); }
.contact__info-item .icon { font-size: 1.3rem; }
.contact__form { background: var(--warm-white); border-radius: 24px; padding: 2.5rem; border: 1px solid var(--border); box-shadow: 0 8px 40px var(--shadow); }
.contact__form h3 { margin-bottom: 0.5rem; }
.contact__form > p { font-size: 0.9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 1.1rem; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Lora', Georgia, serif; font-size: 0.95rem; color: var(--dark);
  background: var(--cream); transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blush);
  box-shadow: 0 0 0 3px rgba(192,104,124,0.18);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-privacy { font-size: 0.78rem; color: var(--mid); margin-bottom: 1.5rem; line-height: 1.5; }

/* Contact Form 7 Styles */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%; padding: 0.85rem 1.1rem; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Lora', Georgia, serif; font-size: 0.95rem; color: var(--dark);
  background: var(--cream); margin-bottom: 1rem; outline: none;
  transition: border-color .2s;
}
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus { border-color: var(--blush); }
.wpcf7-form input[type="submit"] {
  width: 100%; background: var(--rose-deep); color: #fff; border: none;
  padding: 0.9rem 2rem; border-radius: 50px; font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all .25s;
}
.wpcf7-form input[type="submit"]:hover { background: var(--blush); transform: translateY(-2px); }

/* ── FOOTER ── */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer__brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: #fff; margin-bottom: 0.3rem; }
.footer__brand-sub { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blush); margin-bottom: 1rem; }
.footer__brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer__col h4 { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; }
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col ul li { margin-bottom: 0.6rem; }
.footer__col ul li a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color .2s; }
.footer__col ul li a:hover { color: var(--blush); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer__bottom p { font-size: 0.82rem; }
.footer__legal { display: flex; gap: 2rem; }
.footer__legal a { color: rgba(255,255,255,0.5); font-size: 0.82rem; transition: color .2s; }
.footer__legal a:hover { color: var(--blush); }

/* ── BLOG PAGE ── */
.blog-page-hero { background: linear-gradient(135deg, var(--sage-light), var(--cream)); padding: 8rem 0 4rem; text-align: center; }
.blog-page__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; padding: 4rem 0; }
.blog-sidebar__widget { background: var(--warm-white); border-radius: 16px; padding: 1.75rem; margin-bottom: 2rem; border: 1px solid var(--border); }
.blog-sidebar__widget h4 { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); margin-bottom: 1.2rem; }
.sidebar__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sidebar__tag { background: var(--rose-light); color: var(--rose-deep); font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 50px; transition: all .2s; }
.sidebar__tag:hover, .sidebar__tag.active { background: var(--rose-deep); color: #fff; }
.newsletter-box { background: var(--rose-deep); border-radius: 16px; padding: 1.75rem; text-align: center; margin-bottom: 2rem; }
.newsletter-box h4 { color: #fff; font-family: 'Cormorant Garamond',serif; font-size: 1.3rem; margin-bottom: 0.5rem; }
.newsletter-box p { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin-bottom: 1.2rem; }
.newsletter-box input { width: 100%; padding: 0.75rem 1rem; border-radius: 8px; border: none; margin-bottom: 0.75rem; font-size: 0.9rem; font-family: 'Lora',serif; }

/* ── SINGLE POST ── */
.post-hero { background: linear-gradient(135deg, var(--sage-light), var(--cream)); padding: 8rem 0 4rem; }
.post-hero__inner { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.post-hero__back { display: inline-flex; align-items: center; gap: 0.4rem; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; color: var(--mid); margin-bottom: 2rem; transition: color .2s; }
.post-hero__back:hover { color: var(--rose-deep); }
.post-hero__meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.post-hero__title { margin-bottom: 1.5rem; }
.post-hero__intro { font-size: 1.15rem; color: var(--mid); }
.post-content { max-width: 800px; margin: 0 auto; padding: 4rem 2rem; }
.post-content h2 { margin: 2.5rem 0 1rem; }
.post-content h3 { margin: 2rem 0 0.75rem; color: var(--rose-deep); }
.post-content p { margin-bottom: 1.3rem; }
.post-content ul, .post-content ol { margin: 1rem 0 1.5rem 1.5rem; }
.post-content li { margin-bottom: 0.5rem; color: var(--mid); }
.post-content blockquote { border-left: 4px solid var(--blush); background: var(--rose-light); padding: 1.2rem 1.5rem; border-radius: 0 12px 12px 0; margin: 2rem 0; font-style: italic; font-size: 1.05rem; }
.post-cta { background: linear-gradient(135deg, var(--rose-deep), #D4909F); border-radius: 20px; padding: 2.5rem; text-align: center; margin-top: 3rem; color: #fff; }
.post-cta h3 { color: #fff; margin-bottom: 0.75rem; }
.post-cta p { color: rgba(255,255,255,0.88); margin-bottom: 1.5rem; }
.post-author { display: flex; align-items: center; gap: 1.5rem; margin-top: 3rem; padding: 2rem; background: var(--cream); border-radius: 16px; border: 1px solid var(--border); }
.post-author__avatar { width: 70px; height: 70px; border-radius: 50%; background: var(--rose-light); display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; overflow: hidden; }
.post-author__avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-author__name { display: block; font-size: 1rem; color: var(--dark); font-weight: 600; margin-bottom: 0.25rem; }
.post-author__role { font-family: 'Montserrat',sans-serif; font-size: 0.75rem; color: var(--blush); letter-spacing: 0.08em; text-transform: uppercase; }
.post-author__bio { font-size: 0.88rem; margin-top: 0.5rem; }
.post-nav { display: flex; justify-content: space-between; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 1rem; }
.post-nav a { display: block; }
.post-nav__label { font-family: 'Montserrat',sans-serif; font-size: 0.75rem; color: var(--mid); margin-bottom: 0.3rem; }
.post-nav__title { font-size: 0.95rem; color: var(--rose-deep); font-weight: 500; }

/* ── WP PAGES (Impressum etc.) ── */
.page-hero { background: linear-gradient(135deg, var(--rose-light), var(--cream)); padding: 8rem 0 3rem; }
.page-content { max-width: 700px; margin: 0 auto; padding: 4rem 2rem; }
.page-content h2 { font-size: 1.4rem; margin: 2rem 0 1rem; }
.page-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.75rem; color: var(--rose-deep); }
.page-content p { margin-bottom: 1.2rem; }
.page-content ul { margin: 1rem 0 1.5rem 1.5rem; }
.page-content li { margin-bottom: 0.5rem; color: var(--mid); }

/* ── FADE-IN ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__image-wrap { order: -1; }
  .hero__image-frame { width: 280px; height: 350px; }
  .hero__cta { justify-content: center; }
  .about__inner, .method__epigenetics, .contact__inner { grid-template-columns: 1fr; }
  .about__image-wrap { max-width: 300px; margin: 0 auto; }
  .problem__grid, .method__steps, .offers__grid, .testimonials__grid, .blog__grid { grid-template-columns: 1fr; }
  .method__steps::before { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .blog-page__grid { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: 1.5rem; }
}
@media (max-width: 600px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); gap: 1rem; box-shadow: 0 8px 20px var(--shadow); }
  .section { padding: 3.5rem 0; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
