/* Andrea Milz Malerin – Aachen
   Stil: hell, präzise, warm-handwerklich (Trust & Authority, angepasst für Kleinbetrieb)
   Fonts: Fraunces (Display-Serif) + Karla (Humanist Sans), lokal eingebunden */

@font-face {
  font-family: "Fraunces";
  src: url("assets/fraunces.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Karla";
  src: url("assets/karla.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --bg: #FAF7F1;
  --cream: #F2ECE1;
  --card: #FFFFFF;
  --ink: #2B2520;
  --muted: #6E6156;
  --terra: #A6482B;
  --terra-dark: #8A3A21;
  --terra-deep: #6E2E1A;
  --sand: #E7DDCE;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Karla", "Helvetica Neue", Arial, sans-serif;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(43, 37, 32, 0.09);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); line-height: 1.12; font-weight: 600; }
h2 { font-size: clamp(30px, 4.4vw, 44px); letter-spacing: -0.01em; max-width: 21ch; }

.kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 26px;
  min-height: 48px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-solid {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 6px 18px rgba(166, 72, 43, 0.32);
}
.btn-solid:hover { background: var(--terra-dark); transform: translateY(-2px); }
.btn-ghost {
  color: var(--ink);
  border: 2px solid var(--sand);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--terra); color: var(--terra-dark); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--terra-deep); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25); }
.btn-big { font-size: 17px; padding: 16px 30px; }
.btn:focus-visible, a:focus-visible { outline: 3px solid var(--terra); outline-offset: 3px; }

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
}
.head-inner { display: flex; align-items: center; gap: 28px; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra) 55%, #C9906B 55%, #C9906B 78%, #E4CDA9 78%);
}
.brand-text { font-family: var(--serif); font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.brand-text em { font-style: italic; font-weight: 400; color: var(--terra-dark); }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a { color: var(--ink); text-decoration: none; font-weight: 700; font-size: 15.5px; padding: 6px 2px; }
.main-nav a:hover { color: var(--terra-dark); }
.head-call { padding: 10px 20px; min-height: 42px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 40px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 66px);
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.stroke-word { position: relative; display: inline-block; color: var(--terra-dark); }
.stroke-svg {
  position: absolute;
  left: -2%; right: -2%; bottom: -0.18em;
  width: 104%; height: 0.32em;
  color: var(--terra);
}
.lead { font-size: 19px; color: var(--muted); max-width: 46ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.hero-proof { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15.5px; color: var(--ink); }
.stars { color: #E0A23C; letter-spacing: 2px; font-size: 17px; }

.hero-media { position: relative; }
.hero-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(43, 37, 32, 0.08);
  pointer-events: none;
}
.hero-chips {
  position: absolute;
  left: 22px;
  bottom: -18px;
  display: flex;
  gap: 8px;
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.hero-chips span {
  width: 30px; height: 38px; border-radius: 6px;
  background: var(--c);
}

/* ---------- Werte ---------- */
.values { padding: 72px 0 8px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value {
  background: var(--card);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
}
.value svg { width: 30px; height: 30px; color: var(--terra); margin-bottom: 14px; }
.value h3 { font-size: 20px; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 16px; }

/* ---------- Leistungen ---------- */
.services { padding: 88px 0; }
.services h2 { margin-bottom: 38px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
  background: var(--card);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-chip {
  display: block;
  width: 44px; height: 12px;
  border-radius: 999px;
  background: var(--c);
  margin-bottom: 18px;
}
.card h3 { font-size: 23px; margin-bottom: 10px; }
.card p { color: var(--muted); }
.section-cta {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 26px 30px;
}
.section-cta p { font-family: var(--serif); font-size: 21px; font-weight: 600; }

/* ---------- Über ---------- */
.about { padding: 20px 0 88px; }
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-small {
  position: absolute;
  right: -26px; bottom: -34px;
  width: 52%;
  border: 6px solid var(--bg);
}
.about-copy h2 { margin-bottom: 18px; }
.about-copy p { color: var(--muted); margin-bottom: 16px; max-width: 52ch; }
.check-list { list-style: none; margin-top: 8px; }
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--terra);
  -webkit-mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Cpath d="M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z"/%3E%3C/svg%3E') center / contain no-repeat;
  mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Cpath d="M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z"/%3E%3C/svg%3E') center / contain no-repeat;
}

/* ---------- Ablauf ---------- */
.steps { padding: 80px 0; background: var(--cream); }
.steps h2 { margin-bottom: 38px; }
.step-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step-grid li {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--sand);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 16px;
}
.step-grid h3 { font-size: 21px; margin-bottom: 8px; }
.step-grid p { color: var(--muted); font-size: 16px; }

/* ---------- Kontakt ---------- */
.contact {
  padding: 88px 0;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(255, 255, 255, 0.14), transparent 60%),
    linear-gradient(140deg, var(--terra-dark), var(--terra-deep));
  color: #fff;
}
.contact-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.contact .kicker { color: #F3C8A8; }
.contact h2 { color: #fff; margin-bottom: 16px; }
.contact-copy > p { color: rgba(255, 255, 255, 0.85); max-width: 44ch; margin-bottom: 26px; }
.contact-facts { display: grid; gap: 22px; }
.fact {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.fact h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--sans); font-weight: 700; color: #F3C8A8; margin-bottom: 6px; }
.fact p { color: #fff; }
.fact .stars { color: #F6C453; }

/* ---------- Footer ---------- */
.site-foot { padding: 36px 0 110px; background: #241E19; color: rgba(255, 255, 255, 0.75); }
.foot-inner { display: grid; gap: 8px; font-size: 14.5px; }
.site-foot a { color: #fff; }
.foot-note { color: rgba(255, 255, 255, 0.5); }
.foot-credit a { color: #F3C8A8; }

/* ---------- Sticky Call (mobil) ---------- */
.sticky-call {
  display: none;
  position: fixed;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 60;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--terra);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  padding: 16px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(110, 46, 26, 0.45);
}
.sticky-call svg { width: 20px; height: 20px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .values-grid, .step-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .about-media { margin-bottom: 26px; }
  .hero { padding-top: 44px; }
}
@media (max-width: 720px) {
  .main-nav { display: none; }
  .head-call { margin-left: auto; }
  .brand-text { font-size: 18px; }
  .sticky-call { display: flex; }
  .hero h1 { font-size: clamp(36px, 10vw, 46px); }
  .lead { font-size: 17.5px; }
  .hero-chips { left: 12px; bottom: -14px; padding: 8px 10px; }
  .hero-chips span { width: 24px; height: 30px; }
  .about-small { right: 0; bottom: -26px; }
  .section-cta { flex-direction: column; align-items: flex-start; }
  .site-foot { padding-bottom: 130px; }
}
