/* ==========================================================================
   PIXEL+MORE — Layout: Container, Sektionen, Grids, Utilities
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (max-width: 575px) {
  .container { padding-inline: var(--gutter-mobile); }
}

/* --- Sektionen -------------------------------------------------------- */
.section { padding-block: var(--space-4xl); }
@media (max-width: 767px) { .section { padding-block: var(--space-3xl); } }
.section--alt { background: var(--color-surface-muted); }
.section--tight { padding-block: var(--space-2xl); }

.section-head { max-width: 60ch; margin-bottom: var(--space-2xl); }
.section-head.text-center { margin-inline: auto; }

/* --- Textbreite ------------------------------------------------------- */
.measure { max-width: var(--measure); }
.measure-center { max-width: var(--measure); margin-inline: auto; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* --- Lead / Statement ------------------------------------------------- */
.lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  color: var(--color-text-default);
}
.statement {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  letter-spacing: var(--ws-h3);
  color: var(--color-text-strong);
  font-weight: var(--fw-medium);
}
.note {
  font-size: var(--fs-note);
  line-height: var(--lh-note);
  color: var(--color-text-muted);
}

/* --- Eyebrow (Kicker) ------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-link);
}
.eyebrow--dash::before {
  content: "";
  width: var(--space-4);
  height: 2px;
  border-radius: var(--radius-xs);
  background: var(--color-action);
}

/* --- Grids ------------------------------------------------------------ */
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: var(--space-lg);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 991px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --- Split (Text + Medium) ------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
@media (max-width: 991px) {
  .split { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .split--reverse > :first-child { order: 0; }
}

/* --- Cluster (Button-Reihe) ------------------------------------------ */
.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}
.cluster--center { justify-content: center; }

/* --- Abstands-Utilities (sparsam) ------------------------------------ */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

/* --- Header-Layout --------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  backdrop-filter: saturate(1.4) blur(12px);
  box-shadow: var(--shadow-sticky);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  min-height: 72px;
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo-img { height: 44px; width: auto; }
@media (max-width: 575px) { .nav__logo-img { height: 38px; } }
.footer__logo-img { height: 56px; width: auto; }
.nav__links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  color: var(--color-text-default);
  font-size: var(--fs-note);
  font-weight: var(--fw-medium);
}
.nav__links a[aria-current="page"] { color: var(--color-link); }
.nav__actions { display: flex; align-items: center; gap: var(--space-4); }
.nav__phone { display: inline-flex; color: var(--color-text-strong); }
.nav__phone svg { width: 20px; height: 20px; }
.nav__phone-text {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-strong);
  font-weight: var(--fw-bold);
  font-size: var(--fs-note);
}
.nav__phone-text svg { width: 18px; height: 18px; color: var(--color-accent); }
@media (max-width: 479px) { .nav__phone-text span { display: none; } }
.nav__toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  color: var(--color-text-strong);
  padding: var(--space-2);
}
.nav__toggle svg { width: 24px; height: 24px; }
.nav__mobile { display: none; }

@media (max-width: 991px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__mobile {
    display: none;
    padding-block: var(--space-4) var(--space-6);
  }
  .nav__mobile.is-open { display: block; }
  .nav__mobile ul { list-style: none; margin: 0 0 var(--space-4); padding: 0; }
  .nav__mobile li { border-top: 1px solid var(--color-border); }
  .nav__mobile a { display: block; padding: var(--space-4) 0; color: var(--color-text-strong); font-weight: var(--fw-medium); }
}

/* --- Footer-Layout --------------------------------------------------- */
.site-footer {
  background: var(--ink-950);
  color: var(--stage-text);
  padding-block: var(--space-3xl) var(--space-2xl);
}
.site-footer a { color: var(--stage-text); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-block: var(--space-2xl);
  border-top: 1px solid var(--stage-border);
  border-bottom: 1px solid var(--stage-border);
}
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 479px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; margin-bottom: var(--space-4); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-3); }
.footer__tag { color: var(--stage-text-muted); margin-top: var(--space-4); max-width: 28ch; }
.footer-cta {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-5);
  padding-bottom: var(--space-2xl);
}
.footer-cta p:first-child { color: #fff; font-size: var(--fs-lead); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-xl);
  font-size: var(--fs-small);
  color: var(--stage-text-muted);
}
