/* =========================================================
   P&H Service — style.css
   Design-Tokens 1:1 aus dem Claude-Design-System übernommen
   (design-system/tokens/*.css, Stylesheet Stand 10/2020)
   ========================================================= */

@font-face {
  font-family: 'Saira';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/saira-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Saira';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/saira-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Saira';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/saira-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Saira';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../assets/fonts/saira-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Saira';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../assets/fonts/saira-900.woff2') format('woff2');
}

:root {
  /* Logofarben */
  --petrol: #175668;
  --teal: #0E8F94;

  /* Ergänzungsfarben + Kontraste */
  --gruen-dunkel: #3C851B;
  --gruen-hell: #7FC210;
  --orange: #E86138;
  --cyan-hell: #6FCCD6;

  /* Neutrale Töne (aus Petrol abgeleitet) */
  --neutral-950: #0E2933;
  --neutral-900: #14333F;
  --neutral-700: #3D5560;
  --neutral-500: #647A83;
  --neutral-300: #A9BCC2;
  --neutral-200: #CFDCE0;
  --neutral-100: #E8EFF1;
  --neutral-50:  #F4F8F9;
  --white: #FFFFFF;

  /* Semantische Aliasse */
  --brand: var(--petrol);
  --brand-2: var(--teal);
  --accent: var(--orange);
  --positive: var(--gruen-dunkel);

  --text-heading: var(--petrol);
  --text-body: #33454D;
  --text-muted: var(--neutral-500);
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: #B9D2DA;

  --surface-page: var(--white);
  --surface-subtle: var(--neutral-50);
  --surface-card: var(--white);
  --surface-dark: var(--petrol);

  --border-subtle: var(--neutral-200);
  --border-strong: var(--neutral-300);

  --link: var(--teal-text);
  --link-hover: var(--petrol);
  --focus-ring: var(--cyan-hell);

  /* A11y-Varianten — dieselbe Markenfarbe, dunkler/heller gezogen, damit
     Fließtext/Buttons WCAG-AA-Kontrast (4.5:1) erreichen. Hintergründe,
     Ränder und dekorative Punkte nutzen weiterhin die reinen Markenfarben. */
  --teal-text: #0B797D;
  --cyan-text: #7DD1DA;
  --orange-a11y: #C5522F;
  --orange-a11y-hover: #AE482A;
  --muted-on-subtle: #5A6D75;

  /* Typografie */
  --font-display: 'Saira', 'Axia', system-ui, sans-serif;
  --font-body: 'Saira', 'Axia', system-ui, sans-serif;

  --weight-body: 400;
  --weight-medium: 500;
  --weight-bold: 700;
  --weight-black: 800;

  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 21px;
  --text-2xl: 26px;
  --text-3xl: 32px;
  --text-4xl: 40px;
  --text-5xl: 52px;

  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-body: 1.45;

  --tracking-caps: 0.18em;
  --tracking-wide: 0.12em;
  --tracking-normal: 0;

  /* Abstände, Radien, Schatten */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --radius-none: 0;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-pill: 999px;

  --shadow-card: 0 1px 3px rgba(23, 86, 104, 0.10), 0 4px 16px rgba(23, 86, 104, 0.08);
  --shadow-raised: 0 8px 28px rgba(23, 86, 104, 0.16);

  --border-w: 1px;
  --border-w-strong: 2px;

  --container-max: 1120px;

  /* Sticky mobile call bar */
  --call-bar-height: 60px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-body);
  line-height: var(--leading-body);
  color: var(--text-body);
  background: var(--surface-page);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-heading);
  line-height: var(--leading-tight);
  margin: 0;
}

p { margin: 0 0 var(--space-4); }

a { color: var(--link); }
a:hover { color: var(--link-hover); }

img { max-width: 100%; display: block; }

::selection { background: var(--cyan-hell); color: var(--petrol); }

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

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

.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--teal-text);
  margin-bottom: var(--space-3);
}
.eyebrow.on-dark { color: var(--cyan-text); }

.section-heading { max-width: 720px; }
.section-heading.center { text-align: center; margin: 0 auto; }
.section-heading h2 { font-size: var(--text-3xl); font-weight: var(--weight-black); }
.section-heading p { font-size: var(--text-base); margin-top: var(--space-4); margin-bottom: 0; }
.section-heading.on-dark h2 { color: #fff; }
.section-heading.on-dark p { color: var(--text-on-dark-muted); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--petrol);
  color: #fff;
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
  white-space: nowrap;
  text-decoration: none;
  font-size: 14px;
  padding: 12px 24px;
}
.btn-lg { font-size: 15px; padding: 15px 32px; }
.btn-sm { font-size: 12px; padding: 8px 16px; }

.btn-primary { background: var(--petrol); color: #fff; }
.btn-primary:hover { background: var(--teal); color: #fff; }

.btn-accent { background: var(--orange-a11y); color: #fff; }
.btn-accent:hover { background: var(--orange-a11y-hover); color: #fff; }

.btn-ghost { background: transparent; color: var(--petrol); border: 2px solid var(--petrol); padding: 10px 22px; }
.btn-ghost:hover { background: var(--petrol); color: #fff; }

.btn-ghost-inverted { background: transparent; color: #fff; border: 2px solid #fff; padding: 10px 22px; }
.btn-ghost-inverted:hover { background: #fff; color: var(--petrol); }

.btn-call::before {
  content: '';
  width: 16px; height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.362 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.338 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.362 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.338 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center / contain no-repeat;
}

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 30;
}
.site-header .container {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header .logo img { height: 40px; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--petrol);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: color 150ms ease-out;
}
.main-nav a:hover { color: var(--teal-text); }

.header-call {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-call-link {
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  font-size: var(--text-lg);
  color: var(--petrol);
  text-decoration: none;
  white-space: nowrap;
}
.header-call-link:hover { color: var(--teal-text); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--petrol);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { display: block; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(14,41,51,0.82) 0%, rgba(14,41,51,0.45) 65%, rgba(14,41,51,0.18) 100%), url('../assets/photos/demo-buehne.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero-inner { max-width: 580px; padding: 64px 0; display: flex; flex-direction: column; gap: 20px; }
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--cyan-hell);
}
.hero h1 { font-size: var(--text-5xl); font-weight: var(--weight-black); color: #fff; }
.hero-lead { font-size: var(--text-lg); color: rgba(255,255,255,0.9); line-height: 1.55; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--space-2); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: var(--space-3); }
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: var(--text-sm); color: rgba(255,255,255,0.92); font-weight: var(--weight-medium);
}
.hero-trust-item .dot { width: 7px; height: 7px; background: var(--cyan-hell); flex: none; }

/* =========================================================
   Badge
   ========================================================= */
.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: var(--petrol);
  color: #fff;
}
.badge-orange { background: var(--orange-a11y); }
.badge-subtle { background: var(--neutral-100); color: var(--petrol); }

/* =========================================================
   Sections / layout
   ========================================================= */
.section { padding: var(--space-9) 0; }
.section-subtle { background: var(--surface-subtle); }
.section-dark { background: var(--petrol); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); }

/* =========================================================
   Card
   ========================================================= */
.card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 200ms ease-out;
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-raised); }
.card img { width: 100%; height: 180px; object-fit: cover; }
.card-body { padding: var(--space-5); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-size: var(--text-lg); font-weight: var(--weight-black); }
.card-body p { font-size: var(--text-sm); color: var(--text-body); flex: 1; margin-bottom: 0; }
.card-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--teal-text);
  text-decoration: none;
}
.card-cta:hover { color: var(--petrol); }

/* =========================================================
   Kaufen / Mieten – zentrale Weiche
   ========================================================= */
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); margin-top: var(--space-7); }
.path-card {
  border-radius: var(--radius-md);
  padding: var(--space-7) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.path-card-kaufen {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}
.path-card-mieten {
  background: var(--petrol);
  color: #fff;
  box-shadow: var(--shadow-raised);
}
.path-card-mieten h3, .path-card-mieten .path-price { color: #fff; }
.path-card-mieten p, .path-card-mieten li { color: var(--text-on-dark-muted); }
.path-tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.path-card-kaufen .path-tag { color: var(--teal-text); }
.path-card-mieten .path-tag { color: var(--cyan-text); }
.path-card h3 { font-size: var(--text-2xl); font-weight: var(--weight-black); }
.path-price { font-size: var(--text-2xl); font-weight: var(--weight-black); color: var(--petrol); }
.path-price-unit { font-size: var(--text-sm); font-weight: var(--weight-body); color: var(--text-muted); }
.path-card-mieten .path-price-unit { color: var(--text-on-dark-muted); }
.path-list { list-style: none; margin: var(--space-2) 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.path-list li { display: flex; gap: 10px; align-items: baseline; font-size: var(--text-sm); }
.path-list li::before { content: ''; width: 7px; height: 7px; background: var(--teal); flex: none; transform: translateY(-1px); }
.path-card-mieten .path-list li::before { background: var(--cyan-hell); }
.path-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: var(--space-2); }

/* =========================================================
   Spec list
   ========================================================= */
.spec-list h3 { font-size: var(--text-lg); font-weight: var(--weight-black); margin-bottom: 10px; }
.spec-list ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.spec-list li { display: flex; gap: 10px; align-items: baseline; font-size: var(--text-sm); color: var(--text-body); line-height: var(--leading-snug); }
.spec-list li::before { content: ''; width: 7px; height: 7px; background: var(--teal); flex: none; transform: translateY(-1px); }
.spec-list b { color: var(--petrol); }

/* =========================================================
   Price card (Mietpreise-Detail)
   ========================================================= */
.price-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-card.highlighted { background: var(--petrol); border: none; box-shadow: var(--shadow-raised); }
.price-card-title { font-family: var(--font-display); font-size: 13px; font-weight: var(--weight-bold); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--teal-text); }
.price-card.highlighted .price-card-title { color: var(--cyan-text); }
.price-card-value { display: flex; align-items: baseline; gap: 6px; }
.price-card-value .amount { font-size: var(--text-2xl); font-weight: var(--weight-black); line-height: 1; color: var(--petrol); }
.price-card.highlighted .amount { color: #fff; }
.price-card-value .unit { font-size: var(--text-sm); color: var(--text-muted); }
.price-card.highlighted .unit { color: var(--text-on-dark-muted); }
.price-card p { font-size: var(--text-sm); color: var(--text-body); flex: 1; }
.price-card.highlighted p { color: var(--text-on-dark-muted); }
.price-card a.price-cta { font-family: var(--font-display); font-size: 13px; font-weight: var(--weight-bold); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--teal-text); text-decoration: underline; text-underline-offset: 4px; }
.price-card.highlighted a.price-cta { color: #fff; }

/* =========================================================
   Zitat
   ========================================================= */
.quote { max-width: 820px; margin: 0 auto; text-align: center; }
.quote p { font-size: var(--text-xl); line-height: 1.5; color: #fff; font-weight: var(--weight-medium); margin: 0; }
.quote-attr { margin-top: 20px; font-family: var(--font-display); font-size: 13px; font-weight: var(--weight-bold); letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--cyan-text); }

/* =========================================================
   Ansprechpartner
   ========================================================= */
.contact-person {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.contact-person img {
  width: 88px; height: 88px; object-fit: cover;
  border-radius: var(--radius-sm);
  flex: none;
}
.contact-person h3 { font-size: var(--text-xl); font-weight: var(--weight-black); margin-bottom: 4px; }
.contact-person .role-list { font-size: 13px; color: var(--text-muted); line-height: var(--leading-snug); margin-top: 4px; }
.contact-person .contact-links { display: flex; flex-direction: column; gap: 2px; font-size: var(--text-sm); margin-top: 4px; }
.contact-person .contact-links a { color: var(--teal-text); text-decoration: none; font-weight: var(--weight-bold); }
.contact-person .contact-links a.mail-link { font-weight: var(--weight-body); }

/* =========================================================
   Formular
   ========================================================= */
.form-field { display: block; margin-bottom: var(--space-4); }
.form-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 6px;
}
.form-field input, .form-field textarea {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-body);
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  width: 100%;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--teal);
  outline: 2px solid var(--focus-ring);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: var(--text-sm); margin-bottom: var(--space-4); }
.form-checkbox input { margin-top: 3px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-6);
}
.contact-card-title { font-weight: var(--weight-black); font-size: var(--text-lg); color: var(--petrol); margin-bottom: var(--space-4); }
.contact-info { font-size: var(--text-base); color: var(--text-body); line-height: 1.8; }
.contact-info a { font-weight: var(--weight-bold); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--petrol); color: #fff; }
.footer-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-7) 24px var(--space-6);
  display: grid;
  grid-template-columns: minmax(200px,1.2fr) minmax(180px,1fr) minmax(120px,1fr);
  gap: var(--space-6);
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col img { height: 44px; margin-bottom: 6px; }
.footer-heading {
  font-size: 11px; font-weight: var(--weight-bold); letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--cyan-text); margin-bottom: 4px;
}
.footer-col a { color: var(--text-on-dark-muted); text-decoration: none; font-size: 12px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-bottom .container { padding-top: 16px; padding-bottom: 16px; font-size: 12px; color: var(--text-on-dark-muted); }

/* =========================================================
   Sticky Call Bar (Mobile)
   ========================================================= */
.sticky-call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: var(--orange-a11y);
  box-shadow: 0 -4px 16px rgba(14,41,51,0.25);
}
.sticky-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--call-bar-height);
  color: #fff;
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  font-size: var(--text-lg);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

/* =========================================================
   Legal / Placeholder-Seiten
   ========================================================= */
.legal-page main.container { max-width: 820px; padding-top: var(--space-8); padding-bottom: var(--space-9); }
.placeholder-notice {
  background: var(--neutral-100);
  border-left: 4px solid var(--orange);
  padding: var(--space-5);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-body);
}
.placeholder-notice strong { color: var(--petrol); }

.legal-page h1 { font-size: var(--text-3xl); font-weight: var(--weight-black); margin-bottom: var(--space-6); }
.legal-page h2 { font-size: var(--text-xl); font-weight: var(--weight-bold); margin-top: var(--space-7); margin-bottom: var(--space-3); }
.legal-page h3 { font-size: var(--text-lg); font-weight: var(--weight-bold); margin-top: var(--space-6); margin-bottom: var(--space-2); }
.legal-page h4 { font-size: var(--text-base); font-weight: var(--weight-bold); margin-top: var(--space-5); margin-bottom: var(--space-2); }
.legal-page p { font-size: var(--text-sm); line-height: var(--leading-body); margin: 0 0 var(--space-3); }
.legal-page ul { margin: 0 0 var(--space-4); padding-left: var(--space-5); font-size: var(--text-sm); line-height: var(--leading-body); }
.legal-page .agb-stand, .legal-page .ds-quelle { color: var(--text-muted); font-style: italic; margin-top: var(--space-6); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .path-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 480px; }
  .hero h1 { font-size: var(--text-4xl); }
}

@media (max-width: 760px) {
  .btn { white-space: normal; text-align: center; }
  .main-nav, .header-call-link { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
  }
  .site-header.nav-open .main-nav a { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--border-subtle); }
  .sticky-call-bar { display: block; }
  body { padding-bottom: var(--call-bar-height); }
  .contact-person { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}
