/* =========================================================
   Rohit Nayar — Dolmetscher & Übersetzer, Aachen
   Vanilla CSS. Mobile-first. Brand Tokens siehe CLAUDE.md.
   ========================================================= */

:root {
  /* Brand Tokens */
  --primary: #123B54;
  --accent:  #3D8FB5;
  --bg:      #FFFFFF;
  --detail:  #8C959C;

  /* Abgeleitete Neutraltöne (keine neuen Farben, nur Abstufungen) */
  --text:        #33454F;
  --surface:     #F6F9FA;
  --line:        #E3E9EC;
  --accent-tint: rgba(61, 143, 181, 0.10);

  --font-head: 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --radius: 6px;
  --ease: 0.25s ease;
  --header-h: 64px;
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--primary);
  font-weight: 600;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); }

ul { list-style: none; margin: 0; padding: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--primary);
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  font-size: 0.9rem;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  transition: box-shadow var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 1px 14px rgba(18, 59, 84, 0.09); }

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.005em;
  white-space: nowrap;
}

/* Hauptnavigation — mobil als Ausklapp-Panel, ab 900px inline */
.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(18, 59, 84, 0.10);
  padding: 6px 0 10px;
}
.site-nav.is-open { display: flex; }

.site-nav a {
  display: block;
  padding: 14px 22px;
  min-height: 48px;
  color: var(--primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background-color var(--ease), border-color var(--ease);
}
.site-nav a:hover { background: var(--surface); }
.site-nav a.is-current { border-left-color: var(--accent); background: var(--surface); }

.header-right { display: flex; align-items: center; gap: 6px; }

.nav-toggle {
  appearance: none;
  border: 0;
  background: none;
  padding: 10px 4px 10px 10px;
  cursor: pointer;
  color: var(--primary);
}
.nav-toggle-bars { display: block; width: 22px; }
.nav-toggle-bars span {
  display: block;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle-bars span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
}
.lang-sep { color: var(--line); }

/* Wird sowohl als <button> (Rechtsseiten) als auch als <a>/<span>
   (Sprachfassungen unter eigener URL) verwendet. */
.lang-btn {
  appearance: none;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 500;
  color: var(--detail);
  padding: 8px 6px;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--ease);
}
a.lang-btn:hover,
button.lang-btn:hover { color: var(--primary); }
.lang-btn.is-active { color: var(--primary); font-weight: 600; cursor: default; }

/* Scroll-Progress-Bar */
.progress-track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 5px;
  background: transparent;
}
.progress-bar {
  height: 100%;
  width: 0;
  background: var(--accent);
  transform-origin: left center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--ease), border-color var(--ease), color var(--ease);
}
.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #35809f; border-color: #35809f; }

.btn-outline {
  background: #fff;
  border-color: var(--accent);
  color: var(--primary);
}
.btn-outline:hover { background: var(--accent-tint); }
.btn-primary:disabled { opacity: 0.6; cursor: default; }
.btn-block { width: 100%; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--surface); }

.section, .hero { scroll-margin-top: var(--header-h); }

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.section h2 { font-size: clamp(1.9rem, 5vw, 2.6rem); }

.section-lead {
  margin: 18px 0 0;
  max-width: 62ch;
  color: var(--text);
  font-size: 1.05rem;
}

/* ---------- 1. Hero ---------- */
.hero {
  padding: calc(var(--header-h) + 64px) 0 72px;
  background:
    radial-gradient(115% 95% at 95% 5%, rgba(61, 143, 181, 0.14) 0%, rgba(61, 143, 181, 0) 62%),
    var(--bg);
}

.hero-inner { display: grid; gap: 40px; }

.hero h1 {
  font-size: clamp(2.35rem, 7.5vw, 4.15rem);
  line-height: 1.06;
  max-width: 16ch;
}

.hero-figure { margin: 0; }
.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.rule {
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent);
  margin: 26px 0;
}

.hero-sub {
  max-width: 54ch;
  font-size: 1.15rem;
  color: var(--text);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 34px;
}
.badges li {
  background: var(--accent-tint);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 15px;
  border-radius: 100px;
}

/* ---------- Zahlen-Banner ---------- */
.stats-band { padding: 0 0 8px; }

.stats {
  display: grid;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 22px;
  border-top: 1px solid var(--line);
}
.stat:first-child { border-top: 0; }

.stat-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
}
.stat-icon svg { width: 24px; height: 24px; }

.stat-body { min-width: 0; }

.stat-value {
  display: block;
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.stat-value-word { font-size: 1.7rem; }

.stat-label {
  display: block;
  margin-top: 2px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

.stat-note {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--detail);
}

/* ---------- Übergang: Offiziell bestätigt ---------- */
.trust-band {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.82);
  padding: 72px 0;
  text-align: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
}
.trust-badge svg { width: 30px; height: 30px; }

.trust-eyebrow { color: var(--accent); }

.trust-band h2 {
  max-width: 26ch;
  margin: 0 auto;
  font-size: clamp(1.8rem, 4.4vw, 2.5rem);
  color: #fff;
}

.trust-facts {
  display: grid;
  gap: 14px;
  margin: 40px 0 0;
  text-align: left;
}

.trust-facts li {
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}
.trust-facts h3 {
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}
.trust-facts p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.trust-note {
  max-width: 58ch;
  margin: 42px auto 0;
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  font-weight: 500;
  line-height: 1.55;
  color: #fff;
}

/* ---------- 2. Über mich ---------- */
.about-grid {
  display: grid;
  gap: 36px;
  margin-top: 32px;
}

.about-text p { color: var(--text); }

.about-text blockquote {
  margin: 30px 0 0;
  padding-left: 22px;
  border-left: 3px solid var(--accent);
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.4rem, 3.6vw, 1.75rem);
  line-height: 1.4;
  color: var(--primary);
}

.about-partner {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.about-side { display: grid; gap: 24px; align-content: start; }

.portrait { margin: 0; }
.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.trust-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px 22px 22px 20px;
}
.trust-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--accent);
  margin-top: 2px;
}
.trust-box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}
.trust-box strong { color: var(--primary); }

/* ---------- 3. Leistungen ---------- */
.tiles-hint {
  margin: 22px 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--detail);
}

.tiles {
  display: grid;
  gap: 14px;
  margin: 16px 0 0;
  align-items: start;
}

.tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--ease);
}
.tile:hover { border-color: var(--accent); }
.tile.is-open { border-color: var(--accent); }

.tile-title { margin: 0; }

.tile-head {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 96px;
  padding: 22px;
  background: none;
  border: 0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--primary);
  text-align: left;
  cursor: pointer;
  transition: background-color var(--ease);
}
.tile-head:hover { background: var(--accent-tint); }

.tile-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--accent);
}
.tile-label { flex: 1 1 auto; }

.chev {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--accent);
  transition: transform var(--ease);
}
[aria-expanded="true"] .chev { transform: rotate(180deg); }

/* Höhe wird per JS gesetzt (script.js → setPanel), damit die Animation
   unabhängig vom Inhalt exakt stimmt — auch nach dem Sprachwechsel. */
.tile-panel,
.faq-panel {
  height: 0;
  overflow: hidden;
  transition: height var(--ease);
}

.tile-panel ul {
  padding: 0 22px 22px 66px;
  font-size: 0.94rem;
  line-height: 1.6;
}
.tile-panel li {
  position: relative;
  padding: 5px 0 5px 16px;
  color: var(--text);
}
.tile-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.area-note {
  margin: 26px 0 0;
  font-size: 0.95rem;
  color: var(--detail);
}

/* ---------- 4. Portfolio ---------- */
.highlights {
  display: grid;
  gap: 14px;
  margin: 38px 0 0;
}

.highlight {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color var(--ease), transform var(--ease);
}
.highlight:hover { border-color: var(--accent); transform: translateY(-2px); }

.highlight-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 8px;
}
.highlight p {
  margin: 0;
  color: var(--primary);
  font-size: 1.02rem;
  line-height: 1.5;
}

.section-slim { padding: 46px 0; }

/* ---------- Einblick-Slider ----------
   Die Fotos werden in ihrem eigenen Format gezeigt, ohne Rahmen und ohne
   Zuschnitt. Gescrollt wird per Scroll-Snap, damit das Wischen auf dem
   Handy der Browser selbst macht; das JS setzt nur den Automatik-Lauf
   und die Punkte. */
.slider { position: relative; }

.slider-viewport {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* Kein scroll-behavior: smooth — das macht jede scrollLeft-Zuweisung zur
     Animation, die sich mit scroll-snap gegenseitig blockiert (der Slider
     bleibt dann auf Bild 1 stehen). Das Gleiten macht das JS selbst. */
  /* Native Scrollbar ausblenden — navigiert wird per Wischen und Punkt */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider-viewport::-webkit-scrollbar { display: none; }
.slider-viewport:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
}

/* Kein aspect-ratio und kein object-fit: das Bild bestimmt seine Hoehe
   selbst und wird nie beschnitten. Alle Fotos haben dieselben Masse,
   also sind alle Slides von allein gleich hoch. */
.slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.slide figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--detail);
  min-height: 2.4em;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.slider-dot:hover { background: var(--detail); }
.slider-dot.is-active {
  background: var(--accent);
  transform: scale(1.35);
}
.slider-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}


/* ---------- 5. FAQ ---------- */
.faq-list {
  display: grid;
  gap: 12px;
  margin: 38px 0 0;
  max-width: 860px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--ease);
}
.faq-item:hover { border-color: var(--accent); }
.faq-item.is-open { border-color: var(--accent); }

.faq-question { margin: 0; }

.faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 64px;
  padding: 18px 22px;
  background: none;
  border: 0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--primary);
  text-align: left;
  cursor: pointer;
  transition: background-color var(--ease);
}
.faq-head:hover { background: var(--accent-tint); }

.faq-panel .panel-inner { padding: 0 22px 22px; }

.faq-panel p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
}

.faq-mail {
  margin-top: 16px;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  font-size: 0.95rem;
}
.faq-mail svg { width: 19px; height: 19px; }

/* ---------- 6. Kontakt ---------- */
.contact-grid {
  display: grid;
  gap: 34px;
  margin-top: 34px;
}

.field { margin-bottom: 20px; }

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field textarea { resize: vertical; line-height: 1.6; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #B4453C; }

.field-hint {
  margin: 8px 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--detail);
}

/* Datei-Feld */
.filefield {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filefield input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.filefield-btn {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin: 0;
  padding: 0 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  transition: border-color var(--ease), background-color var(--ease);
}
.filefield-btn:hover { border-color: var(--accent); background: var(--accent-tint); }
.filefield input[type="file"]:focus-visible + .filefield-btn {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.filefield-name {
  flex: 1 1 140px;
  min-width: 0;
  font-size: 0.88rem;
  color: var(--detail);
  overflow-wrap: anywhere;
}
.filefield-name.has-file { color: var(--primary); font-weight: 500; }

.filefield-clear {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--detail);
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease);
}
.filefield-clear:hover { border-color: var(--accent); color: var(--primary); }

/* Einwilligung */
.field-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 24px;
}
.field-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.field-check label {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  cursor: pointer;
}
.field-check a { color: var(--primary); text-decoration: underline; }
.field-check a:hover { color: var(--accent); }
.field-check input[aria-invalid="true"] { outline: 2px solid #B4453C; outline-offset: 2px; }

/* Honeypot — für Menschen unsichtbar */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 16px 0 0;
  font-size: 0.92rem;
  min-height: 1.4em;
}
.form-status.is-ok { color: var(--primary); }
.form-status.is-error { color: #B4453C; }

.contact-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 22px 22px;
  align-self: start;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  min-height: 56px;
  border-bottom: 1px solid var(--line);
  color: var(--primary);
  text-decoration: none;
  transition: color var(--ease);
}
.contact-row:last-of-type { border-bottom: 0; }
a.contact-row:hover { color: var(--accent); }

.contact-row svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.contact-row span { display: block; font-size: 1rem; font-weight: 500; }
.contact-row small {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--detail);
  margin-bottom: 2px;
}

.contact-extra {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--detail);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.72);
  padding: 52px 0 34px;
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  gap: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-name {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: 1.45rem;
  color: #fff;
}

.footer-col-title {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-col:nth-child(3) .footer-col-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
}

.footer-role {
  margin: 0 0 12px;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact { display: grid; gap: 7px; }
.footer-contact li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 10px;
  align-items: baseline;
  font-size: 0.9rem;
}
.footer-contact li > span:first-child {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease);
}
.footer-contact a:hover { border-bottom-color: rgba(255, 255, 255, 0.7); }
.footer-plain { color: rgba(255, 255, 255, 0.7); }

.footer-bottom {
  display: grid;
  gap: 12px;
  padding-top: 24px;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a,
.footer-credit a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: color var(--ease), border-color var(--ease);
}
.footer-links a:hover,
.footer-credit a:hover { color: #fff; border-color: #fff; }

.footer-credit {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer :focus-visible { outline-color: #fff; }

/* ---------- Rechtliche Seiten ---------- */
.legal { padding: calc(var(--header-h) + 56px) 0 72px; }
.legal .container { max-width: 780px; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 28px; }
.legal h2 { font-size: 1.4rem; margin: 38px 0 12px; }
.legal p { color: var(--text); }
.legal address { font-style: normal; }
.legal a { color: var(--primary); }

.back-link {
  display: inline-block;
  margin-bottom: 26px;
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
}
.back-link:hover { text-decoration: underline; }

.placeholder-note {
  background: var(--accent-tint);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.95rem;
  color: var(--primary);
}

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Breakpoints ---------- */
@media (min-width: 640px) {
  .container { padding: 0 32px; }
  .tiles, .highlights { grid-template-columns: repeat(2, 1fr); }
  .trust-facts { grid-template-columns: repeat(2, 1fr); }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .footer-credit { text-align: right; }
}

@media (min-width: 900px) {
  :root { --header-h: 74px; }

  .nav-toggle { display: none; }

  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-left: auto;
    margin-right: 26px;
  }
  .site-nav a {
    position: relative;
    padding: 8px 12px;
    min-height: 0;
    font-size: 0.94rem;
    font-weight: 400;
    border-left: 0;
    border-radius: 3px;
  }
  .site-nav a:hover { background: none; color: var(--accent); }
  .site-nav a.is-current { background: none; }
  .site-nav a.is-current::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 1px;
    height: 2px;
    background: var(--accent);
  }

  .section { padding: 104px 0; }
  .section-slim { padding: 64px 0; }
  .hero { padding: calc(var(--header-h) + 88px) 0 72px; }

  .hero-inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
  }
  .hero-figure img { max-height: 560px; }

  .stats-band { padding: 0 0 16px; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stat {
    border-top: 0;
    border-right: 1px solid var(--line);
    padding: 30px 24px;
  }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:last-child { border-right: 0; }

  .trust-band { padding: 104px 0; }
  .trust-facts { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .footer-top { grid-template-columns: 1.15fr 1fr 1fr; gap: 48px; }

  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
  }
  .about-text { font-size: 1.08rem; }

  .tiles { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .highlights { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .tile-panel ul { padding-left: 22px; }


  /* Die Fotos sind Hochformat 4:5. Ueber die volle Containerbreite waere der
     Slider rund 1400px hoch — daher zentriert und in der Breite begrenzt. */
  .slider {
    max-width: 540px;
    margin: 0 auto;
  }
  .slide figcaption {
    min-height: 0;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
  }
  .contact-box { padding: 14px 28px 26px; }
}

/* ---------- Motion-Reduktion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Druck ---------- */
@media print {
  .site-header, .btn, .contact-form, .reveal { display: revert; }
  .site-header { position: static; }
  .reveal { opacity: 1; transform: none; }
}
