@font-face {
  font-family: "Font Awesome 7 Free";
  src: url("assets/icons/fa-solid-900.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: block;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("assets/fonts/source-serif-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("assets/fonts/source-serif-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("assets/fonts/source-serif-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
}

:root {
  --ink: #18221d;
  --forest: #25352d;
  --forest-soft: #34483d;
  --sage: #9dac94;
  --mist: #e7ebe3;
  --cream: #f7f3eb;
  --paper: #fffdf8;
  --rust: #795342;
  --rust-dark: #5f3f34;
  --line: rgba(24, 34, 29, 0.17);
  --shadow: 0 24px 70px rgba(20, 30, 24, 0.14);
  --display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  --wrap: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { width: 100%; max-width: 100%; overflow-x: hidden; overscroll-behavior-x: none; scroll-behavior: smooth; }
body { width: 100%; max-width: 100%; margin: 0; overflow-x: hidden; overscroll-behavior-x: none; touch-action: pan-y; color: var(--ink); background: var(--cream); font-family: var(--sans); font-size: 16px; line-height: 1.65; letter-spacing: -.008em; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--sage); color: var(--ink); }

.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding-block: 128px; }
.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: fixed; left: 16px; top: -80px; z-index: 1000; padding: 12px 18px; background: var(--paper); color: var(--ink); border-radius: 4px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { height: 104px; padding: 0 max(24px, calc((100vw - 1180px) / 2)); display: flex; align-items: center; justify-content: space-between; position: fixed; inset: 0 0 auto; z-index: 20; color: white; border-bottom: 1px solid rgba(255,255,255,.24); transition: background .35s ease, color .25s ease, border-color .35s ease, height .35s ease, box-shadow .35s ease, backdrop-filter .35s ease; }
.site-header.is-fixed { position: fixed; height: 92px; color: var(--ink); background: rgba(247,243,235,.78); border-color: rgba(121,83,66,.14); box-shadow: 0 10px 34px rgba(20,30,24,.06); backdrop-filter: blur(22px) saturate(115%); -webkit-backdrop-filter: blur(22px) saturate(115%); }
.brand { display: inline-flex; align-items: center; line-height: 1; }
.brand__lockup { position: relative; display: block; }
.brand__logo { display: block; width: auto; height: 86px; object-fit: contain; transition: opacity .28s ease; }
.brand__subtitle { position: absolute; left: 68px; bottom: 18px; color: currentColor; font-size: 12px; font-weight: 700; letter-spacing: .11em; white-space: nowrap; transition: color .28s ease; }
.brand__logo--on-light { position: absolute; inset: 0; opacity: 0; }
.site-header.is-fixed .brand__logo--on-dark { opacity: 0; }
.site-header.is-fixed .brand__logo--on-light { opacity: 1; }
.site-header.is-fixed .brand__subtitle { color: var(--rust-dark); }
.site-header.menu-open .brand__logo--on-dark { opacity: 1; }
.site-header.menu-open .brand__logo--on-light { opacity: 0; }
.site-header.menu-open .brand__subtitle { color: white; }
.main-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 650; letter-spacing: .02em; }
.main-nav > a > span, .main-nav__meta { display: none; }
.main-nav a:not(.nav-cta) { position: relative; padding-block: 8px; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px; background: currentColor; transition: right .25s; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.nav-cta { border: 1px solid currentColor; border-radius: 99px; padding: 11px 20px; transition: background .2s, color .2s; }
.nav-cta:hover { background: white; color: var(--ink); }
.is-fixed .nav-cta:hover { background: var(--forest); color: white; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle > span:not(.sr-only) { width: 26px; height: 1px; background: currentColor; display: block; margin: 6px 0; transition: transform .2s, opacity .2s; }

.hero { min-height: 820px; height: min(880px, 100svh); position: relative; overflow: hidden; color: white; background: var(--forest); }
.hero__picture, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__picture { display: block; overflow: hidden; }
.hero__image { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center bottom; animation: hero-in 1.6s cubic-bezier(.2,.7,.2,1) both; will-change: transform; }
.hero__shade { background: linear-gradient(90deg, rgba(17,27,22,.82) 0%, rgba(17,27,22,.61) 36%, rgba(17,27,22,.08) 68%, rgba(17,27,22,.16) 100%), linear-gradient(0deg, rgba(15,24,19,.45), transparent 36%); }
.hero__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: 52px; }
.eyebrow { margin: 0 0 22px; text-transform: uppercase; letter-spacing: .22em; font-size: 11px; font-weight: 750; color: rgba(255,255,255,.82); }
.eyebrow::before { content: ""; width: 29px; height: 3px; background: currentColor; border-radius: 50%; display: inline-block; vertical-align: middle; margin-right: 12px; transform: rotate(-4deg); opacity: .8; }
.eyebrow--dark { color: var(--rust); }
.eyebrow--light { color: #cbd5c4; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.01; margin-top: 0; font-optical-sizing: auto; }
h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(54px, 6.2vw, 94px); letter-spacing: -.045em; }
h1 em { color: #c88f70; font-weight: 400; }
.hero__lead { max-width: 610px; margin: 0; color: rgba(255,255,255,.86); font-size: 18px; line-height: 1.7; }
.hero__actions { display: flex; align-items: center; gap: 32px; margin-top: 40px; }
.button { border: 0; border-radius: 18px 18px 18px 6px; min-height: 54px; padding: 0 26px; display: inline-flex; justify-content: center; align-items: center; gap: 20px; font-size: 13px; font-weight: 750; letter-spacing: .01em; cursor: pointer; transition: transform .3s cubic-bezier(.2,.75,.25,1), background .2s, box-shadow .3s; }
.button:hover { transform: translateY(-3px) rotate(-.4deg); }
.button--primary { color: var(--ink); background: var(--paper); box-shadow: 0 12px 32px rgba(0,0,0,.13); }
.button--primary:hover { background: var(--mist); }
.button--accent { color: white; background: var(--rust); }
.button--accent:hover { background: var(--rust-dark); box-shadow: 0 10px 26px rgba(95, 63, 52, .25); }
.text-link { font-size: 13px; font-weight: 700; padding-block: 12px; border-bottom: 1px solid currentColor; }
.text-link span { margin-left: 12px; }
.text-link--light { color: rgba(255,255,255,.9); }
.hero__facts { position: absolute; z-index: 2; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; gap: 36px; align-items: center; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.hero__facts span + span::before { content: "•"; margin-right: 36px; color: #c88f70; }

.intro { display: grid; grid-template-columns: 60px 1.12fr .88fr; gap: 60px; align-items: start; }
.section-number { margin: 8px 0 0; font-size: 11px; letter-spacing: .15em; color: #768178; }
.intro h2, .section-heading h2, .offers h2, .steps h2 { margin-bottom: 0; font-size: clamp(48px, 5vw, 72px); letter-spacing: -.035em; }
.intro h2 em { color: var(--rust); font-weight: 400; }
.intro__text { padding-top: 40px; border-top: 1px solid var(--line); }
.intro__text p { margin: 0 0 18px; color: #4e5b53; font-size: 17px; line-height: 1.75; }

.method { position: relative; overflow: hidden; background: var(--paper); }
.method::before { content: ""; position: absolute; width: 420px; height: 420px; right: -250px; top: -230px; border: 1px solid rgba(121,83,66,.14); border-radius: 44% 56% 62% 38%; transform: rotate(18deg); pointer-events: none; }
.method > .wrap { position: relative; z-index: 1; }
.section-heading { display: grid; grid-template-columns: 1fr .64fr; gap: 100px; align-items: end; margin-bottom: 76px; }
.section-heading > p { margin: 0 0 4px; color: #536057; line-height: 1.75; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle { min-height: 340px; position: relative; padding: 34px; border: 1px solid rgba(24,34,29,.11); border-radius: 34px 10px 34px 10px; background: rgba(247,243,235,.72); box-shadow: 0 18px 42px rgba(28,39,32,.04); transition: transform .35s cubic-bezier(.2,.75,.25,1), box-shadow .35s, border-color .35s; }
.principle + .principle { padding-left: 34px; }
.principle:last-child { border-right: 1px solid rgba(24,34,29,.11); }
.principle:hover { transform: translateY(-7px) rotate(-.35deg); border-color: rgba(121,83,66,.25); box-shadow: 0 24px 56px rgba(28,39,32,.09); }
.principle:nth-child(2) { border-radius: 10px 34px 10px 34px; }
.principle__icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 48% 52% 44% 56%; color: var(--rust); background: rgba(121, 83, 66, .1); font-family: "Font Awesome 7 Free"; font-size: 20px; font-weight: 900; line-height: 1; transform: rotate(-3deg); }
.principle__number { position: absolute; top: 42px; right: 34px; margin: 0; font-size: 10px; letter-spacing: .16em; color: #59655d; }
.principle h3 { margin: 52px 0 16px; font-size: 31px; letter-spacing: -.02em; }
.principle > p:last-child { margin: 0; color: #5d675f; line-height: 1.7; }

.image-break { height: 680px; position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr); grid-template-rows: minmax(0, 1fr); overflow: hidden; background: #1d2b24; }
.image-break > img { min-width: 0; min-height: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 34%; }
.image-break::after { content: none; }
.image-break__quote { min-width: 0; min-height: 0; position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; width: auto; padding: clamp(54px, 7vw, 112px); color: white; background: #1d2b24; }
.image-break__quote p { margin: 0 0 22px; font-family: var(--display); font-size: clamp(35px, 3.7vw, 54px); line-height: 1.08; letter-spacing: -.03em; }
.image-break__quote span { text-transform: uppercase; font-size: 9px; letter-spacing: .2em; color: rgba(255,255,255,.75); }

.offers { position: relative; overflow: hidden; background: var(--mist); }
.offers::after { content: ""; position: absolute; left: -170px; bottom: 70px; width: 300px; height: 300px; border-radius: 63% 37% 48% 52%; background: rgba(157,172,148,.15); pointer-events: none; }
.offers > .wrap { position: relative; z-index: 1; }
.offers__intro { display: grid; grid-template-columns: .52fr 1fr .76fr; gap: 60px; align-items: end; margin-bottom: 80px; }
.offers__intro .eyebrow { align-self: start; padding-top: 16px; }
.offers__intro > p:last-child { margin: 0; color: #526057; }
.offer-list { display: grid; gap: 14px; }
.offer { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, .7fr) 58px; grid-template-rows: auto auto; align-items: start; column-gap: clamp(28px, 4vw, 52px); row-gap: 26px; min-height: 205px; padding: 30px 34px 34px; border: 1px solid rgba(24,34,29,.13); border-radius: 28px 8px 28px 8px; background: rgba(255,255,255,.3); transition: transform .35s cubic-bezier(.2,.75,.25,1), background .25s, box-shadow .35s; }
.offer > * { min-width: 0; }
.offer:nth-child(even) { border-radius: 8px 28px 8px 28px; }
.offer:hover { transform: translateX(7px); background: rgba(255,255,255,.62); box-shadow: 0 18px 44px rgba(28,39,32,.07); }
.offer__meta { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid rgba(24,34,29,.1); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: #4f5c54; }
.offer__meta span:last-child { width: fit-content; padding: 6px 10px; border-radius: 99px; color: var(--rust-dark); background: rgba(121,83,66,.09); font-weight: 700; letter-spacing: .08em; white-space: nowrap; }
.offer > div:nth-child(2) { grid-column: 1; grid-row: 2; }
.offer h3 { margin: 0 0 12px; font-size: 38px; letter-spacing: -.02em; }
.offer p { margin: 0; max-width: 490px; color: #536057; }
.offer ul { grid-column: 2; grid-row: 2; list-style: none; padding: 0; margin: 0; color: #46534b; font-size: 14px; }
.offer li { display: flex; align-items: flex-start; margin-block: 6px; }
.offer li::before { content: ""; width: 5px; height: 5px; margin: .65em 12px 0 1px; flex: 0 0 5px; border-radius: 50%; background: var(--rust); }
.offer .circle-link { grid-column: 3; grid-row: 2; align-self: center; }
.circle-link { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid #8b958e; border-radius: 50%; font-size: 20px; transition: background .2s, color .2s, border .2s; }
.circle-link:hover { background: var(--rust); color: white; border-color: var(--rust); }

.about { color: white; background: var(--forest); overflow: hidden; border-radius: 78px 0 78px 0; }
.about__grid { display: grid; grid-template-columns: .86fr 1fr; gap: 110px; align-items: center; }
.about__image { position: relative; }
.about__image::before { content: ""; position: absolute; width: 120px; height: 120px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; left: -60px; top: -60px; }
.about__image img { width: 100%; height: 690px; object-fit: cover; object-position: 52% center; border-radius: 46% 46% 18px 62px; filter: saturate(.88); }
.about h2 { margin-bottom: 28px; font-size: clamp(56px, 5.7vw, 82px); letter-spacing: -.04em; }
.about h2 em, .contact h2 em { color: #c88f70; font-weight: 400; }
.about__lead { margin: 0 0 24px; font-family: var(--display); font-size: 25px; line-height: 1.35; color: #e9ece6; }
.about__copy > p:not(.eyebrow):not(.about__lead) { color: rgba(255,255,255,.72); }
.about__philosophy { margin-top: 30px; padding: 24px 26px; border: 1px solid rgba(255,255,255,.16); border-radius: 10px 32px 10px 32px; background: rgba(255,255,255,.055); }
.about__philosophy span { color: #c88f70; font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.about__philosophy p { margin: 10px 0 0; color: #f0f1ed; font-family: var(--display); font-size: 20px; line-height: 1.42; }
.about__credentials { margin-top: 38px; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.about__signature { width: min(220px, 54vw); height: auto; object-fit: contain; }
.about__seal { width: 118px; height: 118px; flex: 0 0 auto; overflow: hidden; border-radius: 50%; background-color: white; background-image: url("assets/images/julia-zertifizierung.webp"); background-repeat: no-repeat; background-size: 300% auto; background-position: 86.3% 42.5%; box-shadow: 0 14px 34px rgba(8,15,11,.18); }

.steps { background: var(--cream); }
.steps .wrap { display: grid; grid-template-columns: .72fr 1fr; gap: 120px; }
.steps__photo { height: 300px; margin: 48px 0 0; overflow: hidden; border-radius: 18px 96px 18px 42px; box-shadow: 0 24px 56px rgba(20,30,24,.1); }
.steps__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.steps__list { list-style: none; padding: 0; margin: 10px 0 0; }
.steps__list li { display: grid; grid-template-columns: 70px 1fr; gap: 25px; padding: 0 0 42px; position: relative; }
.steps__list li:not(:last-child)::before { content: ""; position: absolute; top: 52px; bottom: 8px; left: 24px; width: 1px; background: var(--line); }
.steps__list li > span { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--sage); border-radius: 54% 46% 58% 42%; color: var(--rust); font-size: 10px; letter-spacing: .12em; background: var(--cream); transform: rotate(-3deg); }
.steps h3 { margin: 3px 0 12px; font-size: 28px; }
.steps__list p { margin: 0; color: #59655d; }

.contact { color: white; background: #1d2b24; border-radius: 0 78px 0 0; }
.contact__grid { display: grid; grid-template-columns: .85fr 1fr; gap: 110px; }
.contact h2 { margin-bottom: 28px; font-size: clamp(56px, 6vw, 82px); letter-spacing: -.04em; }
.contact__copy > p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.68); }
.contact__details { margin-top: 50px; border-top: 1px solid rgba(255,255,255,.2); }
.contact__details > * { padding: 18px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.2); }
.contact__details span { color: rgba(255,255,255,.5); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }
.contact__details strong { font-size: 13px; font-weight: 600; }
.contact-form { padding: 48px; color: var(--ink); background: var(--paper); border-radius: 34px 10px 34px 10px; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { display: grid; gap: 8px; margin-bottom: 24px; }
.field > span { color: #566259; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; font-weight: 700; }
.field input, .field textarea { width: 100%; border: 0; border-bottom: 1px solid #aeb5ae; border-radius: 0; padding: 10px 0 12px; background: transparent; color: var(--ink); outline: none; resize: vertical; transition: border .2s; }
.field input:focus, .field textarea:focus { border-bottom-color: var(--rust); box-shadow: 0 1px var(--rust); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-bottom-color: #b42318; }
.evaluation-option { margin: 4px 0 26px; padding: 22px; border: 1px solid rgba(121,83,66,.2); border-radius: 20px 7px 20px 7px; background: rgba(121,83,66,.055); }
.evaluation-option__eyebrow { display: block; margin-bottom: 5px; color: var(--rust); font-size: 9px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.evaluation-option h3 { margin: 0 0 8px; font-size: 26px; }
.evaluation-option p { margin: 0; color: #59655d; font-size: 13px; line-height: 1.55; }
.evaluation-option__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.evaluation-option__actions a { min-height: 43px; padding: 10px 14px; display: inline-flex; align-items: center; justify-content: space-between; gap: 12px; border-radius: 999px; font-size: 11px; font-weight: 700; transition: color .2s, background .2s, border-color .2s; }
.evaluation-download { color: white; background: var(--rust); border: 1px solid var(--rust); }
.evaluation-download:hover { background: var(--rust-dark); border-color: var(--rust-dark); }
.evaluation-mail { color: var(--ink); border: 1px solid rgba(24,34,29,.28); }
.evaluation-mail:hover { color: white; background: var(--ink); border-color: var(--ink); }
.evaluation-option small { display: block; margin-top: 13px; color: #6b746d; font-size: 10px; line-height: 1.45; }
.checkbox { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 10px; margin: 0 0 28px; color: #687269; font-size: 11px; line-height: 1.5; }
.checkbox input { margin: 2px 0 0; accent-color: var(--rust); }
.checkbox a { text-decoration: underline; }
.form-status { min-height: 22px; margin: 16px 0 0; color: #526057; font-size: 12px; }

.site-footer { color: rgba(255,255,255,.78); background: #111a15; }
.mobile-contact-bar { display: none; }
.footer__top { min-height: 250px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 50px; }
.brand--footer { color: white; }
.footer__top > p { margin: 0; font-family: var(--display); font-size: 24px; line-height: 1.3; }
.footer__up { display: inline-flex; gap: 16px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.35); font-size: 12px; }
.footer__bottom { min-height: 74px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.46); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.footer__bottom nav { display: flex; gap: 26px; }
.footer__domain { color: rgba(255,255,255,.68); }
.footer-cookie-button, .legal-cookie-button { padding: 0; color: inherit; border: 0; background: transparent; cursor: pointer; font: inherit; letter-spacing: inherit; text-transform: inherit; }
.footer-cookie-button:hover, .footer-cookie-button:focus-visible, .legal-cookie-button:hover, .legal-cookie-button:focus-visible { color: white; text-decoration: underline; text-underline-offset: 4px; }
.legal-cookie-button { display: block; margin: 0 auto 60px; color: var(--rust-dark); font-size: 13px; letter-spacing: .05em; }

.consent-banner { position: fixed; z-index: 100; left: 22px; right: 22px; bottom: 22px; max-width: 1180px; margin-inline: auto; padding: 28px 30px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 38px; color: var(--ink); background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,253,250,.76)); border: 1px solid rgba(255,255,255,.94); border-radius: 20px; box-shadow: inset 0 1px 0 rgba(255,255,255,.98), 0 18px 64px rgba(17,26,21,.14); backdrop-filter: blur(54px) saturate(88%) brightness(1.1); -webkit-backdrop-filter: blur(54px) saturate(88%) brightness(1.1); }
.consent-banner__copy { max-width: 720px; }
.consent-banner__eyebrow { margin: 0 0 6px; color: var(--rust-dark); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.consent-banner h2, .consent-modal h2 { margin: 0 0 8px; font-size: 30px; line-height: 1.05; }
.consent-banner__copy > p:not(.consent-banner__eyebrow) { margin: 0; color: #536058; font-size: 14px; line-height: 1.55; }
.consent-banner__copy > a { display: inline-block; margin-top: 8px; color: var(--rust-dark); font-size: 12px; text-decoration: underline; text-underline-offset: 3px; }
.consent-banner__actions { display: grid; grid-template-columns: repeat(2, auto); align-items: center; gap: 10px; }
.consent-button { min-height: 46px; padding: 11px 18px; color: var(--ink); background: transparent; border: 1px solid var(--ink); border-radius: 99px; cursor: pointer; font-size: 12px; font-weight: 750; }
.consent-button:hover, .consent-button:focus-visible { color: white; background: var(--ink); }
.consent-text-button { padding: 8px; color: var(--ink); background: transparent; border: 0; cursor: pointer; font-size: 12px; text-decoration: underline; text-underline-offset: 4px; }
.consent-banner__actions .consent-text-button { grid-column: 1 / -1; }
.consent-modal { position: fixed; z-index: 110; inset: 0; display: grid; place-items: center; padding: 20px; }
.consent-modal__backdrop { position: absolute; inset: 0; background: rgba(10,17,13,.54); backdrop-filter: blur(7px); }
.consent-modal__panel { position: relative; width: min(580px, 100%); max-height: calc(100svh - 40px); overflow: auto; padding: 34px; color: var(--ink); background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(250,248,244,.64)); border: 1px solid rgba(255,255,255,.84); border-radius: 20px; box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 24px 90px rgba(17,26,21,.2); backdrop-filter: blur(42px) saturate(112%) brightness(1.06); -webkit-backdrop-filter: blur(42px) saturate(112%) brightness(1.06); }
.consent-option { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; padding-block: 20px; border-top: 1px solid var(--line); }
.consent-option:first-of-type { margin-top: 26px; }
.consent-option strong { font-family: var(--display); font-size: 21px; font-weight: 500; }
.consent-option p { margin: 5px 0 0; color: #5d665f; font-size: 13px; line-height: 1.55; }
.consent-option input { width: 21px; height: 21px; accent-color: var(--rust-dark); }
.consent-modal__actions { display: flex; justify-content: flex-end; align-items: center; gap: 14px; padding-top: 22px; }
.consent-open { overflow: hidden; }

.legal-page { background: var(--cream); }
.legal-header { position: static; color: var(--ink); border-bottom-color: var(--line); }
.legal-main { width: min(780px, calc(100vw - 48px)); margin: 0 auto; padding: 96px 0 130px; }
.legal-main h1 { color: var(--ink); font-size: clamp(52px, 7vw, 76px); }
.legal-main h2 { margin-top: 48px; font-size: 30px; }
.legal-main p, .legal-main li { color: #536057; }
.legal-note { padding: 20px 24px; border-left: 3px solid var(--rust); background: var(--paper); }

/* Inhalte sind standardmäßig sichtbar. Nur bei aktivem JavaScript werden sie
   kurz für die Scrollanimation vorbereitet. So verschwinden Bilder nie,
   wenn ein Browser Lazy Loading oder IntersectionObserver nicht ausführt. */
.reveal { opacity: 1; transform: none; transition: opacity .85s ease, transform .9s cubic-bezier(.2,.7,.2,1); transition-delay: var(--reveal-delay, 0ms); }
.reveal.reveal-pending { opacity: 0; transform: translateY(34px) scale(.985); }
.reveal.reveal--left.reveal-pending { transform: translateX(-34px) rotate(-.7deg); }
.reveal.reveal--right.reveal-pending { transform: translateX(34px) rotate(.7deg); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.reveal--image img { transform: scale(1.055); transition: transform 1.25s cubic-bezier(.2,.7,.2,1); }
.reveal.reveal--image.is-visible img { transform: scale(1); }
@keyframes hero-in { from { opacity: .55; transform: scale(1.035); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 980px) {
  :root { --wrap: min(100% - 40px, 760px); }
  .section { padding-block: 96px; }
  .site-header { height: 92px; padding-inline: 20px; }
  .site-header.is-fixed { height: 84px; }
  .brand__logo { height: 74px; }
  .brand__subtitle { left: 58px; bottom: 16px; font-size: 10.5px; }
  .site-header > .brand, .nav-toggle { position: relative; z-index: 3; }
  .nav-toggle { display: block; }
  .site-header.menu-open, .site-header.menu-open.is-fixed { color: white; background: transparent; border-color: rgba(255,255,255,.18); box-shadow: none; backdrop-filter: none; }
  .main-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    width: 100%;
    min-height: 100svh;
    height: 100dvh;
    overflow-y: auto;
    padding: 112px max(28px, calc((100vw - 760px) / 2)) max(36px, env(safe-area-inset-bottom));
    color: white;
    background:
      linear-gradient(180deg, rgba(24,34,29,.9) 0%, rgba(24,34,29,.96) 56%, rgba(24,34,29,.99) 100%),
      url("assets/images/julia-hero.webp") 67% center / cover no-repeat;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    font-family: var(--display);
    transform: translateX(102%);
    visibility: hidden;
    opacity: 0;
    transition: transform .42s cubic-bezier(.76,0,.24,1), opacity .28s ease, visibility .42s;
  }
  .main-nav.is-open { transform: none; visibility: visible; opacity: 1; }
  .main-nav > a, .main-nav .nav-cta {
    width: 100%;
    min-height: 82px;
    margin: 0;
    padding: 18px 2px;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    color: white;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
    border-radius: 0;
    font-family: var(--display);
    font-size: clamp(32px, 8.5vw, 46px);
    font-weight: 400;
    line-height: 1;
  }
  .main-nav > a:first-child { border-top: 1px solid rgba(255,255,255,.18); }
  .main-nav > a > span { display: block; align-self: start; padding-top: 7px; color: #c88f70; font-family: var(--sans); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .main-nav .nav-cta { color: #f2d8cc; }
  .main-nav__meta { margin-top: auto; padding: 30px 2px 0 48px; display: grid; gap: 3px; font-family: var(--sans); font-size: 12px; line-height: 1.55; }
  .main-nav__meta p { margin: 0 0 5px; color: #c88f70; font-family: var(--sans); font-size: 9px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
  .main-nav__meta a { color: white; }
  .main-nav__meta span { color: rgba(255,255,255,.58); }
  .nav-toggle.is-open { color: white; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 760px; height: 100svh; }
  .hero__image { object-position: right bottom; }
  .hero__shade { background: linear-gradient(90deg, rgba(17,27,22,.82), rgba(17,27,22,.33)), linear-gradient(0deg, rgba(15,24,19,.52), transparent 50%); }
  .hero__content { padding-top: 72px; }
  .hero__lead { max-width: 540px; }
  .hero__facts { gap: 14px; }
  .hero__facts span + span::before { margin-right: 14px; }
  .intro { grid-template-columns: 40px 1fr; gap: 32px; }
  .intro__text { grid-column: 2; }
  .section-heading, .offers__intro { grid-template-columns: 1fr; gap: 22px; }
  .section-heading { margin-bottom: 56px; }
  .principles { grid-template-columns: 1fr; }
  .principle, .principle + .principle { min-height: auto; padding: 30px; border: 1px solid rgba(24,34,29,.11); }
  .principle h3 { margin-top: 30px; }
  .image-break { display: block; }
  .image-break > img { position: absolute; inset: 0; object-position: center 42%; }
  .image-break::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,27,22,.08) 25%, rgba(17,27,22,.58)); }
  .image-break__quote { position: absolute; right: 30px; top: 50%; width: min(460px, calc(100vw - 60px)); padding: 0; transform: translateY(-50%); background: transparent; }
  .offers__intro { margin-bottom: 52px; }
  .offer { grid-template-columns: minmax(0, 1fr) 52px; grid-template-rows: auto auto auto; gap: 24px 26px; padding-block: 34px; }
  .offer__meta { grid-column: 1 / -1; }
  .offer > div:nth-child(2) { grid-column: 1; grid-row: 2; }
  .offer ul { grid-column: 1; grid-row: 3; }
  .offer .circle-link { grid-column: 2; grid-row: 2 / span 2; align-self: center; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 72px; }
  .about__image { max-width: 540px; }
  .about__image img { height: 620px; }
  .steps .wrap { grid-template-columns: 1fr; gap: 64px; }
  .footer__top { grid-template-columns: 1fr 1fr; padding-block: 55px; }
  .footer__up { grid-column: 2; }
}

@media (max-width: 640px) {
  :root { --wrap: calc(100vw - 32px); }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .section { padding-block: 76px; }
  .site-header { height: 88px; }
  .site-header.is-fixed { height: 84px; }
  .brand__logo { height: 74px; }
  .brand__subtitle { left: 58px; bottom: 16px; font-size: 10.5px; }
  .hero { min-height: 640px; height: clamp(640px, 86svh, 720px); }
  .hero__content { padding-top: 72px; padding-bottom: 64px; }
  .hero__image { object-position: right bottom; }
  .hero__shade { background: linear-gradient(90deg, rgba(17,27,22,.78), rgba(17,27,22,.28)), linear-gradient(0deg, rgba(15,24,19,.62), transparent 55%); }
  h1 { max-width: 100%; font-size: clamp(42px, 11.6vw, 52px); }
  .hero__lead { font-size: 16px; line-height: 1.6; }
  .hero__actions { width: 100%; flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 30px; }
  .hero__facts { display: none; }
  .eyebrow { margin-bottom: 16px; letter-spacing: .17em; }
  .intro { grid-template-columns: 1fr; gap: 24px; }
  .section-number { display: none; }
  .intro__text { grid-column: auto; padding-top: 28px; }
  .intro h2, .section-heading h2, .offers h2, .steps h2 { font-size: 46px; }
  .image-break { height: 610px; }
  .image-break > img { object-position: 50% center; }
  .image-break::after { background: linear-gradient(0deg, rgba(17,27,22,.72), transparent 65%); }
  .image-break__quote { top: auto; bottom: 48px; left: 24px; right: 24px; width: auto; transform: none; }
  .image-break__quote p { font-size: 38px; }
  .method.section { padding-block: 64px; }
  .method .section-heading { margin-bottom: 38px; }
  .principle, .principle + .principle {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 15px;
    row-gap: 7px;
    padding: 22px 18px;
  }
  .principle__icon { grid-column: 1; grid-row: 1 / span 2; width: 38px; height: 38px; font-size: 17px; }
  .principle__number { position: static; grid-column: 3; grid-row: 1; padding-top: 4px; }
  .principle h3 { grid-column: 2; grid-row: 1; margin: 2px 0 0; font-size: 29px; line-height: 1.05; }
  .principle > p:last-child { grid-column: 2 / -1; grid-row: 2; font-size: 15px; line-height: 1.55; }
  .steps__photo { height: min(74vw, 290px); margin-top: 32px; border-radius: 14px 70px 14px 34px; }
  .offer { grid-template-columns: 1fr 50px; gap: 20px; }
  .offer { padding: 24px 20px; border-radius: 24px 7px 24px 7px; }
  .offer:nth-child(even) { border-radius: 7px 24px 7px 24px; }
  .offer__meta { grid-column: 1 / -1; display: grid; grid-template-columns: auto minmax(0, 1fr); justify-content: space-between; padding-bottom: 15px; }
  .offer__meta span:last-child { justify-self: end; text-align: right; white-space: normal; }
  .offer > div:nth-child(2) { grid-column: 1; grid-row: 2; }
  .offer ul { grid-column: 1; grid-row: 3; }
  .offer .circle-link { grid-column: 2; grid-row: 2 / span 2; }
  .about__grid { gap: 60px; }
  .about { border-radius: 44px 0 44px 0; }
  .about__image img { height: 510px; }
  .about h2, .contact h2 { font-size: 52px; }
  .about__lead { font-size: 22px; }
  .about__credentials { gap: 18px; }
  .about__seal { width: 108px; height: 108px; }
  .contact__grid { gap: 48px; }
  .contact { border-radius: 0 44px 0 0; }
  .contact-form { margin-inline: -4px; padding: 34px 24px; }
  .contact-form .button { width: 100%; min-height: 58px; }
  .field input { min-height: 48px; }
  .field textarea { min-height: 132px; }
  .evaluation-option { padding: 19px 17px; }
  .evaluation-option__actions { display: grid; }
  .evaluation-option__actions a { width: 100%; }
  .checkbox { font-size: 12px; }
  .checkbox input { width: 18px; height: 18px; }
  .mobile-contact-bar {
    position: fixed;
    z-index: 40;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    min-height: 60px;
    padding: 9px 12px 9px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: white;
    background: var(--rust);
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(17,26,21,.3);
    font-size: 14px;
    font-weight: 750;
  }
  .mobile-contact-bar span { display: grid; line-height: 1.25; }
  .mobile-contact-bar small { margin-bottom: 3px; color: white; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
  .mobile-contact-bar b { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; color: var(--ink); background: var(--paper); border-radius: 50%; font-size: 18px; }
  .menu-is-open .mobile-contact-bar { opacity: 0; visibility: hidden; pointer-events: none; }
  .site-footer { margin-bottom: calc(-76px - env(safe-area-inset-bottom)); padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; }
  .footer__up { grid-column: auto; justify-self: start; }
  .footer__bottom { min-height: 100px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; }
  .footer__bottom nav { flex-wrap: wrap; gap: 12px 20px; }
  .consent-banner { left: 12px; right: 12px; bottom: calc(86px + env(safe-area-inset-bottom)); padding: 22px 20px; grid-template-columns: 1fr; gap: 20px; border-radius: 16px; }
  .consent-banner h2, .consent-modal h2 { font-size: 27px; }
  .consent-banner__actions { grid-template-columns: 1fr; }
  .consent-banner__actions .consent-text-button { grid-column: auto; }
  .consent-button { width: 100%; }
  .consent-modal__panel { padding: 28px 22px; }
  .consent-modal__actions { flex-direction: column-reverse; align-items: stretch; }
  .legal-main { width: calc(100vw - 32px); padding-top: 68px; }
}

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