/* =============================================
   H&E Hausmeister & Entrümpelung – Stylesheet
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --coal:      #1c1f24;
  --navy:      #2a2e35;
  --navy-mid:  #353a42;
  /* Markenfarben aus dem Logo: Rot + Anthrazit */
  --gold:      #c8202a;   /* Markenrot (primär) */
  --gold-lt:   #e23b44;   /* helleres Rot für Akzente auf Dunkel / Hover */
  --gold-pale: #f8dadd;
  --gold-d:    #a91922;   /* dunkleres Rot für Hover */
  --cream:     #f7f5f1;
  --white:     #ffffff;
  --text:      #111827;
  --muted:     #6b7280;
  --border:    #e5e7eb;
  --green:     #166534;

  --r:   10px;
  --r-lg: 16px;
  --sh:   0 2px 12px rgba(0,0,0,.07);
  --sh-lg:0 8px 40px rgba(0,0,0,.13);

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --max: 1140px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); line-height: 1.6; background: var(--white); }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section--dark  { background: var(--coal); color: var(--white); }
.section--cream { background: var(--cream); }
.section--legal { background: #f9f8f6; border-top: 1px solid var(--border); padding: 80px 0; }

.sec-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.sec-head--light h2,
.sec-head--light p { color: var(--white); }

.sec-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 14px;
}
.sec-eyebrow--light { color: var(--gold-lt); }

.sec-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--coal);
  margin-bottom: 16px;
}
.sec-head--light h2 { color: var(--white); }

.sec-head p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.sec-head--light p { color: rgba(255,255,255,.65); }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  color: #44474d;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
}
.nav__links a:hover { color: var(--gold); text-decoration: none; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background .2s;
}
.nav__cta:hover { background: var(--gold-d, #a91922); text-decoration: none; color: var(--white); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--coal); border-radius: 2px; transition: transform .3s, opacity .2s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--coal);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,32,42,.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(42,46,53,.9) 0%, transparent 50%);
  pointer-events: none;
}

/* subtle diagonal lines texture */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.014) 40px,
    rgba(255,255,255,.014) 41px
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 100px 28px 100px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-lt);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -1.5px;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
  align-items: center;
}

.btn-call,
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 28px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  transition: background .2s, transform .15s;
  text-decoration: none;
}

.btn-call { background: var(--gold); }
.btn-call:hover { background: var(--gold-lt); transform: translateY(-1px); text-decoration: none; color: var(--white); }

.btn-wa { background: #1db954; }
.btn-wa:hover { background: #17a348; transform: translateY(-1px); text-decoration: none; color: var(--white); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  height: 56px;
  color: rgba(255,255,255,.65);
  font-size: 15px;
  font-weight: 500;
  padding: 0 4px;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--white); text-decoration: none; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
}
.trust-pill svg { opacity: .7; }
.stars { color: #f59e0b; letter-spacing: 1px; }

/* ── STATS ── */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}

.stats__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px;
  gap: 6px;
}
.stat strong {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--coal);
  line-height: 1;
  letter-spacing: -1px;
}
.stat span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.stat__divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SERVICES ── */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.svc {
  background: var(--white);
  padding: 48px 44px;
  position: relative;
  transition: background .2s;
}
.svc:hover { background: #fafafa; }

.svc--lg { grid-column: span 1; }

.svc--accent {
  background: var(--coal);
  color: var(--white);
}
.svc--accent:hover { background: var(--navy); }
.svc--accent .svc__num { color: rgba(255,255,255,.15); }
.svc--accent h3 { color: var(--white); }
.svc--accent p  { color: rgba(255,255,255,.6); }
.svc--accent li { color: rgba(255,255,255,.8); }
.svc--accent li::before { color: var(--gold-lt); }

.svc__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.svc__num {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0,0,0,.045);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -3px;
  user-select: none;
}

.svc h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--coal);
  margin-bottom: 14px;
  line-height: 1.25;
}

.svc p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.svc ul { display: flex; flex-direction: column; gap: 8px; }
.svc li {
  font-size: 14px;
  color: var(--text);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.svc li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 2px;
}

/* Overrides für dunkle Akzent-Karten (müssen NACH den Basisregeln stehen) */
.svc--accent .svc__num   { color: rgba(255,255,255,.10); }
.svc--accent h3          { color: var(--white); }
.svc--accent p           { color: rgba(255,255,255,.65); }
.svc--accent li          { color: rgba(255,255,255,.85); }
.svc--accent li::before  { color: var(--gold-lt); }

/* ── PROCESS ── */
.process {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.process__step {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.process__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid rgba(184,136,42,.35);
  background: rgba(184,136,42,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.process__n {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.3);
  margin-bottom: 12px;
}

.process__step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.process__step p {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}

.process__line {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, rgba(184,136,42,.4), rgba(184,136,42,.1));
  margin-top: 34px;
  flex-shrink: 0;
}

/* ── EINSATZGEBIET ── */
.gebiet-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.gebiet-text { max-width: 440px; }
.gebiet-text .sec-eyebrow { display: block; }
.gebiet-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--coal);
  margin-bottom: 20px;
  line-height: 1.2;
}
.gebiet-text p { color: var(--muted); margin-bottom: 16px; font-size: 15.5px; line-height: 1.7; }
.gebiet-text p:last-of-type { margin-bottom: 32px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--coal);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r);
  transition: background .2s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--navy); text-decoration: none; color: var(--white); }

.region-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
}

.region {
  background: var(--white);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background .15s;
}
.region:hover { background: var(--cream); }

.region__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.region strong { display: block; font-size: 15px; font-weight: 700; color: var(--coal); line-height: 1.2; }
.region span   { display: block; font-size: 12px; color: var(--muted); }

/* ── REVIEWS ── */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.review {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--sh);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review__stars { font-size: 1rem; color: #f59e0b; letter-spacing: 2px; }

.review p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.review__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--coal);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review__author strong { display: block; font-size: 14px; font-weight: 700; color: var(--coal); }
.review__author span  { display: block; font-size: 12px; color: var(--muted); }

.reviews__cta { text-align: center; }

.reviews__google-link {
  display: inline-block;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color .2s;
}
.reviews__google-link:hover { color: var(--coal); text-decoration: none; }

.btn-ghost-dark {
  display: inline-block;
  color: var(--coal);
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--coal);
  transition: color .2s, border-color .2s;
}
.btn-ghost-dark:hover { color: var(--gold); border-color: var(--gold); text-decoration: none; }

/* ── CONTACT ── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact__card {
  background: var(--coal);
  border-radius: var(--r-lg);
  padding: 36px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt);
  flex-shrink: 0;
}

.contact__detail label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.35);
  margin-bottom: 4px;
}

.contact__detail a,
.contact__detail span {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  line-height: 1.5;
}
.contact__detail a:hover { color: var(--gold-lt); }

.contact__promise {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.contact__promise svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.contact__promise p { line-height: 1.5; }

/* ── FORM ── */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 44px;
  box-shadow: var(--sh-lg);
}

.contact__form { display: flex; flex-direction: column; gap: 18px; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coal);
  box-shadow: 0 0 0 3px rgba(15,25,35,.07);
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.field--check input { width: auto; flex-shrink: 0; margin-top: 3px; }
.field--check label { font-size: 13px; font-weight: 400; color: var(--muted); cursor: pointer; }
.field--check label a { color: var(--coal); font-weight: 600; }

.btn-submit {
  width: 100%;
  background: var(--coal);
  color: var(--white);
  border: none;
  padding: 16px 28px;
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--navy); transform: translateY(-1px); }

.form-ok {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--green);
}
.form-ok strong { font-size: 1.2rem; font-weight: 800; }
.form-ok p { color: var(--muted); font-size: 15px; }

/* ── LEGAL ── */
.legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.legal__block h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--coal);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}

.legal__block p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal__block strong { color: var(--text); }
.legal__block a { color: var(--coal); font-weight: 600; }
.legal__block em { color: var(--gold); }

/* ── FOOTER ── */
.footer {
  background: var(--coal);
  padding: 56px 0 28px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer__logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}
.footer__logo span { color: var(--gold-lt); }

.footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: center;
}
.footer__nav a {
  color: rgba(255,255,255,.45);
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
}
.footer__nav a:hover { color: var(--white); text-decoration: none; }

.footer__bottom {
  font-size: 12px;
  color: rgba(255,255,255,.2);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  width: 100%;
  text-align: center;
}

/* ── HERO MOTTO ── */
.hero__motto {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 600;
  color: #fff;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: -20px 0 44px;
  max-width: 520px;
}

/* ── ALLE LEISTUNGEN (Chips) ── */
.all-services { margin-top: 56px; text-align: center; }
.all-services__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--coal);
  margin-bottom: 26px;
}
.all-services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}
.all-services__grid li {
  list-style: none;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 9px 18px 9px 34px;
  font-size: 13.5px;
  font-weight: 600;
  color: #44474d;
  transition: border-color .2s, color .2s;
}
.all-services__grid li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: var(--gold);
  font-weight: 800;
}
.all-services__grid li:hover { border-color: var(--gold); color: var(--coal); }

/* ── ÜBER UNS ── */
.about {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.about__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--coal);
  line-height: 1.15;
  margin-bottom: 20px;
}
.about__text p {
  color: #4b4f57;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about__text strong { color: var(--coal); }

.about__values { display: flex; flex-direction: column; gap: 16px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 20px 22px;
}
.value-card strong {
  display: block;
  font-size: 1.05rem;
  color: var(--coal);
  margin-bottom: 6px;
}
.value-card span { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── AUFTRAGGEBER ── */
.clients {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--coal);
  box-shadow: var(--sh);
  transition: transform .2s;
}
.client-card:hover { transform: translateY(-3px); }

/* ── LEITSATZ-BAND ── */
.motto-band {
  background: linear-gradient(135deg, var(--coal) 0%, #2a2e35 100%);
  border-top: 3px solid var(--gold);
  color: #fff;
  text-align: center;
  padding: 76px 0;
}
.motto-band__quote {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.5px;
  color: #fff;
}
.motto-band__sub {
  margin: 18px auto 0;
  max-width: 660px;
  color: rgba(255,255,255,.55);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── PRESSE ── */
.press {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px 44px 40px;
  box-shadow: var(--sh);
}
.press__quote {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 8px;
}
.press__text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--coal);
  margin-bottom: 24px;
}
.press__text strong { color: var(--coal); }
.press__link {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  color: var(--gold);
}
.press__link:hover { color: var(--gold-d); }

/* ── RESPONSIVE (neue Sektionen) ── */
@media (max-width: 900px) {
  .about   { grid-template-columns: 1fr; gap: 36px; }
  .clients { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .clients { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services { grid-template-columns: 1fr 1fr; }
  .process__line { width: 48px; }
}

@media (max-width: 900px) {
  .services         { grid-template-columns: 1fr; }
  .svc--lg          { grid-column: span 1; }
  .contact          { grid-template-columns: 1fr; }
  .legal            { grid-template-columns: 1fr; }
  .gebiet-layout    { grid-template-columns: 1fr; gap: 40px; }
  .reviews          { grid-template-columns: 1fr; }
  .process          { flex-direction: column; align-items: flex-start; padding-left: 20px; gap: 8px; }
  .process__line    { width: 1px; height: 40px; margin-top: 0; background: linear-gradient(to bottom, rgba(200,32,42,.4), rgba(200,32,42,.1)); margin-left: 33px; }
  .process__step    { flex-direction: row; text-align: left; max-width: 100%; gap: 20px; }
  .process__icon    { flex-shrink: 0; }
}

@media (max-width: 768px) {
  .nav__links { display: none; position: fixed; inset: 78px 0 0; background: var(--white); flex-direction: column; justify-content: flex-start; padding: 12px 28px 40px; gap: 0; z-index: 199; overflow-y: auto; }
  .nav__links.open { display: flex; }
  .nav__links a { width: 100%; text-align: center; font-size: 19px; font-weight: 600; color: var(--coal); padding: 20px 0; border-bottom: 1px solid var(--border); }
  .nav__links a:hover { color: var(--gold); }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  body.nav-open { overflow: hidden; }

  .hero__title { letter-spacing: -1px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .btn-call { width: 100%; }
  .btn-wa   { width: 100%; justify-content: center; }

  .stats__grid { flex-wrap: wrap; }
  .stat        { min-width: 50%; border-bottom: 1px solid var(--border); }
  .stat__divider { display: none; }

  .region-list { grid-template-columns: 1fr; }

  .contact__form-wrap { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .svc { padding: 32px 24px; }
  .hero__inner { padding: 72px 24px 72px; }
}
