/* ==========================================================================
   DEMI PERSONAL — Personal, der verbindet.
   Design: editorial luxury · ivory / navy / gold
   ========================================================================== */

:root {
  --ivory: #faf7f1;
  --paper: #fffdf8;
  --ink: #17233b;
  --navy: #1e3054;
  --navy-deep: #16243f;
  --navy-soft: #33486e;
  --gold: #bd9a5e;
  --gold-deep: #7d6132;
  --gold-pale: #f0e6d2;
  --line: rgba(30, 48, 84, 0.16);
  --gold-line: rgba(189, 154, 94, 0.5);
  --shadow: 0 24px 60px -28px rgba(22, 36, 63, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Marcellus', 'Times New Roman', serif;
  --font-body: 'Jost', 'Avenir Next', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 5.75rem; }

[id] { scroll-margin-top: 5.75rem; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Feines Papierkorn über der ganzen Seite */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

::selection { background: var(--gold-pale); color: var(--navy-deep); }

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

a { color: var(--navy); text-decoration: none; }

.container {
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Typografie
   -------------------------------------------------------------------------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  color: var(--navy-deep);
  letter-spacing: 0.01em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.4rem;
}

.eyebrow::before {
  content: '';
  width: 2.4rem;
  height: 1px;
  background: var(--gold);
  flex: none;
}

.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 2.4rem;
  height: 1px;
  background: var(--gold);
  flex: none;
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  max-width: 22ch;
}

.section-title em {
  font-style: normal;
  color: var(--gold-deep);
}

.section-intro {
  max-width: 62ch;
  margin-top: 1.1rem;
  color: var(--navy-soft);
  font-weight: 300;
  font-size: 1.1rem;
}

.center { text-align: center; }
.center .section-title, .center .section-intro { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(22, 36, 63, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand svg { height: 46px; width: auto; flex: none; }

.brand-text {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0.14em;
  color: var(--navy);
  white-space: nowrap;
}

.brand-text .gold { color: var(--gold); }

.brand-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-top: 0.18rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a:not(.btn) {
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  position: relative;
  padding-block: 0.3rem;
}

.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.main-nav a:not(.btn):hover::after,
.main-nav a:not(.btn):focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  color: var(--navy);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-switch a {
  display: grid;
  place-items: center;
  min-width: 2rem;
  height: 1.8rem;
  padding: 0 0.42rem !important;
  border: 0 !important;
  border-radius: 999px;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
}

.lang-switch a::after { display: none; }
.lang-switch a[aria-current="page"] { background: var(--navy); color: var(--ivory); }
.site-footer .lang-switch { border-color: rgba(250,247,241,.25); }
.site-footer .lang-switch a { color: rgba(250,247,241,.75); }
.site-footer .lang-switch a[aria-current="page"] { background: var(--gold); color: var(--navy-deep); }

.legal-nav { display: flex; align-items: center; gap: 1rem; }
.legal-nav > a { font-size: .92rem; font-weight: 500; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}

.btn svg { width: 1.1em; height: 1.1em; flex: none; }

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--navy);
  color: var(--ivory);
  box-shadow: 0 14px 30px -14px rgba(30, 48, 84, 0.5);
}

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

.btn-ghost {
  border-color: var(--gold);
  color: var(--navy);
  background: transparent;
}

.btn-ghost:hover { background: var(--gold-pale); }

.btn-gold {
  background: linear-gradient(135deg, #c9a76b, var(--gold) 55%, #a9854a);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(150, 118, 59, 0.55);
}

.btn-light {
  background: var(--ivory);
  color: var(--navy);
}

.btn-light:hover { background: #fff; }

.btn-outline-light {
  border-color: rgba(250, 247, 241, 0.5);
  color: var(--ivory);
}

.btn-outline-light:hover { background: rgba(250, 247, 241, 0.12); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 8rem) clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(189, 154, 94, 0.14), transparent 65%),
    radial-gradient(900px 600px at -15% 110%, rgba(30, 48, 84, 0.08), transparent 60%),
    var(--ivory);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  margin-block: 0.4rem 1.6rem;
}

.hero h1 .gold-word {
  color: var(--gold-deep);
  position: relative;
  white-space: nowrap;
}

.hero h1 .gold-word::after {
  content: '';
  position: absolute;
  left: 2%;
  bottom: 0.06em;
  width: 96%;
  height: 0.08em;
  background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
  opacity: 0.65;
}

.hero-lead {
  max-width: 54ch;
  font-size: 1.16rem;
  font-weight: 300;
  color: var(--navy-soft);
  margin-bottom: 2.3rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-art .mark-large {
  width: min(360px, 70vw);
  filter: drop-shadow(0 30px 50px rgba(22, 36, 63, 0.16));
  animation: heroFloat 7s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-art::before {
  content: '';
  position: absolute;
  inset: -8% -12%;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  animation: slowSpin 40s linear infinite;
  mask: linear-gradient(160deg, #000 30%, transparent 75%);
  -webkit-mask: linear-gradient(160deg, #000 30%, transparent 75%);
}

@keyframes slowSpin { to { transform: rotate(360deg); } }

/* Kennzahlen-Leiste unter dem Hero */
.scope-notice {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) 2fr;
  align-items: center;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  background: linear-gradient(120deg, var(--gold-pale), rgba(255,253,248,.75));
  box-shadow: 0 16px 38px -30px rgba(22,36,63,.45);
}
.scope-notice strong { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy-deep); }
.scope-notice span { color: var(--navy-soft); font-size: .95rem; }

.hero-facts {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.fact {
  padding: 1.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fact + .fact { border-left: 1px solid var(--line); }

.fact strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 400;
}

.fact span {
  font-size: 0.9rem;
  color: var(--navy-soft);
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   Sektionen
   -------------------------------------------------------------------------- */

.section { padding-block: clamp(4rem, 8vw, 6.5rem); }

.section-head { margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }

/* Leistungen */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.2rem 1.9rem 2rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-line);
}

.card:hover::before { opacity: 1; }

.card-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(30, 48, 84, 0.07), rgba(189, 154, 94, 0.14));
  border: 1px solid var(--gold-line);
  color: var(--navy);
  margin-bottom: 1.4rem;
}

.card-icon svg { width: 26px; height: 26px; }

.card h3 {
  font-size: 1.32rem;
  margin-bottom: 0.7rem;
}

.card p {
  font-size: 0.99rem;
  font-weight: 300;
  color: var(--navy-soft);
}

/* Branchen */
.branchen { background: var(--paper); border-block: 1px solid var(--line); }

.chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.chip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ivory);
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.chip:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -20px rgba(22, 36, 63, 0.3);
}

.chip svg { width: 24px; height: 24px; color: var(--gold-deep); flex: none; }

.chip span { font-weight: 500; font-size: 0.98rem; color: var(--navy); }

/* Split: Unternehmen / Bewerber */
.split {
  background:
    radial-gradient(900px 400px at 110% 0%, rgba(189, 154, 94, 0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-deep), var(--navy) 70%);
  color: var(--ivory);
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.split .eyebrow { color: var(--gold); }
.split .section-title { color: var(--ivory); }
.split .section-title em { color: var(--gold); }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
}

.split-card {
  border: 1px solid rgba(250, 247, 241, 0.16);
  border-radius: 20px;
  padding: 2.4rem 2.1rem;
  background: rgba(250, 247, 241, 0.045);
  backdrop-filter: blur(4px);
  transition: border-color 0.4s, background 0.4s;
}

.split-card:hover {
  border-color: var(--gold-line);
  background: rgba(250, 247, 241, 0.07);
}

.split-card h3 {
  color: var(--ivory);
  font-size: 1.55rem;
  margin-bottom: 1.2rem;
}

.split-card ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.split-card li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  font-weight: 300;
  color: rgba(250, 247, 241, 0.85);
  font-size: 0.99rem;
}

.split-card li::before {
  content: '—';
  color: var(--gold);
  flex: none;
}

/* Prozess */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.step {
  position: relative;
  padding: 1.8rem 1.4rem 0;
  border-top: 1px solid var(--line);
}

.step::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 3.2rem;
  height: 2px;
  background: var(--gold);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-deep);
  margin-bottom: 0.7rem;
}

.step h3 { font-size: 1.14rem; margin-bottom: 0.5rem; }

.step p { font-size: 0.94rem; font-weight: 300; color: var(--navy-soft); }

/* Über uns */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-quote {
  position: relative;
  padding: 2.6rem 2.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.about-quote::before {
  content: '';
  position: absolute;
  inset: 0.85rem;
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  pointer-events: none;
}

.about-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--navy);
  line-height: 1.3;
}

.about-quote blockquote .gold { color: var(--gold-deep); }

.about-quote figcaption {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.about-text p + p { margin-top: 1rem; }
.about-text p { font-weight: 300; color: var(--navy-soft); }
.about-text p strong { font-weight: 500; color: var(--navy); }

.values {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.8rem;
}

.value-row {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.value-row strong {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--navy);
  font-size: 1.06rem;
  min-width: 9.5rem;
}

.value-row span { font-weight: 300; color: var(--navy-soft); font-size: 0.97rem; }

/* Kontakt */
.contact { background: var(--paper); border-top: 1px solid var(--line); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.contact-ic {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(30, 48, 84, 0.07), rgba(189, 154, 94, 0.14));
  border: 1px solid var(--gold-line);
  color: var(--navy);
}

.contact-ic svg { width: 22px; height: 22px; }

.contact-list .label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.contact-list .value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
}

.contact-note {
  margin-top: 2rem;
  padding: 1.1rem 1.3rem;
  border-left: 2px solid var(--gold);
  background: var(--ivory);
  border-radius: 0 12px 12px 0;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--navy-soft);
}

.contact-panel {
  align-self: start;
  background:
    radial-gradient(500px 260px at 100% 0%, rgba(189, 154, 94, 0.22), transparent 60%),
    linear-gradient(160deg, var(--navy-deep), var(--navy));
  border-radius: 22px;
  color: var(--ivory);
  padding: 2.6rem 2.4rem;
  box-shadow: var(--shadow);
}

.contact-panel h3 {
  color: var(--ivory);
  font-size: 1.7rem;
  margin-bottom: 0.9rem;
}

.contact-panel p {
  font-weight: 300;
  color: rgba(250, 247, 241, 0.82);
  margin-bottom: 1.8rem;
}

.contact-panel .btn { width: 100%; margin-bottom: 0.8rem; }

.wa-hint {
  font-size: 0.82rem;
  color: rgba(250, 247, 241, 0.6);
  text-align: center;
  margin-top: 0.6rem;
}

/* Platzhalter für noch fehlende Echtdaten */
.ph {
  background: var(--gold-pale);
  color: var(--gold-deep);
  border-radius: 6px;
  padding: 0.05em 0.4em;
  font-style: normal;
  font-weight: 500;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(250, 247, 241, 0.8);
  padding-block: 3.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250, 247, 241, 0.14);
}

.footer-brand .brand-text { color: var(--ivory); }

.footer-brand p {
  margin-top: 1rem;
  font-weight: 300;
  font-size: 0.95rem;
  max-width: 34ch;
  color: rgba(250, 247, 241, 0.65);
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.site-footer ul { list-style: none; display: grid; gap: 0.55rem; }

.site-footer ul a {
  color: rgba(250, 247, 241, 0.78);
  font-weight: 300;
  font-size: 0.97rem;
  transition: color 0.3s;
}

.site-footer ul a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.6rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250, 247, 241, 0.55);
}

.footer-bottom a { color: rgba(250, 247, 241, 0.75); }
.footer-bottom a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   Rechtsseiten (Impressum / Datenschutz)
   -------------------------------------------------------------------------- */

.legal-hero {
  padding-block: clamp(3.5rem, 7vw, 5.5rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(800px 300px at 90% -20%, rgba(189, 154, 94, 0.12), transparent 60%),
    var(--ivory);
}

.legal-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }

.legal-body { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(4rem, 7vw, 6rem); }

.legal-body .container { max-width: 820px; }

.legal-body h2 {
  font-size: 1.55rem;
  margin: 2.6rem 0 0.9rem;
}

.legal-body h3 {
  font-size: 1.18rem;
  margin: 1.8rem 0 0.6rem;
}

.legal-body p, .legal-body li {
  font-weight: 300;
  color: var(--ink);
}

.legal-body p + p { margin-top: 0.8rem; }

.legal-body ul { padding-left: 1.2rem; margin-block: 0.6rem; display: grid; gap: 0.35rem; }

.legal-body a { border-bottom: 1px solid var(--gold-line); transition: color 0.3s, border-color 0.3s; word-break: break-word; }
.legal-body a:hover { color: var(--gold-deep); border-color: var(--gold); }

.legal-note {
  margin-top: 2rem;
  padding: 1.2rem 1.4rem;
  border-left: 2px solid var(--gold);
  background: var(--paper);
  border-radius: 0 12px 12px 0;
  font-size: 0.95rem;
}

.legal-updated {
  margin-top: 2.6rem;
  font-size: 0.88rem;
  color: var(--navy-soft);
}

/* --------------------------------------------------------------------------
   Scroll-Reveal
   -------------------------------------------------------------------------- */

/* Nur mit aktivem JavaScript ausblenden – ohne JS bleibt alles sichtbar */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}

.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-art .mark-large, .hero-art::before { animation: none; }
  .btn, .card, .chip { transition: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art .mark-large { width: min(220px, 50vw); }
  .cards-3 { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .split-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .brand-tagline { display: none; }
  .brand-text { font-size: 1.05rem; letter-spacing: .09em; }
  .header-inner { gap: .65rem; }
  .legal-nav { gap: .5rem; }
  .legal-nav > a { font-size: .78rem; }
  .legal-nav .lang-switch a { min-width: 1.7rem; padding-inline: .3rem !important; }
  .scope-notice { grid-template-columns: 1fr; gap: .45rem; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 40px -30px rgba(22, 36, 63, 0.4);
    padding: 0.6rem 1.5rem 1.2rem;
    display: none;
  }

  .main-nav.is-open { display: flex; }

  /* Vereinfachte Navigation der Rechtsseiten: bleibt in der Kopfzeile */
  .main-nav--simple {
    position: static;
    display: flex;
    flex-direction: row;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .main-nav--simple a:not(.btn) { border-bottom: none; padding-block: 0.3rem; white-space: nowrap; }

  .main-nav a:not(.btn) { padding-block: 0.8rem; border-bottom: 1px solid var(--line); }

  .main-nav .btn { margin-top: 1rem; }

  .nav-toggle { display: inline-flex; }

  .hero-facts { grid-template-columns: 1fr; }
  .fact + .fact { border-left: none; border-top: 1px solid var(--line); }

  .chip-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .brand-tagline { display: none; }

  .header-inner { gap: 1rem; }
  .brand { gap: 0.6rem; }
  .brand svg { height: 40px; }
  .brand-text { font-size: 1.02rem; letter-spacing: 0.1em; }
}
