:root {
  --void: #0a0a0a; --base: #121212; --surface: #1a1a1a; --lift: #232323;
  --blue: #e84118; --blue-d: #c93510; --blue-l: #f07050;
  --cream: #fafafa; --soft: #d4d4d4; --muted: #a1a1a1;
  --border: #2a2a2a; --border2: #3a3a3a;
  --sans: 'DM Sans', system-ui, sans-serif;
  --mono: 'DM Mono', 'Courier New', monospace;
  --ease: cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--void); color: var(--soft); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .wrap { padding: 0 24px; } }

/* ── NAV ── */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 116px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.nav-bar.filled { background: rgba(10,10,10,.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-color: #1a1a1f; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: #f0ede6; letter-spacing: -.01em; }
.nav-logo-img { width: auto; flex-shrink: 0; }
.nav-logo-icon { width: 26px; height: 26px; flex-shrink: 0; border-radius: 8px; }
.nav-logo-sep { width: 1px; height: 16px; background: #1a1a1f; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; flex-shrink: 1; min-width: 0; overflow: hidden; }
.nav-links a { font-family: 'DM Sans', system-ui, sans-serif; font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: #4a4a54; transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: #f0ede6; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 999px;
  background: #e84118; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  transition: background .2s;
}
.nav-cta:hover { background: #c93510; }

#kontakt-formular { scroll-margin-top: 0; }

/* ── BREADCRUMB ── */
.bc-wrap { padding: 112px 0 0; }
.bc-list { display: flex; align-items: center; gap: 8px; list-style: none; padding: 16px 0 0; }
.bc-list li { font-size: 11px; font-weight: 600; letter-spacing: .08em; color: var(--muted); }
.bc-list a { color: rgba(115,115,115,.8); transition: color .2s; }
.bc-list a:hover { color: var(--cream); }
.bc-sep { color: rgba(115,115,115,.4); }

/* ── HERO ── */
.page-hero {
  padding: 48px 0 88px; border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--base) 0%, var(--void) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; left: -200px; top: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,65,24,.08), transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--blue); }
.page-h1 {
  font-size: clamp(40px, 6.5vw, 88px); font-weight: 900;
  letter-spacing: -.055em; line-height: .91; color: var(--cream); margin-bottom: 28px;
  text-wrap: balance;
}
.hero-lead { font-size: 17px; line-height: 1.75; color: var(--soft); max-width: 54ch; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  transition: background .2s; box-shadow: 0 4px 20px rgba(232,65,24,.25);
}
.btn-primary:hover { background: var(--blue-d); }
.trust-phone {
  color: var(--cream) !important; font-weight: 700;
  transition: color .2s;
}
.trust-phone:hover { color: var(--blue) !important; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px;
  border: 1px solid var(--border2); color: var(--cream);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--blue); background: rgba(232,65,24,.06); }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section--alt { background: var(--base); }
.sec-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.sec-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--blue); }
.sec-h2 {
  font-size: clamp(28px, 4vw, 52px); font-weight: 900;
  letter-spacing: -.05em; line-height: 1.0; color: var(--cream); margin-bottom: 16px;
  text-wrap: balance;
}
.sec-lead { font-size: 16px; color: var(--soft); line-height: 1.75; max-width: 60ch; }

/* ── ABOUT CONTENT ── */
.about-text p { font-size: 16px; color: var(--soft); line-height: 1.8; margin-bottom: 20px; }
.about-text p:last-child { margin-bottom: 0; }
.loc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.loc-tag {
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--border2); background: rgba(255,255,255,.04);
  font-size: 12px; font-weight: 600; color: var(--muted);
}

/* ── SERVICES GRID ── */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.svc-card { padding: 36px 32px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); }
.svc-card-logo { height: 34px; width: auto; object-fit: contain; margin-bottom: 20px; display: block; }
.svc-card h3 { font-size: 21px; font-weight: 800; letter-spacing: -.04em; color: var(--cream); margin-bottom: 12px; }
.svc-card h3 em { font-style: normal; color: var(--blue-l); }
.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.svc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); line-height: 1.6; }
.svc-list li::before { content: ''; width: 14px; height: 1px; background: var(--blue); flex-shrink: 0; margin-top: 9px; }
.svc-methods { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.svc-method-chip { font-size: 11.5px; font-weight: 600; color: var(--muted); background: var(--void); border: 1px solid var(--border2); border-radius: 999px; padding: 6px 12px; white-space: nowrap; }
.svc-card-link {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 24px; padding: 14px 8px 0; width: 100%;
  border-top: 1px solid var(--border);
  font-size: 12.5px; font-weight: 700; letter-spacing: .02em; color: var(--cream);
  transition: color .25s var(--ease);
}
.svc-card-link .svc-card-link-arrow {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--void); border: 1px solid var(--border2);
  color: var(--blue);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.svc-card-link .svc-card-link-arrow svg { transition: transform .25s var(--ease); }
.svc-card-link:hover { color: var(--blue-d); }
.svc-card-link:hover .svc-card-link-arrow {
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.svc-card-link:hover .svc-card-link-arrow svg { transform: translateX(2px); }
@media (max-width: 768px) { .svc-grid { grid-template-columns: 1fr; } }

/* ── PROCESS ── */
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 44px; }
.proc-step { padding: 28px 22px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); }
.proc-num {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 900; font-size: 18px; letter-spacing: -.03em; color: var(--cream);
  margin-bottom: 16px;
}
.proc-step h4 { font-size: 13px; font-weight: 700; letter-spacing: -.01em; color: var(--cream); margin-bottom: 7px; }
.proc-step p { font-size: 12px; color: var(--muted); line-height: 1.65; }
@media (max-width: 900px) { .proc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .proc-grid { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq-stack { max-width: 780px; margin-top: 40px; }
details.fqi { border-bottom: 1px solid var(--border); }
details.fqi summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-size: 15px; font-weight: 600; color: var(--cream); transition: color .2s;
}
details.fqi summary:hover { color: var(--blue); }
details.fqi summary::-webkit-details-marker { display: none; }
.fqi-icon { flex-shrink: 0; color: var(--blue); transition: transform .2s; }
details.fqi[open] .fqi-icon { transform: rotate(45deg); }
.fqi-body { padding: 0 0 20px; font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── DISTRICTS ── */
.dist-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 28px; }
.dist-link {
  padding: 13px 16px; border: 1px solid var(--border); border-radius: 10px; background: var(--surface);
  font-size: 12px; font-weight: 600; color: var(--muted); transition: border-color .2s, color .2s, background .2s;
  display: block;
}
.dist-link:hover { border-color: var(--blue); color: var(--cream); background: rgba(232,65,24,.05); }
@media (max-width: 768px) { .dist-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .dist-grid { grid-template-columns: 1fr; } }

/* ── CTA BAND ── */
.cta-band {
  padding: 80px 0; text-align: center;
  background: linear-gradient(180deg, var(--void) 0%, var(--base) 100%);
  border-top: 1px solid var(--border);
}
.cta-band h2 { font-size: clamp(28px,4vw,52px); font-weight: 900; letter-spacing: -.05em; color: var(--cream); margin-bottom: 16px; text-wrap: balance; }
.cta-band p { font-size: 16px; color: var(--soft); margin-bottom: 32px; max-width: 52ch; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
/* Layout and link styling live in SiteFooter.astro's scoped <style>.
   Only the structural rules that are not component-specific stay here. */
.footer { padding: 40px 0; border-top: 1px solid #1a1a1f; background: #0a0a0a; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── WHATSAPP BUTTON ── */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 11px 22px; border-radius: 100px;
  font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  transition: filter .2s; border: none; cursor: pointer; text-decoration: none;
}
.btn-whatsapp:hover { filter: brightness(1.1); }

/* ── CTA BAND BUTTON ROW ── */
.cta-band-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }

/* ── INTERNAL ARTICLE LINK GRID ── */
.art-links-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px;
}
@media (max-width: 640px) { .art-links-grid { grid-template-columns: 1fr; } }
.art-link {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 24px;
  transition: border-color .2s, transform .2s;
  text-decoration: none;
}
.art-link:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(0,0,0,.05); transform: translateY(-2px); }
.art-link-cat {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue);
}
.art-link-title {
  font-size: 15px; font-weight: 700; color: var(--cream); letter-spacing: -.02em; line-height: 1.4;
}

/* ── STICKY MOBILE PHONE BAR ── */
.mobile-phone-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 96;
  background: var(--blue); color: #fff;
  padding: 15px 24px; text-align: center;
  font-size: 13px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  align-items: center; justify-content: center; gap: 10px;
  border-top: 1px solid rgba(255,255,255,.2);
  transition: transform .3s var(--ease);
  box-shadow: 0 -4px 20px rgba(232,65,24,.3);
}
.mobile-phone-bar.visible {
  display: flex;
}
@media (min-width: 769px) {
  .mobile-phone-bar { display: none !important; }
}
/* When mobile phone bar is visible, push content above it */
@media (max-width: 768px) {
  .mobile-phone-bar.visible ~ * { padding-bottom: 56px; }
  .footer { padding-bottom: 56px; }
  .mobile-menu { bottom: 56px !important; }
}

/* ── HAMBURGER + MOBILE MENU ── */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 6px;
  border-radius: 8px; flex-shrink: 0;
}
/*
 * NAV MOBILE BREAKPOINT — 1100px
 * All nav layout changes for small screens live here.
 * To add a link to SiteNav.astro, no breakpoint hunt needed:
 * just edit this one block if the link causes overflow at this width.
 */
@media (max-width: 1100px) {
  .nav-links  { display: none; }
  .nav-bar    { padding: 0 24px; }
  .nav-burger { display: flex; }
}
.nav-burger .bl {
  width: 22px; height: 2px; background: #f0ede6; border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
  display: block;
}
.nav-burger.is-open .bl:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open .bl:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open .bl:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200; background: rgba(10,10,10,.98);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  overflow-y: auto;
}
.mobile-menu.is-open { display: block; }
.mobile-menu-inner {
  display: flex; flex-direction: column; padding: 20px 24px 40px; gap: 0;
}
.mobile-menu-inner a {
  display: block; font-size: 16px; font-weight: 700; letter-spacing: -.01em;
  color: #4a4a54; padding: 16px 0;
  border-bottom: 1px solid #1a1a1f;
  transition: color .2s;
}
.mobile-menu-inner a:hover { color: #f0ede6; }
.mobile-menu-inner a:last-child { border-bottom: none; }
.mobile-menu-close {
  display: block; background: none; border: none; cursor: pointer;
  color: #4a4a54; font-size: 22px; padding: 16px 0 8px; align-self: flex-end;
  line-height: 1;
}
.mobile-menu-close:hover { color: #f0ede6; }
.mobile-menu-cta {
  margin-top: 24px; border-radius: 999px !important; border: none !important;
  background: #e84118 !important; color: #fff !important;
  text-align: center; font-size: 13px !important; font-weight: 800 !important;
  letter-spacing: .08em !important; text-transform: uppercase !important;
  padding: 15px 28px !important;
}
.mobile-menu-cta:hover { background: #c93510 !important; }

/* ── COOKIE NOTICE ── */
.cookie-notice {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(18,18,18,.97); border-top: 1px solid var(--border);
  backdrop-filter: blur(16px); padding: 14px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.cookie-notice p { font-size: 12px; color: var(--muted); line-height: 1.6; flex: 1; min-width: 240px; }
.cookie-notice a { color: var(--blue); }
.cookie-notice button {
  padding: 8px 20px; border-radius: 999px; border: none;
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: background .2s;
}
.cookie-notice button:hover { background: var(--blue-d); }
.cookie-notice.hidden { display: none; }
