/* Abdo Meemo Aachen — Handwerk: hell, präzise, viel Weißraum. Petrol + Graphit,
   Display-Schrift Archivo (lokal, OFL). Signature: Schutzschild-Haus mit Tropfen. */

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

:root {
  --accent: #0e7490;
  --accent-dark: #0b5d74;
  --cta: #0e7490;
  --ink: #1f2933;
  --muted: #5d6b76;
  --bg: #ffffff;
  --bg-alt: #f0f7f9;
  --line: #dbe7ec;
  --radius: 14px;
  --display: "Archivo", "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: #1f2933; color: #fff; text-align: center; padding: 8px 16px; font-size: 13px; letter-spacing: 0.02em; }

.site-header { position: sticky; top: 0; background: rgb(255 255 255 / 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: 20px; color: var(--accent); letter-spacing: -0.01em; }
.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(14 116 144 / 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; }
.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; } .shield-art { width: min(200px, 50vw); } }
.kicker { color: var(--accent); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 12.5px; margin-bottom: 12px; }
.hero h1 { font-family: var(--display); font-weight: 700; font-size: clamp(34px, 4.8vw, 54px); line-height: 1.08; letter-spacing: -0.02em; }
.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-line { margin-top: 18px; font-size: 14.5px; color: var(--muted); font-weight: 600; }

/* Signature: Schutzschild-Haus mit abperlenden Tropfen */
.hero-art { display: flex; justify-content: center; }
.shield-art { width: min(280px, 62vw); }
.shield { fill: #fff; stroke: var(--accent); stroke-width: 3.5; }
.house-body { fill: #e3eff3; stroke: var(--accent); stroke-width: 3; stroke-linejoin: round; }
.house-door { fill: #fff; stroke: var(--accent); stroke-width: 3; }
.drop { fill: var(--accent); opacity: 0.55; animation: bead 4.6s ease-in-out infinite; }
.d2 { animation-delay: 1.1s; }
.d3 { animation-delay: 2.3s; }
.d4 { animation-delay: 3.4s; }
@keyframes bead {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(10px); opacity: 0.25; }
}
@media (prefers-reduced-motion: reduce) { .drop { animation: none; } }

/* Sections */
.section { padding: 72px 0; }
.section.alt { background: var(--bg-alt); }
.section h2 { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -0.015em; margin-bottom: 28px; }
.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: 3px;
  background: linear-gradient(90deg, var(--accent), rgb(14 116 144 / 0.12)); }
.card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 14px 34px rgb(31 41 51 / 0.08); }
/* Tropfen-Echo beim Hover */
.card::after { content: ""; position: absolute; right: 16px; bottom: 12px; width: 14px; height: 18px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3c3 4 6 6.6 6 10a6 6 0 1 1-12 0c0-3.4 3-6 6-10Z" fill="%230e7490"/></svg>') no-repeat center / contain;
  opacity: 0; transition: opacity 250ms ease, transform 250ms ease; transform: translateY(4px); }
.card:hover::after { opacity: 0.55; transform: none; }
/* Touch-Geräte haben kein Hover — Tropfen dort dauerhaft dezent zeigen */
@media (hover: none) { .card::after { opacity: 0.35; transform: none; } }
.card-ic { width: 30px; height: 30px; color: var(--accent); margin-bottom: 12px; }
.card h3 { font-family: var(--display); font-weight: 600; font-size: 18px; margin-bottom: 8px; color: var(--accent); }
.card p { color: var(--muted); font-size: 15px; }

/* Warum */
.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; }
/* Mini-Schild als Aufzählungszeichen — die Signature zieht sich durch */
.why-item { position: relative; padding-left: 30px; }
.why-item::before { content: ""; position: absolute; left: 0; top: 5px; width: 17px; height: 19px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 340"><path d="M150 12 L272 58 V170 Q 272 268 150 326 Q 28 268 28 170 V58 Z" fill="none" stroke="%230e7490" stroke-width="28"/><path d="M150 92 L222 152 H206 V228 H94 V152 H78 Z" fill="%230e7490"/></svg>') no-repeat center / contain; }
.mood-stack { display: grid; gap: 14px; }
.mood-stack img { border-radius: var(--radius); aspect-ratio: 3 / 2; object-fit: cover; width: 100%;
  box-shadow: 0 14px 34px rgb(31 41 51 / 0.1); }
.gallery-note { font-size: 13px; color: var(--muted); text-align: center; }

/* 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; }
.maps-link { font-weight: 600; text-decoration: none; }
.contact-cta { position: relative; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; overflow: hidden; }
.contact-cta p { margin-bottom: 16px; color: var(--muted); position: relative; }
.contact-cta .btn { position: relative; }
.cta-shield { position: absolute; right: -30px; bottom: -40px; width: 130px; color: rgb(14 116 144 / 0.1); }
.btn-maps { padding: 10px 18px; font-size: 14.5px; }

/* 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(14 116 144 / 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); }
