/* ============================================================
   SECTIONS — Lebenszeit One-Pager & Vorträge-Seite
   Portiert aus dem Entwurf, auf die verbindlichen Design-Tokens
   (style.css) umgestellt. Alles unter .ll-site genested, damit
   normale Kadence-Seiten (Blog, Rechtstexte) unberührt bleiben.
   Bewegung/Animation: siehe animations.css (reduced-motion safe).
   ============================================================ */

.ll-site *,
.ll-site *::before,
.ll-site *::after { box-sizing: border-box; }

.ll-site { background: var(--creme); color: var(--anthrazit); overflow-x: hidden; }
/* Jost als Fließtext erzwingen (Kadence setzt sonst die System-Schrift). */
.ll-site, .ll-site p, .ll-site a, .ll-site li, .ll-site span, .ll-site button,
.ll-site input, .ll-site select, .ll-site textarea, .ll-site label,
.ll-site .ll-nav-links a, .ll-site .ll-mobile-menu a, .ll-site .ll-footer-links a,
.ll-header, .ll-header a, .ll-footer, .ll-footer a {
  font-family: var(--font-body);
}
.ll-site h1, .ll-site h2, .ll-site h3, .ll-site h4 {
  font-family: var(--font-head);
  font-weight: 400; line-height: 1.15; color: var(--wein-dunkel);
}
.ll-site h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.ll-site h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.ll-site h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.ll-site p  { line-height: 1.75; font-weight: 300; color: var(--mid); font-size: 1.02rem; }
.ll-site a  { color: var(--wein); text-decoration: none; }
.ll-site a:hover { color: var(--wein-dunkel); }

.ll-site .eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rose);
  display: block; margin-bottom: 0.6rem;
}

/* Markierte Platzhalter-Inhalte sichtbar machen */
.ll-site .ll-entwurf {
  background: rgba(122, 140, 110, 0.12);
  border-left: 3px solid var(--salbei);
  padding: 0.15em 0.45em; border-radius: 2px;
}

/* ── LAYOUT ─────────────────────────────────────── */
.ll-container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.ll-site section { padding: 5rem 0; }

/* ── BUTTONS ────────────────────────────────────── */
.ll-site .btn, .ll-header .btn {
  display: inline-block; padding: 0.85rem 2rem; border-radius: 2px;
  font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 500; cursor: pointer; transition: all 0.25s;
}
.ll-site .btn-primary, .ll-header .btn-primary {
  background: var(--wein); color: var(--white); border: 2px solid var(--wein);
}
.ll-site .btn-primary:hover, .ll-header .btn-primary:hover {
  background: var(--wein-dunkel); border-color: var(--wein-dunkel); color: var(--white);
}
.ll-site .btn-outline, .ll-header .btn-outline {
  background: transparent; color: var(--wein); border: 2px solid var(--wein);
}
.ll-site .btn-outline:hover, .ll-header .btn-outline:hover { background: var(--wein); color: var(--white); }
.ll-site .btn-light { background: var(--white); color: var(--wein-dunkel); border: 2px solid var(--white); }
.ll-site .btn-light:hover { background: var(--blush); border-color: var(--blush); }

/* ── BOTANISCHER TRENNER ────────────────────────── */
.ll-site .ll-divider { width: 100%; max-width: 320px; margin: 0 auto; height: 40px; display: block; }
.ll-site .ll-divider path { fill: none; stroke: var(--rose); stroke-width: 1.4; }

/* ── HEADER / NAVIGATION (.ll-header) ───────────── */
.ll-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  /* Deckend, damit beim Scrollen kein Inhalt durchscheint. */
  background: var(--creme);
  border-bottom: 1px solid var(--blush-mid);
}
.ll-header.is-scrolled { box-shadow: var(--shadow); }
.ll-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 2rem; max-width: 1160px; margin: 0 auto;
}
.ll-nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.ll-nav-logo img { height: 48px; width: auto; }
.ll-nav-logo-text { font-family: var(--font-head); font-size: 1.05rem; color: var(--wein-dunkel); line-height: 1.2; }
.ll-nav-logo-text small {
  display: block; font-family: var(--font-body); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); font-weight: 400;
}
.ll-nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; margin: 0; padding: 0; }
.ll-nav-links a {
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500; color: var(--anthrazit); transition: color 0.2s;
  white-space: nowrap;
}
.ll-nav-links a:hover { color: var(--wein); }
.ll-nav-cta { margin-left: 0.5rem; }
.ll-nav-social { display: inline-flex; align-items: center; color: var(--wein); }
.ll-nav-social svg { width: 20px; height: 20px; }
.ll-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: 0; padding: 4px; }
.ll-hamburger span { display: block; width: 24px; height: 2px; background: var(--anthrazit); transition: 0.3s; }
.ll-mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--creme); z-index: 99; padding: 1.5rem 2rem; border-bottom: 1px solid var(--blush-mid); }
.ll-mobile-menu.open { display: block; }
.ll-mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; margin: 0; padding: 0; }
.ll-mobile-menu a { font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; color: var(--anthrazit); }
.ll-mobile-menu a:hover { color: var(--wein); }
.ll-mobile-cta { color: var(--wein) !important; font-weight: 600 !important; }

/* ── HERO ───────────────────────────────────────── */
.ll-site #hero {
  min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #FAF6F0 0%, #F2DDE3 50%, #E8C9D0 100%);
  padding-top: 80px;
}
.ll-site .hero-bg-circle { position: absolute; border-radius: 50%; pointer-events: none; }
.ll-site .hero-bg-circle.c1 { width: 700px; height: 700px; right: -200px; top: -150px; background: radial-gradient(circle, rgba(201,116,138,0.18) 0%, transparent 70%); }
.ll-site .hero-bg-circle.c2 { width: 400px; height: 400px; left: -100px; bottom: -100px; background: radial-gradient(circle, rgba(122,140,110,0.12) 0%, transparent 70%); }
.ll-site .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.ll-site .hero-text h1 { margin-bottom: 1.4rem; font-style: italic; font-weight: 300; }
.ll-site .hero-text h1 em { font-style: normal; color: var(--wein); }
.ll-site .hero-text p { font-size: 1.08rem; margin-bottom: 2rem; max-width: 480px; }
.ll-site .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.ll-site .hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.ll-site .hero-card {
  background: rgba(255,255,255,0.85); border-radius: 4px; padding: 2.5rem;
  box-shadow: var(--shadow); backdrop-filter: blur(4px); max-width: 380px; position: relative;
}
.ll-site .hero-card::before {
  content: ''; position: absolute; inset: -3px; border-radius: 6px;
  background: linear-gradient(135deg, var(--wein), var(--rose), var(--salbei-hell));
  z-index: -1; opacity: 0.4;
}
.ll-site .hero-portrait { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 3px; margin-bottom: 1.4rem; display: block; }
.ll-site .hero-stat { margin-bottom: 1.2rem; }
.ll-site .hero-stat-num { font-family: var(--font-head); font-size: 2.8rem; color: var(--wein); line-height: 1; }
.ll-site .hero-stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mid); font-weight: 500; }
.ll-site .hero-divider { height: 1px; background: var(--blush-mid); margin-bottom: 1.2rem; }
.ll-site .hero-label { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.8rem; }
.ll-site .hero-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.2rem; }
.ll-site .hero-pills span { background: var(--blush); color: var(--wein-dunkel); padding: 0.35rem 0.7rem; font-size: 0.78rem; border-radius: 1px; }
.ll-site .hero-card-quote { font-family: var(--font-head); font-size: 1.15rem; font-style: italic; color: var(--wein-dunkel); border-left: 3px solid var(--rose); padding-left: 1rem; line-height: 1.5; }

/* ── LEBENSPHASEN ───────────────────────────────── */
.ll-site #lebensphasen { background: var(--white); }
.ll-site .phases-header { text-align: center; margin-bottom: 3.5rem; }
.ll-site .phases-header p { max-width: 560px; margin: 1rem auto 0; }
.ll-site .phases-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--blush-mid); }
.ll-site .phase-card { padding: 2.2rem 1.6rem; border-right: 1px solid var(--blush-mid); transition: background 0.3s; }
.ll-site .phase-card:last-child { border-right: none; }
.ll-site .phase-card:hover { background: var(--blush); }
.ll-site .phase-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.ll-site .phase-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.ll-site .phase-card p { font-size: 0.9rem; }
.ll-site .phase-tag { display: inline-block; margin-top: 1rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--wein); font-weight: 500; }

/* ── WECHSELJAHRE ───────────────────────────────── */
.ll-site #wechseljahre { background: linear-gradient(160deg, var(--wein-dunkel) 0%, #7A1A42 100%); color: var(--white); position: relative; overflow: hidden; }
.ll-site #wechseljahre::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%); right: -200px; top: -200px; }
.ll-site #wechseljahre h2 { color: var(--white); }
.ll-site #wechseljahre .eyebrow { color: var(--blush-mid); }
.ll-site #wechseljahre p { color: rgba(255,255,255,0.82); }
.ll-site .wj-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; position: relative; z-index: 1; }
/* min-width:0 verhindert, dass Grid-Spalten über den Viewport hinauswachsen. */
.ll-site .wj-text, .ll-site .wj-therapies { min-width: 0; }
.ll-site .wj-text h2 { margin-bottom: 1.2rem; }
.ll-site .wj-text p { margin-bottom: 1.2rem; }
.ll-site .symptom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 1.8rem 0; }
.ll-site .symptom-pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 2px; padding: 0.6rem 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 0.5rem; }
.ll-site .symptom-pill::before { content: '○'; color: var(--rose); font-size: 0.7rem; }
.ll-site .therapy-item { border-bottom: 1px solid rgba(255,255,255,0.15); padding: 1.4rem 0; }
.ll-site .therapy-item:first-child { border-top: 1px solid rgba(255,255,255,0.15); }
.ll-site .therapy-head { display: flex; align-items: center; gap: 1rem; cursor: pointer; justify-content: space-between; }
.ll-site .therapy-head h3 { color: var(--white); font-size: 1.2rem; }
.ll-site .therapy-toggle { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; flex-shrink: 0; transition: 0.3s; background: none; }
.ll-site .therapy-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; font-size: 0.92rem; color: rgba(255,255,255,0.78); }
.ll-site .therapy-body.open { max-height: 260px; padding-top: 0.8rem; }
.ll-site .therapy-toggle.open { transform: rotate(45deg); background: rgba(255,255,255,0.15); }

/* ── ÜBER MICH ──────────────────────────────────── */
.ll-site #ueber-mich { background: var(--creme); }
.ll-site .about-layout { display: grid; grid-template-columns: 380px 1fr; gap: 5rem; align-items: center; }
.ll-site .about-portrait { position: relative; }
.ll-site .portrait-frame { width: 100%; aspect-ratio: 3/4; background: linear-gradient(135deg, var(--blush) 0%, var(--blush-mid) 100%); border-radius: 2px; overflow: hidden; position: relative; }
.ll-site .portrait-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ll-site .portrait-accent { position: absolute; bottom: -16px; right: -16px; width: 80px; height: 80px; background: var(--wein); border-radius: 50%; opacity: 0.15; }
.ll-site .about-zitat { font-family: var(--font-head); font-size: 1.7rem; font-style: italic; color: var(--wein); line-height: 1.4; margin-bottom: 1.5rem; font-weight: 300; }
.ll-site .about-facts { display: flex; gap: 2.5rem; margin: 2rem 0; flex-wrap: wrap; }
.ll-site .about-fact-num { font-family: var(--font-head); font-size: 2.2rem; color: var(--wein); line-height: 1; }
.ll-site .about-fact-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mid); font-weight: 500; }
.ll-site .qualifications { margin-top: 1.5rem; }
.ll-site .qual-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--blush-mid); }
.ll-site .qual-item:last-child { border-bottom: none; }
.ll-site .qual-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rose); margin-top: 0.5rem; flex-shrink: 0; }
.ll-site .qual-item p { font-size: 0.9rem; margin: 0; }

/* ── WEBINARE ───────────────────────────────────── */
.ll-site #webinare { background: var(--blush); }
.ll-site .webinar-header { margin-bottom: 3rem; }
.ll-site .webinar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ll-site .webinar-card { background: var(--white); border-radius: 2px; overflow: hidden; box-shadow: 0 2px 12px rgba(139,34,82,0.08); }
.ll-site .webinar-badge { background: var(--wein); color: var(--white); padding: 0.6rem 1.2rem; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }
.ll-site .webinar-badge.live { background: var(--salbei); }
.ll-site .webinar-badge.recorded { background: var(--mid); }
.ll-site .webinar-body { padding: 1.5rem; }
.ll-site .webinar-body h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.ll-site .webinar-body p { font-size: 0.88rem; }
.ll-site .webinar-meta { padding: 1rem 1.5rem; border-top: 1px solid var(--blush-mid); display: flex; justify-content: space-between; align-items: center; }
.ll-site .webinar-date { font-size: 0.8rem; color: var(--mid); font-weight: 500; }
.ll-site .webinar-price { font-family: var(--font-head); font-size: 1.3rem; color: var(--wein); }

/* ── VORTRÄGE & WORKSHOPS (B2B) ─────────────────── */
.ll-site #vortraege { background: var(--white); }
.ll-site .vortraege-header { text-align: center; margin-bottom: 3rem; }
.ll-site .vortraege-header p { max-width: 620px; margin: 1rem auto 0; }
.ll-site .vortraege-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.ll-site .vortrag-card { background: var(--creme); border: 1px solid var(--blush-mid); border-radius: 2px; padding: 1.8rem; }
.ll-site .vortrag-card .phase-icon { font-size: 1.8rem; }
.ll-site .vortrag-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.ll-site .vortrag-card p { font-size: 0.9rem; }
.ll-site .vortraege-media { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 1rem; }
.ll-site .vortraege-media img { width: 100%; border-radius: 3px; box-shadow: var(--shadow); display: block; }
.ll-site .vortraege-cta { text-align: center; margin-top: 2.5rem; }

/* ── ALFIMA-TOR (statt WP-Memberbereich) ────────── */
.ll-site #kursbereich { background: var(--creme); }
.ll-site .alfima-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ll-site .alfima-benefits { list-style: none; margin: 1.5rem 0 2rem; padding: 0; }
.ll-site .alfima-benefits li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.5rem 0; font-size: 0.95rem; color: var(--mid); }
.ll-site .alfima-benefits li::before { content: '✓'; color: var(--wein); font-weight: 600; flex-shrink: 0; margin-top: 0.1rem; }
.ll-site .alfima-card { background: var(--white); border: 1px solid var(--blush-mid); border-radius: 4px; padding: 2.5rem; text-align: center; box-shadow: var(--shadow); }
.ll-site .alfima-card h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.ll-site .alfima-card p { margin-bottom: 1.6rem; }
.ll-site .alfima-card .btn { width: 100%; margin-bottom: 0.8rem; }
.ll-site .alfima-note { font-size: 0.8rem; color: var(--mid); margin-top: 0.5rem; }

/* ── TERMIN ─────────────────────────────────────── */
.ll-site #termin { background: var(--blush); text-align: center; }
.ll-site .termin-inner { max-width: 680px; margin: 0 auto; }
.ll-site .termin-inner h2 { margin-bottom: 1rem; }
.ll-site .termin-inner p { margin-bottom: 2rem; }
.ll-site .termin-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--blush-mid); border: 1px solid var(--blush-mid); margin-bottom: 2rem; }
.ll-site .termin-option { background: var(--white); padding: 1.5rem; text-align: center; }
.ll-site .termin-option-icon { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }
.ll-site .termin-option h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.ll-site .termin-option p { font-size: 0.82rem; }
.ll-site .termin-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── KONTAKT ────────────────────────────────────── */
.ll-site #kontakt { background: var(--wein-dunkel); color: var(--white); }
.ll-site #kontakt h2 { color: var(--white); }
.ll-site #kontakt p { color: rgba(255,255,255,0.75); }
.ll-site .kontakt-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.ll-site .kontakt-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.ll-site .kontakt-item-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.ll-site .kontakt-item strong { color: var(--white); display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.ll-site .kontakt-item p { font-size: 0.95rem; }
.ll-site .kontakt-item a { color: var(--blush-mid); }
/* ── FORMULARFELDER: Struktur + heller Standard (Kontakt-Seite) ── */
.ll-site .cf-group { margin-bottom: 1rem; }
.ll-site .cf-group input, .ll-site .cf-group textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: 2px;
  border: 1px solid var(--blush-mid); background: var(--white); color: var(--anthrazit);
  font-family: var(--font-body); font-size: 0.95rem; outline: none; transition: border-color 0.2s;
}
.ll-site .cf-group input::placeholder, .ll-site .cf-group textarea::placeholder { color: var(--mid); opacity: 0.7; }
.ll-site .cf-group input:focus, .ll-site .cf-group textarea:focus { border-color: var(--wein); }
.ll-site .cf-group textarea { resize: vertical; min-height: 120px; }
.ll-site .cf-note { font-size: 0.78rem; color: var(--mid); margin-top: 1rem; }
.ll-site .wpcf7 { margin-top: 1rem; }
.ll-site .wpcf7 .cf-group input, .ll-site .wpcf7 .cf-group textarea { width: 100%; }
.ll-site .wpcf7-form-control-wrap { display: block; }
.ll-site .wpcf7 .cf-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.8rem; color: var(--mid); margin: 0.4rem 0 1.1rem; line-height: 1.5; }
.ll-site .wpcf7 .cf-consent input[type="checkbox"] { width: auto; margin-top: 0.25rem; flex-shrink: 0; accent-color: var(--wein); }
.ll-site .wpcf7 .cf-consent .wpcf7-list-item { margin: 0; }
.ll-site .wpcf7 .btn-light { width: 100%; cursor: pointer; }
.ll-site .wpcf7 .wpcf7-spinner { margin: 0.6rem auto 0; }
.ll-site .wpcf7-response-output { margin: 1rem 0 0 !important; padding: 0.8rem 1rem !important; font-size: 0.85rem; border-radius: 2px; }
.ll-site .wpcf7 .wpcf7-not-valid-tip { font-size: 0.78rem; margin-top: 0.3rem; }
/* Auf heller Kontakt-Seite: Submit als Weinrot-Button (sonst weiß-auf-weiß) */
.ll-site .ll-article .wpcf7 .btn-light {
  background: var(--wein); color: var(--white) !important; -webkit-text-fill-color: var(--white); border-color: var(--wein);
}
.ll-site .ll-article .wpcf7 .btn-light:hover { background: var(--wein-dunkel); border-color: var(--wein-dunkel); }

/* ── DUNKLER KONTAKTBEREICH (Startseite #kontakt) ── */
.ll-site #kontakt .cf-group input, .ll-site #kontakt .cf-group textarea {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: var(--white);
}
.ll-site #kontakt .cf-group input::placeholder, .ll-site #kontakt .cf-group textarea::placeholder { color: rgba(255,255,255,0.4); opacity: 1; }
.ll-site #kontakt .cf-group input:focus, .ll-site #kontakt .cf-group textarea:focus { border-color: rgba(255,255,255,0.6); }
.ll-site #kontakt .cf-note { color: rgba(255,255,255,0.4); }
.ll-site #kontakt .cf-group input:not([type="submit"]),
.ll-site #kontakt .cf-group textarea,
.ll-site #kontakt .wpcf7 input:not([type="submit"]),
.ll-site #kontakt .wpcf7 textarea {
  color: var(--white) !important; -webkit-text-fill-color: var(--white); caret-color: var(--white);
}
.ll-site #kontakt .wpcf7 input[type="submit"].btn-light,
.ll-site #kontakt .wpcf7 .btn-light {
  background: var(--white); border-color: var(--white);
  color: var(--wein-dunkel) !important; -webkit-text-fill-color: var(--wein-dunkel);
}
.ll-site #kontakt .cf-group input:-webkit-autofill,
.ll-site #kontakt .wpcf7 input:-webkit-autofill {
  -webkit-text-fill-color: var(--white); caret-color: var(--white);
  -webkit-box-shadow: 0 0 0 1000px rgba(80, 30, 50, 0.55) inset; transition: background-color 9999s ease-in-out 0s;
}
.ll-site #kontakt .wpcf7 .cf-consent { color: rgba(255,255,255,0.65); }
.ll-site #kontakt .wpcf7 .cf-consent input[type="checkbox"] { accent-color: var(--rose); }
.ll-site #kontakt .wpcf7-response-output { color: var(--white); border-color: rgba(255,255,255,0.4) !important; }
.ll-site #kontakt .wpcf7 .wpcf7-not-valid-tip { color: #FFD9E0; }
.ll-site #kontakt .wpcf7-not-valid { border-color: #FFB3C1 !important; }

/* WordPress-Menue-Ausgabe an unsere Klassen angleichen */
.ll-nav-links li, .ll-mobile-menu li, .ll-footer-links li { list-style: none; }
.ll-footer-links { margin: 0; padding: 0; }
.ll-footer-links .menu-item a { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.ll-footer-links .menu-item a:hover { color: rgba(255,255,255,0.7); }
.ll-mobile-extra { margin-top: 1.1rem; border-top: 1px solid var(--blush-mid); padding-top: 1.1rem; }
@media (max-width: 900px) { .ll-header .ll-nav-social { display: none; } }

/* ── FOOTER (.ll-footer) ────────────────────────── */
.ll-footer { background: #1E0A14; padding: 2.5rem 0; color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.ll-footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.ll-footer-logo { display: flex; align-items: center; gap: 0.75rem; }
.ll-footer-logo img { height: 36px; filter: brightness(0.7); }
.ll-footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.ll-footer-links a { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.ll-footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── BLOG: Homepage-Teaser, Archiv, Einzelbeitrag ── */
.ll-site #aktuelles { background: var(--white); }
.ll-site .blog-header { text-align: center; margin-bottom: 3rem; }
.ll-site .blog-header p { max-width: 560px; margin: 1rem auto 0; }
.ll-site .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ll-site .blog-card { background: var(--white); border: 1px solid var(--blush-mid); border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 2px 12px rgba(139,34,82,0.06); }
.ll-site .blog-card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--blush); }
.ll-site .blog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--anim-ease); }
.ll-site .blog-card:hover .blog-card-media img { transform: scale(1.04); }
.ll-site .blog-card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.ll-site .blog-cat { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); font-weight: 500; margin-bottom: 0.5rem; }
.ll-site .blog-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; line-height: 1.2; }
.ll-site .blog-card h3 a { color: var(--wein-dunkel); }
.ll-site .blog-card h3 a:hover { color: var(--wein); }
.ll-site .blog-card p { font-size: 0.9rem; margin-bottom: 1rem; }
.ll-site .blog-card-meta { margin-top: auto; font-size: 0.78rem; color: var(--mid); }
.ll-site .blog-more { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--wein); }
.ll-site .blog-cta { text-align: center; margin-top: 2.5rem; }

/* Archiv-Kopf */
.ll-site .blog-archive { background: var(--creme); padding-top: 8rem; }
.ll-site .blog-pagination { display: flex; gap: 0.6rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.ll-site .blog-pagination a, .ll-site .blog-pagination span { padding: 0.5rem 0.9rem; border: 1px solid var(--blush-mid); border-radius: 2px; font-size: 0.85rem; color: var(--wein); }
.ll-site .blog-pagination .current { background: var(--wein); color: var(--white); border-color: var(--wein); }

/* Einzelseite / Artikel (Rechtstexte, Blogbeitrag) */
.ll-site .ll-article { padding-top: 8rem; padding-bottom: 5rem; background: var(--creme); }
.ll-site .ll-article-inner { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.ll-site .ll-article .eyebrow { text-align: left; }
.ll-site .ll-article h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; }
.ll-site .ll-article-meta { font-size: 0.82rem; color: var(--mid); margin-bottom: 2rem; }
.ll-site .ll-article-media { margin: 0 0 2rem; border-radius: 3px; overflow: hidden; }
.ll-site .ll-article-media img { width: 100%; display: block; }
.ll-site .ll-article-body { font-size: 1.05rem; }
.ll-site .ll-article-body h2 { font-size: 1.7rem; margin: 2rem 0 0.8rem; }
.ll-site .ll-article-body h3 { font-size: 1.3rem; margin: 1.6rem 0 0.6rem; }
.ll-site .ll-article-body p { margin-bottom: 1.1rem; }
.ll-site .ll-article-body ul, .ll-site .ll-article-body ol { margin: 0 0 1.1rem 1.4rem; color: var(--mid); }
.ll-site .ll-article-body li { margin-bottom: 0.4rem; line-height: 1.7; }
.ll-site .ll-article-body a { text-decoration: underline; }
.ll-site .ll-article-body img { max-width: 100%; height: auto; border-radius: 3px; }
.ll-site .ll-article-body figure.ll-figure { margin: 2.4rem auto; text-align: center; }
.ll-site .ll-article-body figure.ll-figure img { display: block; margin: 0 auto; }
.ll-site .ll-article-body figure.ll-figure--ring img { max-width: 360px; }
.ll-site .ll-article-body figure.ll-figure--atem img { max-width: 340px; }
.ll-site .ll-article-body figure.ll-figure--botanik img { max-width: 100%; }
.ll-site .ll-article-body figcaption { font-size: 0.82rem; color: var(--mid); margin-top: 0.6rem; font-style: italic; }
.ll-site .ll-article-back { display: inline-block; margin-top: 2.5rem; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .ll-site .hero-grid, .ll-site .wj-layout, .ll-site .about-layout,
  .ll-site .alfima-layout, .ll-site .kontakt-layout, .ll-site .vortraege-media { grid-template-columns: 1fr; gap: 2.5rem; }
  .ll-site .phases-grid, .ll-site .webinar-grid, .ll-site .vortraege-grid, .ll-site .blog-grid { grid-template-columns: 1fr 1fr; }
  .ll-site .termin-options { grid-template-columns: 1fr; }
  .ll-site .about-portrait { max-width: 320px; margin: 0 auto; }
  .ll-site .hero-visual { order: -1; }
  .ll-site .hero-card { max-width: 100%; }
  /* Höhere Spezifität als .ll-header .btn, sonst greift display:none nicht. */
  .ll-nav-links { display: none; }
  .ll-header .ll-nav-cta { display: none; }
  .ll-hamburger { display: flex; }
}
@media (max-width: 600px) {
  .ll-site .phases-grid, .ll-site .webinar-grid, .ll-site .vortraege-grid, .ll-site .blog-grid { grid-template-columns: 1fr; }
  .ll-site .symptom-grid { grid-template-columns: 1fr; }
  .ll-site section { padding: 3.5rem 0; }
  .ll-site .about-facts { gap: 1.5rem; }
}
