:root {
  --ink: #07131f;
  --ink-soft: #0d2133;
  --ink-2: #132b42;
  --blue: #0b5e9a;
  --blue-bright: #1ca8df;
  --ice: #dff5ff;
  --paper: #f5f7f8;
  --white: #ffffff;
  --muted: #6e7b86;
  --line: rgba(7, 19, 31, .14);
  --max: 1240px;
  --pad: clamp(22px, 5vw, 74px);
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.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;
  z-index: 200;
  left: 16px;
  top: -80px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 18px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  min-height: 84px;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.13);
  transition: background .25s ease, min-height .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(7,19,31,.94);
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
  backdrop-filter: blur(14px);
}
.brand { width: clamp(150px, 17vw, 220px); flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 32px); }
.site-nav > a:not(.button) {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-nav > a:hover::after,
.site-nav > a:focus-visible::after { transform: scaleX(1); }
.nav-phone { color: var(--ice); }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--blue-bright);
  background: var(--blue-bright);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button:hover, .button:focus-visible { background: var(--white); border-color: var(--white); transform: translateY(-2px); }
.button-small { min-height: 40px; padding: 0 17px; font-size: 11px; }
.button-wide { width: 100%; }
.text-link {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.45);
  padding: 12px 0 7px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media {
  background: url("assets/hero-gewerbebau.jpg") center 44% / cover no-repeat;
  transform: scale(1.03);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(4,12,20,.96) 0%, rgba(4,12,20,.79) 43%, rgba(4,12,20,.30) 74%, rgba(4,12,20,.52) 100%),
    linear-gradient(0deg, rgba(4,12,20,.72) 0%, transparent 48%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  padding: 130px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
  align-items: end;
  gap: clamp(44px, 7vw, 120px);
}
.eyebrow, .section-label, .panel-kicker {
  margin: 0 0 22px;
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 790px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 8.4vw, 126px);
  line-height: .86;
  letter-spacing: -.055em;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.hero h1 span { display: block; color: var(--blue-bright); }
.hero-lead { max-width: 690px; margin: 34px 0 0; color: rgba(255,255,255,.78); font-size: clamp(17px, 2vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.hero-panel {
  align-self: end;
  padding: 28px;
  background: rgba(7,19,31,.78);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}
.hero-panel ul { list-style: none; padding: 0; margin: 0 0 24px; }
.hero-panel li { display: flex; align-items: center; gap: 18px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.13); font-weight: 700; }
.hero-panel li span { color: var(--blue-bright); font-size: 11px; letter-spacing: .1em; }
.hero-panel > p:last-child { margin: 0; color: rgba(255,255,255,.65); font-size: 14px; }
.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.expertise-strip { overflow: hidden; background: var(--blue-bright); color: var(--ink); }
.ticker { width: max-content; padding: 15px var(--pad); display: flex; gap: 22px; align-items: center; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.ticker i { opacity: .45; font-style: normal; }

.section { padding: clamp(84px, 11vw, 150px) var(--pad); }
.section-light { background: var(--paper); }
.section-dark { background: var(--ink); color: var(--white); }
.section-blue { background: var(--ink-2); color: var(--white); }
.section-heading { max-width: var(--max); margin: 0 auto clamp(50px, 7vw, 88px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .6fr); gap: 38px 90px; }
.section-heading .section-label { grid-column: 1 / -1; margin-bottom: -14px; }
.section-heading h2 {
  margin: 0;
  max-width: 820px;
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 84px);
  line-height: .95;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.section-heading > p:last-child { margin: 0; align-self: end; color: var(--muted); font-size: 18px; }
.section-heading-dark > p:last-child { color: rgba(255,255,255,.65); }

.service-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(12, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { grid-column: span 4; min-height: 385px; padding: clamp(28px, 3vw, 42px); display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease, color .25s ease, transform .25s ease; }
.service-card-primary { grid-column: span 5; background: var(--white); }
.service-card-secondary { grid-column: span 4; }
.service-card-tertiary { grid-column: span 3; min-height: 355px; padding-inline: clamp(22px, 2.4vw, 34px); background: #f5f7f9; }
.service-card-tertiary h3 { font-size: clamp(24px, 2.15vw, 32px); }
.service-card-tertiary p, .service-card-tertiary details ul { font-size: 13px; }
.service-card:hover { background: var(--white); transform: translateY(-5px); box-shadow: 0 24px 50px rgba(7,19,31,.08); }
.service-card-accent { background: var(--ice); }
.card-number { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.service-card h3 { margin: 42px 0 18px; font-family: var(--display); font-size: clamp(27px, 2.6vw, 38px); line-height: 1.02; letter-spacing: -.035em; text-transform: uppercase; }
.service-card p { margin: 0; color: var(--muted); }
.service-card details { margin-top: auto; padding-top: 28px; }
.service-card summary { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.service-card details ul { padding: 14px 0 0 18px; margin: 0; color: var(--muted); font-size: 14px; }
.service-link { margin-top: 18px; color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }

.discipline-gallery { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: repeat(2, 330px); gap: 18px; }
.image-card { position: relative; overflow: hidden; background: var(--ink-soft); }
.image-card-large { grid-row: 1 / span 2; }
.image-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.04); transition: transform .7s ease, filter .4s ease; }
.image-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,12,20,.92), transparent 62%); }
.image-card:hover img { transform: scale(1.04); filter: saturate(1); }
.image-card > div { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 25px; }
.image-card span { color: var(--blue-bright); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.image-card h3 { margin: 6px 0 2px; font-family: var(--display); font-size: clamp(30px, 4vw, 54px); line-height: 1; text-transform: uppercase; }
.image-card p { margin: 0; color: rgba(255,255,255,.65); }

.home-references { padding: clamp(84px, 11vw, 150px) var(--pad); background: #eef2f4; }
.home-references-heading { max-width: var(--max); margin: 0 auto 56px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.home-references-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(45px, 6vw, 82px); line-height: .95; letter-spacing: -.045em; text-transform: uppercase; }
.home-references-heading > div:last-child > p { color: var(--muted); font-size: 18px; }
.home-reference-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(7,19,31,.18); }
.home-reference-card { position: relative; overflow: hidden; min-height: 390px; padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; background: var(--ink); color: #fff; transition: background .25s ease, transform .25s ease; }
.home-reference-card:nth-child(2), .home-reference-card:nth-child(3) { background: var(--ink-2); }
.home-reference-card:hover { background: var(--blue); transform: translateY(-3px); }
.home-reference-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,12,20,.97) 0%, rgba(4,12,20,.34) 72%, rgba(4,12,20,.48) 100%); }
.home-reference-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.home-reference-card:hover img { transform: scale(1.035); }
.home-reference-model img { object-fit: cover; object-position: center; }
.home-reference-card > *:not(img) { position: relative; z-index: 2; }
.home-reference-card b { align-self: flex-end; padding: 5px 8px; border: 1px solid rgba(255,255,255,.45); color: #fff; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.home-reference-card span { margin-top: 20px; color: var(--blue-bright); font-size: 11px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.home-reference-card strong { margin-top: auto; font-family: var(--display); font-size: clamp(31px, 4vw, 53px); line-height: .94; text-transform: uppercase; }
.home-reference-card i { margin-top: 18px; color: rgba(255,255,255,.65); font-size: 12px; font-style: normal; }
.home-reference-card-tertiary strong { font-size: clamp(27px, 3.2vw, 43px); }
.home-reference-card-tertiary::after { background: linear-gradient(0deg, rgba(4,12,20,.98) 0%, rgba(4,12,20,.5) 76%, rgba(4,12,20,.58) 100%); }

.reference-hero { padding: clamp(90px, 11vw, 150px) var(--pad); background: radial-gradient(circle at 80% 15%, rgba(28,168,223,.2), transparent 32%), var(--ink); }
.reference-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(58px, 9vw, 126px); line-height: .9; letter-spacing: -.055em; text-transform: uppercase; text-wrap: balance; overflow-wrap: anywhere; }
.reference-hero h1 span { color: var(--blue-bright); }
.reference-hero .landing-wrap > p:last-child { max-width: 720px; margin: 34px 0 0; color: rgba(255,255,255,.7); font-size: 19px; }
.reference-list { background: var(--paper); color: var(--ink); }
.reference-row { min-height: 620px; display: grid; grid-template-columns: 1fr 1fr; }
.reference-row-reverse .reference-visual { order: 2; }
.reference-visual { position: relative; overflow: hidden; padding: clamp(30px, 5vw, 70px); display: flex; justify-content: space-between; align-items: flex-end; color: #fff; background-color: var(--ink-2); }
.reference-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,12,20,.72), transparent 58%); }
.reference-visual-02 { background-color: #0b5e9a; }
.reference-visual-03 { background-color: #17344b; }
.reference-visual-04 { background-color: #092234; }
.reference-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reference-visual-02 img { object-position: center; }
.reference-visual-03 img { object-position: 16% center; }
.reference-visual em { position: absolute; z-index: 3; top: clamp(24px, 4vw, 52px); left: clamp(24px, 4vw, 52px); padding: 7px 10px; border: 1px solid rgba(255,255,255,.68); background: rgba(7,19,31,.7); color: #fff; font-size: 9px; font-style: normal; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.reference-visual span { position: relative; z-index: 2; font-family: var(--display); font-size: clamp(70px, 11vw, 150px); line-height: .8; opacity: .3; }
.reference-visual i { position: relative; z-index: 2; color: var(--blue-bright); font-family: var(--display); font-size: clamp(38px, 6vw, 76px); line-height: 1; font-style: normal; font-weight: 800; text-transform: uppercase; }
.reference-copy { padding: clamp(55px, 8vw, 120px); align-self: center; }
.reference-meta { color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.reference-copy h2 { margin: 18px 0 28px; font-family: var(--display); font-size: clamp(38px, 4.7vw, 67px); line-height: .96; letter-spacing: -.04em; text-transform: uppercase; }
.reference-copy > p:not(.reference-meta), .reference-copy li { color: var(--muted); }
.reference-copy ul { margin: 30px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.reference-copy li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.reference-copy li::before { content: "→"; margin-right: 12px; color: var(--blue); }
.approval-facts { margin-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.approval-facts div { min-width: 0; padding: 17px 13px; border-right: 1px solid var(--line); }
.approval-facts div:last-child { border-right: 0; background: var(--ink); color: #fff; }
.approval-facts strong, .approval-facts span { display: block; }
.approval-facts strong { font-family: var(--display); font-size: clamp(22px, 2.3vw, 34px); line-height: 1; }
.approval-facts span { margin-top: 7px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.approval-facts div:last-child span { color: var(--blue-bright); }
.reference-copy .approval-note { margin: 10px 0 0; font-size: 11px; line-height: 1.45; }
.reference-row-tertiary { min-height: 520px; }
.reference-row-tertiary .reference-copy h2 { font-size: clamp(34px, 4vw, 56px); }
.reference-row-tertiary .reference-visual i { font-size: clamp(31px, 5vw, 61px); }
.reference-note { padding: clamp(75px, 10vw, 130px) var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; background: var(--ink-2); color: #fff; }
.reference-note h2 { margin: 0; font-family: var(--display); font-size: clamp(42px, 5.5vw, 76px); line-height: .95; text-transform: uppercase; }
.reference-note > p { align-self: end; color: rgba(255,255,255,.65); font-size: 18px; }

.topic-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.15); }
.topic { min-height: 350px; padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.15); }
.topic:last-child { border-right: 0; }
.topic > span { width: fit-content; padding: 6px 10px; border: 1px solid var(--blue-bright); color: var(--blue-bright); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.topic h3 { margin: 50px 0 16px; font-family: var(--display); font-size: 32px; line-height: 1; text-transform: uppercase; }
.topic p { margin: 0; color: rgba(255,255,255,.66); }
.topic a { margin-top: auto; padding-top: 24px; color: var(--blue-bright); font-size: 12px; font-weight: 800; letter-spacing: .05em; }
.update-note { max-width: var(--max); margin: 24px auto 0; color: rgba(255,255,255,.5); font-size: 12px; }

.process-list { max-width: var(--max); margin: 0 auto; list-style: none; padding: 0; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 100px 1fr; gap: 40px; padding: 31px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .15em; }
.process-list li div { display: grid; grid-template-columns: .6fr 1fr; gap: 30px; }
.process-list h3 { margin: 0; font-family: var(--display); font-size: 29px; line-height: 1; text-transform: uppercase; }
.process-list p { margin: 0; color: var(--muted); }

.section-about { padding: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; background: var(--white); }
.about-image { min-height: 600px; background: url("assets/hero-gewerbebau.jpg") 46% center / cover no-repeat; }
.about-copy { padding: clamp(70px, 9vw, 140px) clamp(35px, 8vw, 120px); align-self: center; }
.about-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(44px, 5vw, 72px); line-height: .97; letter-spacing: -.04em; text-transform: uppercase; }
.about-lead { margin-top: 34px; font-size: 22px; font-weight: 650; line-height: 1.45; }
.about-copy > p:not(.section-label):not(.about-lead) { color: var(--muted); }
.about-values { margin-top: 40px; border-top: 1px solid var(--line); }
.about-values div { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.about-values strong { text-transform: uppercase; }
.about-values span { color: var(--muted); text-align: right; }

.contact { background: var(--ink); color: var(--white); display: grid; grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr); gap: clamp(50px, 8vw, 130px); }
.contact-intro h2 { max-width: 660px; margin: 0; font-family: var(--display); font-size: clamp(54px, 7vw, 96px); line-height: .9; letter-spacing: -.045em; text-transform: uppercase; }
.contact-intro > p:not(.section-label) { max-width: 620px; color: rgba(255,255,255,.65); font-size: 18px; }
.contact-direct { margin-top: 45px; border-top: 1px solid rgba(255,255,255,.16); }
.contact-direct > * { display: flex; justify-content: space-between; gap: 22px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-direct span { color: rgba(255,255,255,.5); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.contact-direct strong { text-align: right; }
.project-form { align-self: start; padding: clamp(28px, 4vw, 48px); background: var(--white); color: var(--ink); }
.project-form label { display: grid; gap: 8px; margin-bottom: 19px; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.project-form input, .project-form select, .project-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); background: #f1f4f6; color: var(--ink); padding: 14px 13px; outline: none; border-radius: 0; }
.project-form input:focus, .project-form select:focus, .project-form textarea:focus { border-color: var(--blue); box-shadow: inset 0 -1px 0 var(--blue); }
.project-form textarea { resize: vertical; }
.project-form .consent { grid-template-columns: 18px 1fr; align-items: start; text-transform: none; letter-spacing: 0; font-weight: 500; line-height: 1.45; }
.consent input { width: 16px; height: 16px; margin: 3px 0 0; }
.consent a { text-decoration: underline; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.project-form button[disabled] { opacity: .65; cursor: wait; }

.site-footer { padding: 70px var(--pad) 24px; background: #040b12; color: var(--white); }
.social-contact-bar { padding: clamp(65px, 8vw, 105px) var(--pad); background: #07131f; color: #fff; }
.social-contact-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 100px); align-items: end; }
.social-contact-bar h2 { margin: 10px 0 0; font-family: var(--display); font-size: clamp(42px, 5vw, 72px); line-height: .95; text-transform: uppercase; }
.social-contact-bar .section-label { color: var(--blue-bright); }
.social-link-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.social-channel { min-height: 145px; padding: 24px; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.035); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.social-channel:hover { transform: translateY(-3px); border-color: var(--blue-bright); background: rgba(255,255,255,.07); }
.social-symbol { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; color: #fff; font-size: 13px; font-weight: 900; letter-spacing: .05em; }
.social-symbol-wa { background: #168f4b; }
.social-symbol-ig { background: linear-gradient(135deg,#6f40b8,#cf347f 58%,#ef8b32); }
.social-channel strong, .social-channel small { display: block; }
.social-channel strong { font-size: 16px; }
.social-channel small { margin-top: 5px; color: rgba(255,255,255,.6); line-height: 1.4; }
.social-channel i { color: var(--blue-bright); font-size: 22px; font-style: normal; }
.footer-main { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 60px; }
.footer-brand img { width: 210px; }
.footer-brand p { max-width: 380px; color: rgba(255,255,255,.5); font-size: 14px; }
.footer-main h3 { margin: 0 0 18px; color: var(--blue-bright); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-main a, .footer-main span { color: rgba(255,255,255,.67); font-size: 13px; }
.footer-main a:hover { color: var(--blue-bright); }
.footer-bottom { max-width: var(--max); margin: 54px auto 0; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.floating-contact { position: fixed; z-index: 80; right: 24px; bottom: 24px; padding: 13px 18px; background: var(--blue-bright); color: var(--ink); box-shadow: 0 12px 35px rgba(0,0,0,.25); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.cookie-banner { position: fixed; z-index: 500; left: 18px; right: 18px; bottom: 18px; max-width: 1120px; margin: auto; padding: 20px; display: flex; align-items: center; justify-content: space-between; gap: 28px; background: #fff; color: #07131f; border: 1px solid rgba(7,19,31,.15); box-shadow: 0 20px 70px rgba(0,0,0,.28); }
.cookie-banner strong { display: block; }
.cookie-banner p { margin: 5px 0 0; max-width: 700px; color: #52606c; font-size: 13px; }
.cookie-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cookie-actions button { min-height: 42px; padding: 0 14px; border: 1px solid #07131f; cursor: pointer; font-weight: 750; }
.cookie-primary { background: #07131f; color: #fff; }
.cookie-secondary { background: #fff; color: #07131f; }
.cookie-actions a { font-size: 12px; text-decoration: underline; }

.legal-page { background: var(--paper); }
.legal-header { background: var(--ink); position: static; }
.legal-main { max-width: 900px; margin: 0 auto; padding: 80px var(--pad) 120px; }
.legal-main h1 { margin: 0 0 50px; font-family: var(--display); font-size: clamp(50px, 7vw, 88px); line-height: .95; text-transform: uppercase; }
.legal-main h2 { margin: 44px 0 12px; font-size: 21px; }
.legal-main h3 { margin: 28px 0 8px; font-size: 17px; }
.legal-main p, .legal-main li { color: #42515d; }
.legal-main a { color: var(--blue); text-decoration: underline; }
.legal-back { display: inline-block; margin-bottom: 30px; color: var(--blue); font-weight: 750; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1050px) {
  .site-nav { position: fixed; inset: 0 0 auto 0; min-height: 100svh; padding: 110px var(--pad) 50px; background: rgba(7,19,31,.99); flex-direction: column; align-items: flex-start; transform: translateX(100%); transition: transform .28s ease; }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav > a:not(.button) { font-family: var(--display); font-size: 30px; line-height: 1; }
  .menu-toggle { position: relative; z-index: 2; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.24); background: transparent; display: grid; place-content: center; gap: 5px; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 520px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card-primary, .service-card-secondary, .service-card-tertiary { grid-column: auto; }
  .section-heading { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); min-height: 290px; }
  .topic:last-child { border-bottom: 0; }
  .section-about { grid-template-columns: 1fr; }
  .about-image { min-height: 62vw; }
  .contact { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .home-references-heading { grid-template-columns: 1fr; gap: 26px; }
  .reference-row { grid-template-columns: 1fr; }
  .reference-row-reverse .reference-visual { order: 0; }
  .reference-visual { min-height: 470px; }
}

@media (max-width: 720px) {
  .site-header { min-height: 72px; }
  .brand { width: 155px; }
  .hero { min-height: 880px; }
  .hero-grid { padding-top: 118px; gap: 34px; }
  .hero h1 { font-size: clamp(43px, 14vw, 68px); line-height: .96; letter-spacing: -.04em; }
  .hero-lead { margin-top: 25px; font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 8px; }
  .text-link { text-align: center; }
  .scroll-cue { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card-primary, .service-card-secondary, .service-card-tertiary { grid-column: auto; min-height: 350px; }
  .discipline-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3, 390px); }
  .image-card-large { grid-row: auto; }
  .process-list li { grid-template-columns: 48px 1fr; gap: 12px; }
  .process-list li div { grid-template-columns: 1fr; gap: 8px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .project-form { margin-inline: calc(var(--pad) * -1); }
  .contact-direct > * { flex-direction: column; gap: 5px; }
  .contact-direct strong { text-align: left; overflow-wrap: anywhere; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .social-contact-inner, .social-link-grid { grid-template-columns: 1fr; }
  .social-channel { min-height: 112px; }
  .footer-bottom { flex-direction: column; }
  .floating-contact { right: 14px; bottom: 14px; }
  .section-about { min-height: 0; }
  .about-image { min-height: 92vw; }
  .home-reference-grid { grid-template-columns: 1fr; }
  .home-reference-card { min-height: 280px; }
  .reference-visual { min-height: 360px; }
  .reference-hero h1 { font-size: clamp(43px, 14vw, 68px); line-height: .96; letter-spacing: -.04em; }
  .reference-copy h2, .section-heading h2, .home-references-heading h2, .contact-intro h2 { overflow-wrap: anywhere; hyphens: auto; line-height: 1; }
  .approval-facts { grid-template-columns: 1fr; }
  .approval-facts div { border-right: 0; border-bottom: 1px solid var(--line); }
  .approval-facts div:last-child { border-bottom: 0; }
  .reference-note { grid-template-columns: 1fr; gap: 24px; }
  .cookie-banner { align-items: stretch; flex-direction: column; gap: 14px; }
  .cookie-actions { flex-wrap: wrap; }
  .cookie-actions button { flex: 1; }
}
