:root {
  color-scheme: dark;
  --ink: #090b0c;
  --ink-2: #0e1214;
  --panel: #14191c;
  --line: rgba(255, 255, 255, .12);
  --line-dark: rgba(8, 10, 11, .16);
  --paper: #f0eee8;
  --white: #fbfaf7;
  --muted: #a9b0b3;
  --muted-dark: #545b5f;
  --gold: #d5a746;
  --gold-light: #f0c76d;
  --gold-dark: #9d741f;
  --max: 1240px;
  --hero-max: 1500px;
  --header: 68px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 12px); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font: 16px/1.55 Inter, "Helvetica Neue", Arial, sans-serif;
}
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }
.skip-link {
  position: fixed; z-index: 999; top: 10px; left: 10px;
  padding: 10px 14px; background: var(--paper); color: var(--ink);
  transform: translateY(-150%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto;
  min-height: var(--header); background: rgba(251, 250, 247, .96);
  border-bottom: 1px solid rgba(9, 11, 12, .16); backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: var(--header); display: grid; grid-template-columns: 168px 1fr auto;
  align-items: center; gap: 22px;
}
.brand, .footer-brand {
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: transparent; border: 0;
}
.brand { width: 140px; height: 56px; padding: 4px 11px; }
.brand img { width: auto; height: 45px; max-width: 100%; flex: 0 0 auto; }
.footer-brand img { width: auto; height: 38px; max-width: 100%; flex: 0 0 auto; }
.main-nav { justify-self: end; }
.main-nav ul { display: flex; align-items: center; gap: clamp(13px, 2vw, 24px); margin: 0; padding: 0; list-style: none; }
.main-nav a {
  position: relative; display: inline-flex; align-items: center; min-height: 36px;
  color: #303638; font-size: .75rem; font-weight: 750; letter-spacing: .09em;
  text-transform: uppercase; white-space: nowrap;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 5px;
  height: 2px; background: var(--gold); transition: right .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.language-switch { position: relative; z-index: 122; display: inline-flex; align-items: center; height: 32px; padding: 2px; border: 1px solid rgba(9,11,12,.24); background: var(--white); }
.language-switch a { display: grid; place-items: center; min-width: 28px; height: 26px; padding: 0 6px; color: #555c5f; font-size: .75rem; font-weight: 850; letter-spacing: .08em; }
.language-switch a:hover { color: var(--ink); }
.language-switch a[aria-current="page"] { background: var(--gold); color: var(--ink); }
.nav-cta, .button {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  min-height: 40px; padding: 0 16px; border: 1px solid transparent; border-radius: 0;
  background: var(--gold); color: var(--ink); font-size: .78rem; font-weight: 850;
  letter-spacing: .07em; text-transform: uppercase; cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.nav-cta:hover, .button:hover { background: var(--gold-light); transform: translateY(-2px); }
.button.secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.button.secondary:hover { border-color: var(--gold); color: var(--gold-light); }
.button.dark { background: var(--ink); color: var(--white); }
.button.dark:hover { background: #24292c; }
.arrow { font-size: 1.2rem; line-height: 1; transition: transform .2s ease; }
.button:hover .arrow, .nav-cta:hover .arrow { transform: translateX(4px); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(9,11,12,.22); background: transparent; color: var(--ink); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 21px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }
.menu-backdrop { display: none; }

main { min-height: 100vh; }
section { position: relative; scroll-margin-top: calc(var(--header) + 12px); }
.hero {
  --hero-left: max(20px, calc((100% - var(--max)) / 2));
  width: 100%; min-height: 638px; margin: 0; padding-top: var(--header); display: grid;
  grid-template-columns: minmax(500px, .78fr) minmax(0, 1.22fr);
  background: radial-gradient(circle at 10% 20%, rgba(213,167,70,.12), transparent 28%), linear-gradient(120deg, #080a0b, #0d1113 58%, #07090a);
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  position: relative; z-index: 2; align-self: center; min-width: 0;
  width: auto; margin-left: 0;
  padding: 69px clamp(14px, 2vw, 28px) 69px var(--hero-left);
}
.eyebrow {
  display: flex; align-items: center; gap: 11px; margin: 0 0 18px;
  color: var(--gold-light); font-size: .75rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; flex: 0 0 30px; background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif; line-height: .98; letter-spacing: -.045em; text-wrap: balance; }
h1 { max-width: 100%; margin-bottom: 22px; font-size: clamp(2.48rem, 4.15vw, 3.45rem); font-weight: 900; text-transform: uppercase; }
.hero-title-line { display: block; color: var(--white); white-space: nowrap; }
.hero-title-accent { color: var(--gold-light); font-size: .92em; }
.hero-lead { max-width: 488px; margin-bottom: 29px; color: #c7cccf; font-size: clamp(1.05rem, 1.35vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-media {
  position: relative; min-width: 0; min-height: 570px; overflow: hidden;
  width: calc(100% + 64px); margin-left: -64px;
  isolation: isolate; background: #0b0e10; border-left: 1px solid var(--line);
}
.hero-photo {
  position: absolute; inset: 0; overflow: hidden; background: none !important;
}
.hero-photo::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(8,10,11,.04), rgba(8,10,11,.34)), var(--hero-image);
  background-repeat: no-repeat; background-size: auto, var(--hero-size, cover);
  background-position: center, var(--hero-x, 50%) var(--hero-y, 50%);
  transform: translateX(var(--hero-pan-x, 0%)) scale(var(--hero-zoom, 1));
  transform-origin: var(--hero-x, 50%) var(--hero-y, 50%);
  transition: transform .25s ease, background-position .25s ease;
}
.hero-photo-warehouse {
  --hero-image: url("assets/warehouse-racking-aisle.jpg"); --hero-size: cover; --hero-x: 50%; --hero-y: 50%;
  background-image: linear-gradient(180deg, rgba(8,10,11,.03), rgba(8,10,11,.32)), url("assets/warehouse-racking-aisle.jpg");
  background-position: center center;
  clip-path: polygon(0 0, 29% 0, 21% 100%, 0 100%);
}
.hero-photo-hardware-aisle {
  --hero-image: url("assets/hardware-store-aisle.jpg"); --hero-size: cover; --hero-x: 50%; --hero-y: 58%;
  background-color: #151719;
  background-image: linear-gradient(180deg, rgba(8,10,11,.04), rgba(8,10,11,.32)), url("assets/hardware-store-aisle.jpg");
  background-position: center 58%;
  background-size: cover;
  clip-path: polygon(29% 0, 57% 0, 49% 100%, 21% 100%);
}
.hero-photo-retail {
  --hero-image: url("assets/hardware-store-tool-display.jpg"); --hero-size: 38% auto; --hero-x: 62%; --hero-y: 50%;
  background-color: #151719;
  background-image: linear-gradient(180deg, rgba(8,10,11,.04), rgba(8,10,11,.34)), url("assets/hardware-store-tool-display.jpg");
  background-position: 62% center;
  background-size: auto, 38% auto;
  clip-path: polygon(57% 0, 79% 0, 71% 100%, 49% 100%);
}
.hero-photo-furniture {
  --hero-image: url("assets/furniture-showroom-sofas.jpg"); --hero-size: cover; --hero-x: 50%; --hero-y: 72%;
  background-image: linear-gradient(180deg, rgba(8,10,11,.04), rgba(8,10,11,.52)), url("assets/furniture-showroom-sofas.jpg");
  background-position: center 72%;
  clip-path: polygon(79% 0, 100% 0, 100% 100%, 71% 100%);
}
.hero-divider {
  position: absolute; z-index: 2; inset: 0;
  background: rgba(240,199,109,.88); box-shadow: 0 0 0 1px rgba(8,10,11,.24), 0 0 18px rgba(213,167,70,.35);
  pointer-events: none;
}
.hero-divider-one { clip-path: polygon(28.75% 0, 29.08% 0, 21.08% 100%, 20.75% 100%); }
.hero-divider-two { clip-path: polygon(56.75% 0, 57.08% 0, 49.08% 100%, 48.75% 100%); }
.hero-divider-three { clip-path: polygon(78.75% 0, 79.08% 0, 71.08% 100%, 70.75% 100%); }

.section-pad { padding-block: clamp(72px, 7vw, 104px); }
.section-head { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(260px, .45fr); align-items: end; gap: clamp(34px, 5vw, 70px); margin-bottom: 48px; }
.section-head > *, .about-grid > *, .team-layout > *, .contact-grid > *, .footer-grid > * { min-width: 0; }
.section-head h2 { max-width: 820px; margin: 0; font-size: clamp(2.05rem, 3.65vw, 3.3rem); font-weight: 900; overflow-wrap: break-word; text-transform: uppercase; }
.section-head > p { margin: 0; color: var(--muted); }
.light { background: var(--paper); color: var(--ink); }
.light .eyebrow { color: var(--gold-dark); }
.light .section-head > p { color: var(--muted-dark); }

.about-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(304px, .95fr); gap: clamp(34px, 7vw, 75px); align-items: start; }
.about-copy .large-copy { max-width: 544px; margin-bottom: 21px; font-size: clamp(1rem, 1.9vw, 1.32rem); line-height: 1.4; }
.about-copy p:not(.large-copy) { max-width: 520px; color: var(--muted-dark); }
.about-rule { width: 72px; height: 3px; margin: 29px 0; background: var(--gold); }
.why-card { position: relative; padding: 30px; background: var(--ink-2); color: var(--white); box-shadow: 14px 14px 0 var(--gold); }
.why-card h3 { margin-bottom: 22px; font-size: 1.25rem; letter-spacing: -.02em; text-transform: uppercase; }
.why-list { margin: 0; padding: 0; list-style: none; }
.why-list li { display: grid; grid-template-columns: 94px 1fr; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); }
.why-list strong { color: var(--gold-light); font-size: 1.25rem; line-height: 1.1; }
.why-list span { color: #c4c9cb; font-size: .92rem; }

.services { background: linear-gradient(135deg, rgba(213,167,70,.07), transparent 32%), var(--ink-2); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: auto; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card { width: 100%; min-width: 0; min-height: 270px; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(24px, 2.4vw, 32px); border: 0; background: var(--panel); color: var(--white); text-align: left; cursor: pointer; transition: background .25s ease, transform .25s var(--ease); }
.service-card:hover { position: relative; z-index: 1; background: #20272a; transform: translateY(-5px); }
.service-card.featured { background: linear-gradient(145deg, #242015, #15191b 62%); }
.service-index { margin-bottom: clamp(24px, 2.5vw, 34px); color: var(--gold-light); font-size: .78rem; font-weight: 800; letter-spacing: .16em; }
.service-card h3 { margin-bottom: 13px; font-size: clamp(1.18rem, 1.55vw, 1.5rem); line-height: 1.08; letter-spacing: -.02em; overflow-wrap: normal; hyphens: manual; text-wrap: balance; text-transform: uppercase; }
.service-card h3 wbr { display: inline; }
[data-page-language="de"] .service-card h3 { font-size: clamp(1.08rem, 1.42vw, 1.38rem); }
.service-card p { margin-bottom: 24px; color: var(--muted); font-size: .96rem; line-height: 1.55; }
.service-link { margin-top: auto; color: var(--gold-light); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.realization-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, 232px); gap: 14px; }
.managed-project-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.managed-project { min-width: 0; background: #0d1113; color: var(--white); }
.managed-project .project-cover { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.managed-project .project-copy { padding: 24px; }
.managed-project h3 { font-size: clamp(1.3rem,2vw,1.7rem); line-height: 1.15; margin-bottom: 14px; overflow-wrap: anywhere; }
.managed-project p { font-size: 1rem; color: #c3c8ca; overflow-wrap: anywhere; }
.project-gallery { display: flex; gap: 8px; margin-top: 20px; }
.project-gallery a { flex: 1; min-width: 0; }
.project-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: #171e22; }
@media(max-width:900px) { .managed-project-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media(max-width:620px) { .managed-project-grid { grid-template-columns: 1fr; } }
.project-card { position: relative; min-height: 208px; overflow: hidden; isolation: isolate; display: flex; flex-direction: column; justify-content: flex-end; background-color: #333a3e; background-position: center; background-size: cover; }
.project-one { grid-row: 1 / 3; background-image: linear-gradient(180deg, transparent 18%, rgba(6,8,9,.94)), url("assets/industrial-warehouse-pallet-racking.jpg"); }
.project-two { background-image: linear-gradient(180deg, transparent 18%, rgba(6,8,9,.94)), url("assets/modern-retail-boutique-interior.jpg"); }
.project-three { background-image: linear-gradient(180deg, transparent 18%, rgba(6,8,9,.94)), url("assets/supermarket-generic-produce-merchandising.jpg"); }
.project-card::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(135deg, rgba(213,167,70,.14), transparent 40%); transition: background .4s ease; }
.project-card:hover::before { background: linear-gradient(135deg, rgba(213,167,70,.25), transparent 50%); }
.project-copy { position: relative; z-index: 2; width: 100%; margin-top: auto; padding: 19px 22px 21px; background: #0d1113; border-top: 2px solid var(--gold); }
.project-tag { display: inline-flex; margin-bottom: 11px; color: var(--gold-light); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.project-card h3 { margin-bottom: 7px; font-size: clamp(1.16rem, 2.4vw, 1.8rem); letter-spacing: -.03em; text-transform: uppercase; }
.project-card p { max-width: 610px; margin: 0; color: #c3c8ca; font-size: .9rem; }
.projects-note { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 22px; padding-top: 19px; border-top: 1px solid var(--line-dark); color: var(--muted-dark); font-size: .92rem; }
.projects-note strong { color: var(--ink); }
.photo-sources { margin: 12px 0 0; color: #747b7e; font-size: .74rem; }

.team-section { background: #0b0e10; }
.team-layout { display: grid; grid-template-columns: minmax(0, 1.42fr) minmax(330px, .78fr); gap: clamp(28px, 4vw, 48px); }
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-content: start; gap: 11px; }
.person-card { background: var(--panel); border: 1px solid var(--line); }
.person-card.lead-person { grid-column: 1 / -1; width: calc((100% - 22px) / 3); justify-self: center; border-color: rgba(213,167,70,.5); }
.person-photo { position: relative; aspect-ratio: 10 / 9; overflow: hidden; background: linear-gradient(140deg, #c5c7c8, #777c7f); }
.person-photo::before { content: ""; position: absolute; top: 23%; left: 50%; width: 24%; aspect-ratio: 1; border-radius: 50%; background: rgba(35,38,40,.34); transform: translateX(-50%); }
.person-photo::after { content: ""; position: absolute; left: 50%; bottom: -10%; width: 58%; aspect-ratio: 1.18; border-radius: 50% 50% 10% 10%; background: rgba(35,38,40,.34); transform: translateX(-50%); }
.person-copy { padding: 16px; }
.person-copy strong, .person-copy span { display: block; }
.person-copy strong { margin-bottom: 6px; font-size: 1.02rem; line-height: 1.2; overflow-wrap: break-word; text-transform: uppercase; }
.person-copy span { color: var(--muted); font-size: .9rem; }
.resources-card { display: flex; flex-direction: column; min-height: 100%; padding: 29px; background: linear-gradient(160deg, #282215, #14191b 58%); border: 1px solid rgba(213,167,70,.28); }
.resources-card h3 { margin-bottom: 16px; font-size: clamp(1.44rem, 2.35vw, 1.95rem); line-height: 1.04; overflow-wrap: break-word; text-transform: uppercase; }
.resources-card > p:not(.eyebrow) { color: #c4c9cb; }
.resource-list { margin: 21px 0 27px; padding: 0; }
.resource-item { border-top: 1px solid var(--line); }
.resource-item:last-child { border-bottom: 1px solid var(--line); }
.resource-item summary {
  display: grid; grid-template-columns: minmax(0, 1fr) 28px; align-items: center; gap: 12px;
  padding: 12px 0; color: #d9dcdd; font-size: 1rem; font-weight: 700; line-height: 1.35;
  list-style: none; cursor: pointer;
}
.resource-item summary::-webkit-details-marker { display: none; }
.resource-item summary:hover { color: var(--white); }
.resource-plus {
  display: grid; place-items: center; width: 28px; height: 28px;
  border: 1px solid rgba(240,199,109,.55); color: var(--gold-light); font-size: 1.2rem; font-weight: 700; line-height: 1;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease;
}
.resource-item[open] .resource-plus { background: var(--gold); color: var(--ink); transform: rotate(45deg); }
.resource-item p { margin: -2px 40px 14px 0; color: #b9c0c3; font-size: .88rem; line-height: 1.5; }
.resources-card .button { align-self: flex-start; margin-top: auto; }

.collaboration { overflow: hidden; background: var(--gold); color: var(--ink); }
.collaboration::before { content: "AP"; position: absolute; right: -21px; bottom: -100px; color: rgba(9,11,12,.06); font: 900 20.8rem/1 Arial Black, Arial, sans-serif; letter-spacing: -.12em; pointer-events: none; }
.collaboration .eyebrow { color: var(--ink); }
.collaboration .eyebrow::before { background: var(--ink); }
.collaboration .section-head, .process, .day-night, .client-contact-panel { position: relative; z-index: 1; }
.collaboration .section-head > p { color: rgba(9,11,12,.7); }
.process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-block: 1px solid rgba(9,11,12,.28); }
.process-step { min-height: 182px; padding: 24px; border-right: 1px solid rgba(9,11,12,.28); }
.process-step:last-child { border-right: 0; }
.process-step > span { display: block; margin-bottom: 37px; font-size: .78rem; font-weight: 900; letter-spacing: .16em; }
.process-step h3 { margin-bottom: 10px; font-size: 1.12rem; letter-spacing: -.02em; text-transform: uppercase; }
.process-step p { margin: 0; color: rgba(9,11,12,.72); font-size: .9rem; }
.day-night { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 27px; }
.day-night strong { max-width: 576px; font-size: clamp(1rem, 2vw, 1.32rem); line-height: 1.35; }
.client-contact-panel { margin-top: clamp(46px, 7vw, 74px); background: #0b0e10; color: var(--white); border: 1px solid rgba(9,11,12,.3); box-shadow: 14px 14px 0 rgba(9,11,12,.16); }
.client-contact-panel.contact-grid { gap: 0; align-items: stretch; }
.client-contact-panel .contact-copy { padding: clamp(27px, 5vw, 48px); background: linear-gradient(150deg, #242015, #101416 58%); }
.collaboration .client-contact-panel .eyebrow { color: var(--gold-light); }
.collaboration .client-contact-panel .eyebrow::before { background: var(--gold); }
.client-contact-panel .contact-form { min-height: 100%; border: 0; border-left: 1px solid rgba(213,167,70,.28); }
.join-panel { display: grid; grid-template-columns: minmax(330px, .82fr) minmax(560px, 1.18fr); margin-top: clamp(46px, 7vw, 74px); background: #0b0e10; color: var(--white); border: 1px solid rgba(9,11,12,.3); box-shadow: 14px 14px 0 rgba(9,11,12,.16); }
.join-copy { min-width: 0; padding: clamp(27px, 5vw, 48px); background: linear-gradient(150deg, #242015, #101416 58%); }
.join-panel .eyebrow { color: var(--gold-light); }
.join-panel .eyebrow::before { background: var(--gold); }
.join-copy h2 { margin-bottom: 19px; font-size: clamp(1.84rem, 3.15vw, 2.75rem); line-height: 1.02; overflow-wrap: break-word; text-transform: uppercase; }
.join-copy h2 .title-line { display: block; }
.join-copy > p:not(.eyebrow) { color: #c5cacc; }
.join-points { margin: 27px 0 0; padding: 0; list-style: none; }
.join-points li { display: flex; gap: 10px; padding: 11px 0; border-top: 1px solid var(--line); color: #e1e3e4; }
.join-points li::before { content: "+"; flex: 0 0 auto; color: var(--gold-light); font-size: 1.15rem; font-weight: 900; line-height: 1.25; }
.join-form { min-width: 0; padding: clamp(27px, 4.5vw, 43px); background: var(--panel); border-left: 1px solid rgba(213,167,70,.28); }
.choice-field { min-width: 0; margin: 0; padding: 0; border: 0; }
.choice-field.full, .consent.full { grid-column: 1 / -1; }
.choice-field legend { margin-bottom: 9px; color: #c5cacc; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.choice-card { position: relative; cursor: pointer; }
.choice-card input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.choice-card > span { display: block; min-height: 75px; padding: 14px; border: 1px solid rgba(255,255,255,.19); background: #0d1113; transition: border-color .2s ease, background .2s ease; }
.choice-card strong, .choice-card small { display: block; }
.choice-card strong { margin-bottom: 5px; color: var(--white); font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; }
.choice-card small { color: var(--muted); font-size: .86rem; line-height: 1.4; }
.choice-card input:checked + span { border-color: var(--gold); background: #272113; box-shadow: inset 4px 0 0 var(--gold); }
.choice-card input:focus-visible + span { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.consent { display: flex; align-items: flex-start; gap: 12px; color: #c5cacc; font-size: .88rem; line-height: 1.45; cursor: pointer; }
.consent input { flex: 0 0 auto; width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--gold); }

.join-section { background: radial-gradient(circle at 90% 15%, rgba(213,167,70,.13), transparent 28%), var(--ink); border-top: 1px solid var(--line); }
.join-section .join-panel { margin-top: 0; border-color: rgba(213,167,70,.28); box-shadow: 14px 14px 0 rgba(213,167,70,.12); }
.contact-grid { display: grid; grid-template-columns: minmax(330px, .82fr) minmax(560px, 1.18fr); gap: clamp(40px, 6vw, 76px); align-items: start; }
.contact-copy h2 { max-width: 100%; margin-bottom: 22px; font-size: clamp(2rem, 2.8vw, 2.45rem); line-height: 1.04; font-weight: 900; overflow-wrap: break-word; text-transform: uppercase; }
.contact-copy > p { max-width: 520px; color: #c4c9cb; }
.contact-points { margin: 34px 0 0; padding: 0; list-style: none; }
.contact-points li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; padding: 12px 0; border-top: 1px solid var(--line); color: #d9dcdd; }
.contact-points span:first-child { color: var(--gold-light); font-weight: 900; }
.contact-form { padding: 29px; background: var(--panel); border: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #c5cacc; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 44px; padding: 11px 12px; border: 1px solid rgba(255,255,255,.19); border-radius: 0; background: #0d1113; color: var(--white); font-size: 1rem; }
.field textarea { min-height: 106px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #6f777b; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: 1px solid var(--gold); outline-offset: 0; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 19px; }
.form-footer p { max-width: 350px; margin: 0; color: var(--muted); font-size: .78rem; }

.site-footer { padding: 27px 0; background: var(--white); color: var(--ink); border-top: 1px solid rgba(9,11,12,.16); }
.footer-grid { display: grid; grid-template-columns: 152px 1fr auto; align-items: center; gap: 26px; }
.footer-brand { width: 130px; height: 50px; padding: 4px 10px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.footer-nav a { color: #353b3e; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-nav a:hover { color: var(--gold-dark); }
.copyright { margin: 0; color: #62696c; font-size: .75rem; text-align: right; }

dialog { width: min(620px, calc(100% - 32px)); max-height: calc(100dvh - 32px); padding: 0; overflow-x: hidden; overflow-y: auto; border: 1px solid rgba(213,167,70,.38); background: var(--panel); color: var(--white); box-shadow: 0 24px 80px rgba(0,0,0,.72); }
dialog::backdrop { background: rgba(2,3,4,.78); backdrop-filter: blur(5px); }
.dialog-inner { padding: clamp(26px, 4vw, 40px); }
.dialog-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.dialog-top > div { min-width: 0; flex: 1; }
.dialog-top .eyebrow { margin-bottom: 16px; }
.dialog-top h2 { margin-bottom: 18px; font-size: clamp(2rem, 4.4vw, 3.05rem); line-height: .98; overflow-wrap: normal; hyphens: manual; text-wrap: balance; text-transform: uppercase; }
[data-page-language="de"] .dialog-top h2 { font-size: clamp(1.8rem, 3.5vw, 2.25rem); letter-spacing: -.035em; }
.dialog-copy { color: #c6cbcd; }
.dialog-close { flex: 0 0 38px; width: 38px; height: 38px; padding: 0; border: 1px solid var(--line); background: transparent; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.dialog-close:hover { border-color: var(--gold); color: var(--gold-light); }
.dialog-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 22px 0; padding: 0; list-style: none; }
.dialog-details li { padding: 14px; background: #0d1113; color: #d0d4d5; font-size: .88rem; }
.toast { position: fixed; z-index: 300; right: 19px; bottom: 19px; width: min(336px, calc(100% - 38px)); padding: 14px 16px; background: var(--paper); color: var(--ink); border-left: 4px solid var(--gold); box-shadow: 0 14px 44px rgba(0,0,0,.38); transform: translateY(140%); opacity: 0; transition: transform .38s var(--ease), opacity .38s ease; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast strong, .toast span { display: block; }
.toast strong { margin-bottom: 3px; }
.toast span { color: #50575a; font-size: .88rem; }
.reveal { opacity: 0; transform: translateY(19px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1160px) {
  .nav-wrap { grid-template-columns: 150px 1fr auto; gap: 14px; }
  .brand { width: 134px; }
  .main-nav ul { gap: 12px; }
  .main-nav a { font-size: .68rem; }
  .nav-cta { display: none; }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr); }
  .hero-copy { padding-right: 29px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { min-height: 260px; padding: 26px 28px; }
  .service-card h3 { font-size: clamp(1.14rem, 2.25vw, 1.42rem); }
  [data-page-language="de"] .service-card h3 { font-size: clamp(1.05rem, 2.05vw, 1.3rem); }
  .join-panel, .contact-grid { grid-template-columns: minmax(290px, .82fr) minmax(470px, 1.18fr); }
}

@media (max-width: 1024px) {
  :root { --header: 70px; }
  .shell { width: min(calc(100% - 36px), var(--max)); }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .brand { width: 146px; height: 58px; }
  .brand img { height: 46px; }
  .nav-actions { gap: 9px; }
  .language-switch { height: 38px; }
  .language-switch a { min-width: 34px; height: 32px; }
  .button { min-height: 48px; padding-inline: 20px; }
  .menu-toggle { display: block; position: relative; z-index: 122; width: 48px; height: 48px; }
  .main-nav { position: fixed; z-index: 121; top: 0; right: 0; width: min(390px, 88vw); height: 100dvh; padding: 100px 30px 36px; background: var(--white); border-left: 1px solid rgba(9,11,12,.16); transform: translateX(105%); transition: transform .35s var(--ease); }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { display: grid; gap: 0; }
  .main-nav li { border-bottom: 1px solid rgba(9,11,12,.14); }
  .main-nav a { width: 100%; min-height: 58px; font-size: .82rem; }
  .main-nav a::after { bottom: -1px; }
  .menu-backdrop { display: block; position: fixed; z-index: 120; inset: 0; border: 0; background: rgba(0,0,0,.66); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .menu-backdrop.show { opacity: 1; pointer-events: auto; }
  .hero { width: min(calc(100% - 36px), var(--hero-max)); min-height: auto; margin-inline: auto; grid-template-columns: 1fr; }
  .hero-copy { width: 100%; margin: 0; padding: 78px 0 64px; }
  .hero-media { width: 100%; min-height: 520px; margin-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .section-head, .about-grid, .team-layout, .contact-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; gap: 20px; }
  .why-card { max-width: 660px; box-shadow: 12px 12px 0 var(--gold); }
  .realization-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 390px 280px; }
  .project-one { grid-column: 1 / -1; grid-row: auto; }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid rgba(9,11,12,.28); }
  .join-panel { grid-template-columns: 1fr; }
  .join-form { border-top: 1px solid rgba(213,167,70,.28); border-left: 0; }
  .client-contact-panel .contact-form { border-top: 1px solid rgba(213,167,70,.28); border-left: 0; }
  .contact-grid { gap: 0; }
  .footer-grid { grid-template-columns: 180px 1fr; }
  .copyright { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .brand { width: 132px; height: 56px; }
  .brand img { height: 44px; }
  .nav-actions { gap: 7px; }
  .language-switch a { min-width: 30px; padding-inline: 5px; }
  .hero { width: min(calc(100% - 28px), var(--hero-max)); }
  .hero-copy { width: 100%; padding-block: 64px 52px; }
  h1 { font-size: clamp(2.35rem, 10vw, 4.1rem); }
  .hero-title-line { white-space: normal; }
  .hero-actions, .day-night, .form-footer { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .day-night .button, .form-footer .button { width: 100%; }
  .hero-media { min-height: 420px; }
  .hero-photo-retail { background-size: auto, 66% auto; }
  .section-pad { padding-block: 70px; }
  .section-head { margin-bottom: 38px; }
  .about-grid { gap: 38px; }
  .why-card { padding: 28px 24px; box-shadow: 8px 8px 0 var(--gold); }
  .why-list li { grid-template-columns: 100px 1fr; }
  .why-list strong { font-size: 1.2rem; }
  .service-grid, .team-grid, .realization-grid, .form-grid, .process, .dialog-details, .choice-grid { grid-template-columns: 1fr; }
  .person-card.lead-person { grid-column: auto; width: 100%; justify-self: stretch; }
  .service-card { min-height: 238px; padding: 24px 22px; }
  .service-index { margin-bottom: 24px; }
  .service-card h3, [data-page-language="de"] .service-card h3 { font-size: clamp(1.18rem, 5.6vw, 1.48rem); }
  .dialog-top { gap: 14px; }
  .dialog-top h2 { font-size: clamp(1.75rem, 8vw, 2.45rem); }
  [data-page-language="de"] .dialog-top h2 { font-size: clamp(1.62rem, 7.3vw, 2.12rem); }
  .realization-grid { grid-template-rows: repeat(3, 360px); }
  .project-one { grid-column: auto; }
  .projects-note { align-items: flex-start; flex-direction: column; }
  .process-step, .process-step:nth-child(2) { min-height: 190px; border-right: 0; border-bottom: 1px solid rgba(9,11,12,.28); }
  .process-step:last-child { border-bottom: 0; }
  .process-step > span { margin-bottom: 34px; }
  .contact-form, .join-form, .dialog-inner { padding: 26px 20px; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { gap: 10px 18px; }
  .footer-brand { width: 160px; }
  .collaboration::before { font-size: 17rem; bottom: -65px; }
}

@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; }
}

/* Full photographs: no crop or diagonal masks. */
.hero-slideshow { display:flex; flex-direction:column; justify-content:center; }
.hero-slide-image { display:block; width:100%; height:clamp(330px,36vw,570px); object-fit:contain; object-position:center; background:#0b0e10; }
.hero-slide-controls { display:flex; gap:20px; align-items:center; justify-content:center; min-height:64px; padding:10px 16px; border-top:1px solid #665329; }
.hero-slide-dots { display:flex; flex-wrap:wrap; justify-content:center; gap:4px; }
.hero-slide-dot { display:grid; place-items:center; width:44px; height:44px; padding:0; border:0; background:transparent; cursor:pointer; }
.hero-slide-dot::before { content:""; width:14px; height:14px; border:2px solid #d8aa4a; background:transparent; }
.hero-slide-dot[aria-pressed="true"]::before { background:#d8aa4a; }
.hero-slide-dot:focus-visible,.hero-slide-pause:focus-visible { outline:2px solid #fff; outline-offset:2px; }
.hero-slide-pause { min-height:44px; border:0; background:transparent; color:#efc665; font-size:14px; cursor:pointer; }
.hero-slide-pause[hidden] { display:none; }
@media(max-width:700px) { .hero-slideshow { min-height:0; } .hero-slide-image { height:340px; } }

/* Spacious slideshow with controls over the photograph. */
@media (min-width: 1025px) {
  .hero { --hero-left:clamp(24px,3.5vw,68px); grid-template-columns:minmax(440px,.7fr) minmax(0,1.3fr); }
  .hero-copy { padding-right:24px; }
  .hero-media.hero-slideshow { width:100%; margin-left:0; }
  .hero h1 { font-size:clamp(2.3rem,3.2vw,3.45rem); }
}
.hero-media.hero-slideshow { min-height:0; align-self:stretch; border:0; }
.hero-slideshow .hero-slide-image { height:clamp(440px,43vw,740px); background:transparent; }
.hero-slide-controls { position:absolute; z-index:5; bottom:22px; left:50%; transform:translateX(-50%); width:max-content; max-width:calc(100% - 24px); min-height:52px; padding:4px 12px; gap:12px; border:1px solid rgba(216,170,74,.35); border-radius:8px; background:rgba(8,10,11,.76); backdrop-filter:blur(10px); box-shadow:0 4px 24px rgba(0,0,0,.22); }
.hero-slide-dot::before { box-shadow:0 1px 5px rgba(0,0,0,.45); }
@media(max-width:1024px) { .hero-slideshow .hero-slide-image { height:auto; max-height:620px; min-height:280px; aspect-ratio:4/3; } }
@media(max-width:540px) { .hero-slideshow .hero-slide-image { min-height:250px; } .hero-slide-controls { bottom:12px; gap:4px; padding:2px 6px; } .hero-slide-dots { gap:0; } }
.person-photo.has-photo{background:#151a1c}.person-photo.has-photo::before,.person-photo.has-photo::after{display:none}.person-photo.has-photo img{display:block;width:100%;height:100%;object-fit:contain}
.person-photo.has-photo img{position:absolute;inset:0}
.project-slider{position:relative;aspect-ratio:4/3;background:#0b0e10;overflow:hidden}
.project-slide{position:absolute;inset:0;display:block}.project-slide[hidden]{display:none}
.managed-project .project-slider .project-cover{display:block;width:100%;height:100%;object-fit:cover}
.project-slider-controls{position:absolute;z-index:2;left:50%;bottom:12px;transform:translateX(-50%);display:flex;padding:2px 6px;background:rgba(8,10,11,.76);border:1px solid rgba(216,170,74,.4);border-radius:6px;backdrop-filter:blur(8px)}
.project-dot,.project-pause{width:44px;height:44px;display:grid;place-items:center;border:0;background:transparent;color:#efc665;cursor:pointer}.project-dot span{width:12px;height:12px;border:2px solid #d8aa4a}.project-dot[aria-pressed="true"] span{background:#d8aa4a}.project-dot:focus-visible,.project-pause:focus-visible{outline:2px solid #fff;outline-offset:-2px}
.person-photo.has-photo img{object-fit:cover}

/* Give the team portraits more room on the actual homepage. */
@media(min-width:881px){
  .team-section>.shell{width:min(calc(100% - 64px),1480px)}
  .team-layout{grid-template-columns:minmax(0,1fr) 320px;gap:32px;align-items:start}
  .team-layout>.resources-card{min-height:0;padding:24px}
}
@media(min-width:881px) and (max-width:1100px){
  .team-layout{grid-template-columns:1fr}
  .team-layout>.resources-card{width:100%}
}
button.project-slide{width:100%;height:100%;padding:0;border:0;background:transparent;cursor:zoom-in}button.project-slide:focus-visible{outline:3px solid #d8aa4a;outline-offset:-3px}
body.gallery-open{overflow:hidden}
dialog.project-lightbox{width:min(1120px,calc(100vw - 32px));max-width:none;max-height:calc(100dvh - 32px);padding:0;border:1px solid #736034;background:#0b0e10;color:#fff;overflow:auto}
.project-lightbox::backdrop{background:rgba(0,0,0,.88)}
.lightbox-header{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 20px}.lightbox-header h2{font-size:clamp(18px,2vw,26px);line-height:1.2;margin:0;overflow-wrap:anywhere}
.lightbox-close,.lightbox-prev,.lightbox-next{display:grid;place-items:center;min-width:48px;height:48px;padding:0;border:1px solid #d8aa4a;background:rgba(8,10,11,.8);color:#efc665;cursor:pointer;font-size:32px}.lightbox-stage{position:relative;display:grid;place-items:center}.lightbox-stage img{width:100%;height:min(70dvh,760px);object-fit:contain}.lightbox-prev,.lightbox-next{position:absolute;top:50%;transform:translateY(-50%)}.lightbox-prev{left:12px}.lightbox-next{right:12px}.lightbox-prev[hidden],.lightbox-next[hidden]{display:none}.lightbox-counter{text-align:center;margin:0;padding:12px;font-size:16px;color:#efc665}.project-lightbox button:focus-visible{outline:2px solid white;outline-offset:3px}@media(max-width:600px){dialog.project-lightbox{width:calc(100vw - 16px)}.lightbox-header{padding:10px}.lightbox-stage img{height:65dvh}.lightbox-prev{left:6px}.lightbox-next{right:6px}}
.person-copy span{overflow-wrap:anywhere;line-height:1.5}
.company-contact{font-style:normal;display:grid;gap:14px;margin:24px 0 28px;padding:24px;background:var(--panel);border:1px solid var(--line);color:var(--white);font-size:16px;line-height:1.6;scroll-margin-top:calc(var(--header) + 24px)}.company-contact>strong{font-size:20px;line-height:1.3}.company-contact a,.join-direct a{color:var(--gold-light);text-decoration:underline;text-underline-offset:4px;overflow-wrap:anywhere}.company-phones{display:grid;gap:16px;padding-top:14px;border-top:1px solid var(--line)}.company-phones a{display:grid;gap:2px;text-decoration:none}.company-phones a span{color:var(--muted);font-size:14px}.company-phones a strong{font-size:19px}.company-contact a:focus-visible,.join-direct a:focus-visible{outline:2px solid var(--gold);outline-offset:4px}.join-direct{font-size:16px;line-height:1.6}

/* Privacy pages and notices share the AP Service palette. */
.privacy-header { background: var(--paper); color: var(--ink); padding: 12px max(20px, calc((100vw - 1000px)/2)); display:flex; align-items:center; justify-content:space-between; gap:24px; }
.privacy-header img { object-fit:contain; }
.privacy-header nav { display:flex; gap:20px; font-weight:800; }
.privacy-header [aria-current="page"] { border-bottom:3px solid var(--gold); }
.privacy-main { max-width:900px; margin:auto; padding:40px 24px 72px; overflow-wrap:anywhere; }
.privacy-main h1 { font-size:clamp(2rem,5vw,3.5rem); line-height:1.15; margin:28px 0; }
.privacy-main h2 { font-size:1.35rem; line-height:1.4; margin:32px 0 12px; }
.privacy-main p { font-size:1rem; line-height:1.75; color:var(--muted); }
.privacy-main a, .form-privacy a, .consent a { color:var(--gold-light); text-decoration:underline; text-underline-offset:3px; overflow-wrap:anywhere; }
.privacy-draft { padding:24px; border-left:3px solid var(--gold); background:var(--panel); }
.privacy-draft p { margin-bottom:0; }
.form-privacy { margin:8px 0; color:var(--muted); font-size:.875rem; line-height:1.65; }
.privacy-page a:focus-visible { outline:2px solid var(--gold); outline-offset:5px; }

/* Keep contact navigation and long consent text usable at narrower widths. */
.nav-contact-fallback { display:none; }
@media(max-width:1160px) { .nav-contact-fallback { display:block; } }
.consent span { min-width:0; overflow-wrap:anywhere; }
.dialog-top h2 { overflow-wrap:anywhere; hyphens:auto; }
.dialog-top .eyebrow { flex-wrap:wrap; overflow-wrap:anywhere; }
.dialog-details li { min-width:0; overflow-wrap:anywhere; }
.dialog-inner .button { max-width:100%; white-space:normal; overflow-wrap:anywhere; }
