:root {
  --ink: #171918;
  --ink-soft: #292c2a;
  --paper: #f3f0e9;
  --paper-deep: #e7e2d8;
  --white: #fffdfa;
  --red: #b50035;
  --red-bright: #d20a45;
  --stone: #a9a59b;
  --line: rgba(23, 25, 24, 0.16);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
::selection { background: var(--red); color: white; }

body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

.shell { width: min(1240px, calc(100% - 96px)); margin-inline: auto; }
.section-pad { padding: 132px 0; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--red); font-size: 0.78rem; font-weight: 750; letter-spacing: 0.16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.eyebrow-light { color: #f1dce2; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.045em; line-height: 0.99; }
h1 em, h2 em { font-weight: 400; color: var(--red); }
h2 { margin-bottom: 0; font-size: clamp(3.1rem, 5.3vw, 5.6rem); }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 228px; gap: 32px; padding: 18px 22px; font-size: 0.84rem; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; transition: transform .25s ease, background .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: #fff; }
.button-primary:hover { background: var(--red-bright); }
.button span { font-size: 1rem; }
.text-link { display: inline-flex; align-items: center; gap: 32px; padding-bottom: 6px; border-bottom: 1px solid currentColor; font-size: 0.84rem; font-weight: 720; letter-spacing: 0.07em; text-transform: uppercase; }
.text-link.light { color: white; }

.site-header { position: fixed; z-index: 90; top: 0; left: 0; right: 0; height: 104px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(48px, calc((100vw - 1240px) / 2)); border-bottom: 1px solid rgba(255,255,255,.24); color: white; transition: height .42s cubic-bezier(.2,.7,.2,1), background .35s ease, border-color .35s ease, box-shadow .35s ease, color .35s ease; }
.site-header.is-scrolled { height: 78px; border-bottom-color: rgba(255,255,255,.12); background: rgba(14,16,15,.9); box-shadow: 0 12px 34px rgba(0,0,0,.16); backdrop-filter: blur(18px) saturate(1.15); -webkit-backdrop-filter: blur(18px) saturate(1.15); }
.brand { display: block; width: 164px; }
.brand img { width: 100%; height: 66px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); transition: height .42s cubic-bezier(.2,.7,.2,1), transform .35s ease; }
.site-header.is-scrolled .brand img { height: 52px; }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a { position: relative; font-size: .78rem; font-weight: 700; letter-spacing: .075em; text-transform: uppercase; transition: color .25s ease, padding .42s cubic-bezier(.2,.7,.2,1); }
.desktop-nav > a:not(.nav-cta) { padding: 42px 0 35px; border-bottom: 2px solid transparent; }
.site-header.is-scrolled .desktop-nav > a:not(.nav-cta) { padding: 29px 0 22px; }
.desktop-nav > a:not(.nav-cta):hover { border-bottom-color: var(--red-bright); }
.desktop-nav > a.is-active:not(.nav-cta) { border-bottom-color: var(--red-bright); color: #fff; }
.nav-cta { padding: 13px 18px; border: 1px solid rgba(255,255,255,.5); }
.nav-cta:hover { background: white; color: var(--ink); }
.language-toggle { display: inline-flex; align-items: center; gap: 3px; padding: 4px; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; }
.desktop-nav .language-toggle a { display: grid; place-items: center; width: 29px; height: 29px; padding: 0; border: 0; border-radius: 50%; color: rgba(255,255,255,.72); font-size: .72rem; letter-spacing: .02em; transition: background .2s ease, color .2s ease; }
.desktop-nav .language-toggle a:hover { color: white; }
.desktop-nav .language-toggle a.is-active { background: white; color: var(--ink); }
.site-header.is-scrolled .language-toggle { border-color: rgba(255,255,255,.24); }
.site-header.is-scrolled .desktop-nav .language-toggle a { width: 29px; height: 29px; padding: 0; }
.mobile-language-toggle { display: flex; gap: 8px; margin-top: 15px; padding-top: 8px; }
.mobile-menu nav .mobile-language-toggle a { flex: 1; padding: 10px 12px; border: 1px solid var(--line); font-family: var(--sans); font-size: .8rem; font-weight: 750; letter-spacing: .07em; text-align: center; text-transform: uppercase; }
.mobile-menu nav .mobile-language-toggle a.is-active { border-color: var(--red); background: var(--red); color: white; }
.mobile-menu { display: none; }

.hero { position: relative; min-height: 820px; height: min(920px, 100svh); overflow: hidden; color: white; background: var(--ink); }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { --parallax-y: 0px; top: -6%; height: 112%; object-fit: cover; object-position: center 54%; transform: translate3d(0, var(--parallax-y), 0) scale(1.04); will-change: transform; animation: hero-in 1.2s ease both; }
.hero-shade { background: linear-gradient(90deg, rgba(10,12,11,.88) 0%, rgba(10,12,11,.58) 47%, rgba(10,12,11,.22) 76%), linear-gradient(0deg, rgba(10,12,11,.45), transparent 50%); }
.hero-content { position: relative; z-index: 2; padding-top: clamp(210px, 25vh, 280px); }
.hero h1 { max-width: 980px; margin: 0 0 38px; font-size: clamp(4.3rem, 7.4vw, 8.1rem); color: white; }
.hero h1 em { color: white; font-style: italic; }
.hero-copy { max-width: 680px; margin-bottom: 38px; color: rgba(255,255,255,.84); font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 38px; }
.hero-card { position: absolute; z-index: 4; right: max(48px, calc((100vw - 1240px) / 2)); bottom: 0; width: 295px; padding: 32px 34px 34px; background: rgba(245,242,235,.94); color: var(--ink); backdrop-filter: blur(10px); }
.hero-card::before { content: ""; position: absolute; top: 0; left: 0; width: 88px; height: 4px; background: var(--red); }
.hero-card p { margin-bottom: 12px; color: var(--red); font-size: .78rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.hero-card strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; line-height: 1.35; }
@keyframes hero-in { from { opacity: 0; transform: translate3d(0, var(--parallax-y), 0) scale(1.1); } to { opacity: 1; transform: translate3d(0, var(--parallax-y), 0) scale(1.04); } }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 120px; align-items: end; }
.intro-grid h2 { max-width: 790px; }
.intro-copy { padding-bottom: 4px; }
.intro-copy > p { margin-bottom: 36px; color: #565a57; font-size: 1.05rem; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 110px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts > div { min-height: 158px; padding: 33px 30px 26px; border-right: 1px solid var(--line); }
.facts > div:first-child { padding-left: 0; }
.facts > div:last-child { border-right: 0; }
.facts strong { display: block; margin-bottom: 12px; color: var(--red); font-family: var(--serif); font-size: 2.75rem; font-weight: 500; line-height: 1; }
.facts span { color: #5b5f5b; font-size: .84rem; font-weight: 650; letter-spacing: .055em; text-transform: uppercase; }

.services { position: relative; overflow: hidden; background: var(--ink); color: white; }
.services::before { content: ""; position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px); background-size: 72px 72px; }
.services .shell { position: relative; z-index: 1; }
.split-heading { display: grid; grid-template-columns: 1.25fr .55fr; gap: 120px; align-items: end; }
.split-heading h2 { max-width: 800px; color: white; }
.split-heading h2 em { color: #e3b3c1; }
.split-heading > p { margin-bottom: 8px; color: rgba(255,255,255,.6); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 82px; border: 1px solid rgba(255,255,255,.16); }
.service-card { position: relative; min-height: 540px; padding: 48px 42px; border-right: 1px solid rgba(255,255,255,.16); transition: background .3s ease, transform .3s ease; }
.service-card:last-child { border-right: 0; }
.service-card:hover, .service-card.featured { background: rgba(255,255,255,.06); }
.service-card:hover { transform: translateY(-6px); }
.service-number { color: rgba(255,255,255,.48); font-size: .76rem; letter-spacing: .13em; }
.service-mark { display: grid; place-items: center; width: 74px; height: 74px; margin: 75px 0 34px; border: 1px solid rgba(255,255,255,.25); color: #e0a7b8; transition: border-color .28s ease, background .28s ease, color .28s ease, transform .28s ease; }
.service-mark svg { width: 39px; height: 39px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.service-card:hover .service-mark, .service-card.featured .service-mark { border-color: rgba(224,167,184,.62); background: rgba(224,167,184,.08); color: #f0c5d1; }
.service-card:hover .service-mark { transform: translateY(-2px); }
.service-card h3 { margin-bottom: 18px; font-family: var(--serif); font-size: 2.1rem; font-weight: 500; }
.service-card p { color: rgba(255,255,255,.68); font-size: 1rem; }
.service-card ul { margin: 28px 0 0; padding: 0; list-style: none; }
.service-card li { padding: 10px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.82); font-size: .85rem; letter-spacing: .03em; }

.process { background: var(--white); }
.process-grid { display: grid; grid-template-columns: .78fr 1.1fr; gap: 130px; align-items: start; }
.process-sticky { position: sticky; top: 60px; }
.process-sticky > p:not(.eyebrow) { max-width: 530px; margin: 36px 0 44px; color: #60645f; }
.mini-collage { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 420px; }
.mini-collage img { width: 100%; height: 150px; object-fit: cover; filter: grayscale(.2); }
.mini-collage span { position: absolute; right: -38px; bottom: -30px; padding: 17px 20px; background: var(--red); color: white; font-size: .78rem; font-weight: 750; letter-spacing: .05em; line-height: 1.45; text-transform: uppercase; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 28px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--red); font-size: .8rem; font-weight: 750; letter-spacing: .09em; }
.process-list h3 { margin-bottom: 10px; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.process-list p { max-width: 520px; margin-bottom: 0; color: #666a66; }

.projects { overflow: hidden; background: var(--paper-deep); }
.project-heading { display: grid; grid-template-columns: 1.2fr .55fr; gap: 110px; align-items: end; }
.project-heading > p { margin-bottom: 8px; color: #626660; }
.gallery-wrap { position: relative; width: min(1440px, calc(100% - 40px)); margin: 78px auto 0; }
.gallery-actions { display: flex; justify-content: flex-end; gap: 1px; margin-bottom: 18px; }
.gallery-actions button { width: 54px; height: 54px; border: 0; background: var(--ink); color: white; cursor: pointer; font-size: 1.15rem; transition: background .2s ease; }
.gallery-actions button:hover { background: var(--red); }
.project-rail { display: grid; grid-auto-columns: minmax(360px, 42vw); grid-auto-flow: column; gap: 16px; overflow-x: auto; padding-bottom: 20px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--red) transparent; }
.project-card { position: relative; height: 570px; overflow: hidden; background: #c9c4bb; scroll-snap-align: start; }
.project-card:nth-child(3n) { height: 480px; align-self: end; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.project-card:hover img { transform: scale(1.035); }
.project-overlay { position: absolute; inset: auto 0 0; padding: 70px 34px 30px; color: white; background: linear-gradient(transparent, rgba(8,10,9,.84)); }
.project-overlay p { margin-bottom: 8px; color: #f0c7d2; font-size: .76rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.project-overlay h3 { max-width: 430px; margin-bottom: 0; font-family: var(--serif); font-size: 1.75rem; font-weight: 500; line-height: 1.15; }

.references { position: relative; overflow: hidden; background: #101211; color: white; }
.references::after { content: "REFERENZEN"; position: absolute; top: 88px; right: -25px; color: rgba(255,255,255,.025); font-family: var(--serif); font-size: clamp(6rem, 13vw, 13rem); line-height: 1; pointer-events: none; }
html[lang^="bs"] .references::after { content: "REFERENCE"; }
.references .shell { position: relative; z-index: 1; }
.reference-heading { display: grid; grid-template-columns: 1.15fr .55fr; gap: 120px; align-items: end; }
.reference-heading h2 { max-width: 760px; color: white; }
.reference-heading h2 em { color: #e2adbc; }
.reference-intro { padding-bottom: 8px; }
.reference-intro p { margin-bottom: 26px; color: rgba(255,255,255,.58); }
.reference-intro span { display: flex; align-items: center; gap: 12px; color: #e2adbc; font-size: .77rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.reference-intro span::before { content: "+"; display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid rgba(226,173,188,.45); }
.reference-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 390px 300px; gap: 14px; margin-top: 76px; }
.reference-card { position: relative; overflow: hidden; display: block; min-width: 0; padding: 0; border: 0; background: #252825; color: white; cursor: pointer; text-align: left; }
.reference-card-large { grid-column: span 7; }
.reference-card-tall { grid-column: span 5; }
.reference-card-wide { grid-column: span 6; }
.reference-card-standard { grid-column: span 3; }
.reference-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.reference-card-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,7,6,.88), rgba(5,7,6,.08) 67%); transition: background .35s ease; }
.reference-card:hover img { transform: scale(1.045); filter: saturate(.9); }
.reference-card:hover .reference-card-shade { background: linear-gradient(0deg, rgba(5,7,6,.93), rgba(5,7,6,.14) 73%); }
.reference-card-number { position: absolute; top: 22px; left: 24px; color: rgba(255,255,255,.68); font-size: .73rem; font-weight: 750; letter-spacing: .11em; }
.reference-card-content { position: absolute; left: 26px; right: 70px; bottom: 25px; }
.reference-card-content small, .reference-card-content strong, .reference-card-content em { display: block; }
.reference-card-content small { margin-bottom: 5px; color: #e9b3c2; font-size: .72rem; font-style: normal; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.reference-card-content strong { font-family: var(--serif); font-size: 1.65rem; font-weight: 500; line-height: 1.12; }
.reference-card-content em { margin-top: 7px; color: rgba(255,255,255,.64); font-size: .82rem; font-style: normal; }
.reference-card-open { position: absolute; right: 24px; bottom: 28px; display: grid; place-items: center; width: 35px; height: 35px; border: 1px solid rgba(255,255,255,.35); font-size: .8rem; transition: background .25s ease, border-color .25s ease; }
.reference-card:hover .reference-card-open { border-color: var(--red); background: var(--red); }
.reference-card:focus-visible { outline: 3px solid #e9b3c2; outline-offset: 3px; }
.reference-lightbox { position: fixed; z-index: 100; inset: 0; display: grid; grid-template-columns: 90px minmax(0, 1fr) 90px; align-items: center; padding: 42px; background: rgba(7,9,8,.96); backdrop-filter: blur(14px); }
.reference-lightbox figure { max-width: 1120px; width: 100%; margin: 0 auto; }
.reference-lightbox figure img { width: 100%; max-height: 78vh; object-fit: contain; }
.reference-lightbox figcaption { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; color: white; }
.reference-lightbox figcaption span { font-family: var(--serif); font-size: 1.15rem; }
.reference-lightbox figcaption small { color: rgba(255,255,255,.52); font-size: .76rem; font-weight: 700; letter-spacing: .1em; }
.lightbox-close, .lightbox-arrow { border: 1px solid rgba(255,255,255,.25); background: transparent; color: white; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.lightbox-close:hover, .lightbox-arrow:hover { border-color: var(--red); background: var(--red); }
.lightbox-close { position: absolute; top: 28px; right: 30px; width: 48px; height: 48px; font-size: 1.8rem; font-weight: 300; line-height: 1; }
.lightbox-arrow { width: 58px; height: 58px; justify-self: center; font-size: 1.1rem; }
.lightbox-prev { grid-column: 1; }
.reference-lightbox figure { grid-column: 2; }
.lightbox-next { grid-column: 3; }

.founder { background: var(--ink); color: white; }
.founder-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 130px; align-items: center; }
.founder-portrait { position: relative; }
.portrait-frame { position: relative; width: 100%; max-width: 520px; aspect-ratio: .83; overflow: hidden; }
.portrait-frame::before { content: ""; position: absolute; z-index: 1; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.15); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.7) contrast(1.04); }
.founder-stamp { position: absolute; right: 0; bottom: 55px; display: flex; align-items: center; gap: 13px; min-width: 170px; padding: 20px 24px; background: var(--red); }
.founder-stamp strong { font-family: var(--serif); font-size: 2.5rem; font-weight: 500; line-height: 1; }
.founder-stamp span { font-size: .72rem; font-weight: 750; letter-spacing: .09em; line-height: 1.4; text-transform: uppercase; }
.founder-copy h2 { color: white; }
.founder-copy h2 em { color: #e4b3c0; }
.founder-copy .lead { margin: 40px 0 22px; color: rgba(255,255,255,.9); font-family: var(--serif); font-size: 1.45rem; line-height: 1.5; }
.founder-copy > p:not(.eyebrow):not(.lead) { max-width: 650px; color: rgba(255,255,255,.58); }
.signature-line { display: flex; align-items: center; gap: 22px; margin-top: 44px; }
.signature-line > span { width: 62px; height: 1px; background: var(--red-bright); }
.signature-line strong, .signature-line small { display: block; }
.signature-line strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.signature-line small { color: rgba(255,255,255,.54); font-size: .75rem; letter-spacing: .09em; text-transform: uppercase; }

.contact { position: relative; min-height: 660px; display: flex; align-items: center; overflow: hidden; color: white; }
.contact > img, .contact-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.contact > img { object-fit: cover; object-position: center; }
.contact-shade { background: linear-gradient(90deg, rgba(9,11,10,.9), rgba(9,11,10,.62) 58%, rgba(9,11,10,.15)); }
.contact-content { position: relative; z-index: 1; }
.contact h2 { max-width: 900px; color: white; font-size: clamp(3.3rem, 5.2vw, 5.9rem); }
.contact-content > p:not(.eyebrow) { max-width: 660px; margin: 32px 0 36px; color: rgba(255,255,255,.75); font-size: 1.05rem; }
.contact-actions { display: flex; align-items: center; gap: 42px; }
.phone-link { display: flex; flex-direction: column; }
.phone-link small { color: rgba(255,255,255,.58); font-size: .75rem; font-weight: 720; letter-spacing: .09em; text-transform: uppercase; }
.phone-link strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; }

.site-footer { background: #0e100f; color: white; }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 70px; padding: 80px 0 66px; }
.footer-brand img { width: 165px; height: 75px; object-fit: contain; object-position: left; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 280px; margin: 22px 0 0; color: rgba(255,255,255,.45); }
.footer-label { margin-bottom: 20px; color: rgba(255,255,255,.5); font-size: .74rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.footer-main > div:not(.footer-brand) a, .footer-main > div:not(.footer-brand) > p:not(.footer-label) { display: block; margin-bottom: 8px; color: rgba(255,255,255,.8); font-size: .94rem; line-height: 1.75; }
.footer-main a:hover, .footer-bottom a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.46); font-size: .8rem; letter-spacing: .035em; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 28px; }

.legal-page { padding-top: 104px; background: var(--paper); }
.legal-page + .site-footer { margin-top: 0; }
.legal-page .site-header { position: relative; color: var(--ink); }
.legal-hero { padding: 115px 0 75px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin: 0 0 24px; font-size: clamp(4rem, 7vw, 7rem); }
.legal-hero > p:last-child { color: #626762; }
.legal-content { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 100px; padding-top: 70px; padding-bottom: 120px; }
.legal-content section { padding: 32px 0; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 20px; font-family: var(--serif); font-size: 1.6rem; letter-spacing: -.02em; }
.legal-content p { margin-bottom: 0; color: #555a56; }
.legal-content a { color: var(--red); border-bottom: 1px solid rgba(181,0,53,.35); }
.legal-page ~ * .site-header, body:has(.legal-page) .site-header { position: absolute; color: var(--ink); border-bottom-color: var(--line); }
body:has(.legal-page) .site-header .brand img { filter: none; }
body:has(.legal-page) .site-header .nav-cta { border-color: var(--ink); }
body:has(.legal-page) .site-header .nav-cta:hover { background: var(--ink); color: white; }
body:has(.legal-page) .language-toggle { border-color: rgba(23,25,24,.26); }
body:has(.legal-page) .desktop-nav .language-toggle a { color: rgba(23,25,24,.65); }
body:has(.legal-page) .desktop-nav .language-toggle a.is-active { background: var(--ink); color: white; }

/* Mitlaufende Navigation und dezente Bewegungsebenen */
body:has(.legal-page) .site-header { position: fixed; background: rgba(243,240,233,.94); box-shadow: 0 8px 28px rgba(23,25,24,.06); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
body:has(.legal-page) .site-header.is-scrolled { background: rgba(243,240,233,.96); border-bottom-color: var(--line); color: var(--ink); }
body:has(.legal-page) .desktop-nav a.is-active:not(.nav-cta) { color: var(--ink); }

.contact > img { --parallax-y: 0px; top: -8%; height: 116%; transform: translate3d(0, var(--parallax-y), 0) scale(1.02); will-change: transform; }
.portrait-frame img { --portrait-shift: 0px; transform: translate3d(0, var(--portrait-shift), 0) scale(1.025); will-change: transform; }

.js-motion .reveal { opacity: 0; transform: translate3d(0, 34px, 0); filter: blur(5px); transition: opacity .78s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms), transform .9s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms), filter .8s ease var(--reveal-delay, 0ms); }
.js-motion .reveal.reveal-left { transform: translate3d(-38px, 0, 0); }
.js-motion .reveal.reveal-scale { transform: translate3d(0, 24px, 0) scale(.975); }
.js-motion .reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
.js-motion .hero-content .reveal { transition-duration: .9s, 1s, .9s; }
.js-motion .facts > div.reveal { transform: translate3d(0, 22px, 0); }
.js-motion .facts > div.reveal.is-visible { transform: translate3d(0, 0, 0); }

@media (max-width: 820px) {
  .site-header.is-scrolled { height: 70px; }
  .site-header.is-scrolled .brand img { height: 47px; }
  .site-header.is-scrolled .mobile-menu nav { top: 49px; }
}

@media (max-width: 1100px) {
  .shell { width: min(100% - 56px, 1000px); }
  .section-pad { padding: 104px 0; }
  .site-header { padding-inline: 28px; }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: .72rem; }
  .hero-card { right: 28px; }
  .intro-grid, .split-heading, .project-heading { gap: 65px; }
  .process-grid, .founder-grid { gap: 75px; }
  .service-card { padding: 38px 30px; }
  .footer-main { gap: 42px; }
}

@media (max-width: 820px) {
  .shell { width: calc(100% - 40px); }
  .section-pad { padding: 86px 0; }
  h2 { font-size: clamp(2.7rem, 11vw, 4.5rem); }
  .site-header { height: 82px; padding-inline: 20px; }
  .brand { width: 135px; }
  .brand img { height: 55px; }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { position: relative; z-index: 2; display: grid; align-content: center; gap: 7px; width: 44px; height: 44px; list-style: none; cursor: pointer; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { display: block; width: 28px; height: 1px; margin-left: auto; background: currentColor; }
  .mobile-menu summary span:last-child { width: 19px; }
  .mobile-menu[open] nav { display: flex; }
  .mobile-menu nav { position: absolute; top: 55px; right: 0; display: none; flex-direction: column; width: min(78vw, 310px); padding: 24px; background: var(--paper); color: var(--ink); box-shadow: 0 25px 60px rgba(0,0,0,.25); }
  .mobile-menu nav a { padding: 11px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.25rem; }
  body:has(.legal-page) .mobile-menu nav { color: var(--ink); }
  .hero { min-height: 760px; height: 100svh; }
  .hero-shade { background: linear-gradient(90deg, rgba(9,11,10,.88), rgba(9,11,10,.42)), linear-gradient(0deg, rgba(9,11,10,.6), transparent 50%); }
  .hero-content { padding-top: 160px; }
  .hero h1 { font-size: clamp(3.7rem, 16vw, 6.2rem); }
  .hero-copy { max-width: 570px; font-size: .98rem; }
  .hero-card { right: 0; width: 255px; padding: 24px 25px; }
  .intro-grid, .split-heading, .project-heading, .process-grid, .founder-grid { grid-template-columns: 1fr; gap: 46px; }
  .reference-heading { grid-template-columns: 1fr; gap: 36px; }
  .intro-copy { max-width: 620px; }
  .facts { grid-template-columns: 1fr 1fr; margin-top: 70px; }
  .facts > div { border-bottom: 1px solid var(--line); }
  .facts > div:nth-child(2) { border-right: 0; }
  .facts > div:nth-child(n+3) { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .service-card:last-child { border-bottom: 0; }
  .service-mark { margin-top: 38px; }
  .process-sticky { position: relative; top: auto; }
  .mini-collage { width: min(500px, calc(100% - 30px)); }
  .project-rail { grid-auto-columns: minmax(320px, 75vw); }
  .project-card, .project-card:nth-child(3n) { height: 500px; }
  .reference-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .reference-card, .reference-card-large, .reference-card-tall, .reference-card-wide, .reference-card-standard { grid-column: auto; grid-row: auto; height: 360px; }
  .reference-card-large { grid-column: span 2; height: 440px; }
  .reference-lightbox { grid-template-columns: 64px minmax(0, 1fr) 64px; padding: 30px 12px; }
  .founder-portrait { width: min(570px, 100%); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .legal-content { grid-template-columns: 1fr; }
  .legal-hero { padding-top: 90px; }
}

@media (max-width: 540px) {
  .shell { width: calc(100% - 32px); }
  .section-pad { padding: 72px 0; }
  .eyebrow { margin-bottom: 18px; font-size: .72rem; }
  .button { min-width: 210px; }
  .hero { min-height: 740px; }
  .hero-content { padding-top: 135px; }
  .hero h1 { margin-bottom: 26px; font-size: clamp(3.05rem, 15.2vw, 4.5rem); line-height: .96; }
  .hero-copy { font-size: 1rem; line-height: 1.65; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-card { display: none; }
  .intro-grid { gap: 32px; }
  .facts { margin-top: 55px; }
  .facts > div { display: flex; min-height: 158px; padding: 28px 18px; flex-direction: column; justify-content: center; }
  .facts > div:first-child { padding-left: 18px; }
  .facts strong { margin-bottom: 14px; font-size: 2.45rem; }
  .facts span { max-width: 15ch; font-size: .84rem; line-height: 1.42; letter-spacing: .035em; text-wrap: balance; overflow-wrap: normal; word-break: normal; hyphens: none; }
  .split-heading, .project-heading { gap: 30px; }
  .service-grid { margin-top: 48px; }
  .service-card { padding: 30px 26px; }
  .mini-collage img { height: 115px; }
  .mini-collage span { right: -18px; bottom: -24px; }
  .process-list li { grid-template-columns: 42px 1fr; gap: 16px; padding: 32px 0; }
  .process-list h3 { font-size: 1.65rem; }
  .gallery-wrap { width: calc(100% - 16px); margin-top: 50px; margin-left: 16px; }
  .gallery-actions { padding-right: 16px; }
  .project-rail { grid-auto-columns: 86vw; }
  .project-card, .project-card:nth-child(3n) { height: 440px; }
  .reference-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 48px; }
  .reference-card, .reference-card-large, .reference-card-tall, .reference-card-wide, .reference-card-standard { grid-column: auto; height: 330px; }
  .reference-card-large { height: 390px; }
  .reference-card-content { left: 22px; bottom: 22px; }
  .reference-card-open { right: 20px; bottom: 24px; }
  .reference-lightbox { grid-template-columns: 1fr; padding: 70px 16px 28px; }
  .reference-lightbox figure { grid-column: 1; }
  .lightbox-arrow { position: absolute; bottom: 24px; width: 52px; height: 52px; }
  .lightbox-prev { left: 18px; }
  .lightbox-next { right: 18px; }
  .reference-lightbox figcaption { padding-bottom: 66px; }
  .project-overlay { padding-inline: 24px; }
  .founder-stamp { right: -8px; bottom: 25px; min-width: 145px; padding: 16px 18px; }
  .founder-copy .lead { font-size: 1.25rem; }
  .contact { min-height: 700px; }
  .contact-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .contact h2 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .footer-main { grid-template-columns: 1fr; padding: 60px 0 40px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .legal-page { padding-top: 82px; }
  .legal-hero { padding: 68px 0 50px; }
  .legal-content { padding-top: 30px; padding-bottom: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-image, .contact > img, .portrait-frame img { transform: none !important; }
  .js-motion .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
}
