/* =====================================================================
   VitalisPremium · site.css
   Production stylesheet — derived from the design concept,
   tuned for the live site (responsive, full token scale, components).
   ===================================================================== */

/* TOKENS ============================================================== */
:root {
  /* Premium Ink (anthrazit with green undertone) */
  --ink-900: #0e1512;
  --ink-800: #18211d;
  --ink-700: #232e29;
  --ink-600: #344039;
  --ink-500: #4a5650;
  --ink-400: #6b756f;
  --ink-300: #97a09a;
  --ink-200: #c5ccc7;
  --ink-100: #e2e6e3;
  --ink-50:  #eef1ee;

  /* Warm paper */
  --paper-50:  #faf7f1;
  --paper-100: #f3eee4;
  --paper-200: #e8e0cf;
  --paper-300: #d6cbb3;

  /* Vitalis green */
  --green-900: #1a3329;
  --green-800: #213f33;
  --green-700: #2a463a;
  --green-600: #355845;
  --green-500: #486b56;
  --green-400: #6c8a78;
  --green-300: #a2b6a8;
  --green-200: #c4d2c8;
  --green-100: #dee6e0;
  --green-50:  #eef3ef;

  /* Brand-forward botanical (used sparingly for logo & key accents) */
  --botanical-500: #2e7d5c;
  --botanical-700: #1f5a3f;

  /* Champagne gold (line, eyebrow, never a fill) */
  --gold-700: #8a6f3b;
  --gold-500: #b69460;
  --gold-300: #d8c39a;
  --gold-100: #efe6cf;

  /* Signal */
  --red:   #9b3a2f;

  /* Type */
  --font-display: "Spectral", "Iowan Old Style", Georgia, serif;
  --font-text:    "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Radii */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;
  --r-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 0 rgba(14,21,18,.04), 0 1px 2px rgba(14,21,18,.05);
  --shadow-md: 0 2px 4px rgba(14,21,18,.05), 0 12px 32px -12px rgba(14,21,18,.18);
  --shadow-lg: 0 24px 60px -24px rgba(14,21,18,.28), 0 4px 12px rgba(14,21,18,.06);

  /* Lines */
  --line:        1px solid rgba(14,21,18,.08);
  --line-strong: 1px solid rgba(14,21,18,.18);
  --line-light:  1px solid rgba(250,247,241,.14);

  /* Layout */
  --container: 1240px;
  --gutter-d: 56px;
  --gutter-m: 22px;

  --header-h: 76px;
  --header-h-scrolled: 60px;
  --mobile-cta-h: 72px;
}

/* RESET / BASE ======================================================== */
* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--paper-50);
  color: var(--ink-900);
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 3px;
}

/* TYPOGRAPHY ========================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.014em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
h1 { font-weight: 300; letter-spacing: -0.022em; }
p  { margin: 0; text-wrap: pretty; }

.kicker {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-500);
}
.kicker--gold { color: var(--gold-700); }
.kicker--light { color: var(--gold-300); }

/* LAYOUT ============================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter-d);
  padding-right: var(--gutter-d);
}
@media (max-width: 720px) {
  .container { padding-left: var(--gutter-m); padding-right: var(--gutter-m); }
}

.section { padding: 96px 0; }
.section--lg { padding: 120px 0; }
.section--sm { padding: 64px 0; }
.section--dark { background: var(--ink-900); color: var(--paper-50); }
.section--paper { background: var(--paper-100); }
.section--ink { background: var(--ink-800); color: var(--paper-50); }

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
}

/* HEADER (sticky) ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,247,241,.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: var(--line);
  transition: background .2s ease, border-color .2s ease;
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 0;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.logo .loc {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-700);
  padding-left: 10px;
  border-left: 1px solid var(--ink-200);
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-700);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
}
.nav a:hover { color: var(--ink-900); }
.nav a.is-active {
  color: var(--ink-900);
  border-bottom-color: var(--green-500);
}

.site-header__cta { display: flex; align-items: center; gap: 16px; }

.phone-block {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
  text-align: right;
  text-decoration: none;
  color: inherit;
}
.phone-block .label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 4px;
}
.phone-block .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}

/* Mobile-only menu / phone-icon */
.nav-toggle, .nav-phone {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ink-200);
  background: #fff;
  align-items: center;
  justify-content: center;
  color: var(--ink-900);
}
.nav-phone { background: var(--green-600); color: var(--paper-50); border-color: transparent; }
.nav-toggle svg, .nav-phone svg { width: 18px; height: 18px; }

@media (max-width: 1200px) {
  .nav, .site-header__cta .phone-block, .site-header__cta .btn--ghost { display: none; }
  .nav-toggle, .nav-phone { display: inline-flex; }
  .logo img { height: 36px; }
}

/* MOBILE NAV DRAWER --------------------------------------------------- */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(14,21,18,.65);
  z-index: 90;
  display: none;
}
.nav-drawer.is-open { display: block; }
.nav-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 90vw);
  background: var(--paper-50);
  padding: 24px 24px 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .25s ease;
}
.nav-drawer.is-open .nav-drawer__panel { transform: translateX(0); }
.nav-drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px; border-bottom: var(--line);
}
.nav-drawer__close {
  width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid var(--ink-200); background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--ink-500);
}
.nav-drawer__list { display: flex; flex-direction: column; gap: 4px; }
.nav-drawer__list a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink-900);
  text-decoration: none;
  border-bottom: var(--line);
}
.nav-drawer__list a.is-active { color: var(--green-600); }
.nav-drawer__group {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-top: 24px;
  margin-bottom: 8px;
}

/* MOBILE STICKY CTA --------------------------------------------------- */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(14,21,18,.94);
  backdrop-filter: blur(10px);
  border-top: var(--line-light);
  gap: 10px;
}
.mobile-sticky .btn { flex: 1; padding: 13px 0; }
.mobile-sticky .btn--ghost-light { color: var(--paper-50); border-color: rgba(250,247,241,.4); flex: 1; }
.mobile-sticky .btn--primary { flex: 1.2; }
@media (max-width: 720px) {
  .mobile-sticky { display: flex; }
  body { padding-bottom: var(--mobile-cta-h); }
}

/* BUTTONS ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--green-600); color: var(--paper-50); }
.btn--primary:hover { background: var(--green-700); }
.btn--dark { background: var(--ink-900); color: var(--paper-50); }
.btn--dark:hover { background: var(--ink-800); }
.btn--ghost { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn--ghost:hover { background: var(--ink-900); color: var(--paper-50); }
.btn--ghost-light { background: transparent; color: var(--paper-50); border-color: rgba(250,247,241,.4); }
.btn--ghost-light:hover { background: rgba(250,247,241,.1); }
.btn--gold { background: transparent; color: var(--gold-700); border-color: var(--gold-500); }
.btn--gold:hover { background: var(--gold-500); color: var(--ink-900); }

.btn--lg { padding: 17px 28px; font-size: 16.5px; }
.btn--sm { padding: 10px 16px; font-size: 13.5px; }
.btn--full { width: 100%; }

/* ========== PAGE-SPECIFIC ACCENTS ===================================== */

/* — Schlafsystem · Anatomie (geschichteter Stack mit Aside) — */
.anatomy {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
.anatomy__stack {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.anatomy__layer {
  position: relative;
  padding: 14px 18px;
  background: var(--paper-100);
  border-left: 3px solid var(--gold-500);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.anatomy__layer .h {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.005em;
  text-transform: none;
  display: block;
  color: var(--ink-900);
  margin-top: 2px;
  font-weight: 500;
}
.anatomy__detail h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.014em;
  line-height: 1.1;
  margin: 0 0 24px;
}
.anatomy__detail .lede {
  font-size: 17px;
  color: var(--ink-700);
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 0 24px;
}
.anatomy__detail .specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.anatomy__detail .spec-cell {
  padding: 18px 22px;
  background: #fff;
  border: var(--line);
  border-radius: var(--r-md);
}
.anatomy__detail .spec-cell h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin: 0 0 6px;
}
.anatomy__detail .spec-cell p {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 900px) {
  .anatomy { grid-template-columns: 1fr; gap: 32px; }
  .anatomy__stack { position: static; }
}

/* — Schlafberatung · Transcript (dunkler Pull) — */
.transcript {
  background: var(--ink-900);
  color: var(--paper-50);
  border-radius: var(--r-md);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}
.transcript__title h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.014em;
  color: var(--paper-50);
  margin: 12px 0 12px;
}
.transcript__title p {
  font-size: 13.5px;
  color: var(--ink-200);
  line-height: 1.55;
  margin: 0;
}
.transcript__list { display: flex; flex-direction: column; gap: 20px; }
.transcript__turn {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: baseline;
  padding-bottom: 20px;
  border-bottom: var(--line-light);
}
.transcript__turn:last-child { border-bottom: 0; padding-bottom: 0; }
.transcript__who {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.transcript__who.is-customer { color: var(--gold-300); }
.transcript__who.is-us       { color: var(--green-300); }
.transcript__line {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.45;
  color: var(--paper-50);
  margin: 0;
  font-weight: 300;
  letter-spacing: -0.005em;
}
.transcript__line em {
  font-style: italic;
  color: var(--ink-200);
  display: block;
  font-size: 13px;
  margin-top: 8px;
  font-family: var(--font-text);
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .transcript { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
  .transcript__turn { grid-template-columns: 1fr; gap: 6px; }
}

/* — Matratzen-Reinigung · Spec-Sheet — */
.spec-sheet {
  background: var(--paper-50);
  border: var(--line);
  border-radius: var(--r-md);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-700);
  overflow: hidden;
}
.spec-sheet__head {
  background: var(--ink-900);
  color: var(--gold-300);
  padding: 14px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 8px;
}
.spec-sheet__head .stamp {
  border: 1px solid var(--gold-300);
  padding: 4px 10px;
  border-radius: 2px;
}
.spec-sheet__row {
  display: grid;
  grid-template-columns: 200px 1fr 120px;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: var(--line);
  align-items: baseline;
}
.spec-sheet__row:last-child { border-bottom: 0; }
.spec-sheet__row .key {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-size: 10.5px;
}
.spec-sheet__row .val {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}
.spec-sheet__row .note {
  font-size: 11px;
  color: var(--ink-400);
  text-align: right;
}
@media (max-width: 720px) {
  .spec-sheet__row { grid-template-columns: 1fr; gap: 4px; }
  .spec-sheet__row .note { text-align: left; }
}

/* — Gesunder Schlaf · Editorial mit Drop-Cap — */
.editorial-long {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
}
.editorial-long__body p { font-size: 17px; line-height: 1.75; color: var(--ink-700); max-width: 62ch; }
.editorial-long__body p + p { margin-top: 1.1em; }
.editorial-long__body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 300;
  float: left;
  font-size: 88px;
  line-height: 0.85;
  padding: 6px 14px 0 0;
  color: var(--gold-700);
}
.editorial-long__aside {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  padding: 24px 24px 24px 22px;
  background: var(--paper-100);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.editorial-long__aside h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  margin: 8px 0 10px;
  line-height: 1.2;
}
.editorial-long__aside p {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .editorial-long { grid-template-columns: 1fr; gap: 32px; }
  .editorial-long__aside { position: static; }
}

/* PAGE HERO (full-bleed image background) ============================ */
.page-hero {
  position: relative;
  background: var(--ink-900);
  color: var(--paper-50);
  overflow: hidden;
  min-height: 56vh;
  display: flex;
  align-items: center;
  padding: 96px 0 88px;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,21,18,.88) 0%, rgba(14,21,18,.6) 55%, rgba(14,21,18,.22) 100%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 6.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin: 18px 0 24px;
}
.page-hero h1 em { color: var(--gold-300); font-style: italic; }
.page-hero .lede {
  font-size: clamp(18px, 1.5vw, 21px);
  color: var(--ink-200);
  line-height: 1.55;
  max-width: 56ch;
  margin: 0 0 32px;
}
.page-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero__meta {
  position: relative; z-index: 1;
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 56px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-200);
}
.page-hero__meta .item { display: inline-flex; align-items: center; gap: 8px; }
.page-hero__meta .item::before {
  content: ""; width: 6px; height: 6px; background: var(--gold-300); border-radius: 50%;
}
@media (max-width: 720px) {
  .page-hero { padding: 64px 0 56px; min-height: 0; }
  .page-hero__bg::after { background: linear-gradient(180deg, rgba(14,21,18,.5) 0%, rgba(14,21,18,.92) 100%); }
  .page-hero__meta { margin-top: 32px; gap: 12px; flex-direction: column; }
}

/* SECTION-HEAD UTILITIES, EDITORIAL TWO-COLUMN ======================== */
.section--first { padding-top: 80px; }
.hero {
  position: relative;
  background: var(--ink-900);
  color: var(--paper-50);
  padding: 110px 0 120px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: .58;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,21,18,.82) 0%, rgba(14,21,18,.55) 55%, rgba(14,21,18,.22) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 720px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 6.4vw, 76px);
  line-height: 0.98;
  margin: 18px 0 24px;
}
.hero h1 em {
  color: var(--gold-300);
  font-style: italic;
}
.hero .lede {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--ink-200);
  max-width: 52ch;
  margin: 0 0 40px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Desktop: erste Ansicht exakt bildschirmfüllend (kein Scrollen für den Hero) */
@media (min-width: 981px) {
  .hero {
    display: flex;
    align-items: center;
    min-height: calc(100svh - var(--header-h));
    padding-top: 0;
    padding-bottom: 0;
  }
}
.hero__signpost {
  position: relative;
  z-index: 1;
  display: flex; gap: 48px;
  margin-top: 64px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-200);
}

@media (max-width: 720px) {
  .hero { padding: 64px 0 64px; }
  .hero__signpost { gap: 16px; flex-direction: column; margin-top: 40px; }
  .hero__bg::after {
    background: linear-gradient(180deg, rgba(14,21,18,.45) 0%, rgba(14,21,18,.88) 100%);
  }
}

/* TRUST STRIP ========================================================= */
.trust {
  padding: 22px 0;
  border-bottom: var(--line);
  background: var(--paper-50);
}
.trust__row {
  display: flex; flex-wrap: wrap; gap: 12px 32px;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.trust__row .item { display: inline-flex; align-items: center; gap: 8px; }
.trust__row .item::before {
  content: ""; width: 6px; height: 6px; background: var(--green-500); border-radius: 50%;
}

/* SECTION HEADERS ===================================================== */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.018em;
  line-height: 1.05;
  text-wrap: balance;
  max-width: 22ch;
}
.section-title em { color: var(--green-600); font-style: italic; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head__lede {
  font-size: 17px;
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 40ch;
}

/* GRIDS =============================================================== */
.grid-2 { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.grid-2--equal { grid-template-columns: 1fr 1fr; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

@media (max-width: 900px) {
  .grid-2, .grid-2--equal { grid-template-columns: 1fr; gap: 32px; }
  .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

/* CARDS =============================================================== */
.card {
  background: #fff;
  border: var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-100);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  margin: 6px 0 6px;
}
.card__text { font-size: 13.5px; color: var(--ink-500); line-height: 1.5; margin-bottom: 16px; flex: 1; }
.card__link {
  font-size: 13px;
  color: var(--green-600);
  text-decoration: none;
  font-weight: 600;
  align-self: flex-start;
}
.card__link::after { content: " →"; }

.card--dark {
  background: var(--ink-900);
  color: var(--paper-50);
  border-color: transparent;
}
.card--dark .card__title { color: var(--paper-50); }
.card--dark .card__text { color: var(--ink-200); }

.card--gold {
  background: var(--paper-50);
  border: 1px solid var(--gold-300);
}

/* MATERIAL CARDS (smaller, typographic) ------------------------------- */
.mat-card {
  background: #fff;
  border: var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.mat-card__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold-700);
}
.mat-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  margin: 6px 0 4px;
}
.mat-card__body { padding: 16px 18px 20px; }
.mat-card__text { font-size: 12.5px; color: var(--ink-500); line-height: 1.45; }
.mat-card__media {
  aspect-ratio: 1/1;
  background: var(--paper-200);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.mat-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.mat-card:hover .mat-card__media img { transform: scale(1.04); }

/* CALLBACK FORM ======================================================= */
.callback-form {
  background: #fff;
  border: var(--line);
  border-radius: var(--r-md);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px) {
  .callback-form { padding: 24px; grid-template-columns: 1fr; gap: 16px; }
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.field label .req { color: var(--red); margin-left: 2px; }
.field input,
.field select,
.field textarea {
  font-family: var(--font-text);
  font-size: 17px;
  color: var(--ink-900);
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 96px; font-family: inherit; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(72,107,86,0.18);
}
.field input:invalid:not(:placeholder-shown),
.field select:invalid:not(:placeholder-shown) {
  border-color: var(--red);
}
.field .help { font-size: 12px; color: var(--ink-400); line-height: 1.4; }

.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field--check input { margin-top: 3px; width: 16px; height: 16px; }
.field--check span { font-size: 12px; color: var(--ink-500); line-height: 1.55; }
.field--check a { color: var(--green-600); }

.radiocards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.radiocard {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-sm);
  background: #fff;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.radiocard:hover { border-color: var(--ink-300); }
.radiocard input {
  position: absolute;
  width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0);
}
.radiocard .dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-300);
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
}
.radiocard input:checked + .dot { border-color: var(--green-500); }
.radiocard input:checked + .dot::after {
  content: ""; position: absolute; inset: 3px;
  border-radius: 50%; background: var(--green-500);
}
.radiocard input:checked ~ .body { color: var(--ink-900); }
.radiocard:has(input:checked) {
  border-color: var(--green-500);
  background: var(--green-100);
  box-shadow: 0 0 0 3px rgba(72,107,86,0.12);
}
.radiocard .body { font-size: 14px; color: var(--ink-900); }
.radiocard .body small { display: block; color: var(--ink-500); font-size: 12px; margin-top: 2px; }

.radiocards--time { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 540px) { .radiocards { grid-template-columns: 1fr; } }

/* SLIDE-OVER ========================================================== */
.slideover {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.slideover.is-open { display: block; }
.slideover__scrim {
  position: absolute; inset: 0;
  background: rgba(14,21,18,.65);
  opacity: 0;
  transition: opacity .25s ease;
}
.slideover.is-open .slideover__scrim { opacity: 1; }
.slideover__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: var(--paper-50);
  padding: 28px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex; flex-direction: column; gap: 16px;
}
.slideover.is-open .slideover__panel { transform: translateX(0); }
.slideover__head {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.slideover__close {
  width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid var(--ink-200); background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--ink-500);
}

/* SUCCESS STATE ======================================================= */
.success {
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 32px 16px;
  gap: 16px;
}
.success__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-100);
  border: 1.5px solid var(--green-500);
  color: var(--green-600);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
}

/* PRE-FOOTER ========================================================== */
.cta-block {
  background: var(--ink-900);
  color: var(--paper-50);
  padding: 120px 0;
  text-align: center;
}
.cta-block h2 {
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 18px auto 24px;
  max-width: 18ch;
}
.cta-block p {
  font-size: 20px;
  color: var(--ink-200);
  max-width: 48ch;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.cta-block__buttons { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 720px) { .cta-block { padding: 80px 0; } }

/* FOOTER ============================================================== */
.site-footer {
  background: #0a100e;
  color: var(--ink-300);
  font-size: 15px;
  padding: 64px 0 48px;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: var(--line-light);
}
.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-200);
  margin: 0 0 12px;
}
.site-footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--paper-50); }
.site-footer__legal {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 11.5px;
  color: var(--ink-400);
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer__legal a { color: inherit; }
.site-footer .phone-big {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--paper-50);
  margin: 0 0 4px;
  display: inline-block;
}
@media (max-width: 900px) {
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .site-footer__cols { grid-template-columns: 1fr; gap: 24px; }
}

/* MISCELLANEOUS ======================================================= */
.eyebrow-quote {
  position: absolute; top: 18px; right: 20px;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--gold-500);
  opacity: 0.5;
}

.editorial {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.editorial__media {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
}
.editorial__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .editorial { grid-template-columns: 1fr; gap: 32px; }
  .editorial__media { aspect-ratio: 4/3; }
}

.prose p { font-size: 16px; color: var(--ink-700); line-height: 1.7; max-width: 60ch; }
.prose p + p { margin-top: 1em; }
.prose strong { color: var(--ink-900); }
.prose h2, .prose h3 { margin-top: 1.6em; margin-bottom: 0.5em; }
.prose h3 { font-size: 22px; }
.prose ul, .prose ol { padding-left: 22px; color: var(--ink-700); line-height: 1.7; max-width: 60ch; }
.prose li + li { margin-top: 6px; }

.breadcrumb {
  padding: 18px 0;
  border-bottom: var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.breadcrumb a { color: var(--ink-400); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink-700); }
.breadcrumb span { color: var(--ink-900); }
.breadcrumb .sep { margin: 0 10px; color: var(--ink-300); }

/* FAQ ================================================================= */
.faq details {
  border-bottom: var(--line);
  padding: 18px 0;
}
.faq summary {
  font-family: var(--font-display);
  font-size: 19px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--green-500);
  flex-shrink: 0;
}
.faq details[open] summary .ico::before { content: "−"; }
.faq details:not([open]) summary .ico::before { content: "+"; }
.faq details p {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 60ch;
}

/* PROCESS STEPS ======================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: #fff;
  border: var(--line);
  border-radius: var(--r-md);
  padding: 32px;
}
.step--dark { background: var(--ink-900); color: var(--paper-50); border-color: transparent; }
.step--dark .step__text { color: var(--ink-200); }
.step__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 56px;
  color: var(--gold-500);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
}
.step--dark .step__num { color: var(--gold-300); }
.step__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
}
.step__text { font-size: 14px; color: var(--ink-500); line-height: 1.6; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* IMAGE OVERLAYS ====================================================== */
.symbolbild::after {
  content: "Symbolbild";
  position: absolute;
  bottom: 12px; right: 12px;
  padding: 6px 12px;
  background: rgba(14,21,18,.62);
  color: var(--paper-50);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  border-radius: 999px;
  pointer-events: none;
}

/* UTILITIES =========================================================== */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0 !important; }
.hide-mobile { }
.hide-desktop { display: none; }
@media (max-width: 720px) {
  .hide-mobile { display: none !important; }
  .hide-desktop { display: block; }
}
