/*
Theme Name: Sera
Theme URI: https://example.com
Author: Sera
Description: Elegantes Wellness- & Yoga-Theme in Salbeigrün & Naturweiß. Barrierefrei (WCAG AA). Alle Inhalte live über Design → Anpassen bearbeitbar. Seiten werden automatisch beim Aktivieren angelegt.
Version: 1.4.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: sera
Tags: wellness, yoga, elegant, minimal, nature, coaching, responsive, accessibility, customizer
*/

/* ═══════════════════════════════════
   VARIABLEN
═══════════════════════════════════ */
:root {
  --bg:           #F6F8F5;    /* Sehr helles Naturweiß mit Grünstich */
  --bg2:          #EDF2EA;    /* Zartes Salbeigrün */
  --bg3:          #DDE8D8;    /* Mittleres Salbeigrün */
  --dark:         #2B3428;    /* Tiefes Waldgrün – kein hartes Schwarz */
  --dark-nav:     #2B3428;
  --ac:           #7A9E71;    /* Salbeigrün Akzent */
  --ac-dk:        #5A7A52;    /* Dunklerer Akzent für bessere Lesbarkeit */
  --ac-lt:        #A8C8A0;    /* Heller Akzent */
  --ac-pale:      #EDF5EB;    /* Sehr helles Salbeigrün */
  --txt:          #2B3428;    /* Tiefes Waldgrün */
  --txt2:         #4A5E46;    /* Mittleres Waldgrün */
  --muted:        #7A8E76;    /* Gedämpftes Salbei */
  --white:        #FFFFFF;
  --border:       rgba(122,158,113,0.22);
  --border2:      rgba(122,158,113,0.48);
  --shadow:       0 3px 24px rgba(43,52,40,0.08);
  --shadow-lg:    0 10px 55px rgba(43,52,40,0.12);
  --font-body:    'Inter', system-ui, sans-serif;
  --font-head:    'Josefin Sans', sans-serif;
  --max:          1160px;
  --r:            8px;
  --tr:           0.28s ease;
}

/* ═══════════════════════════════════
   RESET & BASIS
═══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Barrierefreiheit: Animation reduzieren wenn User das bevorzugt */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--txt);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }

/* ── Subtiler Filter für Theme-Fotos – kein Gelbstich, kein Stacking-Problem ── */
/* .hero-bg bekommt KEINEN filter (Firefox-Stacking-Bug), nur img-Elemente */
.about-img-frame img,
.gallery-strip-item img,
.service-card-img img,
.about-page-img img {
  filter: brightness(1.04) saturate(0.88);
}
.about-img-frame:hover img,
.gallery-strip-item:hover img,
.service-card:hover .service-card-img img {
  filter: brightness(1.06) saturate(0.96);
}
a { color: var(--ac-dk); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--ac); }

/* Alle Überschriften = Josefin Sans */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.2;
  color: var(--txt);
}
p { color: var(--txt2); }

/* ═══════════════════════════════════
   BARRIEREFREIHEIT
═══════════════════════════════════ */

/* Skip-to-Content Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--dark);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--r) var(--r);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--ac);
  outline-offset: 2px;
}

/* Fokus-Stile für Tastaturnavigation – WCAG 2.4.7 */
:focus-visible {
  outline: 3px solid var(--ac);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--ac);
  outline-offset: 2px;
}

/* Screen-reader only – WCAG */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ═══════════════════════════════════
   LAYOUT
═══════════════════════════════════ */
.wrap    { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5.5rem 0; }
.s-cream { background: var(--bg2); }
.s-beige { background: var(--bg3); }
.s-dark  { background: var(--dark); }
.t-center { text-align: center; }
.t-center .lead { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════
   TYPOGRAFIE
═══════════════════════════════════ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ac-dk);   /* Dunklerer Akzent = besserer Kontrast WCAG AA */
  margin-bottom: 0.75rem;
}
h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.15rem; }

.lead {
  font-size: 1.05rem;
  color: var(--txt2);
  line-height: 1.85;
  max-width: 560px;
}

/* ═══════════════════════════════════
   BUTTONS – WCAG AA Kontrast
═══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap;
  text-decoration: none;
  min-height: 48px;   /* WCAG Mindestgröße Touch-Target */
}
.btn-primary { background: var(--ac); color: #fff; }
.btn-primary:hover { background: var(--ac-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(122,158,113,.35); }
.btn-outline { background: transparent; color: var(--ac-dk); border: 2px solid var(--border2); }
.btn-outline:hover { background: var(--ac-pale); border-color: var(--ac); color: var(--ac-dk); transform: translateY(-2px); }
.btn-white  { background: #fff; color: var(--ac-dk); }
.btn-white:hover  { background: var(--ac-pale); transform: translateY(-2px); }
.btn-ghost  { background: rgba(43,52,40,.08); color: var(--dark); border: 2px solid rgba(43,52,40,.25); }
.btn-ghost:hover  { background: rgba(43,52,40,.14); color: var(--dark); transform: translateY(-2px); }

/* ═══════════════════════════════════
   NAVIGATION – GROSS & PROMINENT
═══════════════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 1.6rem 0;
  transition: background var(--tr), padding var(--tr), box-shadow var(--tr);
}
#header.scrolled {
  background: rgba(246,248,245,.97);
  backdrop-filter: blur(18px);
  padding: 1.1rem 0;
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo – deutlich größer */
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo img { height: 68px; width: auto; transition: height var(--tr); }
#header.scrolled .site-logo img { height: 54px; }

/* Navigationslinks – 23px wie gewünscht */
nav ul { display: flex; list-style: none; gap: 0.5rem; align-items: center; }
nav a {
  font-size: 23px;                 /* Wunschgröße */
  font-weight: 500;
  color: var(--dark-nav);          /* Warmes Dunkelgrau (wenn gescrollt) */
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all var(--tr);
  display: block;
  min-height: 48px;
  display: flex;
  align-items: center;
}

/* Transparenter Header (oben auf Seite): helle Schrift auf Beige-Hintergrund */
#header:not(.scrolled) nav a {
  color: var(--dark);
}
#header:not(.scrolled) nav a:hover {
  color: var(--ac-dk);
  background: rgba(246,248,245,0.35);
}
#header:not(.scrolled) .nav-cta .btn-primary {
  background: var(--ac-dk);
  color: #fff;
}

nav a:hover { color: var(--ac-dk); background: var(--bg2); }
nav .current-menu-item > a {
  color: var(--ac-dk);
  font-weight: 700;
}

.nav-cta .btn { padding: 0.7rem 1.6rem; font-size: 0.9rem; }

.burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 8px;
  min-width: 48px; min-height: 48px; align-items: center; justify-content: center;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--txt); transition: all var(--tr); border-radius: 2px; }

/* ═══════════════════════════════════
   HERO – Heller & Freundlicher
═══════════════════════════════════ */
#hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 4rem;  /* Buttons nie abgeschnitten */
}

/* Text-Bereich: klar auf der linken Seite, max 45% der Breite */
#hero .wrap {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;           /* Immer über .hero-bg – auch in Firefox */
}

/* Mobile Hero-Bild: auf Desktop versteckt */
.hero-mobile-img {
  display: none;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;           /* Explizit hinter allem anderen */
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 50%, var(--ac-lt) 100%);
  background-size: cover;
  background-position: center;
  will-change: transform;
}
/* Heller Vignette-Overlay – kein Abdunkeln mehr (Beige-Bilder) */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg,
    rgba(246,248,245,.12) 0%,
    rgba(246,248,245,.04) 60%,
    rgba(246,248,245,.00) 100%
  );
}
.hero-content {
  position: relative;
  max-width: 520px;      /* schlanker – bleibt klar im linken Freifeld */
  width: 45%;            /* nimmt max 45% der Breite ein */
  flex-shrink: 0;
  /* Hero ist above-fold → sofort sichtbar, kein fade-in-Delay */
  opacity: 1 !important;
  transform: none !important;
}
/* Hero h1 etwas kleiner als globales clamp – Buttons bleiben sichtbar */
#hero h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }

.hero-kicker {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ac-dk); margin-bottom: 1rem;
}
.hero-kicker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ac); flex-shrink: 0; }
/* Dunkle Schrift auf hellem Beige */
.hero-content h1 {
  color: var(--dark);
  margin-bottom: 1.2rem;
  text-shadow: none;
}
.hero-content h1 .hl { color: var(--ac); }
.hero-sub {
  font-size: 1.08rem;
  color: var(--txt2);
  line-height: 1.82; max-width: 460px; margin-bottom: 2.5rem;
  text-shadow: none;
}
.hero-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--muted); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: scrollpulse 2s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 30px; background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent); }
@keyframes scrollpulse { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(5px)} }

/* ═══════════════════════════════════
   STATS LEISTE
═══════════════════════════════════ */
.stats-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 2rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; gap: 1rem; }
.stat-num { font-family: var(--font-body); font-size: 2rem; font-weight: 800; color: var(--txt); line-height: 1; letter-spacing: -0.03em; }
.stat-lbl { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }

/* ═══════════════════════════════════
   ÜBER MICH VORSCHAU
═══════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-frame {
  aspect-ratio: 3/4; border-radius: var(--r); overflow: hidden;
  background: linear-gradient(160deg, #DDE8D8 0%, #A8C8A0 40%, #7A9E71 70%, #5A7A52 100%);
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.7s ease; }
.about-img-frame:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute; bottom: -1.2rem; right: -1.2rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 0.9rem 1.2rem; text-align: center; box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-family: var(--font-body); font-size: 1.7rem; font-weight: 800; letter-spacing: -0.04em; color: var(--txt); }
.about-badge span { font-size: 0.7rem; font-weight: 500; color: var(--muted); }
.about-text .eyebrow { margin-bottom: 0.6rem; }
.about-text h2 { margin-bottom: 1rem; }
.about-text .lead { margin-bottom: 2rem; }
.highlights { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.hi-item { display: flex; align-items: flex-start; gap: 0.85rem; padding: 0.9rem 1rem; background: var(--bg2); border-radius: var(--r); }
.hi-icon { width: 36px; height: 36px; background: var(--ac-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.hi-item strong { display: block; font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; color: var(--txt); }
.hi-item span { font-size: 0.83rem; color: var(--muted); }

/* ═══════════════════════════════════
   GALERIE STRIP
═══════════════════════════════════ */
.gallery-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; height: 280px; }
.gallery-strip-item { overflow: hidden; }
.gallery-strip-item img { width:100%; height:100%; object-fit:cover; object-position:center top; transition: transform 0.7s ease; }
.gallery-strip-item:hover img { transform: scale(1.06); }

/* ═══════════════════════════════════
   LEISTUNGEN
═══════════════════════════════════ */
.services-header { max-width: 580px; margin: 0 auto 3.5rem; text-align: center; }
.services-header h2 { margin: 0.5rem 0 1rem; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  transition: all var(--tr); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--ac-lt), var(--ac));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-card-img { overflow: hidden; }
.service-card-img img { width:100%; height:160px; object-fit:cover; object-position:center top; transition: transform 0.6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 1.8rem; }
.service-icon { font-size: 1.8rem; margin-bottom: 0.85rem; display: block; }
.service-card h4 { margin-bottom: 0.65rem; }
.service-card p { font-size: 0.9rem; color: var(--txt2); line-height: 1.78; margin-bottom: 1.5rem; }
.service-link { font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; color: var(--ac-dk); display: inline-flex; align-items: center; gap: 0.4rem; transition: gap var(--tr); }
.service-link::after { content: '→'; }
.service-card:hover .service-link { gap: 0.75rem; }
.services-cta { text-align: center; margin-top: 3rem; }

/* ═══════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════ */
/* ── Testimonial Slider ── */
.testi-bg { position: relative; overflow: hidden; }
.testi-bg-img { position: absolute; inset:0; background-size:cover; background-position:center; opacity:.12; }
.testi-wrap { max-width: 740px; margin: 0 auto; text-align: center; padding: 5rem 0; position: relative; }
.testi-slide { display: none; animation: testi-in .5s ease; }
.testi-slide.active { display: block; }
@keyframes testi-in { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }
.testi-quote-mark { font-family: var(--font-head); font-size: 6rem; line-height: 1; color: rgba(122,158,113,.25); display: block; margin-bottom: -1.5rem; }
.testi-text { font-family: var(--font-head); font-size: clamp(1.2rem, 2.5vw, 1.8rem); color: rgba(255,255,255,.95); line-height: 1.65; margin-bottom: 2rem; position: relative; }
.testi-name { font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ac-lt); }
.testi-role { font-family: var(--font-body); font-size: 0.78rem; color: rgba(255,255,255,.5); margin-top: 0.25rem; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; padding: 0 0 3rem; position: relative; z-index: 2; }
.testi-prev, .testi-next { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 1rem; transition: background .25s, color .25s; display: flex; align-items: center; justify-content: center; }
.testi-prev:hover, .testi-next:hover { background: rgba(255,255,255,.25); color: #fff; }
.testi-dots { display: flex; gap: .5rem; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; cursor: pointer; padding: 0; transition: background .25s, transform .25s; }
.testi-dot.active { background: var(--ac-lt); transform: scale(1.3); }

/* ═══════════════════════════════════
   KONTAKT BEREICH
═══════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.contact-info h2 { margin: 0.5rem 0 1rem; }
.contact-info .lead { margin-bottom: 2.5rem; }
.info-list { display: flex; flex-direction: column; gap: 0; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--border); }
.info-item:last-child { border-bottom: none; }
.info-ico { width: 44px; height: 44px; background: var(--ac-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.info-lbl { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ac-dk); margin-bottom: 0.2rem; }
.info-val { font-family: var(--font-body); font-size: 0.9rem; color: var(--txt2); line-height: 1.6; }

.form-box { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 2.5rem; }
.lune-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; }
/* WCAG: Label sichtbar und mit input assoziiert */
.fg label { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--txt); }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r); font-family: var(--font-body); font-size: 1rem; color: var(--txt);
  transition: border-color var(--tr), box-shadow var(--tr); outline: none; -webkit-appearance: none;
  min-height: 48px;   /* Touch-Target WCAG */
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--ac);
  box-shadow: 0 0 0 3px rgba(122,158,113,.18);
}
.fg textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.form-note a { color: var(--ac-dk); text-decoration: underline; }
.form-ok { display: none; background: #eef7ee; border: 1px solid #a8d5a2; color: #2d6a27; padding: 1rem 1.2rem; border-radius: var(--r); font-size: 0.9rem; }
.form-ok.show { display: block; }

/* Fehlermeldungen */
.form-error { color: #b83030; font-size: 0.82rem; margin-top: 0.25rem; display: none; }
.form-error.show { display: block; }

/* ═══════════════════════════════════
   PAGE HERO – Rein visuell, kein Text über Personen
═══════════════════════════════════ */
/* Bild-Block: nur dekorativ, kein Text darüber */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 320px;
  max-height: 580px;
  overflow: hidden;
  /* Kein padding-top – Bild füllt den Bereich vollständig */
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 20%; /* Person nie am untersten Rand */
  transition: transform 0.1s linear;
}
/* Kein Text-Overlay mehr */
.page-hero-bg::after { content: none; }

/* Titel-Block: separat UNTER dem Bild, auf cremefarbenem Grund */
.page-title-block {
  background: var(--bg2);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}
.page-title-block .eyebrow { margin-bottom: 0.5rem; }
.page-title-block h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-top: 0.3rem;
  color: var(--dark);
}
.page-title-block p {
  color: var(--txt2);
  font-size: 1.05rem;
  margin-top: 0.5rem;
  max-width: 520px;
}

/* ═══════════════════════════════════
   ÜBER MICH SEITE
═══════════════════════════════════ */
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-page-img { aspect-ratio: 3/4; border-radius: var(--r); overflow: hidden; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 2rem 1.5rem; text-align: center; transition: all var(--tr); }
.value-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-3px); }
.value-icon { font-size: 2.2rem; margin-bottom: 0.85rem; }
.value-card h4 { margin-bottom: 0.6rem; }
.value-card p { font-size: 0.88rem; color: var(--txt2); line-height: 1.72; }
.cta-banner { background: var(--dark); padding: 5rem 0; text-align: center; }
.cta-banner h2 { color: #fff; margin: 0.5rem 0 1rem; }
.cta-banner .lead { color: rgba(255,255,255,.65); margin: 0 auto 2.5rem; }

/* ═══════════════════════════════════
   ANGEBOT SEITE
═══════════════════════════════════ */
.angebot-intro { max-width: 620px; margin: 0 auto 4rem; text-align: center; }
.angebot-intro h2 { margin: 0.5rem 0 1rem; }
.angebot-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.angebot-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 2rem 1.8rem; transition: all var(--tr); }
.angebot-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-3px); }
.angebot-nr { font-family: var(--font-body); font-size: 2.8rem; font-weight: 800; letter-spacing: -0.04em; color: var(--bg3); line-height: 1; margin-bottom: 1rem; }
.angebot-card h4 { margin-bottom: 0.65rem; }
.angebot-card p { font-size: 0.9rem; color: var(--txt2); line-height: 1.75; margin-bottom: 1.2rem; }
.price-tag { display: inline-block; background: var(--ac-pale); color: var(--ac-dk); font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; padding: 0.3rem 0.85rem; border-radius: 50px; border: 1px solid rgba(139,94,82,.3); }
.prozess-section { background: var(--bg2); }
.prozess-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 3.5rem; position: relative; }
.prozess-grid::before { content: ''; position: absolute; top: 21px; left: calc(12.5% + 1rem); right: calc(12.5% + 1rem); height: 2px; background: var(--border); }
.p-step { text-align: center; position: relative; }
.p-num { width: 42px; height: 42px; border-radius: 50%; background: var(--ac); color: #fff; font-family: var(--font-body); font-size: 0.9rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; box-shadow: 0 0 0 5px var(--bg2); }
.p-step h5 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.p-step p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════
   KONTAKT SEITE
═══════════════════════════════════ */
.kontakt-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
#footer { background: var(--dark); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; padding: 4.5rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo-link { display: inline-block; margin-bottom: 0.85rem; }
.footer-tagline { font-family: var(--font-body); font-size: 0.875rem; color: rgba(255,255,255,.55); line-height: 1.8; max-width: 240px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.5rem; }
.soc-btn { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 0.82rem; color: rgba(255,255,255,.55); transition: all var(--tr); text-decoration: none; }
.soc-btn:hover { background: var(--ac); border-color: var(--ac); color: #fff; transform: translateY(-2px); }
.f-heading { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 1.2rem; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.f-links a { font-family: var(--font-body); font-size: 0.9rem; color: rgba(255,255,255,.55); transition: color var(--tr); }
.f-links a:hover { color: var(--ac-lt); }
.f-address { font-family: var(--font-body); font-size: 0.9rem; line-height: 1.85; font-style: normal; color: rgba(255,255,255,.55); }
.f-address a { color: rgba(255,255,255,.55); }
.f-address a:hover { color: var(--ac-lt); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 1.5rem 0; }
.footer-copy { font-family: var(--font-body); font-size: 0.82rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-family: var(--font-body); font-size: 0.82rem; color: rgba(255,255,255,.35); transition: color var(--tr); text-decoration: underline; }
.footer-legal a:hover { color: var(--ac-lt); }

/* ═══════════════════════════════════
   ANIMATIONEN
═══════════════════════════════════ */
.fade-up    { opacity: 0; transform: translateY(26px); transition: opacity 0.62s ease, transform 0.62s ease; }
.fade-left  { opacity: 0; transform: translateX(-26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-right { opacity: 0; transform: translateX(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.in, .fade-left.in, .fade-right.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }

/* ═══════════════════════════════════
   BILDER-AKZENT GRID (Über mich)
═══════════════════════════════════ */
.img-accent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 340px;
  gap: 0;
}
.img-accent-item {
  overflow: hidden;
}
.img-accent-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}
.img-accent-item:hover img {
  transform: scale(1.04);
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media(max-width:1024px){
  .about-grid,.about-page-grid{grid-template-columns:1fr;gap:3rem;}
  .about-img-frame,.about-page-img{max-width:400px;aspect-ratio:3/4;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem;}
  .angebot-grid{grid-template-columns:1fr 1fr;}
  .prozess-grid{grid-template-columns:1fr 1fr;}
  .prozess-grid::before{display:none;}
  .kontakt-grid,.contact-grid{grid-template-columns:1fr;gap:3rem;}
}
@media(max-width:900px){
  /* Bei 23px Nav-Links früher auf Burger umschalten */
  nav,.nav-cta{display:none;}
  .burger{display:flex;}
}
@media(max-width:768px){
  .section{padding:4rem 0;}
  .services-grid,.values-grid,.angebot-grid,.prozess-grid{grid-template-columns:1fr;}
  .form-row2{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column;text-align:center;}
  .footer-legal{justify-content:center;}
  .stats-grid{grid-template-columns:1fr 1fr;gap:1.5rem;}
  .gallery-strip{height:200px;}

  /* ── HERO MOBILE ── */
  /* Hintergrundbild ausblenden – stattdessen echtes img unten */
  #hero {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 0;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-bg {
    display: none;
  }
  /* Wrap: Text zentriert oben */
  #hero .wrap {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    flex-direction: column;
    background: var(--bg2);
  }
  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  /* Hero h1 etwas kleiner als globales clamp – Buttons bleiben sichtbar */
#hero h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }

.hero-kicker { justify-content: center; }
  .hero-btns   { justify-content: center; }
  .hero-sub    { margin-left: auto; margin-right: auto; }

  /* Echtes Foto unter dem Text – volle Breite, Frau komplett sichtbar */
  .hero-mobile-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 65vw;
    object-fit: cover;
    object-position: center top;
  }

  /* Scroll-Indikator auf Mobile ausblenden */
  .hero-scroll { display: none; }

  /* Bilder-Akzent: auf Mobile untereinander stapeln */
  .img-accent-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .img-accent-item {
    height: 260px;
  }
}
