:root {
  --ink: #211F1D;
  --ink-soft: #5B5650;
  --ink-faint: #8A8479;
  --cream: #FAF6EF;
  --cream-alt: #F1EADC;
  --white: #FFFFFF;
  --terracotta: #E02124;
  --terracotta-dark: #A81619;
  --border: rgba(33,31,29,0.10);
  --shadow: rgba(33,31,29,0.14);

  --font-display: 'Calistoga', Georgia, 'Times New Roman', serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font-family: var(--font-body); line-height: 1.65; font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .brand-word { font-family: var(--font-display); font-weight: 400; margin: 0; text-wrap: balance; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--terracotta); color: #fff;
  padding: 12px 20px; border-radius: 0 0 8px 0; z-index: 100;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--terracotta); outline-offset: 2px;
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-body); font-size: 15px; font-weight: 600; text-decoration: none;
  padding: 14px 26px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  min-height: 48px;
}
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: 0 10px 22px -12px var(--terracotta-dark); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-full { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 24px; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo { width: 38px; height: 38px; border-radius: 8px; }
.brand-word { font-size: 19px; color: var(--terracotta-dark); }
.main-nav { display: flex; gap: 28px; margin-left: auto; font-size: 15px; font-weight: 500; }
.main-nav a { text-decoration: none; color: var(--ink-soft); transition: color .15s; }
.main-nav a:hover { color: var(--terracotta-dark); }
.nav-cta { margin-left: 8px; padding: 11px 20px; min-height: 0; font-size: 14px; }
.menu-toggle {
  display: none; flex-direction: column; gap: 4px; width: 40px; height: 40px;
  align-items: center; justify-content: center; background: none; border: none; cursor: pointer;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

@media (max-width: 860px) {
  .main-nav {
    position: fixed; inset: 64px 0 0 0; background: var(--cream); flex-direction: column;
    padding: 32px 24px; gap: 20px; font-size: 18px; transform: translateY(-12px); opacity: 0;
    pointer-events: none; transition: opacity .2s ease, transform .2s ease; z-index: 39;
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.hero-media-fade {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(35,14,12,0.96) 0%, rgba(38,16,13,0.93) 40%, rgba(42,18,15,0.75) 58%, rgba(46,20,17,0.32) 76%, rgba(46,20,17,0.08) 92%);
}
.hero-content { position: relative; z-index: 1; padding: 100px 0; max-width: 640px; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #E9C9A8; margin: 0 0 18px;
}
.review-badge {
  display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22); border-radius: 999px; padding: 8px 16px 8px 14px;
  color: #fff; font-size: 13.5px; font-weight: 500; margin: 0 0 18px;
}
.review-stars { color: #F0D9BF; font-size: 14px; letter-spacing: 1px; }
.hero h1 { font-size: clamp(38px, 5.6vw, 64px); line-height: 1.05; color: #fff; margin-bottom: 22px; }
.hero h1 .accent { color: var(--terracotta); }
.hero .lead { font-size: 18px; color: rgba(255,255,255,0.88); max-width: 46ch; margin: 0 0 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .hero { min-height: 560px; }
  .hero-media img { object-position: 75% center; }
  .hero-media-fade { background: linear-gradient(180deg, rgba(35,14,12,0.55) 0%, rgba(35,14,12,0.82) 55%, rgba(35,14,12,0.94) 100%); }
  .hero-content { padding: 72px 0 56px; max-width: 100%; }
}

/* ---------- trust strip ---------- */
.trust-strip { background: var(--terracotta); }
.trust-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; padding: 22px 24px; }
.trust-item { display: flex; align-items: baseline; gap: 8px; color: #fff; }
.trust-item strong { font-family: var(--font-display); font-size: 20px; color: #F0D9BF; }
.trust-item span { font-size: 13.5px; color: rgba(255,255,255,0.82); }

/* ---------- sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--cream-alt); }
.section-dark { background: var(--terracotta-dark); color: #fff; }
.section-head { max-width: 62ch; margin: 0 0 52px; }
.kicker {
  font-family: var(--font-body); font-size: 12.5px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--terracotta-dark); margin: 0 0 14px;
}
.kicker-light { color: #E9C9A8; }
h2 { font-size: clamp(28px, 3.4vw, 38px); margin: 0 0 14px; }
h2.light { color: #fff; }
.section-lead { color: var(--ink-soft); font-size: 16.5px; margin: 0; }
.section-lead.light { color: rgba(255,255,255,0.82); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 32px 28px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 36px -24px var(--shadow); }
.service-icon {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 18px;
  background: var(--cream-alt); color: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
}
.service-card h3 { font-size: 19px; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about-media-frame { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 60px -32px var(--shadow); }
.about-media-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 20% center; }
.about-text p { color: var(--ink-soft); font-size: 16px; }
.about-list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.about-list li { position: relative; padding-left: 26px; font-size: 15px; color: var(--ink); font-weight: 500; }
.about-list li::before {
  content: ''; position: absolute; left: 0; top: 6px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--terracotta);
}

@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } .about-media-frame { aspect-ratio: 16/10; } }

/* ---------- ablauf ---------- */
.step-rail { display: flex; align-items: center; justify-content: space-between; position: relative; max-width: 640px; margin: 0 auto 28px; padding: 0 4px; }
.rail-line { position: absolute; left: 22px; right: 22px; top: 50%; height: 2px; background: var(--border); transform: translateY(-50%); z-index: 0; }
.step-dot {
  position: relative; z-index: 1; width: 44px; height: 44px; border-radius: 50%;
  background: var(--terracotta); color: #fff; font-family: var(--font-display); font-size: 17px;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card { background: var(--white); border-radius: 18px; padding: 26px 26px 28px; border: 1px solid var(--border); }
.step-card h3 { font-size: 18px; margin: 0 0 8px; }
.step-card p { color: var(--ink-soft); font-size: 14px; margin: 0; }
.step-no-mobile { display: none; }

@media (max-width: 560px) {
  .step-rail { display: none; }
  .step-no-mobile {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%; margin-bottom: 10px;
    background: var(--terracotta); color: #fff; font-family: var(--font-display); font-size: 13px;
  }
}

@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-grid > * { min-width: 0; }
.contact-info a { overflow-wrap: break-word; }
.contact-info { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.contact-info a, .contact-row { display: flex; align-items: center; gap: 14px; text-decoration: none; font-size: 16px; color: #fff; font-weight: 500; }
.contact-info .ic {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; flex: none; font-size: 16px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border-radius: 8px; border: 1px solid var(--border);
  font-family: var(--font-body); font-size: 15px; background: var(--cream); color: var(--ink);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%235B5650' stroke-width='1.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--terracotta); outline-offset: 1px; }

@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- quote wizard ---------- */
.quote-wizard { background: var(--white); border-radius: 20px; padding: 32px 32px 28px; color: var(--ink); }
.wizard-title { font-weight: 600; font-size: 15.5px; margin: 0 0 16px; }
.wizard-progress { height: 5px; border-radius: 999px; background: var(--cream-alt); overflow: hidden; margin-bottom: 26px; }
.wizard-progress-fill { display: block; height: 100%; width: 20%; background: var(--terracotta); border-radius: 999px; transition: width .3s ease; }

.wizard-step { border: 0; padding: 0; margin: 0; display: none; }
.wizard-step.is-active { display: block; }
.wizard-step legend { font-family: var(--font-display); font-weight: 400; font-size: 21px; margin: 0 0 18px; padding: 0; color: var(--ink); }

.wizard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 6px; }
.wizard-grid-4 { grid-template-columns: repeat(2, 1fr); }
.wizard-card {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  border: 1.5px solid var(--border); border-radius: 12px; padding: 18px 12px; cursor: pointer;
  font-size: 13.5px; font-weight: 600; color: var(--ink); transition: border-color .15s ease, background .15s ease;
}
.wizard-card input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.wizard-card:hover { border-color: var(--terracotta); }
.wizard-card:has(input:checked) { border-color: var(--terracotta); background: #FBEAE7; }
.wizard-card:has(input:focus-visible) { outline: 2px solid var(--terracotta); outline-offset: 2px; }
.wizard-icon { color: var(--terracotta); }

.wizard-nav { display: flex; gap: 12px; margin-top: 22px; }
.wizard-nav .btn { flex: 1; }
.btn-ghost-dark { background: transparent; border-color: var(--border); color: var(--ink); }
.btn-ghost-dark:hover { background: var(--cream-alt); }

.wizard-reassure { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-faint); margin: 18px 0 0; }
.wizard-success { font-size: 15.5px; color: var(--ink); background: var(--cream-alt); border-radius: 12px; padding: 20px; margin: 0; }

@media (max-width: 480px) { .wizard-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- footer ---------- */
.site-footer { background: var(--terracotta-dark); color: rgba(255,255,255,0.75); padding: 36px 0; }
.footer-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.footer-inner .brand-word { color: #fff; font-size: 17px; }
.footer-links { display: flex; gap: 20px; font-size: 14px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.75); }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 13px; margin: 0; width: 100%; text-align: center; opacity: 0.6; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
