*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #2245b0;
  --primary-dark: #1a2d6b;
  --primary-light: #3560c8;
  --accent: #c8956c;
  --accent-light: #f0dcc8;
  --accent-glow: #d4a37320;
  --bg: #fafcfb;
  --surface: #ffffff;
  --text: #1c1a24;
  --text-light: #5a5c6e;
  --border: #d8e0db;
  --shadow: 0 4px 24px rgba(15,45,26,0.07);
  --shadow-lg: 0 12px 48px rgba(15,45,26,0.10);
  --radius: 14px;
  --header-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}

/* ─── HEADER ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(15,45,26,0.08); }

.header-inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* Logo image in header */
.logo-img-wrap { padding: 0; gap: 10px; align-items: center; }
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img-footer {
  height: 44px;
  filter: brightness(0) invert(1);
}
.logo-text {
font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}


.logo-text strong {
  font-weight: 700;
  color: var(--primary-light);
}

/* Form status messages */
.form-status {
  font-size: 0.88rem;
  padding: 0;
  margin-bottom: 8px;
  border-radius: 8px;
  transition: all 0.3s;
}
.form-status.success {
  color: #1a7a3c;
  background: #e6f7ed;
  padding: 12px 16px;
}
.form-status.error {
  color: #b91c1c;
  background: #fef2f2;
  padding: 12px 16px;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  text-decoration: none; color: var(--text);
  font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav a:hover { background: var(--primary); color: #fff; }
.nav a.cta-link {
  background: var(--accent); color: #fff;
  font-weight: 600;
}
.nav a.cta-link:hover { background: #b57f56; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  margin-top: var(--header-h);
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: #fff;
  padding: 100px 24px 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -60%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
  max-width: 900px; margin: 0 auto;
  text-align: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 28px; border-radius: 50px;
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 32px; letter-spacing: 0.8px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 24px;
  font-weight: 800;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 680px; margin: 0 auto 40px;
  opacity: 0.9; line-height: 1.8;
}
.hero-cta {
  display: inline-flex; gap: 32px; flex-wrap: wrap; justify-content: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 20px rgba(200,149,108,0.35);
}
.btn-accent:hover { box-shadow: 0 6px 28px rgba(200,149,108,0.5); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ─── SECTIONS COMMON ─── */
.section { padding: 100px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px; color: var(--primary-dark);
}
.section-sub {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 640px; line-height: 1.8;
}
.section-sub.centered { margin: 0 auto; text-align: center; }
.text-center { text-align: center; }

/* ─── SERVICES CARDS ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px; margin-top: 56px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.5rem; color: #fff;
}
.service-card h3 {
  font-size: 1.2rem; margin-bottom: 12px;
  font-family: 'Inter', sans-serif; font-weight: 700;
}
.service-card p {
  font-size: 0.92rem; color: var(--text-light); line-height: 1.7;
}

/* ─── WHY CHOOSE ─── */
.why-section {
  background: linear-gradient(170deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 80px; background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 0%);
}
.why-section::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px; background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.why-section .section-label { color: var(--accent-light); }
.why-section .section-title { color: #fff; }
.why-section .section-sub { color: rgba(255,255,255,0.8); }

.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; margin-top: 56px; position: relative; z-index: 1;
}
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px; border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}
.why-item:hover { background: rgba(255,255,255,0.1); }
.why-check {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: #fff; font-weight: 700;
  margin-top: 2px;
}
.why-item h4 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 1rem; margin-bottom: 6px;
}
.why-item p {
  font-size: 0.9rem; opacity: 0.85; line-height: 1.6;
}

/* ─── LEISTUNGEN ─── */
.leistungen-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-top: 56px;
}
.leistungen-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
}
.leistungen-block h3 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 1.15rem; margin-bottom: 20px;
  color: var(--primary);
}
.leistungen-list { list-style: none; }
.leistungen-list li {
  padding: 10px 0; font-size: 0.93rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text);
}
.leistungen-list li:last-child { border-bottom: none; }
.leistungen-list li::before {
  content: '→';
  color: var(--accent); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}

/* ─── TESTIMONIAL ─── */
.testimonial-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonial-card {
  max-width: 760px; margin: 0 auto;
  text-align: center;
}
.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem; color: var(--accent);
  line-height: 0.6; margin-bottom: 12px;
  opacity: 0.5;
}
.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--primary-dark);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-author {
  font-size: 0.9rem; color: var(--text-light);
  font-weight: 500;
}

/* ─── FAQ ─── */
.faq-list { max-width: 780px; margin: 48px auto 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--surface);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
  width: 100%; padding: 20px 24px;
  background: none; border: none;
  font-size: 1rem; font-weight: 600;
  color: var(--text); cursor: pointer;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  text-align: left; font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-arrow {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s;
  font-size: 0.8rem; color: var(--primary);
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  background: var(--primary); color: #fff;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.93rem; color: var(--text-light); line-height: 1.8;
}

/* ─── PREISE ─── */
.preise-section { background: var(--surface); border-top: 1px solid var(--border); }
.preise-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 56px;
}
.preis-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  background: var(--bg);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.preis-card.featured {
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.preis-card.featured::before {
  content: 'Empfohlen';
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 18px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 1px;
}
.preis-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.preis-card h3 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 1.15rem; margin-bottom: 8px;
}
.preis-card .preis-desc {
  font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px;
}
.preis-card .preis-tag {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 800;
  color: var(--primary-dark); margin-bottom: 4px;
}
.preis-card .preis-unit {
  font-size: 0.82rem; color: var(--text-light); margin-bottom: 28px;
}
.preis-features { list-style: none; text-align: left; margin-bottom: 28px; }
.preis-features li {
  padding: 8px 0; font-size: 0.9rem;
  display: flex; gap: 10px; align-items: flex-start;
}
.preis-features li::before {
  content: '✓'; color: var(--primary-light); font-weight: 700; flex-shrink: 0;
}
.preis-btn {
  display: block; width: 100%; padding: 13px;
  border-radius: 50px; font-weight: 600; font-size: 0.92rem;
  text-decoration: none; text-align: center;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer; border: none;
}
.preis-btn-primary {
  background: var(--primary); color: #fff;
}
.preis-btn-primary:hover { background: var(--primary-light); }
.preis-btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.preis-btn-outline:hover { background: var(--primary); color: #fff; }

/* ─── KONTAKT ─── */
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 56px;
}
.kontakt-info h3 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 1.2rem; margin-bottom: 20px; color: var(--primary);
}
.kontakt-item {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 22px;
}
.kontakt-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; flex-shrink: 0;
}
.kontakt-item strong {
  display: block; font-size: 0.82rem; color: var(--text-light);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.kontakt-item span { font-size: 0.95rem; }
.kontakt-item a { color: var(--primary); text-decoration: none; }
.kontakt-item a:hover { text-decoration: underline; }

.kontakt-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 6px; color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: 10px;
  font-size: 0.93rem; font-family: 'Inter', sans-serif;
  background: var(--bg); color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,77,46,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--primary); color: #fff;
  border: none; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}
.form-submit:hover { background: var(--primary-light); }

/* ─── FOOTER ─── */
.footer {
  background: var(--primary-dark); color: #fff;
  padding: 60px 24px 30px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo { color: #fff; font-size: 1.3rem; margin-bottom: 14px; display: inline-flex; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 340px; color: rgba(255,255,255,0.88); }
.footer h4 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 1px; color: rgba(255,255,255,0.75); margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; color: rgba(255,255,255,0.9); font-size: 0.88rem; }
.footer-links a {
  color: rgba(255,255,255,0.92); text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-bottom {
  padding-top: 24px; text-align: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.7);
}
.footer-hinweis-caramel {
  background: #fdf3e8;
  border: 2px solid var(--accent);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 32px; margin-top: 32px;
  font-size: 0.92rem; line-height: 1.85;
  color: var(--text);
}
.footer-hinweis-caramel strong { color: #a07040; font-size: 1rem; }

/* ─── FILE UPLOAD ─── */
.file-input {
  width: 100%; padding: 12px 16px;
  border: 2px dashed var(--border); border-radius: 10px;
  font-size: 0.9rem; font-family: 'Inter', sans-serif;
  background: var(--bg); color: var(--text);
  cursor: pointer; transition: border-color 0.2s;
}
.file-input:hover { border-color: var(--accent); }
.file-hint {
  display: block; margin-top: 6px;
  font-size: 0.78rem; color: var(--text-light);
  font-style: italic;
}
.file-list { list-style: none; margin: 10px 0 0; padding: 0; }
.file-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 8px 12px; margin-bottom: 6px;
  background: #fdf3e8; border: 1px solid var(--accent);
  border-radius: 8px; font-size: 0.82rem; color: var(--text);
}
.file-list li span.file-size { color: var(--text-light); white-space: nowrap; }
.file-list li.file-error { background: #fdecec; border-color: #d9534f; color: #a12b28; }
.file-list li.file-info {
  background: transparent; border: none; padding: 4px 2px;
  font-size: 0.78rem; color: var(--text-light); font-style: italic;
}
.file-meta { display: inline-flex; align-items: center; gap: 10px; }
.file-remove {
  border: none; background: transparent; cursor: pointer;
  color: var(--text-light); font-size: 1.15rem; line-height: 1;
  padding: 0 2px; transition: color 0.2s;
}
.file-remove:hover { color: #d9534f; }


/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s 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; }
.reveal-delay-4 { transition-delay: 0.35s; }

/* ─── SPRACHEN BADGE ─── */
.lang-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-light);
  color: var(--primary-dark);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  margin-top: 20px;
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--border);
  transform: translateY(-120%);
  transition: transform 0.35s ease;
  z-index: 999;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  display: block; padding: 14px 0;
  font-size: 1rem; font-weight: 500;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; }
  .leistungen-wrap { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 70px 20px 100px; }
  .section { padding: 70px 20px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .preise-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
/* Footer CTA button */
.btn-footer {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  padding: 10px 22px; border-radius: 50px;
  background: var(--accent); color: #fff !important;
  font-size: 0.82rem; font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(200,149,108,0.3);
}
.btn-footer:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(200,149,108,0.45); color: #fff !important; }
