/* Malerbetrieb Olivier Aachen — hell, freundlich, handwerklich. Malerblau + warme
   Farbtupfer, Display-Schrift Outfit (lokal, OFL). Signature: Farbrolle streicht die Wand. */

@font-face {
  font-family: "Outfit";
  src: url("outfit.woff2") format("woff2");
  font-weight: 600 700;
  font-display: swap;
}

:root {
  --accent: #2653c9;
  --accent-dark: #1e44a6;
  --paint: #f4b63f;
  --ink: #22262e;
  --muted: #5c6270;
  --bg: #fbfaf7;
  --bg-alt: #f1f3f9;
  --line: #e3e2dc;
  --radius: 14px;
  --display: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --sans: "Helvetica Neue", Arial, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--accent); }

.container { max-width: 1060px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 760px; }

.demo-banner { background: #22262e; color: #fff; text-align: center; padding: 8px 16px; font-size: 13px; letter-spacing: 0.02em; }

.site-header { position: sticky; top: 0; background: rgb(251 250 247 / 0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); z-index: 20; }
.nav { display: flex; align-items: center; gap: 20px; padding-top: 13px; padding-bottom: 13px; }
.brand { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--ink); letter-spacing: -0.01em; }
.brand-accent { color: var(--accent); }
.main-nav { display: flex; gap: 18px; margin-left: auto; font-size: 14.5px; }
.main-nav a { color: var(--muted); text-decoration: none; }
.main-nav a:hover { color: var(--ink); }
@media (max-width: 680px) { .main-nav { display: none; } .nav { justify-content: space-between; } }

.btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 22px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 16px; transition: transform 120ms ease, background 120ms ease; border: 0; cursor: pointer; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 20px rgb(38 83 201 / 0.28); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-small { padding: 9px 16px; font-size: 14px; background: var(--accent); color: #fff; }
.btn-maps { padding: 10px 18px; font-size: 14.5px; }
.ic { width: 1.1em; height: 1.1em; }

/* Hero */
.hero { padding: 64px 0 72px; background: linear-gradient(180deg, var(--bg-alt), var(--bg)); }
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 820px) { .hero-grid { grid-template-columns: 1fr; } .roller-art { width: min(210px, 52vw); } }
.kicker { color: var(--accent); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 13px; margin-bottom: 12px; }
.hero h1 { font-family: var(--display); font-weight: 700; font-size: clamp(34px, 4.8vw, 54px); line-height: 1.1; letter-spacing: -0.02em; }
/* Signature-Echo in der Headline: gestrichene Farbbahn hinter den ersten Worten */
.stroke-word { position: relative; white-space: nowrap; }
.stroke-word::before { content: ""; position: absolute; left: -6px; right: -6px; bottom: 4px; height: 0.45em;
  background: linear-gradient(90deg, rgb(244 182 63 / 0.75), rgb(244 182 63 / 0.35)); border-radius: 4px; z-index: -1;
  transform: scaleX(0); transform-origin: left; transition: transform 900ms ease 300ms; }
.reveal.in .stroke-word::before { transform: scaleX(1); }
.hero .sub { margin-top: 16px; font-size: 18px; color: var(--muted); max-width: 52ch; }
.cta-row { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.trust-row { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
.trust-pill { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 14px; font-size: 14.5px; font-weight: 700; color: var(--accent); }
.trust-pill small { font-weight: 400; color: var(--muted); }

/* Signature: Farbrolle streicht die Wand */
.hero-art { display: flex; justify-content: center; }
.roller-art { width: min(280px, 62vw); }
.wall { fill: #fff; stroke: var(--line); stroke-width: 2; }
.stripe { fill: var(--paint); }
.paint-track { clip-path: inset(100% 0 0 0 round 6px); transition: clip-path 1600ms ease 400ms; }
.painting .paint-track { clip-path: inset(0 0 0 0 round 6px); }
.roller { transition: transform 1600ms ease 400ms; transform: translateY(0); }
.painting .roller { transform: translateY(-158px); }
.roller-head { fill: var(--accent); }
.roller-arm { fill: none; stroke: #8a8f9c; stroke-width: 7; stroke-linecap: round; }
.roller-grip { fill: #22262e; }
.floor-shadow { fill: rgb(34 38 46 / 0.07); }
@media (prefers-reduced-motion: reduce) {
  .paint-track { clip-path: inset(0 0 0 0 round 6px); transition: none; }
  .roller { transform: translateY(-158px); transition: none; }
}

/* Sections */
.section { padding: 72px 0; }
.section.alt { background: var(--bg-alt); }
.section h2 { position: relative; display: inline-block; font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -0.015em; margin-bottom: 28px; }
/* Signature-Echo: jede h2 steht auf einer gestrichenen Farbbahn */
.section h2::after { content: ""; position: absolute; left: -4px; right: -4px; bottom: 2px; height: 0.4em;
  background: linear-gradient(90deg, rgb(244 182 63 / 0.6), rgb(244 182 63 / 0.2)); border-radius: 4px; z-index: -1; }
.section p + p { margin-top: 14px; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; overflow: hidden;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease; }
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
/* Jede Karte trägt ihren eigenen Farbton — die Farbkarte des Malers */
.c1::before { background: #2653c9; } .c2::before { background: #f4b63f; } .c3::before { background: #d96a4b; }
.c4::before { background: #4ba38a; } .c5::before { background: #8a5cc9; } .c6::before { background: #d9548f; }
.card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 14px 34px rgb(34 38 46 / 0.08); }
/* Farbrollen-Strich: beim Hover läuft ein Glanz über die Topline */
.card::after { content: ""; position: absolute; top: 0; left: 0; width: 40%; height: 4px;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.75), transparent);
  transform: translateX(-120%); }
.card:hover::after { animation: sweep 650ms ease; }
@keyframes sweep { to { transform: translateX(300%); } }
@media (prefers-reduced-motion: reduce) { .card:hover::after { animation: none; } }
.card h3 { font-family: var(--display); font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.price-line { margin-top: 24px; font-weight: 600; color: var(--ink); }

/* Warum + Galerie */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.split-copy p { color: var(--muted); }
.split-copy strong { color: var(--ink); }
.split-copy .btn { margin-top: 20px; }
.why-item { position: relative; padding-left: 28px; }
/* Farbtupfer als Aufzählungszeichen */
.why-item::before { content: ""; position: absolute; left: 2px; top: 8px; width: 13px; height: 13px; border-radius: 50% 50% 50% 4px;
  background: var(--paint); transform: rotate(45deg); }
.why-item:nth-of-type(2)::before { background: #2653c9; }
.why-item:nth-of-type(3)::before { background: #4ba38a; }
.why-item:nth-of-type(4)::before { background: #d96a4b; }
/* Farbmuster-Collage: zwei überlappende, leicht gedrehte Musterkarten */
.mood-stack { position: relative; padding-bottom: 8px; }
.mood-stack img { border-radius: 10px; aspect-ratio: 3 / 2; object-fit: cover; width: 86%;
  border: 6px solid #fff; box-shadow: 0 16px 38px rgb(34 38 46 / 0.14); }
.mood-stack img:first-of-type { transform: rotate(-2.2deg); margin-left: 6px; }
.mood-stack img:last-of-type { transform: rotate(1.8deg); margin: -13% 8px 0 auto; }
.gallery-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 18px; }

/* Kontakt */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info p { margin-bottom: 12px; }
.contact-cta { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.contact-cta p { margin-bottom: 16px; color: var(--muted); }

/* Scroll-Reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Mobiler Sticky-Call + Lesegrößen */
.sticky-call { display: none; }
@media (max-width: 640px) {
  body { font-size: 17px; padding-bottom: 76px; }
  .card p { font-size: 16px; }
  .sticky-call { display: block; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 25;
    background: var(--accent); color: #fff; text-align: center; padding: 15px; border-radius: 999px;
    font-weight: 700; text-decoration: none; box-shadow: 0 10px 30px rgb(38 83 201 / 0.4); }
}

.site-footer { border-top: 1px solid var(--line); padding: 24px 0; font-size: 14px; color: var(--muted); }
.footer-row { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.site-footer a { color: var(--muted); }
