/* Umzugsengel24 Aachen — hell, präzise, viel Weißraum (Dienstleistung/Handwerk).
   Kräftiges Blau + Signal-Orange, Display-Schrift Sora (lokal, OFL).
   Signature: schwebende Kartons mit Engelsflügeln. */

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

:root {
  --accent: #1e5aa8;
  --accent-dark: #174a8c;
  --cta: #f97316;
  --cta-dark: #ea630a;
  --ink: #1c2430;
  --muted: #5a6472;
  --bg: #ffffff;
  --bg-alt: #f2f6fb;
  --line: #dde5ef;
  --radius: 14px;
  --display: "Sora", "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: #1c2430; 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; }
.brand-24 { color: var(--cta); }
.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, box-shadow 120ms ease; border: 0; cursor: pointer; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--cta); color: #fff; box-shadow: 0 6px 20px rgb(249 115 22 / 0.3); }
.btn-primary:hover { background: var(--cta-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(--cta); 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; } .boxes { 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.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; }
.hours-hint { margin-top: 16px; font-size: 14.5px; color: var(--muted); }
.trust-row { margin-top: 14px; 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: Kartonstapel mit Heiligenschein */
.hero-art { display: flex; justify-content: center; }
.boxes { width: min(300px, 64vw); }
.box { fill: #fff; stroke: var(--accent); stroke-width: 3; }
.b1, .b3 { fill: #eaf1fa; }
.tape { stroke: var(--cta); stroke-width: 3; }
.halo { fill: none; stroke: var(--cta); stroke-width: 6; stroke-linecap: round; opacity: 0.9;
  filter: drop-shadow(0 2px 8px rgb(249 115 22 / 0.35));
  transition: filter 250ms ease, stroke-width 250ms ease; }
.halo.glow { stroke-width: 9; filter: drop-shadow(0 2px 18px rgb(249 115 22 / 0.75)); }
.shadow { fill: rgb(28 36 48 / 0.08); }
.box-label { font-family: var(--display); font-weight: 700; font-size: 17px; fill: var(--accent); letter-spacing: 0.14em; }
.float-slow { animation: floaty 5s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) { .float-slow { 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(--cta), rgb(249 115 22 / 0.15)); }
.card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 14px 34px rgb(28 36 48 / 0.08); }
.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; }
.card-ic { width: 34px; height: 34px; margin-bottom: 12px; fill: none; stroke: var(--accent); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.card-ic .ic-accent { stroke: var(--cta); }

/* Ablauf */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.step-num { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #fff; font-family: var(--display); font-weight: 700; font-size: 18px; margin-top: 10px; margin-bottom: 14px; }
/* Mini-Heiligenschein über jeder Schritt-Nummer — die Signature zieht sich durch */
.step-num::before { content: ""; position: absolute; top: -10px; left: 50%; transform: translateX(-50%) rotate(-6deg);
  width: 26px; height: 8px; border: 2.5px solid var(--cta); border-radius: 50%; }
.step h3 { font-family: var(--display); font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* Vertrauen */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.mood { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 44px rgb(28 36 48 / 0.12); }
.mood img { width: 100%; height: 100%; object-fit: cover; }
.split-copy .btn { margin-top: 20px; }
.split-copy p { color: var(--muted); }
.split-copy strong { color: var(--ink); }

/* 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; }
.hours-table { width: 100%; max-width: 420px; border-collapse: collapse; font-size: 16px; margin-top: 14px; }
.hours-table th { text-align: left; font-weight: 400; }
.hours-table th, .hours-table td { padding: 11px 0; border-bottom: 1px solid var(--line); }
.hours-table td { text-align: right; font-weight: 600; color: var(--accent); }
.contact-cta { background: #fff; 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, .step p { font-size: 16px; }
  .sticky-call { display: block; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 25;
    background: var(--cta); color: #fff; text-align: center; padding: 15px; border-radius: 999px;
    font-weight: 700; text-decoration: none; box-shadow: 0 10px 30px rgb(249 115 22 / 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); }
