:root {
  --bg: #f2f1ed;
  --surface: #ffffff;
  --surface-2: #e8e7e2;
  --text: #101010;
  --muted: #6c6c69;
  --line: rgba(16, 16, 16, .16);
  --inverse: #f7f7f3;
  --dark: #050505;
  --accent: #d6ff3f;
  --shadow: 0 22px 70px rgba(0, 0, 0, .12);
  --shell: min(1180px, calc(100vw - 80px));
  --nav-h: 58px;
  color-scheme: light;
}

html[data-theme="dark"] {
  --bg: #080808;
  --surface: #111111;
  --surface-2: #181818;
  --text: #f3f3ef;
  --muted: #959591;
  --line: rgba(255, 255, 255, .15);
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", "Segoe UI", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  transition: background-color .3s ease, color .3s ease;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, select { color: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
::selection { background: var(--accent); color: #080808; }

.shell { width: var(--shell); margin-inline: auto; }
.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: -100px; z-index: 9999; padding: 12px 18px; background: var(--accent); color: #050505; font-weight: 700; }
.skip-link:focus { top: 16px; }
.scroll-progress { position: fixed; z-index: 120; inset: 0 0 auto; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left center; pointer-events: none; }

.site-header { position: relative; z-index: 50; background: var(--bg); }
.utility-bar { height: 26px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.utility-bar a:hover { color: var(--text); }
.nav { height: var(--nav-h); display: flex; align-items: center; gap: 18px; }
.brand { width: 186px; flex: 0 0 auto; }
.brand img, .footer-brand img { width: 100%; transition: filter .3s ease; }
html[data-theme="dark"] .brand img,
html[data-theme="dark"] .footer-brand img { filter: invert(1); }
.scope-badge { flex: 0 0 auto; padding: 5px 8px; border: 1px solid var(--line); color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .06em; }
.desktop-nav { display: flex; align-items: stretch; gap: 25px; margin-left: auto; height: 100%; }
.desktop-nav a { position: relative; display: flex; align-items: center; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: 0; background: currentColor; transition: right .28s ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language-control select { appearance: none; height: 38px; min-width: 52px; border: 1px solid var(--line); background: transparent; padding: 0 20px 0 10px; font-size: 11px; font-weight: 800; letter-spacing: .08em; background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%); background-position: calc(100% - 11px) 16px, calc(100% - 7px) 16px; background-size: 4px 4px; background-repeat: no-repeat; }
.icon-button { width: 38px; height: 38px; border: 1px solid var(--line); background: transparent; display: grid; place-items: center; padding: 0; }
.theme-toggle svg { position: absolute; width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: opacity .25s ease, transform .35s ease; }
html[data-theme="dark"] .theme-toggle .moon { opacity: 0; transform: rotate(-25deg) scale(.6); }
html[data-theme="light"] .theme-toggle .sun { opacity: 0; transform: rotate(35deg) scale(.6); }
.button { border: 1px solid var(--text); background: var(--text); color: var(--bg); min-height: 51px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; font-weight: 800; font-size: 12px; letter-spacing: .07em; text-transform: uppercase; transition: color .25s ease, background-color .25s ease, transform .25s ease; }
.button:hover { background: var(--accent); border-color: var(--accent); color: #050505; transform: translateY(-2px); }
.button-small { min-height: 38px; padding-inline: 17px; font-size: 9px; }
.button-wide { width: 100%; justify-content: space-between; margin-top: 12px; }
.button-invert { background: #f7f7f3; border-color: #f7f7f3; color: #050505; }
.menu-toggle { display: none; position: relative; }
.menu-toggle span { position: absolute; width: 18px; height: 1px; background: currentColor; transition: transform .25s ease, top .25s ease; top: 15px; }
.menu-toggle span:last-child { top: 22px; }
.menu-toggle[aria-expanded="true"] span { top: 18px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: 113px 0 0; z-index: 49; padding: 42px 24px; background: var(--bg); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { display: block; padding: 19px 0; border-bottom: 1px solid var(--line); font-size: clamp(26px, 8vw, 44px); font-weight: 700; text-transform: uppercase; letter-spacing: -.04em; }

.marquee { height: 32px; overflow: hidden; border-block: 1px solid rgba(0,0,0,.12); background: #f3f3ef; color: #080808; }
.marquee-track { width: max-content; height: 100%; display: flex; align-items: center; gap: 30px; animation: marquee 28s linear infinite; }
.marquee span { font-size: 10px; font-weight: 800; letter-spacing: .18em; white-space: nowrap; }
.marquee i { width: 4px; height: 4px; transform: rotate(45deg); background: #080808; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-dark { background: var(--dark); color: var(--inverse); }
.section-pad { padding: 100px 0; }
.eyebrow { display: flex; align-items: center; gap: 11px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.section-dark .eyebrow { color: #aaa; }
.section-index { margin-bottom: 12px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .16em; }

.hero { position: relative; min-height: calc(100vh - 116px); overflow: hidden; }
.hero-noise { position: absolute; inset: 0 0 auto; height: 760px; pointer-events: none; opacity: .18; background-image: linear-gradient(180deg, rgba(5,5,5,.35), #050505 93%), url("projects/project-07.webp"), url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E"); background-position: center, center 42%, center; background-size: cover, cover, 180px; filter: grayscale(1); }
.hero-inner { position: relative; padding: 88px 0 82px; }
.hero .eyebrow { width: max-content; margin: 0 auto 28px; }
.hero h1 { max-width: min(1180px, 100%); margin: 0 auto 26px; font-size: clamp(40px, 4.55vw, 62px); line-height: 1; letter-spacing: -.048em; text-align: center; text-transform: uppercase; font-weight: 280; text-wrap: balance; }
.hero h1 strong { font-weight: 850; }
.hero h1 .hero-title-line { display: inline-block; white-space: nowrap; }
html[lang="de"] .hero h1 { font-size: clamp(38px, 4.15vw, 56px); }
@media (min-width: 821px) {
  html[lang="sl"] .hero h1 { font-size: clamp(38px, 4.45vw, 60px); }
  html[lang="en"] .hero h1 { font-size: clamp(35px, 4.15vw, 55px); }
}

@media (min-width: 821px) and (max-width: 860px) {
  .nav { gap: 12px; }
  .brand { width: 176px; }
  .desktop-nav { gap: 16px; }
  .nav-actions { gap: 6px; }
}
.hero-copy { display: block; max-width: 720px; margin: 0 auto; }
.hero-copy p { max-width: 680px; color: #a8a8a3; margin: 0 auto 30px; font-size: 15px; text-align: center; }
.hero-action-bar { display: grid; grid-template-columns: 1fr auto; min-height: 52px; border: 1px solid rgba(255,255,255,.18); background: rgba(12,12,12,.82); text-align: left; transition: border-color .25s ease, transform .25s ease; }
.hero-action-bar span { display: flex; align-items: center; padding: 0 20px; color: #777; font-size: 11px; letter-spacing: .03em; }
.hero-action-bar span::before { content: "⌕"; margin-right: 11px; font-size: 16px; }
.hero-action-bar b { display: flex; align-items: center; padding: 0 23px; background: #f4f4f0; color: #080808; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.hero-action-bar:hover { border-color: #fff; transform: translateY(-2px); }
.text-link { display: inline-flex; align-items: center; gap: 20px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.text-link b { font-size: 18px; transition: transform .25s ease; }
.text-link:hover b { transform: translate(3px, -3px); }
.hero-gallery-head { display: flex; align-items: end; justify-content: space-between; margin: 106px 0 24px; }
.hero-gallery-head > div > span { display: block; margin-bottom: 7px; color: #888; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.hero-gallery-head h2 { margin: 0; font-size: clamp(28px, 3.2vw, 44px); letter-spacing: -.045em; }
.hero-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); height: auto; gap: 14px; margin: 0; }
.hero-image { position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: #151515; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.07); transition: transform .8s cubic-bezier(.2,.65,.25,1), filter .5s ease; }
.hero-image-b { transform: none; }
.hero-image::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.72)); }
.hero-image span { position: absolute; z-index: 1; left: 26px; bottom: 22px; font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.hero-image:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.03); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 620px; margin: 34px auto 0; border: 0; }
.hero-stats div { padding: 12px 24px; border-right: 1px solid rgba(255,255,255,.14); text-align: center; }
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { display: block; font-size: clamp(25px, 3vw, 38px); line-height: 1; letter-spacing: -.04em; }
.hero-stats span { display: block; margin-top: 7px; color: #777; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.split-heading { display: grid; grid-template-columns: 210px 1fr; gap: 64px; }
.about-statement h2 { max-width: 940px; margin-bottom: 46px; font-size: clamp(34px, 3.8vw, 50px); line-height: 1.04; letter-spacing: -.045em; font-weight: 450; text-wrap: balance; }
.about-statement h2 em { font-style: normal; color: var(--muted); }
.about-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: none; margin: 0; }
.about-columns p { min-height: 190px; margin: 0; padding: 26px; border: 1px solid var(--line); background: var(--surface); color: var(--muted); font-size: 15px; }

.services { border-top: 1px solid var(--line); }
.section-head { display: flex; flex-direction: column; align-items: center; gap: 11px; margin-bottom: 54px; text-align: center; }
.section-head > div { display: flex; flex-direction: column; align-items: center; }
.section-head > div .section-index { display: none; }
.section-head h2 { margin: 0; font-size: clamp(38px, 4.5vw, 58px); line-height: 1; letter-spacing: -.05em; }
.section-head > p { max-width: 520px; color: var(--muted); margin: 3px auto 0; }
.section-head > .text-link { margin-top: 8px; }
.service-list { max-width: 1050px; margin-inline: auto; border-top: 1px solid var(--line); }
.service-list a { position: relative; display: grid; grid-template-columns: 62px 1fr 50px; align-items: center; min-height: 92px; border-bottom: 1px solid var(--line); transition: background-color .3s ease, color .3s ease, padding .3s ease; }
.service-list a::before { content: ""; position: absolute; z-index: 0; right: 72px; top: 50%; width: 154px; aspect-ratio: 4/3; background: var(--service-preview) center/cover; opacity: 0; transform: translateY(-43%) rotate(2deg) scale(.92); box-shadow: 0 16px 40px rgba(0,0,0,.28); pointer-events: none; transition: opacity .3s ease, transform .4s cubic-bezier(.2,.65,.25,1); }
.service-list a:hover { background: var(--text); color: var(--bg); padding-inline: 22px; }
.service-list a:hover::before { opacity: 1; transform: translateY(-50%) rotate(-1deg) scale(1); }
.service-num { color: var(--muted); font-size: 10px; letter-spacing: .14em; }
.service-list h3 { position: relative; z-index: 1; margin: 0; font-size: clamp(25px, 3vw, 40px); line-height: 1; letter-spacing: -.035em; font-weight: 540; }
.service-arrow { position: relative; z-index: 1; justify-self: end; font-size: 34px; font-weight: 200; transition: transform .3s ease; }
.service-list a:hover .service-arrow { transform: translate(4px, -4px); }

.field-film { position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,.14); }
.field-film-head { display: grid; grid-template-columns: minmax(180px, .62fr) minmax(0, 1.38fr); align-items: end; gap: 48px 80px; margin-bottom: 48px; }
.field-film-head > div:last-child { min-width: 0; }
.field-film-head h2 { max-width: 820px; margin: 0 0 22px; font-size: clamp(42px, 5.35vw, 72px); font-weight: 280; line-height: .93; letter-spacing: -.057em; text-wrap: balance; }
.field-film-head h2 strong { font-weight: 850; }
.field-film-head p { max-width: 650px; margin: 0; color: #aaa; font-size: 16px; }
.field-film-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #0b0b0b; border: 1px solid rgba(255,255,255,.16); }
.field-film-frame > video { width: 100%; height: 100%; object-fit: cover; filter: saturate(.68) contrast(1.08); transition: transform 1.1s cubic-bezier(.2,.65,.25,1), filter .5s ease; }
.field-film-frame:hover > video { transform: scale(1.018); filter: saturate(.82) contrast(1.07); }
.field-film-mask { position: absolute; z-index: 2; left: 18%; top: 29%; width: 64%; height: 43%; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(24px, 3.4vw, 46px); background: #050505; color: #f7f7f3; border: 1px solid rgba(255,255,255,.2); pointer-events: none; }
.field-film-mask::after { content: ""; position: absolute; right: clamp(24px, 3.4vw, 46px); top: clamp(24px, 3.4vw, 46px); width: 8px; height: 8px; background: var(--accent); transform: rotate(45deg); }
.field-film-mask span { color: #888; font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.field-film-mask strong { max-width: 620px; font-size: clamp(28px, 3.7vw, 52px); font-weight: 780; line-height: .94; letter-spacing: -.05em; text-transform: uppercase; text-wrap: balance; }
.field-film-trigger { position: absolute; z-index: 3; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; color: #050505; cursor: zoom-in; }
.field-film-trigger:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }
.field-film-open { position: absolute; right: 22px; bottom: 22px; min-height: 48px; display: inline-flex; align-items: center; gap: 28px; padding: 0 19px; background: #f4f4ef; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; box-shadow: 0 14px 34px rgba(0,0,0,.26); }
.field-film-open b { font-size: 19px; font-weight: 400; transition: transform .25s ease; }
.field-film-trigger:hover .field-film-open b { transform: translate(3px,-3px); }

.case-feature { padding: 104px 0; }
.case-feature-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; border: 1px solid rgba(255,255,255,.16); }
.case-feature-media { position: relative; min-width: 0; min-height: 560px; overflow: hidden; background: #111; }
.case-feature-media::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.72)); }
.case-feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.65,.25,1), filter .5s ease; }
.case-feature-media > span { position: absolute; z-index: 1; left: 26px; bottom: 24px; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.case-feature-copy { min-width: 0; display: flex; flex-direction: column; padding: clamp(40px, 4.2vw, 60px); background: #090909; }
.case-feature-label { display: block; margin: auto 0 18px; color: #777; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.case-feature-copy h2 { margin: 0 0 28px; font-size: clamp(36px, 3.5vw, 50px); line-height: .96; letter-spacing: -.052em; font-weight: 280; overflow-wrap: normal; hyphens: manual; text-wrap: balance; }
.case-feature-copy h2 strong { font-weight: 850; }
.case-feature-copy > p { max-width: 520px; color: #aaa; font-size: 15px; }
.case-feature-link { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.2); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.case-feature-link i { font-size: 24px; font-style: normal; transition: transform .3s ease; }
.case-feature-grid:hover .case-feature-media img { transform: scale(1.025); filter: saturate(1.05); }
.case-feature-grid:hover .case-feature-link i { transform: translate(4px,-4px); }

.commitment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1080px; }
.commitment-visual { position: relative; }
.commitment-visual::before { content: ""; position: absolute; z-index: 1; inset: -16px 16px 16px -16px; border: 1px solid rgba(255,255,255,.25); pointer-events: none; }
.commitment-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: grayscale(.15) contrast(1.05); }
.commitment-visual span { position: absolute; z-index: 2; bottom: 20px; left: 20px; padding: 8px 10px; background: #050505; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.commitment-copy h2 { margin: 24px 0 28px; font-size: clamp(34px, 3.6vw, 48px); line-height: .98; letter-spacing: -.048em; font-weight: 300; text-wrap: balance; }
.commitment-copy h2 strong { font-weight: 850; }
.commitment-copy > p { max-width: 650px; color: #aaa; font-size: 15px; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 52px; border-block: 1px solid rgba(255,255,255,.18); }
.principles span { padding: 20px 14px 20px 0; border-right: 1px solid rgba(255,255,255,.18); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.principles span:not(:first-child) { padding-left: 14px; }
.principles span:last-child { border: 0; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1050px; margin-inline: auto; border: 1px solid var(--line); }
.process-grid article { min-height: 285px; padding: 32px; border-right: 1px solid var(--line); display: flex; flex-direction: column; transition: background-color .3s ease; }
.process-grid article:last-child { border: 0; }
.process-grid article:hover { background: var(--surface); }
.process-grid article > span { color: var(--muted); font-size: 10px; letter-spacing: .14em; }
.process-grid h3 { margin: auto 0 16px; font-size: clamp(24px, 2.5vw, 34px); line-height: 1; letter-spacing: -.035em; }
.process-grid p { margin: 0; color: var(--muted); max-width: 340px; }

.trust { border-top: 1px solid var(--line); }
.trust-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 86px; align-items: start; }
.trust-intro h2 { max-width: 540px; margin: 24px 0; font-size: clamp(36px, 3.6vw, 50px); line-height: .98; letter-spacing: -.048em; text-wrap: balance; }
.trust-intro > p { max-width: 520px; color: var(--muted); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.trust-grid article { min-height: 360px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.trust-grid article:last-child { border-right: 0; }
.trust-grid strong { font-size: clamp(55px, 5.5vw, 80px); line-height: .9; letter-spacing: -.07em; }
.trust-grid span { margin-top: 14px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.trust-grid p { margin: auto 0 0; color: var(--muted); font-size: 12px; }

.selected-projects { border-top: 1px solid var(--line); }
.selected-projects .section-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 11px 40px; margin-bottom: 42px; text-align: left; }
.selected-projects .section-head > div { align-items: flex-start; }
.selected-projects .section-head h2 { grid-column: 1; }
.selected-projects .section-head > .text-link { grid-column: 2; grid-row: 2; margin: 0 0 4px; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 54px 20px; }
.project-card { min-width: 0; display: block; cursor: pointer; }
.project-card-media { position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-2); }
.project-card:nth-child(4n+2) .project-card-media,
.project-card:nth-child(4n+3) .project-card-media { aspect-ratio: 4 / 3; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.65,.25,1), filter .4s ease; }
.project-card:hover img { transform: scale(1.035); }
.project-open { position: absolute; right: 16px; top: 16px; width: 44px; height: 44px; border-radius: 50%; background: var(--bg); color: var(--text); display: grid; place-items: center; font-size: 18px; transform: scale(0); transition: transform .3s ease; }
.project-card:hover .project-open { transform: scale(1); }
.project-card-meta { min-width: 0; padding-top: 15px; }
.project-card-facts { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; min-height: 36px; padding-bottom: 11px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; font-weight: 800; line-height: 1.35; letter-spacing: .11em; text-transform: uppercase; }
.project-card-facts span { min-width: 0; }
.project-card-facts span:last-child { text-align: right; }
.project-card-meta h3 { margin: 15px 0 0; max-width: 100%; min-height: 2.08em; font-size: clamp(22px, 1.9vw, 28px); line-height: 1.04; letter-spacing: -.035em; text-wrap: balance; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1080px; }
.contact-intro h2 { margin: 28px 0; font-size: clamp(38px, 3.8vw, 52px); line-height: .96; letter-spacing: -.052em; font-weight: 300; text-wrap: balance; }
.contact-intro h2 strong { font-weight: 850; }
.contact-intro > p { max-width: 520px; color: #aaa; font-size: 18px; }
.contact-email { display: flex; justify-content: space-between; align-items: center; max-width: 520px; padding: 22px 0; margin-top: 54px; border-block: 1px solid rgba(255,255,255,.22); font-weight: 700; }
.contact-form { padding-top: 42px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label:not(.privacy-check) { display: block; margin-bottom: 23px; }
.contact-form label > span { display: block; margin-bottom: 9px; color: #aaa; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input:not([type="checkbox"]), .contact-form textarea, .contact-form select { width: 100%; min-height: 50px; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.25); border-radius: 0; outline: none; background: transparent; color: #f7f7f3; resize: vertical; transition: border-color .2s ease; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--accent); }
.contact-form select option { color: #111; }
.privacy-check { display: flex; align-items: flex-start; gap: 11px; margin: 8px 0 20px; color: #aaa; font-size: 12px; }
.privacy-check input { margin-top: 3px; accent-color: var(--accent); }
.privacy-check a { color: var(--text); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.file-field { position: relative; margin-top: 4px; padding: 18px 20px; border: 1px dashed rgba(255,255,255,.28); transition: border-color .2s ease, background-color .2s ease; }
.contact-form .file-field > span { margin-bottom: 5px; color: #f4f4ef; }
.file-field input { width: 100%; min-height: 34px; padding: 4px 0; border: 0; color: #aaa; font-size: 12px; }
.file-field input::file-selector-button { margin-right: 14px; padding: 8px 12px; border: 0; background: #f4f4ef; color: #090909; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.file-field small { display: block; margin-top: 5px; color: #777; font-size: 10px; }
.file-field:hover, .file-field:focus-within { border-color: var(--accent); background: rgba(255,255,255,.025); }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-status { min-height: 22px; margin-top: 14px; font-size: 13px; }
.form-status.success { color: var(--accent); }
.form-status.error { color: #ff8c8c; }

.footer { padding: 64px 0 92px; background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 54px; padding-bottom: 54px; }
.footer-brand img { width: 205px; margin-bottom: 20px; }
.footer-brand p { max-width: 330px; color: var(--muted); }
.footer h3 { margin-bottom: 23px; color: var(--muted); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.footer a, .footer div > p { display: block; margin-bottom: 9px; font-size: 14px; }
.footer a:hover { opacity: .6; }
.footer-bottom { display: flex; gap: 26px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom a { margin-left: 0; }
.footer-bottom a:first-of-type { margin-left: auto; }

.content-hero { min-height: 650px; display: flex; align-items: flex-end; padding: 92px 0 110px; }
.content-hero-grid { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 72px; align-items: end; }
.content-hero-grid > * { min-width: 0; }
.content-hero-side { align-self: start; padding-top: 12px; }
.content-hero h1 { max-width: 940px; margin: 0; font-size: clamp(52px, 6vw, 82px); line-height: .9; letter-spacing: -.065em; font-weight: 300; text-transform: uppercase; text-wrap: balance; }
.content-hero h1 strong { font-weight: 850; }
.content-hero h1 .hero-line { display: inline-block; white-space: nowrap; }
.content-hero p { max-width: 700px; margin: 42px 0 0 auto; color: #aaa; font-size: 18px; }

@media (min-width: 821px) and (max-width: 1100px) {
  .content-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .content-hero-side { padding-top: 0; }
  .content-hero p { margin-left: 0; }
}

@media (min-width: 821px) {
  html[lang="en"] body[data-page="about"] .content-hero h1,
  html[lang="en"] body[data-page="terms"] .content-hero h1 { font-size: clamp(52px, 5vw, 70px); }
}

.legal-section { padding: 110px 0 140px; }
.legal-shell { display: grid; grid-template-columns: 250px minmax(0, 820px); gap: 72px; align-items: start; }
.legal-aside { position: sticky; top: 32px; }
.legal-aside p { max-width: 230px; margin-top: 30px; color: var(--muted); font-size: 12px; overflow-wrap: anywhere; }
.legal-copy [data-legal-lang] { display: none; }
html[lang="sl"] .legal-copy [data-legal-lang="sl"],
html[lang="en"] .legal-copy [data-legal-lang="en"],
html[lang="de"] .legal-copy [data-legal-lang="de"] { display: block; }
.legal-copy article { padding: 0 0 46px; margin-bottom: 46px; border-bottom: 1px solid var(--line); }
.legal-copy article:last-child { margin-bottom: 0; }
.legal-copy h2 { margin: 0 0 24px; font-size: clamp(30px, 3.2vw, 46px); line-height: 1; letter-spacing: -.045em; }
.legal-copy h3 { margin: 32px 0 12px; font-size: 20px; letter-spacing: -.025em; }
.legal-copy p, .legal-copy li { color: var(--muted); font-size: 15px; line-height: 1.75; }
.legal-copy ul { margin: 18px 0 0; padding-left: 20px; }
.legal-copy li { margin-bottom: 8px; }
.legal-copy a { color: var(--text); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.legal-note { padding: 20px 22px; border: 1px solid var(--line); background: var(--surface-2); }

.origin-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(52px, 8vw, 112px); align-items: start; }
.origin-visual { position: relative; margin: 0; }
.origin-visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.72) contrast(1.04); }
.origin-visual span { position: absolute; left: 18px; bottom: 18px; padding: 9px 12px; background: #050505; color: #fff; font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.origin-copy .eyebrow { margin-bottom: 35px; }
.origin-copy h2 { max-width: 730px; margin-bottom: 40px; font-size: clamp(42px, 5.2vw, 70px); line-height: .96; letter-spacing: -.055em; }
.origin-copy > p { max-width: 760px; margin-bottom: 22px; color: var(--muted); font-size: 16px; }
.milestone-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 58px; border: 1px solid var(--line); }
.milestone-grid article { min-height: 205px; padding: 28px; border-right: 1px solid var(--line); }
.milestone-grid article:last-child { border-right: 0; }
.milestone-grid strong { display: block; margin-bottom: 30px; font-size: clamp(30px, 3vw, 44px); letter-spacing: -.05em; }
.milestone-grid span { display: block; margin-bottom: 11px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.milestone-grid p { margin: 0; color: var(--muted); font-size: 12px; }

.page-section-head { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 72px; margin-bottom: 60px; }
.page-section-head h2 { max-width: 850px; margin: 0; font-size: clamp(42px, 5vw, 68px); line-height: .95; letter-spacing: -.055em; }
.value-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border: 1px solid var(--line); }
.value-grid article { min-height: 315px; display: flex; flex-direction: column; padding: 34px; border-right: 1px solid var(--line); }
.value-grid article:last-child { border-right: 0; }
.value-grid article > span, .partner-benefits article > span, .scope-list article > span, .company-process-grid article > span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.value-grid h3 { margin: auto 0 20px; font-size: clamp(28px, 3vw, 42px); letter-spacing: -.05em; }
.value-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.environment-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.environment-grid > * { min-width: 0; }
.environment-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(.65) contrast(1.08); }
.environment-copy .eyebrow { margin-bottom: 34px; }
.environment-copy h2 { margin: 0 0 30px; font-size: clamp(42px, 5vw, 68px); line-height: .96; letter-spacing: -.055em; }
.environment-copy > p { color: #aaa; font-size: 16px; }
.environment-list { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); color: #ddd; font-size: 12px; font-weight: 800; letter-spacing: .08em; line-height: 2; text-transform: uppercase; }

.page-cta { padding: 100px 0; }
.page-cta-grid { display: grid; grid-template-columns: 250px minmax(0,1fr) auto; gap: 72px; align-items: end; }
.page-cta-grid > * { min-width: 0; }
.page-cta h2 { max-width: 760px; margin: 0 0 24px; font-size: clamp(42px, 5vw, 70px); line-height: .94; letter-spacing: -.055em; }
.page-cta p { max-width: 650px; margin: 0; color: var(--muted); }

.partner-promise-grid { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 72px; }
.partner-promise-copy h2 { max-width: 880px; margin: 0 0 34px; font-size: clamp(44px, 5.8vw, 78px); line-height: .95; letter-spacing: -.06em; }
.partner-promise-copy p { max-width: 760px; color: var(--muted); font-size: 17px; }
.partner-benefits { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); margin-top: 75px; border: 1px solid var(--line); }
.partner-benefits article { min-height: 300px; display: flex; flex-direction: column; padding: 26px; border-right: 1px solid var(--line); }
.partner-benefits article:last-child { border-right: 0; }
.partner-benefits h3 { margin: auto 0 18px; font-size: 25px; line-height: 1; letter-spacing: -.045em; }
.partner-benefits p { margin: 0; color: var(--muted); font-size: 12px; }

.scope-showcase { display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; align-items: start; }
.scope-showcase-media { position: sticky; top: 30px; }
.scope-showcase-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.72) contrast(1.08); }
.scope-showcase-copy .eyebrow { margin-bottom: 32px; }
.scope-showcase-copy > h2 { margin: 0 0 28px; font-size: clamp(44px, 5.5vw, 74px); line-height: .95; letter-spacing: -.055em; }
.scope-showcase-copy > p { max-width: 680px; color: #aaa; }
.scope-list { margin-top: 52px; border-top: 1px solid rgba(255,255,255,.18); }
.scope-list article { display: grid; grid-template-columns: 52px minmax(0,1fr); gap: 22px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.scope-list h3 { margin: 0 0 9px; font-size: 25px; letter-spacing: -.04em; }
.scope-list p { margin: 0; color: #999; font-size: 13px; }

.company-process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border: 1px solid var(--line); }
.company-process-grid article { min-height: 300px; display: flex; flex-direction: column; padding: 32px; border-right: 1px solid var(--line); }
.company-process-grid article:last-child { border-right: 0; }
.company-process-grid h3 { margin: auto 0 18px; font-size: 32px; letter-spacing: -.05em; }
.company-process-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.reference-feature { padding: 0; }
.reference-feature-grid { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 650px; border-inline: 1px solid rgba(255,255,255,.16); }
.reference-feature-media { overflow: hidden; }
.reference-feature-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.07); transition: transform .8s cubic-bezier(.2,.65,.25,1); }
.reference-feature-copy { display: flex; flex-direction: column; padding: clamp(42px, 6vw, 82px); border-left: 1px solid rgba(255,255,255,.16); }
.reference-feature-copy .eyebrow { margin-bottom: 90px; }
.reference-feature-copy h2 { margin: 0 0 30px; font-size: clamp(42px, 5vw, 68px); line-height: .95; letter-spacing: -.055em; }
.reference-feature-copy p { color: #aaa; }
.reference-feature-link { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.18); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.reference-feature-link b { font-size: 25px; transition: transform .25s ease; }
.reference-feature-grid:hover .reference-feature-media img { transform: scale(1.025); }
.reference-feature-grid:hover .reference-feature-link b { transform: translate(4px,-4px); }

.projects-hero { padding: 104px 0 96px; text-align: center; }
.projects-hero .eyebrow { width: max-content; margin-inline: auto; }
.projects-hero h1 { margin: 28px auto; max-width: 980px; font-size: clamp(46px, 6vw, 78px); line-height: .95; letter-spacing: -.055em; font-weight: 280; text-transform: uppercase; }
.projects-hero h1 strong { font-weight: 850; }
.projects-hero p { max-width: 580px; margin: 0 auto; color: #aaa; font-size: 16px; }
.filters { position: sticky; z-index: 10; top: 10px; display: flex; gap: 8px; overflow-x: auto; padding: 10px; margin: -30px 0 80px; background: color-mix(in srgb, var(--bg) 90%, transparent); border: 1px solid var(--line); backdrop-filter: blur(18px); scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.filters button { flex: 0 0 auto; min-height: 42px; padding: 0 16px; border: 1px solid transparent; background: transparent; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.filters button:hover { color: var(--text); }
.filters button.active { background: var(--text); color: var(--bg); }
.empty-state { padding: 80px 20px; text-align: center; border: 1px solid var(--line); }
.empty-state p { color: var(--muted); }
.project-cta { padding: 88px 0; }
.project-cta .shell { display: grid; grid-template-columns: 1fr 2fr auto; align-items: end; gap: 50px; }
.project-cta p { color: #aaa; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.project-cta h2 { margin: 0; font-size: clamp(48px, 6vw, 78px); line-height: .9; letter-spacing: -.055em; }

.case-detail-hero { padding: 78px 0 112px; }
.case-back { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 88px; color: #999; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.case-back span { font-size: 18px; transition: transform .25s ease; }
.case-back:hover span { transform: translateX(-4px); }
.case-detail-hero .eyebrow { margin-bottom: 28px; }
.case-detail-hero h1 { max-width: 1120px; margin: 0; font-size: clamp(50px, 7.3vw, 104px); line-height: .88; letter-spacing: -.065em; text-transform: uppercase; }
.case-detail-hero > .shell > p { max-width: 720px; margin: 42px 0 58px auto; color: #aaa; font-size: 18px; }
.case-hero-facts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); max-width: 720px; margin-left: auto; border-block: 1px solid rgba(255,255,255,.18); }
.case-hero-facts > span { padding: 17px 20px 17px 0; border-right: 1px solid rgba(255,255,255,.18); }
.case-hero-facts > span:not(:first-child) { padding-left: 20px; }
.case-hero-facts > span:last-child { border-right: 0; }
.case-hero-facts small, .case-hero-facts b { display: block; }
.case-hero-facts small { margin-bottom: 7px; color: #777; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.case-hero-facts b { font-size: 11px; }
.case-cover { padding: 0 0 100px; background: var(--dark); }
.case-cover .shell { overflow: hidden; }
.case-cover img { width: 100%; height: min(72vw, 780px); object-fit: cover; }
.case-overview-grid { display: grid; grid-template-columns: 260px 1fr; gap: 72px; }
.case-overview-copy h2 { max-width: 900px; margin: 0; font-size: clamp(30px, 3.8vw, 52px); line-height: 1.08; letter-spacing: -.04em; font-weight: 450; }
.case-scope { display: grid; grid-template-columns: 170px 1fr; gap: 28px; margin-top: 62px; padding-top: 25px; border-top: 1px solid var(--line); }
.case-scope span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.case-scope p { max-width: 720px; margin: 0; }
.case-narrative-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); }
.case-narrative article { min-height: 440px; padding: clamp(34px, 5vw, 70px); background: #080808; display: flex; flex-direction: column; }
.case-narrative article > span { color: #777; font-size: 9px; letter-spacing: .14em; }
.case-narrative h2 { margin: auto 0 24px; font-size: clamp(36px, 4vw, 58px); letter-spacing: -.05em; }
.case-narrative p { margin: 0; color: #aaa; font-size: 15px; }
.case-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.case-gallery-grid figure { margin: 0; overflow: hidden; background: var(--surface-2); }
.case-gallery-grid figure.case-gallery-wide { grid-column: auto; }
.case-gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .8s cubic-bezier(.2,.65,.25,1); }
.case-gallery-grid .case-gallery-wide img { aspect-ratio: 4/3; }
.case-gallery-grid figure:hover img { transform: scale(1.02); }
.case-next { padding: 0; }
.case-next .shell { position: relative; display: block; padding-block: 90px; }
.case-next span { color: #888; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.case-next h2 { max-width: 1000px; margin: 22px 90px 0 0; font-size: clamp(42px, 6vw, 82px); line-height: .92; letter-spacing: -.06em; }
.case-next b { position: absolute; right: 0; bottom: 88px; font-size: 42px; transition: transform .3s ease; }
.case-next a:hover b { transform: translate(6px,-6px); }
.case-not-found { min-height: 70vh; padding: 120px 0; }
.case-not-found h1 { max-width: 850px; font-size: clamp(48px, 7vw, 90px); line-height: .95; letter-spacing: -.06em; }

.floating-contact {
  position: fixed;
  z-index: 44;
  left: 50%;
  bottom: calc(18px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .25s ease, transform .25s ease, background-color .25s ease;
}
body.floating-ready .floating-contact { opacity: 1; pointer-events: auto; transform: translateX(-50%); }
.floating-contact a { display: flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 14px; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; transition: background-color .2s ease, color .2s ease; }
.floating-contact a:hover, .floating-contact a:focus-visible { outline: none; background: var(--accent); color: #080808; }
.floating-contact svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.floating-divider { width: 1px; height: 22px; background: var(--line); }

.cookie-banner {
  position: fixed;
  z-index: 70;
  left: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom));
  width: min(405px, calc(100vw - 44px));
  padding: 22px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  color: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
}
.cookie-banner[hidden] { display: none; }
.cookie-topline { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.cookie-topline i { flex: 1; height: 1px; background: var(--line); }
.cookie-banner h2 { margin: 0 0 10px; font-size: 25px; line-height: 1.05; letter-spacing: -.035em; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.cookie-more { display: inline-block; margin-top: 10px; color: var(--text); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-decoration: underline; text-underline-offset: 3px; text-transform: uppercase; }
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 19px; }
.cookie-actions button { min-height: 44px; padding: 0 12px; border: 1px solid var(--line); background: transparent; color: var(--text); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: background-color .2s ease, border-color .2s ease, color .2s ease; }
.cookie-actions button:hover, .cookie-actions button:focus-visible { outline: none; border-color: var(--text); }
.cookie-actions .cookie-accept { border-color: var(--accent); background: var(--accent); color: #080808; }
.cookie-actions .cookie-accept:hover, .cookie-actions .cookie-accept:focus-visible { border-color: var(--text); background: var(--text); color: var(--bg); }

.project-dialog { width: min(1180px, calc(100vw - 40px)); max-height: calc(100vh - 40px); padding: 0; border: 1px solid var(--line); background: var(--surface); color: var(--text); box-shadow: var(--shadow); }
.project-dialog::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
.dialog-close { position: fixed; z-index: 5; top: 34px; right: 34px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--text); color: var(--bg); font-size: 27px; line-height: 1; }
.dialog-layout { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 620px; }
.dialog-layout img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.dialog-copy { padding: clamp(34px, 5vw, 72px); display: flex; flex-direction: column; }
.dialog-copy .eyebrow { margin-bottom: 30px; }
.dialog-copy h2 { font-size: clamp(35px, 4vw, 62px); line-height: .95; letter-spacing: -.055em; }
.dialog-copy p { color: var(--muted); }
.dialog-facts { margin-top: auto; padding-top: 35px; border-top: 1px solid var(--line); }
.dialog-facts span { display: flex; justify-content: space-between; padding: 8px 0; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.dialog-facts b { color: var(--text); }

.film-dialog { width: min(1280px, calc(100vw - 32px)); max-width: none; max-height: calc(100vh - 32px); padding: 0; border: 1px solid rgba(255,255,255,.2); background: #050505; color: #f7f7f3; box-shadow: 0 28px 90px rgba(0,0,0,.58); overflow: hidden; }
.film-dialog::backdrop { background: rgba(0,0,0,.9); backdrop-filter: blur(10px); }
.film-dialog-close { position: fixed; z-index: 6; top: 24px; right: 24px; width: 46px; height: 46px; display: grid; place-items: center; padding: 0 0 3px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: #f4f4ef; color: #050505; font-size: 27px; line-height: 1; }
.film-dialog-media { position: relative; width: 100%; background: #050505; }
.film-dialog video { display: block; width: 100%; max-height: calc(100vh - 32px); aspect-ratio: 16 / 9; object-fit: contain; background: #050505; }
.film-dialog .field-film-mask { z-index: 1; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1160px) {
  :root { --shell: min(100% - 48px, 1180px); }
  .desktop-nav { gap: 20px; }
  .nav-cta { display: none; }
  .brand { width: 184px; }
  .commitment-grid { gap: 7vw; }
  .partner-benefits { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .partner-benefits article { border-bottom: 1px solid var(--line); }
  .partner-benefits article:nth-child(3) { border-right: 0; }
  .partner-benefits article:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 32px); --nav-h: 62px; }
  .utility-bar { display: none; }
  .nav { gap: 12px; }
  .brand { width: min(176px, 47vw); }
  .scope-badge { display: none; }
  .desktop-nav { display: none; }
  .nav-actions { margin-left: auto; }
  .menu-toggle { display: grid; }
  .mobile-menu { inset: 62px 0 0; }
  .section-pad { padding: 78px 0; }
  .hero { min-height: auto; }
  .hero-inner { padding: 62px 0 68px; }
  .hero h1 { font-size: clamp(38px, 10.2vw, 60px); }
  .hero h1 .hero-title-line { display: inline; white-space: normal; }
  html[lang="de"] .hero h1 { overflow-wrap: anywhere; hyphens: auto; }
  .hero-copy { margin: 0 auto; }
  .hero-action-bar { grid-template-columns: 1fr auto; }
  .hero-gallery-head { margin-top: 76px; }
  .hero-gallery { display: flex; height: auto; margin-right: -16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .hero-gallery::-webkit-scrollbar { display: none; }
  .hero-image { flex: 0 0 min(76vw, 520px); scroll-snap-align: start; }
  .hero-image-c { display: block; }
  .hero-image-b { transform: none; }
  .hero-stats div { padding: 12px 10px; }
  .split-heading { grid-template-columns: 1fr; gap: 42px; }
  .about-statement h2 { margin-bottom: 50px; }
  .about-columns { gap: 30px; }
  .about-columns p { min-height: 0; }
  .section-head { gap: 11px; margin-bottom: 44px; }
  .section-head > p { max-width: none; }
  .section-head > .text-link { justify-self: start; }
  .field-film-head { grid-template-columns: 1fr; align-items: start; gap: 30px; }
  .field-film-head h2 { max-width: 680px; }
  .field-film-mask { left: 10%; top: 28%; width: 80%; height: 45%; }
  .commitment-grid, .contact-grid { grid-template-columns: 1fr; gap: 70px; }
  .case-feature-grid, .trust-layout { grid-template-columns: 1fr; }
  .case-feature-media { min-height: 58vw; }
  .trust-layout { gap: 55px; }
  .trust-grid article { min-height: 310px; }
  .commitment-visual { width: 75%; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
  .project-grid { grid-template-columns: repeat(2, 1fr); gap: 42px 14px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr; }
  .projects-hero { padding: 90px 0; }
  .project-cta .shell { grid-template-columns: 1fr; align-items: start; }
  .dialog-layout { grid-template-columns: 1fr; }
  .dialog-layout img { min-height: 50vh; max-height: 58vh; }
  .case-detail-hero { padding: 64px 0 86px; }
  .case-back { margin-bottom: 64px; }
  .case-detail-hero > .shell > p { margin-left: 0; }
  .case-hero-facts { margin-left: 0; }
  .case-overview-grid { grid-template-columns: 1fr; gap: 44px; }
  .case-gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .content-hero { min-height: 580px; padding: 76px 0 88px; }
  .content-hero-grid, .page-section-head, .partner-promise-grid { grid-template-columns: 1fr; gap: 38px; }
  .content-hero h1 { font-size: clamp(42px, 7.5vw, 50px); }
  .content-hero p { margin-left: 0; }
  .legal-section { padding: 82px 0 105px; }
  .legal-shell { grid-template-columns: 1fr; gap: 44px; }
  .legal-aside { position: static; }
  .legal-aside p { max-width: 520px; }
  .origin-grid, .environment-grid, .scope-showcase { grid-template-columns: 1fr; gap: 58px; }
  .origin-visual { width: 72%; }
  .milestone-grid, .company-process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .milestone-grid article:nth-child(2), .company-process-grid article:nth-child(2) { border-right: 0; }
  .milestone-grid article, .company-process-grid article { border-bottom: 1px solid var(--line); }
  .milestone-grid article:last-child, .company-process-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .value-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .value-grid article { border-bottom: 1px solid var(--line); }
  .value-grid article:nth-child(2) { border-right: 0; }
  .value-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .page-cta-grid { grid-template-columns: 1fr; gap: 35px; align-items: start; }
  .partner-benefits { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .partner-benefits article:nth-child(odd) { border-right: 1px solid var(--line); }
  .partner-benefits article:nth-child(even) { border-right: 0; }
  .partner-benefits article:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .partner-benefits article:last-child { border-bottom: 0; }
  .scope-showcase-media { position: static; width: 72%; }
  .reference-feature-grid { grid-template-columns: 1fr; }
  .reference-feature-media { min-height: 58vw; }
  .reference-feature-copy { min-height: 520px; border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
}

@media (max-width: 1000px) {
  body.cookie-open .floating-contact { opacity: 0; pointer-events: none; transform: translate(-50%, 12px); }
}

@media (max-width: 560px) {
  .nav { gap: 6px; }
  .brand { width: min(142px, 38vw); }
  .nav-actions { gap: 5px; }
  .language-control { display: block; }
  .language-control select { width: 44px; min-width: 44px; height: 40px; padding: 0 15px 0 7px; background-position: calc(100% - 10px) 17px, calc(100% - 6px) 17px; font-size: 10px; }
  .icon-button { width: 40px; height: 40px; }
  .hero .eyebrow { width: 100%; max-width: 100%; justify-content: center; margin-bottom: 22px; text-align: center; }
  .hero h1 { font-size: clamp(34px, 10.5vw, 48px); }
  .hero-copy p { font-size: 14px; }
  .hero-action-bar { grid-template-columns: 1fr; }
  .hero-action-bar span { min-height: 48px; }
  .hero-action-bar b { min-height: 48px; justify-content: center; }
  .hero-gallery-head { margin-top: 68px; }
  .hero-gallery { margin-right: -16px; }
  .hero-image { flex-basis: 82vw; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); border-inline: 0; }
  .hero-stats div { display: block; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 0; padding: 13px 6px; }
  .hero-stats strong { font-size: 27px; }
  .hero-stats span { margin-top: 6px; font-size: 7px; }
  .about-columns, .form-row { grid-template-columns: 1fr; gap: 12px; }
  .service-list a { grid-template-columns: 40px 1fr 28px; min-height: 84px; }
  .service-list a::before { display: none; }
  .service-list h3 { font-size: 25px; }
  .field-film-head { margin-bottom: 32px; }
  .field-film-head h2 { margin-bottom: 17px; font-size: clamp(38px, 11vw, 52px); }
  .field-film-head p { font-size: 14px; }
  .field-film-frame { aspect-ratio: 4 / 5; }
  .field-film-frame > video { object-position: center; }
  .field-film-mask { left: 0; top: 30%; width: 100%; height: 40%; padding: 24px 20px; border-inline: 0; }
  .field-film-mask::after { top: 24px; right: 20px; }
  .field-film-mask strong { max-width: calc(100% - 10px); font-size: clamp(26px, 8.3vw, 36px); }
  .field-film-open { right: 12px; bottom: 12px; min-height: 43px; gap: 18px; padding-inline: 14px; font-size: 9px; }
  .film-dialog { width: calc(100vw - 16px); max-height: calc(100vh - 16px); }
  .film-dialog-close { top: 14px; right: 14px; width: 42px; height: 42px; }
  .film-dialog video { max-height: calc(100vh - 16px); }
  .commitment-visual { width: calc(100% - 16px); margin-left: 16px; }
  .principles { grid-template-columns: 1fr; }
  .principles span, .principles span:not(:first-child) { padding: 15px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .project-grid { grid-template-columns: minmax(0, 1fr); }
  .project-card { min-width: 0; }
  .project-card-meta { display: block; }
  .project-card-meta h3 { min-height: 0; font-size: clamp(24px, 7vw, 30px); overflow-wrap: normal; }
  .project-card-facts { min-height: 0; }
  .selected-projects .section-head { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; text-align: left; }
  .selected-projects .section-head > div { align-items: flex-start; }
  .selected-projects .section-head > .text-link { margin-top: 8px; }
  .project-card:nth-child(n) .project-card-media { aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-wrap: wrap; }
  .footer-bottom a, .footer-bottom a:first-of-type { width: 100%; margin-left: 0; }
  .filters { margin-inline: -16px; border-inline: 0; }
  .projects-hero h1 { font-size: 14vw; }
  .dialog-close { top: 28px; right: 28px; }
  .dialog-layout img { min-height: 42vh; }
  .floating-contact { bottom: calc(11px + env(safe-area-inset-bottom)); padding: 4px; }
  .floating-contact a { min-height: 38px; padding-inline: 12px; }
  .cookie-banner { left: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); width: calc(100vw - 24px); padding: 18px; }
  .cookie-banner h2 { font-size: 22px; }
  .cookie-banner p { font-size: 12px; }
  .cookie-actions { margin-top: 16px; }
  .case-feature { padding: 74px 0; }
  .case-feature-media { min-height: 105vw; }
  .case-feature-copy { padding: 34px 24px; }
  .case-feature-label { margin-top: 80px; }
  .case-feature-copy h2 { overflow-wrap: anywhere; hyphens: auto; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: 245px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid article:last-child { border-bottom: 0; }
  .case-detail-hero h1 { font-size: clamp(34px, 10.5vw, 48px); overflow-wrap: anywhere; word-break: normal; hyphens: auto; text-wrap: balance; }
  html[lang="de"] .case-detail-hero h1 { font-size: clamp(26px, 8.5vw, 42px); }
  .case-detail-hero > .shell > p { margin-top: 30px; font-size: 15px; }
  .case-hero-facts { grid-template-columns: 1fr; }
  .case-hero-facts > span, .case-hero-facts > span:not(:first-child) { padding: 13px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .case-hero-facts > span:last-child { border-bottom: 0; }
  .case-cover { padding-bottom: 72px; }
  .case-cover img { height: auto; aspect-ratio: 4/3; }
  .case-overview-copy h2 { font-size: 29px; }
  .case-scope { grid-template-columns: 1fr; gap: 12px; margin-top: 44px; }
  .case-narrative-grid, .case-gallery-grid { grid-template-columns: 1fr; }
  .case-narrative article { min-height: 360px; }
  .case-gallery-grid figure.case-gallery-wide { grid-column: auto; }
  .case-gallery-grid .case-gallery-wide img { aspect-ratio: 4/3; }
  .case-next .shell { padding-block: 70px; }
  .case-next h2 { margin-right: 50px; overflow-wrap: anywhere; hyphens: auto; }
  .case-next b { right: 0; bottom: 66px; }
  .content-hero { min-height: 540px; padding: 62px 0 72px; }
  .content-hero h1 { font-size: clamp(36px, 11.5vw, 52px); overflow-wrap: normal; word-break: normal; hyphens: none; }
  .content-hero h1 .hero-line { display: inline; white-space: normal; }
  html[lang="de"] .content-hero h1 { font-size: clamp(26px, 8.5vw, 42px); }
  body[data-page="about"] .content-hero h1,
  body[data-page="companies"] .content-hero h1 { font-size: clamp(22px, 7.8vw, 34px); }
  body[data-page="privacy"] .content-hero h1,
  body[data-page="terms"] .content-hero h1 { font-size: clamp(31px, 9.8vw, 44px); }
  body[data-page="about"] .content-hero h1 .hero-line,
  body[data-page="companies"] .content-hero h1 .hero-line { display: inline-block; white-space: nowrap; }
  .content-hero p { margin-top: 30px; font-size: 15px; }
  .origin-visual, .scope-showcase-media { width: 100%; }
  .origin-copy h2, .page-section-head h2, .environment-copy h2, .partner-promise-copy h2, .scope-showcase-copy > h2, .reference-feature-copy h2, .page-cta h2 { font-size: 38px; }
  html[lang="de"] .origin-copy h2, html[lang="de"] .page-section-head h2, html[lang="de"] .environment-copy h2, html[lang="de"] .partner-promise-copy h2, html[lang="de"] .scope-showcase-copy > h2, html[lang="de"] .reference-feature-copy h2, html[lang="de"] .page-cta h2 { font-size: 32px; overflow-wrap: normal; word-break: normal; hyphens: none; }
  .milestone-grid, .value-grid, .partner-benefits, .company-process-grid { grid-template-columns: 1fr; }
  .milestone-grid article, .value-grid article, .partner-benefits article, .company-process-grid article { min-height: 245px; border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .milestone-grid article:last-child, .value-grid article:last-child, .partner-benefits article:last-child, .company-process-grid article:last-child { border-bottom: 0 !important; }
  .environment-grid { gap: 45px; }
  .environment-list { font-size: 10px; }
  .page-cta { padding: 76px 0; }
  .page-cta .button { max-width: 100%; white-space: normal; text-align: center; }
  .reference-feature-media { min-height: 94vw; }
  .reference-feature-copy { min-height: 500px; padding: 38px 24px; }
  .reference-feature-copy .eyebrow { margin-bottom: 72px; }
}

@media (max-width: 360px) {
  .brand { width: 118px; }
  .language-control select { width: 42px; min-width: 42px; height: 38px; }
  .icon-button { width: 38px; height: 38px; }
  .hero .eyebrow { width: auto; max-width: 100%; justify-content: center; text-align: center; }
  .hero-gallery-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-gallery-head .text-link { gap: 10px; }
  .floating-contact a { padding-inline: 10px; }
}

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