:root {
  --legal-ink: #171713;
  --legal-muted: #5d625f;
  --legal-gold: #a88451;
  --legal-paper: #efeee8;
  --legal-line: rgba(23, 23, 19, .14);
  --legal-glass: rgba(255, 255, 255, .48);
  --legal-radius: clamp(22px, 2vw, 34px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--legal-paper); }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--legal-ink);
  background:
    radial-gradient(circle at 9% 16%, rgba(174, 190, 207, .27), transparent 28rem),
    radial-gradient(circle at 88% 34%, rgba(196, 154, 90, .15), transparent 31rem),
    linear-gradient(145deg, #f4f2eb 0%, #e8ecec 52%, #eee9df 100%);
  font-family: Manrope, Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.legal-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin: 0 clamp(18px, 2vw, 32px);
  border-bottom: 1px solid rgba(23, 23, 19, .65);
  background: rgba(239, 238, 232, .68);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
}

.legal-logo {
  flex: 0 0 auto;
  text-decoration: none;
  font-size: clamp(.98rem, 1.25vw, 1.18rem);
  font-weight: 800;
  letter-spacing: -.055em;
}

.legal-nav { display: flex; align-items: center; justify-content: flex-end; gap: .34rem; }
.legal-nav a {
  position: relative;
  overflow: hidden;
  padding: .68rem .9rem;
  border: 1px solid rgba(23, 23, 19, .8);
  border-radius: 999px;
  text-decoration: none;
  font-size: .79rem;
  font-weight: 600;
  line-height: 1;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.legal-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 15%, rgba(255,255,255,.7) 48%, transparent 78%);
  transform: translateX(-130%);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.legal-nav a:hover { transform: translateY(-2px); background: rgba(255,255,255,.45); box-shadow: 0 10px 22px rgba(23,23,19,.08); }
.legal-nav a:hover::before { transform: translateX(130%); }
.legal-nav .legal-cta { border-color: #1d2022; color: #fff; background: rgba(20,23,25,.92); box-shadow: 0 9px 24px rgba(23,23,19,.2); }

.legal-shell { width: min(100% - 40px, 1440px); margin: 0 auto; }
.legal-hero {
  display: grid;
  min-height: clamp(390px, 52vh, 590px);
  align-items: end;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(3.5rem, 7vw, 6rem);
}
.legal-eyebrow {
  margin: 0 0 1.25rem;
  color: var(--legal-gold);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.legal-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.35rem, 5.4vw, 5.8rem);
  font-weight: 520;
  line-height: .9;
  letter-spacing: -.075em;
  text-wrap: balance;
}
.legal-hero h1 em { color: var(--legal-gold); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.legal-intro { max-width: 680px; margin: 1.6rem 0 0 auto; color: var(--legal-muted); font-size: clamp(1rem, 1.25vw, 1.25rem); line-height: 1.55; }

.legal-grid {
  display: grid;
  grid-template-columns: minmax(210px, .34fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  padding-bottom: clamp(6rem, 10vw, 11rem);
}
.legal-aside { align-self: start; position: sticky; top: 112px; }
.legal-aside__card {
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 24px;
  background: rgba(255,255,255,.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 18px 50px rgba(36,39,39,.07);
  -webkit-backdrop-filter: blur(20px) saturate(1.12);
  backdrop-filter: blur(20px) saturate(1.12);
}
.legal-aside__label { color: var(--legal-gold); font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; font-style: italic; }
.legal-aside p { margin: .7rem 0 0; color: var(--legal-muted); font-size: .85rem; line-height: 1.55; }
.legal-aside a { display: inline-flex; margin-top: 1.1rem; text-decoration: none; font-size: .82rem; font-weight: 700; }

.legal-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 4.2rem);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--legal-radius);
  background: linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.25));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 30px 90px rgba(38,39,37,.09);
  -webkit-backdrop-filter: blur(25px) saturate(1.1);
  backdrop-filter: blur(25px) saturate(1.1);
}
.legal-card::before {
  content: "";
  position: absolute;
  top: -13rem;
  right: -13rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,90,.18), transparent 68%);
  animation: legal-float 11s ease-in-out infinite alternate;
  pointer-events: none;
}
.legal-copy { position: relative; z-index: 1; max-width: 850px; }
.legal-copy p { margin: 0 0 1.15rem; color: #292b29; font-size: clamp(.98rem, 1vw, 1.08rem); font-weight: 450; line-height: 1.72; }
.legal-copy p:empty { display: none; }
.legal-copy br + br { line-height: 2.2; }
.legal-copy strong { color: var(--legal-ink); font-weight: 720; }
.legal-copy a { color: #735c38; text-decoration-thickness: 1px; text-underline-offset: .2em; }
.legal-copy .legal-section-title,
.legal-copy p:has(> strong:first-child) {
  margin-top: 2.4rem;
  margin-bottom: .85rem;
}
.legal-copy p:has(> strong:first-child) strong:first-child { color: var(--legal-gold); font-family: Georgia, "Times New Roman", serif; font-size: 1.28em; font-style: italic; font-weight: 600; }

.legal-footer {
  margin: 0 clamp(18px, 2vw, 32px) clamp(18px, 2vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: clamp(26px, 3vw, 48px);
  color: #f4f1e9;
  background:
    radial-gradient(circle at 78% 0%, rgba(196,154,90,.14), transparent 28rem),
    linear-gradient(135deg, rgba(17,20,22,.97), rgba(35,38,38,.94));
  box-shadow: 0 30px 80px rgba(17,20,22,.2);
}
.legal-footer__inner { width: min(100% - 64px, 1380px); margin: 0 auto; padding: clamp(3.5rem, 6vw, 6rem) 0 2rem; }
.legal-footer__top { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: end; }
.legal-footer h2 { max-width: 680px; margin: 0; font-size: clamp(2.6rem, 5vw, 5.6rem); font-weight: 480; line-height: .93; letter-spacing: -.065em; }
.legal-footer h2 em { display: block; color: #c49a5a; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.legal-footer__links { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .75rem 2rem; }
.legal-footer__links a { color: rgba(255,255,255,.82); text-decoration: none; font-size: .92rem; }
.legal-footer__links a:hover { color: #c49a5a; }
.legal-footer__bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 4rem; padding-top: 1.2rem; color: rgba(255,255,255,.48); font-size: .75rem; }

.legal-reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s ease, transform .95s cubic-bezier(.2,.8,.2,1); }
.legal-reveal.is-visible { opacity: 1; transform: none; }

@keyframes legal-float { to { transform: translate3d(-6rem, 5rem, 0) scale(1.12); } }

/* Die exportierte Webflow-Startregel blendet Header und Footer-Links aus,
   solange die Webflow-Interactions lokal nicht geladen wurden. Die
   Rechtseiten verwenden die eigene lokale Animation und müssen sichtbar
   bleiben. */
html.w-mod-js:not(.w-mod-ix3) body.schraeger-global-theme .navbar.navbar-2,
html.w-mod-js:not(.w-mod-ix3) body.schraeger-global-theme .navbar.navbar-2 .navbar_logo,
html.w-mod-js:not(.w-mod-ix3) body.schraeger-global-theme .navbar.navbar-2 .navbar_coordinates-wrap,
html.w-mod-js:not(.w-mod-ix3) body.schraeger-global-theme .navbar.navbar-2 .navbar_menu,
html.w-mod-js:not(.w-mod-ix3) body.schraeger-global-theme .navbar.navbar-2 .navbar_menu .button,
html.w-mod-js:not(.w-mod-ix3) body.schraeger-global-theme .navbar.navbar-2 .navbar_menu .button_text-mask,
html.w-mod-js:not(.w-mod-ix3) body.schraeger-global-theme .navbar.navbar-2 .navbar_menu .text-button,
html.w-mod-js:not(.w-mod-ix3) body.schraeger-global-theme .footer .footer_menu .heading-style-h4 {
  visibility: visible !important;
}

/* Sichtbare lokale Ersatzanimation für den großen Footer-Schriftzug.
   Im Webflow-Export lief zwar ein Animationstimer, die alten !important-
   Farbwerte verhinderten jedoch jede sichtbare Veränderung. */
body.schraeger-global-theme .footer .footer_marquee {
  will-change: transform;
  animation: legal-schraeger-marquee 11s linear infinite !important;
}

body.schraeger-global-theme .footer .footer_marquee_sinlge:first-child .footer_marquee_logo,
body.schraeger-global-theme .footer .footer_marquee_logo[alt*="Schraeger"] {
  transform-origin: 50% 55%;
  will-change: transform;
  animation: legal-schraeger-wordmark 4.8s ease-in-out infinite alternate !important;
}

body.schraeger-global-theme .footer .footer_marquee_sinlge:first-child .footer_marquee_logo:nth-child(2) {
  animation-delay: -1.6s !important;
}

body.schraeger-global-theme .footer .footer_marquee_sinlge:first-child .footer_marquee_logo:nth-child(3) {
  animation-delay: -3.2s !important;
}

@keyframes legal-schraeger-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-33.333%, 0, 0); }
}

@keyframes legal-schraeger-wordmark {
  from { transform: translate3d(0, 4px, 0) scale(.992); }
  to { transform: translate3d(0, -5px, 0) scale(1.012); }
}

@media (max-width: 1050px) {
  .legal-header { min-height: 66px; }
  .legal-nav a:not(.legal-cta) { display: none; }
  .legal-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .legal-aside { position: static; }
  .legal-aside__card { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
  .legal-aside p { display: none; }
  .legal-aside a { margin: 0; }
}

@media (max-width: 680px) {
  .legal-shell { width: min(100% - 24px, 1440px); }
  .legal-header { margin-inline: 12px; }
  .legal-logo { font-size: .92rem; }
  .legal-nav .legal-cta { padding: .62rem .76rem; font-size: .72rem; }
  .legal-hero { min-height: 360px; padding-top: 4rem; }
  .legal-hero h1 { font-size: clamp(2.1rem, 10vw, 4.2rem); }
  .legal-intro { margin-left: 0; }
  .legal-card { padding: 1.3rem; border-radius: 22px; }
  .legal-copy p { font-size: .96rem; line-height: 1.66; }
  .legal-footer { margin: 0 12px 12px; }
  .legal-footer__inner { width: calc(100% - 32px); }
  .legal-footer__top { grid-template-columns: 1fr; }
  .legal-footer__links { grid-template-columns: 1fr 1fr; }
  .legal-footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .legal-reveal { opacity: 1; transform: none; }
}
