*, *::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: #f7f9f8;
  --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/footer */
.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;
}
.footer-brand .logo { display: inline-flex; }

.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, .nav a.active { 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); }

.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; }

/* ─── PAGE HERO ─── */
.page-hero {
  margin-top: var(--header-h);
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: #fff;
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -50%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 70px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.page-hero p {
  font-size: 1.1rem; opacity: 0.9;
  max-width: 560px; margin: 0 auto;
  position: relative; z-index: 1;
}

/* ─── SECTIONS ─── */
.section { padding: 100px 24px; }
.section-inner { max-width: 1000px; 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(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 18px; color: var(--primary-dark);
}

/* ─── ABOUT ME SECTION ─── */
.about-me {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}
.about-photo {
  position: sticky; top: calc(var(--header-h) + 28px);
}
.photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.photo-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; color: rgba(255,255,255,0.5);
  font-size: 0.85rem; text-align: center;
  padding: 24px; gap: 12px;
}
.photo-placeholder .icon { font-size: 3rem; opacity: 0.4; }
.photo-accent {
  position: absolute; bottom: -12px; right: -12px;
  width: 100px; height: 100px;
  border-radius: var(--radius);
  background: var(--accent);
  z-index: -1;
}
.about-name-card {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.about-name-card h3 {
  font-size: 1.1rem; margin-bottom: 4px;
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
}
.about-name-card p {
  font-size: 0.85rem; color: var(--text-light);
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 8px;
  color: var(--primary-dark);
}
.about-text .subtitle {
  font-size: 1.05rem; color: var(--accent);
  font-weight: 600; margin-bottom: 32px;
}
.about-text p {
  font-size: 0.97rem; line-height: 1.85;
  margin-bottom: 18px; color: var(--text);
}
.about-text .signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--accent);
  display: inline-block;
}

/* ─── COMPANY SECTION ─── */
.company-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.company-intro {
  max-width: 780px;
  margin: 0 auto 56px;
}
.company-intro p {
  font-size: 1rem; line-height: 1.85;
  color: var(--text); margin-bottom: 16px;
}

/* ─── FEATURES GRID ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  margin-bottom: 10px; color: var(--primary-dark);
}
.feature-card p {
  font-size: 0.9rem; color: var(--text-light); line-height: 1.7;
}

/* ─── PROMISE SECTION ─── */
.promise-section {
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
  color: #fff;
  position: relative; overflow: hidden;
}
.promise-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 70px; background: var(--surface);
  clip-path: ellipse(55% 100% at 50% 0%);
}
.promise-section::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 70px; background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.promise-inner {
  position: relative; z-index: 1;
  text-align: center;
}
.promise-inner .section-label { color: var(--accent-light); }
.promise-inner .section-title { color: #fff; }

.promise-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 20px;
  margin-top: 48px;
}
.promise-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 14px 26px;
  font-size: 0.93rem; font-weight: 500;
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}
.promise-item:hover { background: rgba(255,255,255,0.14); }
.promise-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  flex-shrink: 0;
}

/* ─── WHY CHOOSE STRIP ─── */
.why-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-top: 56px;
}
.why-pill {
  display: flex; align-items: center; gap: 14px;
  padding: 20px; border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.why-pill-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.why-pill span {
  font-size: 0.9rem; font-weight: 600; color: var(--text);
}

/* ─── HINWEIS ─── */
.hinweis-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.hinweis-box {
  max-width: 800px;
  margin: 0 auto;
  background: #fdf8f4;
  border: 1px solid var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 32px;
}
.hinweis-box h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.hinweis-box p {
  font-size: 0.9rem; line-height: 1.8;
  color: var(--text-light);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  text-align: center;
}
.cta-banner-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 36px;
  max-width: 700px; margin: 0 auto;
}
.cta-banner h2 {
  font-size: 1.8rem; margin-bottom: 16px; color: var(--primary-dark);
}
.cta-banner p {
  font-size: 1rem; color: var(--text-light);
  margin-bottom: 32px; line-height: 1.7;
}
.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); }

/* ─── PHOTOS ROW ─── */
.photos-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.photo-slot {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e8ede9, #d5ddd8);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.photo-slot img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.photo-slot-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; color: var(--text-light);
  font-size: 0.8rem; gap: 8px; text-align: center;
  padding: 16px;
}
.photo-slot-placeholder .icon { font-size: 2rem; opacity: 0.35; }

/* ─── 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; }
.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; }

/* ─── REVEAL ─── */
.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; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; }
  .about-me { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { position: static; max-width: 300px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 70px 20px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .photos-row { grid-template-columns: 1fr; }
  .why-strip { grid-template-columns: 1fr; }
  .promise-grid { flex-direction: column; align-items: center; }
}

@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; }

/* Outline-Button auf hellem Hintergrund (z. B. Danke-Seite) */
.btn-outline-dark {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: #fff; }
