:root {
  --navy: #0a2d55;
  --navy-deep: #071c34;
  --blue: #123f72;
  --steel: #8e9aa5;
  --graphite: #26313a;
  --copper: #bd7448;
  --copper-light: #d79a70;
  --paper: #f5f7f8;
  --white: #ffffff;
  --line: #dbe1e5;
  --text: #18222b;
  --muted: #66727c;
  --shell: min(1200px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--white); font-family: "Manrope", sans-serif; font-size: 16px; line-height: 1.6; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 0; }
.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: -60px; z-index: 100; padding: 10px 16px; background: var(--white); color: var(--navy); }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95); border-bottom: 1px solid rgba(10,45,85,.1); backdrop-filter: blur(14px); }
.header-inner { width: min(1320px, calc(100vw - 48px)); height: 84px; margin: auto; display: flex; align-items: center; gap: 34px; }
.brand { width: 240px; height: 62px; overflow: hidden; display: flex; align-items: center; }
.brand img { width: 235px; transform: translateY(1px); }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; font-size: .88rem; font-weight: 700; letter-spacing: .02em; }
.site-nav a { position: relative; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--copper); transition: width .25s ease; }
.site-nav a:hover::after { width: 100%; }
.site-nav a.active-link::after { width: 100%; }
.nav-cta { padding: 11px 17px; color: var(--white); background: var(--navy); }
.language-switch { display: flex; align-items: center; gap: 5px; padding-left: 12px; border-left: 1px solid var(--line); }
.language-switch button { border: 0; padding: 6px 3px; background: transparent; color: var(--muted); font-size: .8rem; font-weight: 800; cursor: pointer; }
.language-switch button.active { color: var(--copper); }
.menu-toggle { display: none; }

.hero { min-height: 760px; position: relative; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--navy-deep); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,19,36,.96) 0%, rgba(5,25,46,.86) 33%, rgba(7,28,52,.28) 68%, rgba(7,28,52,.14) 100%); }
.hero-grid { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(90deg, #000, transparent 65%); }
.hero-content { position: relative; z-index: 2; padding: 100px 0 150px; }
.eyebrow { margin: 0 0 22px; color: var(--copper-light); font-family: "Roboto Mono", monospace; font-size: .8rem; letter-spacing: .16em; }
.eyebrow.dark { color: var(--copper); }
.hero h1 { max-width: 780px; margin: 0; font-size: clamp(3.2rem, 6vw, 6rem); line-height: .98; letter-spacing: -.055em; }
.hero-copy { max-width: 660px; margin: 30px 0 0; color: rgba(255,255,255,.82); font-size: 1.15rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 23px; border: 1px solid transparent; border-radius: 2px; font-weight: 800; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--copper); }
.button-primary:hover { background: #aa643b; }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.05); }
.button-secondary:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.hero-proof { position: absolute; z-index: 2; left: 50%; bottom: 0; transform: translateX(-50%); display: grid; grid-template-columns: repeat(4,1fr); background: rgba(6,25,47,.92); border-top: 1px solid rgba(255,255,255,.2); }
.hero-proof span { padding: 24px 28px; border-right: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.82); font-size: .84rem; font-weight: 700; letter-spacing: .04em; }
.hero-proof span:last-child { border-right: 0; }

.section-kicker { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; color: var(--navy); font-family: "Roboto Mono", monospace; font-size: .78rem; font-weight: 500; letter-spacing: .15em; }
.section-kicker span:first-child { display: grid; place-items: center; width: 36px; height: 36px; color: var(--white); background: var(--copper); border-radius: 50%; letter-spacing: 0; }
.section-kicker.light { color: rgba(255,255,255,.7); }
.intro-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; align-items: start; }
.intro h2, .section-heading h2, .portfolio-teaser h2, .sectors h2, .fit h2, .contact h2 { margin: 0; font-size: clamp(2.3rem, 4.5vw, 4.25rem); line-height: 1.08; letter-spacing: -.045em; }
.experience-label { display: inline-flex; margin: 0 0 24px; padding: 9px 12px; color: var(--navy); background: #e9eef2; border-left: 3px solid var(--copper); font-family: "Roboto Mono", monospace; font-size: .74rem; letter-spacing: .1em; }
.intro-copy { color: var(--muted); font-size: 1.06rem; }
.intro-copy p { margin: 0 0 24px; }
.capability-band { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 60px; border: 1px solid var(--line); }
.capability-band div { min-height: 118px; padding: 24px; border-right: 1px solid var(--line); }
.capability-band div:last-child { border-right: 0; }
.capability-band span, .capability-band strong { display: block; }
.capability-band span { margin-bottom: 12px; color: var(--copper); font-family: "Roboto Mono", monospace; font-size: .7rem; letter-spacing: .12em; }
.capability-band strong { color: var(--navy); font-size: .91rem; line-height: 1.5; }
.principles { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 76px; border-top: 1px solid var(--line); }
.principles article { padding: 34px 34px 0 0; }
.principles strong, .process-grid strong { color: var(--copper); font-family: "Roboto Mono", monospace; font-size: .78rem; }
.principles h3 { margin: 15px 0 10px; font-size: 1.15rem; }
.principles p { margin: 0; color: var(--muted); }

.services { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: 40px; align-items: end; margin-bottom: 58px; }
.section-heading .section-kicker { margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.service-card { position: relative; min-height: 560px; padding: 40px; background: var(--white); border-right: 1px solid var(--line); }
.service-card:last-child { border-right: 0; }
.service-card.featured { background: var(--navy); color: var(--white); }
.service-index { position: absolute; top: 24px; right: 26px; color: var(--steel); font-family: "Roboto Mono", monospace; font-size: .78rem; }
.service-icon { width: 78px; height: 78px; margin: 45px 0 46px; position: relative; }
.service-icon span { position: absolute; border: 3px solid currentColor; width: 46px; height: 46px; }
.service-icon span:nth-child(1) { left: 0; top: 16px; color: var(--copper-light); }
.service-icon span:nth-child(2) { left: 24px; top: 0; color: var(--white); }
.service-icon span:nth-child(3) { left: 24px; top: 32px; color: var(--steel); }
.service-icon.metal span:nth-child(1) { left: 4px; top: 4px; color: var(--navy); transform: skewY(-28deg); }
.service-icon.metal span:nth-child(2) { left: 28px; top: 27px; color: var(--copper); transform: skewY(-28deg); }
.service-icon.supply { display: flex; align-items: center; gap: 7px; width: 100px; }
.service-icon.supply i { display: block; width: 22px; height: 22px; background: var(--navy); transform: rotate(45deg); }
.service-icon.supply i:nth-child(2) { background: var(--copper); }
.service-icon.supply i:nth-child(3) { background: var(--steel); }
.service-card h3 { margin: 0 0 18px; font-size: 1.45rem; line-height: 1.2; }
.service-card p { min-height: 116px; margin: 0; color: var(--muted); }
.service-card.featured p { color: rgba(255,255,255,.72); }
.service-card ul { margin: 28px 0 0; padding: 25px 0 0; list-style: none; border-top: 1px solid var(--line); }
.service-card.featured ul { border-color: rgba(255,255,255,.18); }
.service-card li { position: relative; padding: 7px 0 7px 17px; color: var(--muted); font-size: .9rem; }
.service-card.featured li { color: rgba(255,255,255,.82); }
.service-card li::before { content: ""; position: absolute; left: 0; top: 17px; width: 7px; height: 2px; background: var(--copper); }

.portfolio-teaser { padding: 88px 0; color: var(--white); background: var(--navy-deep); }
.portfolio-teaser-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: end; }
.portfolio-teaser h2 { max-width: 700px; }
.portfolio-teaser-inner > div:last-child > p { max-width: 530px; margin: 0 0 28px; color: rgba(255,255,255,.7); font-size: 1.02rem; }

.portfolio-main { background: var(--white); }
.portfolio-hero { padding: 108px 0 82px; color: var(--white); background: var(--navy-deep); }
.portfolio-hero h1 { max-width: 900px; margin: 0; font-size: clamp(3rem, 6vw, 5.8rem); line-height: 1; letter-spacing: -.055em; }
.portfolio-hero-copy { max-width: 760px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.portfolio-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 42px; }
.portfolio-tabs a { padding: 11px 16px; border: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.86); font-weight: 700; font-size: .86rem; }
.portfolio-tabs a:hover { border-color: var(--copper-light); background: rgba(255,255,255,.07); }
.portfolio-category { padding: 96px 0; scroll-margin-top: 90px; }
.portfolio-category:nth-child(odd) { background: var(--paper); }
.portfolio-category-inner { display: block; }
.portfolio-category-copy { display: grid; grid-template-columns: .85fr 1.15fr; gap: 18px 70px; align-items: start; }
.portfolio-category-copy .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.portfolio-category-copy h2 { margin: 0; color: var(--navy); font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.08; letter-spacing: -.045em; }
.portfolio-category-copy > p { margin: 0; color: var(--muted); font-size: 1.04rem; }
.portfolio-tags { grid-column: 2; padding-top: 20px; border-top: 1px solid var(--line); color: var(--graphite); font-weight: 700; line-height: 1.9; }
.work-gallery { columns: 3; column-gap: 16px; margin-top: 52px; }
.gallery-item { display: block; width: 100%; margin: 0 0 16px; padding: 0; overflow: hidden; break-inside: avoid; border: 0; background: #dfe4e7; cursor: zoom-in; }
.gallery-item img { width: 100%; height: auto; transition: transform .35s ease, filter .35s ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.02); filter: brightness(.92); }
.gallery-item:focus-visible { outline: 3px solid var(--copper); outline-offset: 3px; }
.gallery-dialog { max-width: min(94vw, 1400px); max-height: 92vh; padding: 0; overflow: visible; border: 0; background: transparent; }
.gallery-dialog::backdrop { background: rgba(3,14,27,.88); backdrop-filter: blur(4px); }
.gallery-dialog img { display: block; max-width: 94vw; max-height: 88vh; object-fit: contain; background: var(--navy-deep); }
.gallery-close { position: absolute; z-index: 2; top: -18px; right: -18px; display: grid; place-items: center; width: 42px; height: 42px; border: 0; border-radius: 50%; color: var(--navy); background: var(--white); font-size: 1.7rem; line-height: 1; cursor: pointer; }
.portfolio-close { padding: 84px 0; text-align: center; background: var(--navy); color: var(--white); }
.portfolio-close h2 { max-width: 760px; margin: 0 auto 30px; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.08; letter-spacing: -.04em; }

.sector-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: start; }
.sector-layout > div:first-child { position: sticky; top: 130px; }
.sector-layout > div:first-child p { max-width: 520px; color: var(--muted); font-size: 1.06rem; }
.sector-list { border-top: 1px solid var(--line); }
.sector-list article { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.sector-list article > span { color: var(--copper); font-family: "Roboto Mono", monospace; font-size: .78rem; }
.sector-list h3 { margin: 0 0 7px; font-size: 1.25rem; }
.sector-list p { margin: 0; color: var(--muted); }

.process { overflow: hidden; color: var(--white); background: var(--navy-deep); }
.process .section-heading { align-items: start; }
.process .section-heading h2 { max-width: 850px; }
.process-map { position: relative; margin-top: 68px; }
.process-path { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.process-path path { fill: none; stroke: url(#processGradient); stroke: rgba(189,116,72,.42); stroke-width: 3; stroke-dasharray: 7 8; vector-effect: non-scaling-stroke; }
.process-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(2, minmax(245px, auto)); gap: 72px 48px; }
.process-grid article { position: relative; padding: 34px 32px; background: #0b2949; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 16px 34px rgba(0,0,0,.12); }
.process-grid article::before { content: ""; position: absolute; left: 30px; top: -9px; width: 18px; height: 18px; border: 5px solid var(--navy-deep); border-radius: 50%; background: var(--copper); }
.process-grid article:nth-child(4) { grid-column: 3; grid-row: 2; }
.process-grid article:nth-child(5) { grid-column: 2; grid-row: 2; }
.process-grid article:nth-child(6) { grid-column: 1; grid-row: 2; }
.process-grid h3 { margin: 15px 0 12px; font-size: 1.2rem; }
.process-grid p { margin: 0; color: rgba(255,255,255,.62); font-size: .91rem; }

.fit { padding-top: 96px; padding-bottom: 96px; }
.fit-panel { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; padding: 64px; background: #eef1f3; border-left: 6px solid var(--copper); }
.fit-list { display: grid; align-content: center; }
.fit-list span { position: relative; padding: 13px 0 13px 30px; border-bottom: 1px solid #d0d7dc; font-weight: 700; }
.fit-list span::before { content: ""; position: absolute; left: 2px; top: 22px; width: 11px; height: 3px; background: var(--copper); }

.contact { color: var(--white); background: var(--navy); }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.contact-copy > p { max-width: 520px; color: rgba(255,255,255,.68); font-size: 1.05rem; }
.contact-note { display: flex; gap: 13px; align-items: flex-start; margin-top: 40px; color: rgba(255,255,255,.72); }
.contact-note span { width: 10px; height: 10px; margin-top: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--copper); }
.contact-note p { margin: 0; }
.contact-person { display: grid; grid-template-columns: 96px 1fr; gap: 20px; margin-top: 34px; padding: 25px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.045); }
.contact-person-photo { width: 96px; height: 120px; border: 1px solid rgba(255,255,255,.22); object-fit: cover; object-position: center 18%; }
.contact-person-label { margin: 0 0 5px; color: var(--copper-light); font-family: "Roboto Mono", monospace; font-size: .68rem; letter-spacing: .12em; }
.contact-person-main h3 { margin: 0; font-size: 1.15rem; }
.contact-person-main > p:not(.contact-person-label) { margin: 3px 0 0; color: rgba(255,255,255,.68); font-size: .86rem; }
.contact-company { font-weight: 700; }
.contact-person-details { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 10px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.12); }
.contact-person-details a, .contact-person-details p { margin: 0; }
.contact-person-details span, .contact-person-details strong { display: block; }
.contact-person-details span { margin-bottom: 4px; color: rgba(255,255,255,.45); font-family: "Roboto Mono", monospace; font-size: .62rem; letter-spacing: .1em; }
.contact-person-details strong { color: var(--white); font-size: .82rem; }
.contact-address { grid-column: span 2; }
.contact-channels { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 34px; }
.contact-channels button { position: relative; min-height: 58px; padding: 12px 16px 12px 32px; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.82); background: rgba(255,255,255,.04); text-align: left; font-size: .82rem; font-weight: 700; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.contact-channels button::before { content: ""; position: absolute; left: 15px; top: 25px; width: 7px; height: 7px; border-radius: 50%; background: var(--copper); }
.contact-channels button:hover, .contact-channels button:focus-visible { background: rgba(255,255,255,.1); border-color: var(--copper); outline: 0; }
.contact-form { padding: 38px; color: var(--text); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; margin-bottom: 18px; color: var(--graphite); font-size: .82rem; font-weight: 800; }
.contact-form label span { display: block; margin-bottom: 8px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #cbd3d9; border-radius: 0; padding: 13px 14px; color: var(--text); background: #fbfcfc; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(189,116,72,.13); }
.contact-form .button { width: 100%; border: 0; }
.form-hint { margin: 13px 0 0; color: var(--muted); font-size: .76rem; text-align: center; }

.site-footer { color: var(--white); background: #06182d; }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 54px 0; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand strong, .footer-brand small { display: block; }
.footer-brand strong { font-size: 1.05rem; letter-spacing: .04em; }
.footer-brand small { margin-top: 3px; color: rgba(255,255,255,.5); font-size: .65rem; letter-spacing: .14em; }
.footer-mark { position: relative; width: 68px; height: 46px; }
.footer-mark span, .footer-mark b { position: absolute; top: 17px; width: 31px; height: 4px; background: var(--blue); transform-origin: right center; }
.footer-mark span { left: 5px; transform: rotate(-30deg); }.footer-mark b { right: 5px; background: var(--steel); transform: rotate(30deg); transform-origin: left center; }
.footer-mark i { position: absolute; z-index: 2; left: 27px; top: 6px; width: 17px; height: 17px; border-radius: 50%; background: var(--copper); }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; color: rgba(255,255,255,.62); font-size: .82rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: .72rem; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 760px); }
  .header-inner { width: calc(100vw - 36px); height: 72px; }
  .brand { width: 190px; }.brand img { width: 190px; }
  .menu-toggle { order: 3; margin-left: auto; display: grid; gap: 4px; width: 42px; height: 42px; place-content: center; border: 0; background: transparent; }
  .menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; background: var(--navy); }
  .language-switch { margin-left: auto; }
  .site-nav { position: fixed; inset: 72px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 26px 24px 34px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(7,28,52,.12); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; }.site-nav .nav-cta { margin-top: 10px; padding: 14px 16px; text-align: center; }
  .hero { min-height: 720px; }.hero-content { padding-top: 90px; }.hero h1 { max-width: 680px; }
  .hero-proof { grid-template-columns: repeat(2,1fr); }.hero-proof span:nth-child(2) { border-right: 0; }.hero-proof span:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .intro-layout, .section-heading, .portfolio-teaser-inner, .sector-layout, .fit-panel, .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .capability-band { grid-template-columns: repeat(2,1fr); }.capability-band div:nth-child(2) { border-right: 0; }.capability-band div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr; }.service-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }.service-card p { min-height: 0; }
  .portfolio-category-copy { grid-template-columns: 1fr; gap: 20px; }.portfolio-tags { grid-column: auto; }.work-gallery { columns: 2; }
  .sector-layout > div:first-child { position: static; }
  .process-path { display: none; }.process-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; gap: 24px; }.process-grid article:nth-child(n) { grid-column: auto; grid-row: auto; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100vw - 32px); }
  .section { padding: 80px 0; }
  .header-inner { width: calc(100vw - 28px); gap: 10px; }.brand { width: 154px; }.brand img { width: 154px; }
  .language-switch { padding-left: 8px; }.language-switch span { display: none; }
  .hero { min-height: 760px; align-items: flex-start; }.hero-image { object-position: 62% center; }.hero-shade { background: linear-gradient(90deg, rgba(4,19,36,.97), rgba(5,25,46,.72)); }
  .hero-content { padding: 100px 0 190px; }.hero h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }.hero-copy { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }.button { width: 100%; }
  .hero-proof span { padding: 17px 15px; font-size: .72rem; }
  .intro-layout { gap: 28px; }.principles { grid-template-columns: 1fr; }.principles article { padding: 26px 0; border-bottom: 1px solid var(--line); }
  .section-heading { gap: 24px; }.service-card { padding: 30px 26px; }
  .portfolio-teaser { padding: 70px 0; }.portfolio-teaser-inner { gap: 28px; }
  .portfolio-hero { padding: 82px 0 64px; }.portfolio-category { padding: 72px 0; }.work-gallery { columns: 1; margin-top: 36px; }
  .sector-list article { grid-template-columns: 44px 1fr; }
  .capability-band { grid-template-columns: 1fr; }.capability-band div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }.capability-band div:last-child { border-bottom: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .contact-channels { grid-template-columns: 1fr; }
  .contact-person { grid-template-columns: 76px 1fr; padding: 20px; }.contact-person-photo { width: 76px; height: 95px; }.contact-person-details { grid-template-columns: 1fr; gap: 14px; }.contact-address { grid-column: auto; }
  .fit-panel { padding: 38px 25px; }.contact-form { padding: 28px 20px; }.form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }.footer-meta { align-items: flex-start; }
}

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