/* Andrea Milz Malerin – Aachen. Hell, präzise, handwerklich-warm. */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 560;
  font-display: swap;
  src: url("assets/fraunces-560.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 420;
  font-display: swap;
  src: url("assets/fraunces-italic-420.woff2") format("woff2");
}

:root {
  --paper: #faf7f2;
  --paper-deep: #f2ece2;
  --ink: #2b2620;
  --muted: #6e6558;
  --accent: #b5502f;
  --accent-dark: #93401f;
  --accent-soft: #f2ddd2;
  --line: #e4dccd;
  --card: #ffffff;
  --radius: 18px;
  --display: "Fraunces", Georgia, serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { 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(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Demo-Hinweis */
.demo-note {
  background: var(--ink);
  color: #f6f1e8;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 7px 16px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px;
}
.brand {
  font-family: var(--display);
  font-weight: 560;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.brand span { font-style: italic; font-weight: 420; color: var(--accent); }
.site-nav { display: flex; gap: 22px; margin-left: auto; }
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--ink); }

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-header {
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.92rem;
  white-space: nowrap;
}
.btn-header:hover { background: #000; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 15px 32px;
  font-size: 1.05rem;
  box-shadow: 0 8px 22px rgba(181, 80, 47, 0.28);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost {
  color: var(--ink);
  padding: 15px 26px;
  font-size: 1.05rem;
  border: 1.5px solid var(--line);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); }

/* Hero */
.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 24px 90px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 560;
  font-size: clamp(2.7rem, 5.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; font-weight: 420; color: var(--accent); }
.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 34em;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.rating { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.95rem; }
.stars { color: #d9922e; letter-spacing: 2px; font-size: 1rem; }

.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(43, 38, 32, 0.18);
}
.hero-photo img { aspect-ratio: 4 / 3; object-fit: cover; }

/* Signature: Farbkarten-Fächer */
.swatch-fan {
  position: absolute;
  left: -34px;
  bottom: -38px;
  display: flex;
}
.swatch {
  width: 84px;
  height: 116px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(43, 38, 32, 0.22);
  border: 3px solid #fff;
  display: flex;
  align-items: flex-end;
  padding: 7px 8px;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transform-origin: bottom left;
}
.swatch.s1 { background: #8fa3b3; color: #f4f7f9; transform: rotate(-9deg); }
.swatch.s2 { background: #a9b5a0; color: #f5f7f3; transform: rotate(-1deg) translateX(-26px); }
.swatch.s3 { background: #e8d9bd; color: #7a6b4e; transform: rotate(7deg) translateX(-52px); }
.swatch.s4 { background: #c06a48; color: #fbf1ec; transform: rotate(15deg) translateX(-78px); }

/* Sektionen */
section { scroll-margin-top: 90px; }
.section-head { max-width: 1160px; margin: 0 auto 40px; padding: 0 24px; }
h2 {
  font-family: var(--display);
  font-weight: 560;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

/* Leistungen */
.leistungen { background: var(--paper-deep); padding: 80px 0 70px; }
.cards {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  border: 1px solid rgba(228, 220, 205, 0.7);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(43, 38, 32, 0.1); }
.card-chip { width: 44px; height: 12px; border-radius: 999px; margin-bottom: 18px; }
.chip-a { background: #8fa3b3; }
.chip-b { background: #a9b5a0; }
.chip-c { background: #e0bd7e; }
.chip-d { background: #c06a48; }
.card h3 { font-size: 1.08rem; margin-bottom: 10px; line-height: 1.3; }
.card p { color: var(--muted); font-size: 0.95rem; }
.leistungen-note {
  max-width: 1160px;
  margin: 34px auto 0;
  padding: 0 24px;
  color: var(--muted);
}
.leistungen-note a { color: var(--accent-dark); font-weight: 600; text-decoration: none; }
.leistungen-note a:hover { text-decoration: underline; }

/* Galerie */
.galerie {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.galerie figure { border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 36px rgba(43, 38, 32, 0.12); position: relative; }
.galerie img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.galerie figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 18px 12px;
  background: linear-gradient(transparent, rgba(24, 20, 16, 0.72));
  color: #f6f1e8;
  font-size: 0.88rem;
}

/* Betrieb */
.betrieb { padding: 80px 0 40px; }
.betrieb-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.betrieb-text h2 { margin-bottom: 18px; }
.betrieb-text p { color: var(--muted); max-width: 36em; }
.checks { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.checks li { padding-left: 30px; position: relative; }
.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1.5px var(--accent);
}
.checks li::after {
  content: "";
  position: absolute;
  left: 5px; top: 9px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--accent-dark);
  border-bottom: 2px solid var(--accent-dark);
  transform: rotate(-45deg);
}
.rating-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px;
  text-align: center;
  box-shadow: 0 18px 44px rgba(43, 38, 32, 0.08);
}
.rating-big {
  font-family: var(--display);
  font-weight: 560;
  font-size: 4.2rem;
  line-height: 1;
  color: var(--ink);
}
.stars.big { font-size: 1.35rem; margin: 8px 0 4px; }
.rating-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.rating-link { color: var(--accent-dark); font-size: 0.9rem; font-weight: 600; text-decoration: none; }
.rating-link:hover { text-decoration: underline; }

/* Kontakt */
.kontakt { padding: 60px 0 90px; }
.kontakt-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
  background: var(--ink);
  border-radius: 26px;
  color: #f6f1e8;
  text-align: center;
}
.kontakt-inner .kicker { color: #e0a184; }
.kontakt-inner h2 { color: #faf7f2; margin-bottom: 14px; }
.kontakt-lead { color: #c9beae; max-width: 34em; margin: 0 auto 28px; }
.phone-big {
  display: inline-block;
  font-family: var(--display);
  font-weight: 560;
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  color: #faf7f2;
  text-decoration: none;
  background: var(--accent);
  padding: 16px 40px;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}
.phone-big:hover { background: var(--accent-dark); transform: translateY(-2px); }
.kontakt-facts {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: center;
}
.kontakt-facts h3 {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: #e0a184;
  margin-bottom: 8px;
}
.kontakt-facts p { color: #e8e0d2; }
.text-link { color: #f6f1e8; font-size: 0.9rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 24px 110px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}
.site-footer a { color: var(--muted); }
.fine { font-size: 0.8rem; margin-top: 10px; }

/* Sticky Call (mobil) */
.sticky-call {
  display: none;
  position: fixed;
  left: 14px; right: 14px; bottom: 14px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 15px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(43, 38, 32, 0.35);
  z-index: 50;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

/* 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, .phone-big { transition: none; }
}

/* Responsive */
@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding-bottom: 76px; }
  .hero-visual { max-width: 640px; }
  .betrieb-inner { grid-template-columns: 1fr; }
  .rating-card { max-width: 420px; }
}
@media (max-width: 640px) {
  .site-nav { display: none; }
  .site-header { gap: 14px; justify-content: space-between; }
  .hero { padding-top: 26px; }
  .hero-actions .btn { flex: 1 1 auto; text-align: center; }
  .cards { grid-template-columns: 1fr; }
  .galerie { grid-template-columns: 1fr; padding-top: 64px; }
  .swatch-fan { left: -10px; bottom: -30px; }
  .swatch { width: 68px; height: 96px; }
  .kontakt-facts { grid-template-columns: 1fr; }
  .kontakt { padding-bottom: 60px; }
  .kontakt-inner { border-radius: 20px; }
  .sticky-call { display: flex; }
  .btn-header { display: none; }
}
