/* ═══════════════════════════════════════════════
   CSS RESET & CUSTOM PROPERTIES
   ═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary: #1a1a1a;
  --color-accent: #c8a96e;
  --color-accent-dark: #a8893e;
  --color-bg: #fafaf8;
  --color-white: #ffffff;
  --color-text: #2d2d2d;
  --color-text-light: #666666;
  --color-border: #e8e4dc;
  --color-success: #2d7a4f;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--color-primary); color: var(--color-white); }
.section--warm { background: #f5f0e8; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════ */
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: block;
}

.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--color-text-light); max-width: 600px; margin: 0 auto 48px; }

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
  transition: background 0.3s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.header__logo { display: flex; align-items: center; gap: 12px; }
.header__logo img { height: 44px; width: auto; }

.header__nav { display: flex; align-items: center; gap: 32px; }
.header__nav a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; white-space: nowrap; }
.header__nav a:hover { color: var(--color-accent); }

.header__cta { display: flex; align-items: center; gap: 16px; }

.header__phone {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.header__phone:hover { color: var(--color-accent); }

.btn-header {
  background: var(--color-accent);
  color: var(--color-primary) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn-header:hover { background: var(--color-accent-dark); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; transition: all 0.3s; }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.35) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero__text { color: var(--color-white); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 169, 110, 0.2);
  border: 1px solid rgba(200, 169, 110, 0.5);
  color: var(--color-accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 24px; color: var(--color-white); }
.hero__title .accent { color: var(--color-accent); }
.hero__subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }

.hero__trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__stars { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 600; }
.stars { color: #fbbf24; letter-spacing: 2px; font-size: 1rem; }
.hero__geo { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.75); font-size: 0.85rem; }
.hero__geo svg { flex-shrink: 0; }

/* Hero Form Card */
.hero__form-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero__form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  border-radius: var(--radius) var(--radius) 0 0;
}

.form-card__title { font-size: 1.3rem; font-weight: 700; color: var(--color-primary); margin-bottom: 6px; font-family: var(--font-heading); }
.form-card__subtitle { font-size: 0.88rem; color: var(--color-text-light); margin-bottom: 24px; }

.form-card__free-badge {
  display: inline-block;
  background: #dcfce7;
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CF7 Styling */
.hero__form-card .wpcf7 { margin: 0; }
.hero__form-card .wpcf7-form { display: flex; flex-direction: column; gap: 0; }

.tk-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.tk-form-group { margin-bottom: 14px; }
.tk-form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--color-text); margin-bottom: 5px; }

.hero__form-card .wpcf7-form-control:not([type=submit]) {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.hero__form-card .wpcf7-form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
}

.hero__form-card textarea.wpcf7-form-control { resize: vertical; min-height: 80px; }

.hero__form-card .wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.02em;
  margin-top: 6px;
  font-family: inherit;
}

.hero__form-card .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 169, 110, 0.4);
}

.hero__form-card .wpcf7-not-valid-tip { font-size: 0.75rem; color: #dc2626; margin-top: 4px; }
.hero__form-card .wpcf7-response-output { margin: 12px 0 0; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.85rem; border: none !important; }
.hero__form-card .wpcf7-mail-sent-ok { background: #dcfce7; color: #16a34a; }
.hero__form-card .wpcf7-validation-errors { background: #fef2f2; color: #dc2626; }

.form-card__privacy { font-size: 0.72rem; color: var(--color-text-light); text-align: center; margin-top: 12px; line-height: 1.5; }
.form-card__privacy a { color: var(--color-accent); }

/* ═══════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════ */
.trust-bar { background: var(--color-primary); padding: 20px 0; border-bottom: 1px solid rgba(200, 169, 110, 0.2); }
.trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500; }
.trust-item__icon { width: 36px; height: 36px; background: rgba(200, 169, 110, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-item__icon svg { color: var(--color-accent); }

/* ═══════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════ */
.stats { padding: 60px 0; background: var(--color-white); border-bottom: 1px solid var(--color-border); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat__number { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--color-accent); font-family: var(--font-heading); line-height: 1; margin-bottom: 8px; }
.stat__label { font-size: 0.88rem; color: var(--color-text-light); font-weight: 500; }

/* ═══════════════════════════════════════════════
   PROBLEM / LÖSUNG
   ═══════════════════════════════════════════════ */
.problem-solution { padding: 80px 0; background: #f5f0e8; }
.problem-solution__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.problem-col, .solution-col { border-radius: var(--radius); padding: 36px; }
.problem-col { background: #fff5f5; border: 1.5px solid #fecaca; }
.solution-col { background: #f0fdf4; border: 1.5px solid #bbf7d0; }
.col-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.col-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.col-icon--red { background: #fee2e2; }
.col-icon--green { background: #dcfce7; }
.col-title { font-size: 1.1rem; font-weight: 700; color: var(--color-primary); }
.col-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.col-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; line-height: 1.5; }
.col-list li .marker { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; margin-top: 2px; }
.marker--red { background: #fecaca; color: #dc2626; }
.marker--green { background: #bbf7d0; color: #16a34a; }

/* ═══════════════════════════════════════════════
   PROZESS
   ═══════════════════════════════════════════════ */
.process { padding: 80px 0; background: var(--color-white); }
.process__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; position: relative; margin-top: 48px; }
.process__steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark)); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step__number { width: 56px; height: 56px; background: var(--color-primary); color: var(--color-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; margin: 0 auto 16px; border: 3px solid var(--color-accent); font-family: var(--font-heading); }
.step__title { font-size: 0.95rem; font-weight: 700; color: var(--color-primary); margin-bottom: 8px; }
.step__desc { font-size: 0.82rem; color: var(--color-text-light); line-height: 1.5; }

/* ═══════════════════════════════════════════════
   GALERIE / REFERENZEN
   ═══════════════════════════════════════════════ */
.gallery { padding: 80px 0; background: var(--color-primary); }
.gallery .section-subtitle { color: rgba(255,255,255,0.65); }
.gallery .eyebrow { color: var(--color-accent); }
.gallery h2 { color: var(--color-white); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.gallery__item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; position: relative; }
/* Format wird per ACF inline style gesetzt */
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery__item:hover img { transform: scale(1.04); }

/* ═══════════════════════════════════════════════
   ÜBER FLORIAN
   ═══════════════════════════════════════════════ */
.about { padding: 80px 0; background: var(--color-bg); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__image-wrap { position: relative; }
.about__image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about__image img { width: 100%; height: 500px; object-fit: cover; object-position: center top; }
.about__badge { position: absolute; bottom: -20px; right: -20px; background: var(--color-accent); color: var(--color-primary); padding: 16px 20px; border-radius: var(--radius-sm); text-align: center; box-shadow: var(--shadow-md); }
.about__badge-num { font-size: 2rem; font-weight: 800; font-family: var(--font-heading); line-height: 1; }
.about__badge-text { font-size: 0.75rem; font-weight: 600; margin-top: 4px; }
.about__text h2 { margin-bottom: 20px; }
.about__text p { color: var(--color-text-light); line-height: 1.8; margin-bottom: 20px; }
.about__usp-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.about__usp-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; font-weight: 500; }
.usp-check { width: 24px; height: 24px; background: var(--color-accent); color: var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; flex-shrink: 0; }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: var(--color-primary); color: var(--color-white); font-size: 0.95rem; font-weight: 700; border-radius: var(--radius-sm); transition: background 0.2s, transform 0.15s; }
.btn-secondary:hover { background: #333; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════
   BEWERTUNGEN
   ═══════════════════════════════════════════════ */
.reviews { padding: 80px 0; background: #f5f0e8; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.review-card { background: var(--color-white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); transition: box-shadow 0.2s, transform 0.2s; }
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-card__stars { color: #fbbf24; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-card__text { font-size: 0.9rem; line-height: 1.7; color: var(--color-text); margin-bottom: 20px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--color-accent); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: var(--color-primary); flex-shrink: 0; }
.review-card__name { font-weight: 700; font-size: 0.9rem; }
.review-card__location { font-size: 0.78rem; color: var(--color-text-light); }

/* ═══════════════════════════════════════════════
   GEO SECTION
   ═══════════════════════════════════════════════ */
.geo-section { padding: 60px 0; background: var(--color-white); }
.geo-section__inner { display: flex; align-items: center; gap: 48px; background: linear-gradient(135deg, var(--color-primary) 0%, #2d2d2d 100%); border-radius: var(--radius); padding: 48px; color: var(--color-white); }
.geo-section__icon { font-size: 4rem; flex-shrink: 0; }
.geo-section__text h2 { color: var(--color-white); margin-bottom: 12px; }
.geo-section__text p { color: rgba(255,255,255,0.75); margin-bottom: 20px; font-size: 1rem; line-height: 1.7; }
.geo-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.geo-tag { background: rgba(200, 169, 110, 0.2); border: 1px solid rgba(200, 169, 110, 0.4); color: var(--color-accent); padding: 5px 14px; border-radius: 100px; font-size: 0.82rem; font-weight: 600; }

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq { padding: 80px 0; background: var(--color-bg); }
.faq__list { max-width: 760px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq__item { border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; background: var(--color-white); }
.faq__question { width: 100%; text-align: left; padding: 20px 24px; font-size: 1rem; font-weight: 600; color: var(--color-primary); background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: background 0.2s; }
.faq__question:hover { background: #f9f7f3; }
.faq__question .icon { width: 24px; height: 24px; border-radius: 50%; background: var(--color-accent); color: var(--color-primary); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; flex-shrink: 0; transition: transform 0.3s; }
.faq__item.open .faq__question .icon { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq__item.open .faq__answer { max-height: 300px; }
.faq__answer p { padding: 0 24px 20px; color: var(--color-text-light); font-size: 0.95rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════ */
.final-cta { padding: 100px 0; background: linear-gradient(135deg, var(--color-primary) 0%, #1a1a1a 100%); color: var(--color-white); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 50% 50%, rgba(200, 169, 110, 0.08) 0%, transparent 60%); pointer-events: none; }
.final-cta h2 { color: var(--color-white); margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.final-cta__buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-cta-primary { display: inline-flex; align-items: center; gap: 10px; padding: 18px 36px; background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%); color: var(--color-primary); font-size: 1.05rem; font-weight: 800; border-radius: var(--radius-sm); transition: transform 0.15s, box-shadow 0.15s; letter-spacing: 0.02em; }
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(200, 169, 110, 0.5); }
.btn-cta-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 18px 36px; background: transparent; color: var(--color-white); font-size: 1.05rem; font-weight: 700; border-radius: var(--radius-sm); border: 2px solid rgba(255,255,255,0.3); transition: border-color 0.2s, background 0.2s; }
.btn-cta-secondary:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer { background: #111; color: rgba(255,255,255,0.65); padding: 40px 0 24px; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; }
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand img { height: 36px; width: auto; opacity: 0.85; }
.footer__brand-name { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.footer__contact { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; }
.footer__contact a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer__contact a:hover { color: var(--color-accent); }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__links a:hover { color: rgba(255,255,255,0.85); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; }

/* ═══════════════════════════════════════════════
   STICKY MOBILE CTA
   ═══════════════════════════════════════════════ */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--color-primary); border-top: 2px solid var(--color-accent); padding: 12px 16px; gap: 10px; }
.sticky-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 16px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 700; }
.sticky-cta__call { background: var(--color-accent); color: var(--color-primary); }
.sticky-cta__whatsapp { background: #25d366; color: white; }

/* ═══════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════ */
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(26, 26, 26, 0.98); backdrop-filter: blur(12px); z-index: 999; padding: 24px; flex-direction: column; gap: 16px; border-bottom: 1px solid rgba(200, 169, 110, 0.2); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 500; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; gap: 40px; }
  .hero__form-card { max-width: 540px; }
  .process__steps { grid-template-columns: repeat(3, 1fr); }
  .process__steps::before { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__image img { height: 350px; }
  .about__badge { bottom: -16px; right: 16px; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__phone { display: none; }
  .btn-header { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 20px 0 40px; }
  .hero__content { padding: 40px 16px; }
  .hero__trust { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trust-bar__inner { gap: 24px; }
  .problem-solution__grid { grid-template-columns: 1fr; gap: 24px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gallery__grid { grid-template-columns: 1fr; }
  
  .reviews__grid { grid-template-columns: 1fr; }
  .geo-section__inner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .final-cta__buttons { flex-direction: column; }
  .btn-cta-primary, .btn-cta-secondary { width: 100%; justify-content: center; }
  .footer__inner { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .tk-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process__steps { grid-template-columns: 1fr; }
  .trust-bar__inner { flex-direction: column; gap: 16px; }
}

/* ═══════════════════════════════════════════════
   ANIMATIONEN
   ═══════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════
   GALERIE GRID SPANNING
   ═══════════════════════════════════════════════ */

/* Breit (16:8) → 2 Spalten */
.gallery__item--wide {
  grid-column: span 2;
}

/* Quadratisch (1:1) → 2 Zeilen */
.gallery__item--tall {
  grid-row: span 2;
  aspect-ratio: unset !important; /* Höhe ergibt sich aus 2 Zeilen */
}

.gallery__item--tall img {
  height: 100%;
}

/* Mobil: kein Spanning, alles untereinander */
@media (max-width: 768px) {
  .gallery__item--wide,
  .gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery__item--tall {
    aspect-ratio: 4/3 !important;
  }
}

/* ═══════════════════════════════════════════════
   CF7 FELDABSTÄNDE
   ═══════════════════════════════════════════════ */
.hero__form-card .wpcf7-form br {
  display: none;
}

.hero__form-card .wpcf7-form span.wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 12px;
}

.hero__form-card .wpcf7-form p {
  margin-bottom: 14px;
}
