:root {
    --orange: #ff6c26;
    --black: #000000;
    --white: #ffffff;
    --paper: #f4f1ea;
    --line: 3px;
    --header-h: 82px;
    --max: 1920px;
    --gutter: clamp(1.25rem, 3vw, 4rem);
    --font-display: "Arial Narrow", "Aptos Display", "Roboto Condensed", "Helvetica Neue Condensed", Impact, sans-serif;
    --font-body: Arial, "Helvetica Neue", Helvetica, system-ui, sans-serif;
    --font-mono: "Courier New", Courier, ui-monospace, monospace;
    --ease: cubic-bezier(.2, .75, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 24px);
    background: var(--paper);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    background: var(--paper);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
picture,
svg {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

button,
a {
    color: inherit;
}

a {
    text-decoration-thickness: .1em;
    text-underline-offset: .18em;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

address {
    font-style: normal;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: .9;
    text-transform: uppercase;
    text-wrap: balance;
}

ul,
ol {
    margin-top: 0;
}

::selection {
    background: var(--orange);
    color: var(--black);
}

:focus-visible {
    outline: 4px solid var(--orange);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 3000;
    padding: .75rem 1rem;
    transform: translateY(-180%);
    border: var(--line) solid var(--black);
    background: var(--white);
    color: var(--black);
    font-family: var(--font-mono);
    font-weight: 700;
    text-transform: uppercase;
    transition: transform .15s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.orange-dot,
.orange {
    color: var(--orange);
}

.black-dot {
    color: var(--black);
}

.section {
    position: relative;
    border-bottom: var(--line) solid var(--black);
}

.section-code,
.eyebrow,
.legal-updated,
.footer-label {
    font-family: var(--font-mono);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.section-code {
    margin-bottom: clamp(1.25rem, 2.6vw, 2.4rem);
}

.section-code--light {
    color: var(--white);
}

.button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 1.15rem;
    border: var(--line) solid var(--black);
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-weight: 900;
    letter-spacing: .015em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.button svg:last-child {
    margin-left: auto;
}

.button:hover {
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 0 var(--black);
}

.button--orange {
    background: var(--orange);
}

.button--paper {
    background: var(--paper);
}

.button--paper:hover {
    background: var(--black);
    color: var(--white);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    width: 100%;
    border-bottom: var(--line) solid var(--black);
    background: rgba(244, 241, 234, .98);
}

.site-header__grid {
    display: grid;
    min-height: var(--header-h);
    grid-template-columns: minmax(190px, 280px) 1fr minmax(190px, 250px);
    align-items: stretch;
}

.brand {
    display: flex;
    min-height: var(--header-h);
    align-items: center;
    padding: .55rem clamp(1rem, 2vw, 2rem);
    border-right: var(--line) solid var(--black);
    text-decoration: none;
}

.brand__image {
    width: auto;
    height: 58px;
    transition: height .18s ease;
}

.desktop-nav {
    min-width: 0;
}

.desktop-nav ul {
    display: grid;
    height: 100%;
    grid-template-columns: repeat(5, minmax(90px, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-nav li {
    min-width: 0;
    border-right: var(--line) solid var(--black);
}

.desktop-nav a {
    position: relative;
    display: flex;
    height: 100%;
    min-height: var(--header-h);
    align-items: center;
    justify-content: center;
    padding: .8rem .65rem;
    font-family: var(--font-display);
    font-size: clamp(.82rem, .95vw, 1.05rem);
    font-weight: 900;
    letter-spacing: .01em;
    line-height: 1.05;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .16s ease, color .16s ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 10px;
    bottom: 8px;
    width: 8px;
    height: 8px;
    content: "";
    border-radius: 50%;
    background: transparent;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    background: var(--black);
    color: var(--white);
}

.desktop-nav a.is-active::after {
    background: var(--orange);
}

.header-mail {
    display: flex;
    min-height: var(--header-h);
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: .75rem 1rem;
    background: var(--orange);
    font-family: var(--font-display);
    font-size: clamp(.9rem, 1vw, 1.05rem);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .16s ease, color .16s ease;
}

.header-mail:hover {
    background: var(--black);
    color: var(--white);
}

.menu-toggle {
    display: none;
    width: var(--header-h);
    min-height: var(--header-h);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    background: var(--black);
    color: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.site-header.is-scrolled .brand__image {
    height: 49px;
}

.mobile-menu {
    position: fixed;
    inset: var(--header-h) 0 0;
    z-index: 1190;
    overflow-y: auto;
    border-top: 0;
    background: var(--orange);
    color: var(--black);
    animation: menu-in .2s var(--ease) both;
}

.mobile-menu[hidden] {
    display: none;
}

.mobile-menu__top {
    display: flex;
    justify-content: space-between;
    padding: 1rem var(--gutter);
    border-bottom: var(--line) solid var(--black);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 12vw, 5rem);
    font-weight: 900;
    letter-spacing: -.05em;
    line-height: .8;
}

.mobile-menu__top .orange {
    color: var(--white);
}

.mobile-menu nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu nav li {
    border-bottom: var(--line) solid var(--black);
}

.mobile-menu nav a {
    display: grid;
    min-height: 72px;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 1rem;
    padding: .75rem var(--gutter);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 8vw, 3.25rem);
    font-weight: 900;
    line-height: .9;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-menu nav a span {
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: 0;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
    background: var(--black);
    color: var(--white);
}

.mobile-menu__contact {
    display: grid;
    gap: .25rem;
    padding: 1.5rem var(--gutter) 3rem;
    background: var(--black);
    color: var(--white);
}

.mobile-menu__contact a {
    width: fit-content;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 5.5vw, 2.2rem);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

@keyframes menu-in {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero */
.hero {
    position: relative;
    border-bottom: var(--line) solid var(--black);
    background: var(--paper);
}

.hero__grid {
    display: grid;
    min-height: min(850px, calc(100svh - var(--header-h) - 105px));
    grid-template-columns: minmax(460px, 42%) minmax(0, 58%);
}

.hero__copy {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 4vw, 5rem) var(--gutter);
    border-right: var(--line) solid var(--black);
}

.eyebrow {
    display: flex;
    flex-wrap: wrap;
    gap: .25rem 1.2rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.8rem);
}

.eyebrow span:not(:last-child)::after {
    margin-left: 1.2rem;
    color: var(--orange);
    content: "/";
}

.hero__title {
    margin-bottom: 1.2rem;
}

.hero__equation {
    display: grid;
    width: fit-content;
    font-size: clamp(5rem, 9vw, 9.6rem);
    line-height: .68;
}

.hero__plus {
    color: var(--orange);
    font-size: .75em;
    line-height: .82;
}

.hero__promise {
    display: block;
    margin-top: clamp(1.2rem, 2.2vw, 2.3rem);
    font-size: clamp(2rem, 3.5vw, 4.3rem);
    letter-spacing: -.04em;
    line-height: .9;
}

.hero__lead {
    max-width: 660px;
    margin-bottom: 1.65rem;
    font-size: clamp(1rem, 1.2vw, 1.22rem);
    font-weight: 500;
    line-height: 1.42;
}

.hero__actions {
    display: grid;
    max-width: 650px;
    grid-template-columns: minmax(220px, 1.25fr) minmax(180px, 1fr);
    gap: .75rem;
}

.hero__visual {
    position: relative;
    min-width: 0;
    overflow: hidden;
    isolation: isolate;
    background: var(--black);
}

.hero__photo-frame,
.hero__photo-frame picture,
.hero__photo-frame img {
    width: 100%;
    height: 100%;
}

.hero__photo-frame {
    position: absolute;
    inset: 0;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
}

.hero__photo-frame img {
    object-fit: cover;
    object-position: 52% center;
}

.hero__visual::after {
    position: absolute;
    inset: 0;
    z-index: 3;
    content: "";
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, .08), transparent 28%);
    mix-blend-mode: multiply;
}

.hero__circle,
.hero__arc {
    position: absolute;
    z-index: 4;
    pointer-events: none;
}

.hero__circle--orange {
    top: -7vw;
    left: -6vw;
    width: clamp(130px, 18vw, 330px);
    aspect-ratio: 1;
    border: var(--line) solid var(--black);
    border-radius: 50%;
    background: var(--orange);
}

.hero__circle--black {
    right: clamp(1rem, 4vw, 5rem);
    bottom: clamp(1.2rem, 4vw, 4rem);
    width: clamp(80px, 9vw, 170px);
    aspect-ratio: 1;
    border: var(--line) solid var(--paper);
    border-radius: 50%;
    background: var(--black);
}

.hero__arc {
    bottom: -13vw;
    left: -10vw;
    width: clamp(340px, 42vw, 800px);
    aspect-ratio: 1;
    border: clamp(45px, 6vw, 110px) solid var(--paper);
    border-radius: 50%;
    opacity: .98;
}

.hero__side-note {
    position: absolute;
    right: -52px;
    top: 50%;
    z-index: 5;
    margin: 0;
    padding: .4rem .8rem;
    transform: rotate(90deg) translateY(-50%);
    border: var(--line) solid var(--black);
    background: var(--orange);
    font-family: var(--font-mono);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.manifest-strip {
    display: grid;
    min-height: 105px;
    grid-template-columns: 1.25fr 1.15fr repeat(4, 1fr);
    background: var(--paper);
}

.manifest-strip > div {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: .8rem;
    padding: 1rem clamp(.8rem, 1.6vw, 1.6rem);
    border-right: var(--line) solid var(--black);
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.manifest-strip > div:last-child {
    border-right: 0;
}

.manifest-strip > div > span:not(.manifest-dot) {
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.manifest-strip__stamp,
.manifest-strip > div:nth-child(2) {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: center;
    gap: .25rem !important;
}

.manifest-dot {
    flex: 0 0 auto;
    width: clamp(24px, 2.7vw, 42px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--black);
}

.manifest-dot--orange {
    background: var(--orange);
}

/* Demand */
.demand {
    display: grid;
    min-height: 760px;
    grid-template-columns: minmax(330px, 4fr) minmax(0, 7fr);
    overflow: hidden;
    background: var(--white);
}

.demand__headline {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 6vw, 7rem) var(--gutter);
    border-right: var(--line) solid var(--black);
}

.demand__headline h2 {
    margin-bottom: 1.7rem;
    font-size: clamp(3.5rem, 6.7vw, 8.5rem);
}

.demand__headline h2 span {
    color: var(--orange);
}

.demand__headline > p:last-child {
    max-width: 570px;
    margin: 0;
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    font-weight: 600;
}

.demand__matrix {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-content: stretch;
}

.demand__matrix article {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.4rem, 2.5vw, 2.6rem);
    border-right: var(--line) solid var(--black);
    border-bottom: var(--line) solid var(--black);
    background: rgba(244, 241, 234, .92);
    transition: background-color .18s ease, color .18s ease;
}

.demand__matrix article:nth-child(3n) {
    border-right: 0;
}

.demand__matrix article:nth-child(n+4) {
    border-bottom: 0;
}

.demand__matrix article:hover {
    background: var(--black);
    color: var(--white);
}

.demand__matrix article > span {
    margin-bottom: auto;
    font-family: var(--font-mono);
    font-size: .78rem;
    font-weight: 700;
}

.demand__matrix h3 {
    margin-bottom: .7rem;
    font-size: clamp(1.7rem, 2.4vw, 3rem);
}

.demand__matrix p {
    margin: 0;
    font-size: .95rem;
}

.demand__ornament {
    position: absolute;
    right: -60px;
    bottom: -60px;
    z-index: 1;
    display: grid;
    width: min(38vw, 520px);
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(8px, 1vw, 15px);
    transform: rotate(-7deg);
    opacity: .22;
}

.demand__ornament span {
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--black);
}

.demand__ornament span:nth-child(3n+1),
.demand__ornament span:nth-child(4n) {
    background: var(--orange);
}

/* Services */
.services {
    background: var(--black);
    color: var(--white);
}

.services__header {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
    gap: 3rem;
    align-items: end;
    padding: clamp(4rem, 7vw, 8rem) var(--gutter);
    border-bottom: var(--line) solid var(--white);
}

.services__header .section-code {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.services__header h2 {
    margin: 0;
    font-size: clamp(4rem, 8vw, 10rem);
}

.services__header > p:last-child {
    margin: 0;
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--line);
    background: var(--black);
}

.service-tile {
    position: relative;
    display: flex;
    min-height: clamp(320px, 31vw, 480px);
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 3.2rem);
    color: var(--black);
}

.service-tile--paper {
    background: var(--paper);
}

.service-tile--orange {
    background: var(--orange);
}

.service-tile--white {
    background: var(--white);
}

.service-tile--black {
    background: #111;
    color: var(--white);
}

.service-tile__number {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: var(--font-mono);
    font-size: .85rem;
    font-weight: 700;
}

.service-tile h3 {
    position: relative;
    z-index: 2;
    max-width: 12ch;
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 4vw, 5.5rem);
}

.service-tile p:last-child {
    position: relative;
    z-index: 2;
    max-width: 42ch;
    margin: 0;
    font-size: clamp(.98rem, 1.15vw, 1.18rem);
    font-weight: 600;
}

.service-tile__mark {
    position: absolute;
    right: -8%;
    bottom: -15%;
    width: 48%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--black);
    opacity: .09;
    transition: transform .3s var(--ease), opacity .3s ease;
}

.service-tile__mark--orange {
    background: var(--orange);
    opacity: .7;
}

.service-tile__mark--black {
    background: var(--black);
    opacity: .15;
}

.service-tile:hover .service-tile__mark {
    transform: scale(1.18) translate(-6%, -4%);
    opacity: .28;
}

.service-tile--black:hover .service-tile__mark {
    opacity: 1;
}

/* Industries */
.industries {
    background: var(--paper);
}

.industries__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 3rem;
    align-items: end;
    padding: clamp(4rem, 7vw, 8rem) var(--gutter);
    border-bottom: var(--line) solid var(--black);
}

.industries__intro .section-code {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.industries__intro h2 {
    margin: 0;
    font-size: clamp(5rem, 10vw, 12rem);
}

.industries__intro > p:last-child {
    margin: 0;
    font-size: clamp(1.05rem, 1.35vw, 1.3rem);
    font-weight: 600;
}

.industries-mosaic {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--line);
    background: var(--black);
}

.industry {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    background: var(--black);
}

.industry--production {
    grid-column: span 4;
}

.industry--logistics {
    grid-column: span 4;
}

.industry--technical {
    grid-column: span 4;
}

.industry picture,
.industry img {
    width: 100%;
    height: 100%;
}

.industry img {
    object-fit: cover;
    filter: saturate(.88) contrast(1.02);
    transition: transform .5s var(--ease), filter .4s ease;
}

.industry:hover img {
    transform: scale(1.035);
    filter: saturate(1) contrast(1.05);
}

.industry__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: clamp(1.4rem, 2.5vw, 2.5rem);
    border-top: var(--line) solid var(--black);
    background: var(--orange);
    color: var(--black);
}

.industry--technical .industry__content {
    background: var(--paper);
}

.industry__content--dark {
    border-color: var(--white);
    background: var(--black);
    color: var(--white);
}

.industry__number {
    margin-bottom: 1.2rem;
    font-family: var(--font-mono);
    font-size: .78rem;
    font-weight: 700;
}

.industry h3,
.industry-text h3 {
    margin-bottom: .9rem;
    font-size: clamp(2.4rem, 3.7vw, 4.8rem);
}

.industry ul {
    display: grid;
    gap: .2rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 700;
}

.industry li::before {
    margin-right: .5rem;
    content: "—";
}

.industry-text {
    min-height: 330px;
    padding: clamp(2rem, 4vw, 4.5rem);
}

.industry-text--food {
    grid-column: span 7;
    background: var(--white);
}

.industry-text--horeca {
    grid-column: span 5;
    background: var(--orange);
}

.industry-text p:last-child {
    max-width: 38ch;
    margin: 0;
    font-size: clamp(1.05rem, 1.5vw, 1.45rem);
    font-weight: 600;
}

/* International */
.international {
    overflow: hidden;
    background: var(--orange);
}

.international__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: clamp(2rem, 6vw, 7rem);
    align-items: end;
    padding: clamp(4rem, 8vw, 9rem) var(--gutter);
}

.international__headline h2 {
    max-width: 9.4ch;
    margin: 0;
    font-size: clamp(4.5rem, 9.5vw, 12.5rem);
}

.international__copy {
    max-width: 640px;
}

.international__copy p {
    font-weight: 600;
}

.international__copy .lead {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: 1;
    text-transform: uppercase;
}

.country-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: var(--line) solid var(--black);
}

.country-grid span {
    display: flex;
    min-height: 120px;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-right: var(--line) solid var(--black);
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.country-grid span:nth-child(7) {
    grid-column: span 6;
    min-height: 92px;
    border-top: var(--line) solid var(--black);
    border-right: 0;
    background: var(--black);
    color: var(--white);
}

.country-grid span:nth-child(6) {
    border-right: 0;
}

.international__orbital {
    position: absolute;
    right: -12vw;
    top: -17vw;
    z-index: 1;
    width: min(58vw, 1050px);
    aspect-ratio: 1;
    border: clamp(50px, 7vw, 130px) solid rgba(0, 0, 0, .12);
    border-radius: 50%;
}

.international__orbital span {
    position: absolute;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--black);
}

.international__orbital span:nth-child(1) {
    top: 14%;
    left: -9%;
    width: 10%;
}

.international__orbital span:nth-child(2) {
    top: 34%;
    left: -20%;
    width: 15%;
}

.international__orbital span:nth-child(3) {
    right: 8%;
    bottom: -7%;
    width: 18%;
}

/* Principles */
.principles {
    background: var(--black);
    color: var(--white);
}

.principles__header {
    padding: clamp(4rem, 7vw, 8rem) var(--gutter);
}

.principles__header h2 {
    max-width: 10ch;
    margin: 0;
    font-size: clamp(5rem, 10vw, 12rem);
}

.principles__list {
    border-top: var(--line) solid var(--white);
}

.principles__list article {
    display: grid;
    min-height: 150px;
    grid-template-columns: minmax(60px, .7fr) minmax(260px, 3fr) minmax(320px, 4fr);
    gap: 2rem;
    align-items: center;
    padding: 1.5rem var(--gutter);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    transition: background-color .18s ease, color .18s ease;
}

.principles__list article:last-child {
    border-bottom: 0;
}

.principles__list article:hover {
    background: var(--orange);
    color: var(--black);
}

.principles__list article > p {
    margin: 0;
    font-family: var(--font-mono);
    font-size: .78rem;
    font-weight: 700;
}

.principles__list h3 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 4rem);
}

.principles__list span {
    max-width: 60ch;
    font-size: clamp(1rem, 1.25vw, 1.23rem);
    font-weight: 600;
}

/* Brand equation */
.brand-equation {
    display: grid;
    min-height: 1100px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto minmax(650px, 1fr);
    overflow: hidden;
    background: var(--paper);
}

.brand-equation__formula {
    position: relative;
    z-index: 3;
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: auto min-content auto min-content;
    align-items: baseline;
    gap: clamp(.5rem, 2vw, 2.5rem);
    padding: clamp(3rem, 6vw, 6rem) var(--gutter) 1rem;
    border-bottom: var(--line) solid var(--black);
    font-family: var(--font-display);
    font-size: clamp(5.3rem, 14vw, 17rem);
    font-weight: 900;
    letter-spacing: -.065em;
    line-height: .7;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-equation__operator {
    color: var(--orange);
    font-size: .65em;
}

.brand-equation__visual {
    position: relative;
    grid-column: 5 / -1;
    grid-row: 2;
    min-width: 0;
    overflow: hidden;
    border-left: var(--line) solid var(--black);
}

.brand-equation__visual picture,
.brand-equation__visual img {
    width: 100%;
    height: 100%;
}

.brand-equation__visual img {
    object-fit: cover;
    object-position: 55% center;
}

.brand-equation__visual::before {
    position: absolute;
    left: -22%;
    bottom: -33%;
    z-index: 2;
    width: 72%;
    aspect-ratio: 1;
    border: clamp(55px, 7vw, 130px) solid var(--paper);
    border-radius: 50%;
    content: "";
}

.brand-equation__photo-dot {
    position: absolute;
    right: clamp(1.5rem, 5vw, 6rem);
    top: clamp(1.5rem, 5vw, 5rem);
    z-index: 3;
    width: clamp(75px, 10vw, 180px);
    aspect-ratio: 1;
    border: var(--line) solid var(--paper);
    border-radius: 50%;
    background: var(--black);
}

.brand-equation__statement {
    position: relative;
    z-index: 4;
    grid-column: 1 / 8;
    grid-row: 2;
    align-self: center;
    margin: 3rem var(--gutter);
    padding: clamp(2rem, 4vw, 4.5rem);
    border: var(--line) solid var(--black);
    background: var(--black);
    color: var(--white);
    box-shadow: 18px 18px 0 var(--orange);
}

.brand-equation__statement h2 {
    margin-bottom: 2rem;
    font-size: clamp(3rem, 6vw, 7.2rem);
}

.brand-equation__definition {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem 2rem;
    font-size: clamp(1rem, 1.35vw, 1.3rem);
}

.brand-equation__definition p {
    margin: 0;
}

.brand-equation__definition p:last-child {
    grid-column: 1 / -1;
    max-width: 55ch;
    margin-top: .5rem;
}

.brand-equation__definition strong {
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 1.2em;
    text-transform: uppercase;
}

.brand-equation__pattern {
    position: absolute;
    left: -2.5rem;
    bottom: -2.5rem;
    z-index: 2;
    display: grid;
    width: min(28vw, 430px);
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    transform: rotate(6deg);
}

.brand-equation__pattern span {
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--black);
}

.brand-equation__pattern span:nth-child(3n),
.brand-equation__pattern span:nth-child(5n+1) {
    background: var(--orange);
}

/* Process */
.process {
    background: var(--white);
}

.process__header {
    display: grid;
    grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
    gap: 3rem;
    align-items: end;
    padding: clamp(4rem, 7vw, 8rem) var(--gutter);
    border-bottom: var(--line) solid var(--black);
}

.process__header .section-code {
    margin: 0;
}

.process__header h2 {
    margin: 0;
    font-size: clamp(4.5rem, 9vw, 11rem);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: flex;
    min-height: 480px;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1.5rem, 2.7vw, 3rem);
    border-right: var(--line) solid var(--black);
    transition: background-color .2s ease, color .2s ease;
}

.process-list li:last-child {
    border-right: 0;
}

.process-list li:nth-child(2),
.process-list li:nth-child(5) {
    background: var(--paper);
}

.process-list li:nth-child(3) {
    background: var(--orange);
}

.process-list li:hover {
    background: var(--black);
    color: var(--white);
}

.process-list__number {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(4rem, 7vw, 8rem);
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: .75;
}

.process-list h3 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3.2vw, 4rem);
}

.process-list li p:last-child {
    margin: 0;
    font-weight: 600;
}

/* Contact */
.contact-poster {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 9rem) var(--gutter) clamp(3rem, 6vw, 6rem);
    border-bottom: var(--line) solid var(--black);
    background: var(--orange);
}

.contact-poster > *:not(.contact-poster__rings) {
    position: relative;
    z-index: 2;
}

.contact-poster h2 {
    max-width: 12ch;
    margin-bottom: clamp(3rem, 7vw, 7rem);
    font-size: clamp(5rem, 12vw, 15rem);
}

.contact-poster h2 span {
    color: var(--white);
    -webkit-text-stroke: 2px var(--black);
    text-shadow: 5px 5px 0 var(--black);
}

.contact-poster__links {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: var(--line);
    max-width: 1500px;
    background: var(--black);
}

.contact-poster__links > div {
    min-width: 0;
    padding: clamp(1.5rem, 3vw, 3rem);
    background: var(--paper);
}

.contact-poster__links > div:nth-child(2) {
    background: var(--black);
    color: var(--white);
}

.contact-poster__links p {
    margin-bottom: .75rem;
    font-family: var(--font-mono);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-poster__links a {
    display: flex;
    min-width: 0;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    overflow-wrap: anywhere;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.4vw, 4.7rem);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: .95;
    text-decoration: none;
    text-transform: uppercase;
}

.contact-poster__links a svg {
    flex: 0 0 auto;
}

.contact-poster__links a:hover {
    color: var(--orange);
}

.contact-poster__meta {
    margin: 2.5rem 0 0;
    font-family: var(--font-mono);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-poster__rings {
    position: absolute;
    right: -22vw;
    top: -15vw;
    z-index: 1;
    width: min(62vw, 1100px);
    aspect-ratio: 1;
    border: clamp(55px, 8vw, 145px) solid rgba(0, 0, 0, .1);
    border-radius: 50%;
}

.contact-poster__rings span {
    position: absolute;
    aspect-ratio: 1;
    border-radius: 50%;
}

.contact-poster__rings span:first-child {
    left: -11%;
    bottom: 16%;
    width: 16%;
    background: var(--black);
}

.contact-poster__rings span:last-child {
    right: 6%;
    bottom: -7%;
    width: 24%;
    border: var(--line) solid var(--black);
    background: var(--paper);
}

/* Footer */
.site-footer {
    background: var(--black);
    color: var(--white);
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) minmax(230px, 1fr) minmax(220px, .9fr) minmax(250px, 1fr);
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .55);
}

.site-footer__top > div {
    min-width: 0;
    padding: clamp(1.7rem, 3vw, 3.5rem);
    border-right: 1px solid rgba(255, 255, 255, .45);
}

.site-footer__top > div:last-child {
    border-right: 0;
}

.footer-brand-stamp {
    display: flex;
    align-items: center;
    background: var(--paper);
}

.footer-brand-stamp img {
    width: min(100%, 330px);
    height: auto;
}

.site-footer p,
.site-footer address {
    margin-bottom: .45rem;
}

.footer-company strong {
    display: block;
    max-width: 32ch;
    font-size: .9rem;
}

.footer-registers,
.footer-contact {
    font-family: var(--font-mono);
    font-size: .83rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.footer-contact a {
    width: fit-content;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.6vw, 1.7rem);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-contact a:hover,
.site-footer__bottom a:hover {
    color: var(--orange);
}

.site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.25rem var(--gutter);
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__bottom > p:last-child {
    text-align: right;
}

.site-footer__bottom nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Legal pages */
.legal-page {
    background: var(--paper);
}

.legal-hero {
    position: relative;
    min-height: 560px;
    padding: clamp(3rem, 7vw, 7rem) var(--gutter);
    overflow: hidden;
    border-bottom: var(--line) solid var(--black);
    background: var(--white);
}

.legal-hero::after {
    position: absolute;
    right: -12vw;
    bottom: -24vw;
    width: min(52vw, 850px);
    aspect-ratio: 1;
    border: clamp(40px, 7vw, 105px) solid var(--orange);
    border-radius: 50%;
    content: "";
    opacity: .95;
}

.legal-hero--privacy::after {
    border-color: var(--black);
    opacity: .08;
}

.legal-back {
    position: relative;
    z-index: 2;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: .6rem;
    margin-bottom: clamp(2.5rem, 5vw, 5rem);
    font-family: var(--font-display);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.legal-back:hover {
    color: var(--orange);
}

.legal-hero .section-code,
.legal-hero h1,
.legal-hero__intro,
.legal-updated {
    position: relative;
    z-index: 2;
}

.legal-hero h1 {
    max-width: 11ch;
    margin-bottom: 1.5rem;
    font-size: clamp(4.4rem, 10vw, 12rem);
}

.legal-hero__intro {
    max-width: 720px;
    margin-bottom: 1.4rem;
    font-size: clamp(1.15rem, 1.8vw, 1.65rem);
    font-weight: 600;
}

.legal-updated {
    margin: 0;
}

.legal-layout {
    display: grid;
    max-width: 1500px;
    grid-template-columns: 285px minmax(0, 900px);
    gap: clamp(3rem, 7vw, 8rem);
    align-items: start;
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 7rem) var(--gutter) clamp(5rem, 9vw, 10rem);
}

.legal-toc {
    position: sticky;
    top: calc(var(--header-h) + 32px);
    padding: 1.5rem;
    border: var(--line) solid var(--black);
    background: var(--orange);
}

.legal-toc > p {
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
}

.legal-toc ol {
    display: grid;
    gap: .55rem;
    margin: 0;
    padding-left: 1.5rem;
    font-family: var(--font-mono);
    font-size: .78rem;
    font-weight: 700;
}

.legal-toc a {
    text-decoration: none;
}

.legal-toc a:hover {
    text-decoration: underline;
}

.legal-document {
    min-width: 0;
}

.legal-section {
    position: relative;
    padding: clamp(2.2rem, 4vw, 4rem) 0;
    border-top: var(--line) solid var(--black);
    scroll-margin-top: calc(var(--header-h) + 30px);
}

.legal-section:first-child {
    border-top: 0;
    padding-top: 0;
}

.legal-section__number {
    margin-bottom: 1.1rem;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: .85rem;
    font-weight: 700;
}

.legal-section h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    line-height: .96;
}

.legal-section p,
.legal-section li {
    font-size: clamp(1rem, 1.1vw, 1.12rem);
    line-height: 1.72;
}

.legal-section p {
    margin-bottom: 1.1rem;
}

.legal-section ul,
.legal-section ol {
    display: grid;
    gap: .7rem;
    margin-bottom: 1.4rem;
    padding-left: 1.4rem;
}

.legal-section a {
    font-weight: 700;
}

.legal-highlight {
    margin: 1.5rem 0;
    padding: clamp(2rem, 4vw, 3.5rem);
    border: var(--line) solid var(--black);
    background: var(--orange);
}

.legal-contact-box {
    margin-top: 2rem;
    padding: clamp(2rem, 4vw, 4rem);
    border: var(--line) solid var(--black);
    background: var(--black);
    color: var(--white);
    box-shadow: 14px 14px 0 var(--orange);
}

.legal-contact-box .legal-section__number {
    color: var(--orange);
}

.legal-contact-box a:hover {
    color: var(--orange);
}

/* Reveal */
.has-js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.has-js .reveal[data-reveal-delay="1"] {
    transition-delay: .08s;
}

.has-js .reveal[data-reveal-delay="2"] {
    transition-delay: .16s;
}

.has-js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1280px) {
    :root {
        --header-h: 76px;
    }

    .site-header__grid {
        grid-template-columns: minmax(170px, 230px) 1fr minmax(160px, 205px);
    }

    .brand,
    .desktop-nav a,
    .header-mail {
        min-height: var(--header-h);
    }

    .brand__image {
        height: 51px;
    }

    .desktop-nav a {
        font-size: .78rem;
    }

    .header-mail {
        font-size: .82rem;
    }

    .hero__grid {
        grid-template-columns: minmax(410px, 44%) minmax(0, 56%);
    }

    .manifest-strip {
        grid-template-columns: 1.15fr 1fr repeat(4, .9fr);
    }

    .manifest-strip > div {
        gap: .55rem;
        padding-inline: .9rem;
        font-size: .84rem;
    }

    .process-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-list li {
        min-height: 390px;
        border-bottom: var(--line) solid var(--black);
    }

    .process-list li:nth-child(3) {
        border-right: 0;
    }

    .process-list li:nth-child(n+4) {
        border-bottom: 0;
    }

    .process-list li:last-child {
        border-right: var(--line) solid var(--black);
    }

    .process-list li:nth-child(5) {
        grid-column: span 2;
        border-right: 0;
    }
}

@media (max-width: 1050px) {
    .site-header__grid {
        grid-template-columns: minmax(185px, 1fr) minmax(180px, 230px) var(--header-h);
    }

    .desktop-nav {
        display: none;
    }

    .brand {
        border-right: var(--line) solid var(--black);
    }

    .header-mail {
        border-right: var(--line) solid var(--black);
    }

    .menu-toggle {
        display: flex;
    }

    .hero__grid {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .hero__copy {
        min-height: 720px;
        border-right: 0;
        border-bottom: var(--line) solid var(--black);
    }

    .hero__equation {
        font-size: clamp(5.2rem, 15vw, 9rem);
    }

    .hero__promise {
        font-size: clamp(2.5rem, 7vw, 4.8rem);
    }

    .hero__visual {
        min-height: 70vw;
        max-height: 760px;
    }

    .hero__photo-frame {
        clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%, 0 17%);
    }

    .hero__circle--orange {
        top: -12vw;
        left: -7vw;
    }

    .hero__arc {
        bottom: -28vw;
        left: -17vw;
        width: 75vw;
    }

    .manifest-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .manifest-strip > div {
        min-height: 95px;
        border-bottom: var(--line) solid var(--black);
    }

    .manifest-strip > div:nth-child(3),
    .manifest-strip > div:nth-child(6) {
        border-right: 0;
    }

    .manifest-strip > div:nth-child(n+4) {
        border-bottom: 0;
    }

    .demand {
        grid-template-columns: 1fr;
    }

    .demand__headline {
        min-height: 620px;
        border-right: 0;
        border-bottom: var(--line) solid var(--black);
    }

    .demand__matrix article {
        min-height: 250px;
    }

    .services__header,
    .industries__intro,
    .international__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry--production,
    .industry--logistics,
    .industry--technical,
    .industry-text--food,
    .industry-text--horeca {
        grid-column: auto;
    }

    .industry--technical {
        grid-column: span 2;
    }

    .industry--technical picture,
    .industry--technical img {
        aspect-ratio: 16 / 9;
    }

    .industry--technical img {
        object-position: center 38%;
    }

    .country-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .country-grid span:nth-child(3),
    .country-grid span:nth-child(6) {
        border-right: 0;
    }

    .country-grid span:nth-child(-n+3) {
        border-bottom: var(--line) solid var(--black);
    }

    .country-grid span:nth-child(7) {
        grid-column: span 3;
    }

    .principles__list article {
        grid-template-columns: 55px minmax(220px, 1.2fr) minmax(260px, 1.6fr);
        gap: 1.3rem;
    }

    .brand-equation {
        min-height: 1000px;
        grid-template-rows: auto minmax(720px, 1fr);
    }

    .brand-equation__formula {
        overflow: hidden;
        font-size: clamp(4.7rem, 13vw, 10rem);
    }

    .brand-equation__visual {
        grid-column: 4 / -1;
    }

    .brand-equation__statement {
        grid-column: 1 / 9;
    }

    .contact-poster__links {
        grid-template-columns: 1fr;
    }

    .site-footer__top {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer__top > div:nth-child(2) {
        border-right: 0;
    }

    .site-footer__top > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .45);
    }

    .legal-layout {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 760px) {
    :root {
        --header-h: 68px;
        --line: 2px;
        --gutter: 1.25rem;
    }

    html {
        scroll-padding-top: calc(var(--header-h) + 14px);
    }

    .site-header__grid {
        grid-template-columns: minmax(150px, 1fr) var(--header-h);
    }

    .brand {
        min-height: var(--header-h);
        padding: .4rem .85rem;
    }

    .brand__image,
    .site-header.is-scrolled .brand__image {
        height: 45px;
    }

    .header-mail {
        display: none;
    }

    .menu-toggle {
        min-height: var(--header-h);
        width: var(--header-h);
    }

    .mobile-menu {
        inset: var(--header-h) 0 0;
    }

    .hero__copy {
        min-height: auto;
        padding-top: 2.4rem;
        padding-bottom: 2.5rem;
    }

    .eyebrow {
        gap: .2rem .65rem;
        margin-bottom: 1.7rem;
        font-size: .67rem;
    }

    .eyebrow span:not(:last-child)::after {
        margin-left: .65rem;
    }

    .hero__equation {
        font-size: clamp(4.7rem, 23vw, 7rem);
    }

    .hero__promise {
        margin-top: 1.35rem;
        font-size: clamp(2.1rem, 10.2vw, 3.6rem);
    }

    .hero__lead {
        font-size: 1rem;
    }

    .hero__actions {
        grid-template-columns: 1fr;
    }

    .button {
        min-height: 56px;
    }

    .hero__visual {
        min-height: 92vw;
    }

    .hero__photo-frame {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .hero__photo-frame img {
        object-position: 54% center;
    }

    .hero__circle--orange {
        top: -14vw;
        left: -16vw;
        width: 43vw;
    }

    .hero__circle--black {
        right: 1rem;
        bottom: 1rem;
        width: 18vw;
    }

    .hero__arc {
        bottom: -29vw;
        left: -33vw;
        width: 95vw;
        border-width: 13vw;
    }

    .hero__side-note {
        display: none;
    }

    .manifest-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .manifest-strip > div {
        min-height: 86px;
        border-right: var(--line) solid var(--black);
        border-bottom: var(--line) solid var(--black) !important;
    }

    .manifest-strip > div:nth-child(even) {
        border-right: 0;
    }

    .manifest-strip > div:nth-last-child(-n+2) {
        border-bottom: 0 !important;
    }

    .demand__headline {
        min-height: auto;
        padding-block: 4rem;
    }

    .demand__headline h2 {
        font-size: clamp(3.5rem, 16vw, 5.5rem);
    }

    .demand__matrix {
        grid-template-columns: 1fr;
    }

    .demand__matrix article {
        min-height: 220px;
        border-right: 0 !important;
        border-bottom: var(--line) solid var(--black) !important;
    }

    .demand__matrix article:last-child {
        border-bottom: 0 !important;
    }

    .demand__ornament {
        width: 70vw;
    }

    .services__header,
    .industries__intro,
    .international__grid,
    .principles__header,
    .process__header {
        padding-block: 4.5rem;
    }

    .services__header h2,
    .industries__intro h2,
    .principles__header h2,
    .process__header h2 {
        font-size: clamp(3.7rem, 16vw, 6.2rem);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-tile {
        min-height: 360px;
    }

    .service-tile h3 {
        font-size: clamp(2.8rem, 13vw, 4.7rem);
    }

    .industries-mosaic {
        grid-template-columns: 1fr;
    }

    .industry--technical,
    .industry-text--food,
    .industry-text--horeca {
        grid-column: auto;
    }

    .industry {
        min-height: 690px;
    }

    .industry--technical picture,
    .industry--technical img {
        aspect-ratio: auto;
    }

    .industry-text {
        min-height: 290px;
    }

    .international__headline h2 {
        font-size: clamp(4rem, 17vw, 6.8rem);
    }

    .international__copy .lead {
        font-size: 2rem;
    }

    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .country-grid span {
        min-height: 90px;
        border-right: var(--line) solid var(--black) !important;
        border-bottom: var(--line) solid var(--black) !important;
    }

    .country-grid span:nth-child(even) {
        border-right: 0 !important;
    }

    .country-grid span:nth-child(7) {
        grid-column: span 2;
        border-bottom: 0 !important;
    }

    .international__orbital {
        width: 95vw;
        right: -42vw;
    }

    .principles__list article {
        min-height: 210px;
        grid-template-columns: 44px 1fr;
        gap: .6rem 1rem;
        align-items: start;
        padding-block: 1.7rem;
    }

    .principles__list article > p {
        grid-row: span 2;
        padding-top: .35rem;
    }

    .principles__list h3 {
        font-size: 2.3rem;
    }

    .principles__list span {
        grid-column: 2;
    }

    .brand-equation {
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .brand-equation__formula {
        grid-column: 1;
        grid-row: 1;
        grid-template-columns: 1fr min-content;
        padding-block: 3rem;
        font-size: clamp(4.7rem, 22vw, 7rem);
        white-space: normal;
    }

    .brand-equation__formula span:nth-child(3) {
        grid-column: 1;
    }

    .brand-equation__visual {
        grid-column: 1;
        grid-row: 2;
        min-height: 82vw;
        border-left: 0;
        border-bottom: var(--line) solid var(--black);
    }

    .brand-equation__visual::before {
        left: -30%;
        bottom: -35%;
        width: 90%;
        border-width: 13vw;
    }

    .brand-equation__statement {
        grid-column: 1;
        grid-row: 3;
        margin: 0;
        padding: 3.5rem var(--gutter);
        border: 0;
        box-shadow: none;
    }

    .brand-equation__statement h2 {
        font-size: clamp(3.2rem, 14vw, 5.4rem);
    }

    .brand-equation__definition {
        grid-template-columns: 1fr;
    }

    .brand-equation__definition p:last-child {
        grid-column: 1;
    }

    .brand-equation__pattern {
        display: none;
    }

    .process__header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-list {
        grid-template-columns: 1fr;
    }

    .process-list li,
    .process-list li:nth-child(3),
    .process-list li:nth-child(5),
    .process-list li:last-child {
        min-height: 330px;
        grid-column: auto;
        border-right: 0;
        border-bottom: var(--line) solid var(--black);
    }

    .process-list li:last-child {
        border-bottom: 0;
    }

    .contact-poster {
        padding-block: 4.5rem;
    }

    .contact-poster h2 {
        margin-bottom: 3.2rem;
        font-size: clamp(4.3rem, 20vw, 7rem);
    }

    .contact-poster h2 span {
        -webkit-text-stroke-width: 1px;
        text-shadow: 3px 3px 0 var(--black);
    }

    .contact-poster__links > div {
        padding: 1.4rem;
    }

    .contact-poster__links a {
        align-items: center;
        font-size: clamp(1.45rem, 7vw, 2.5rem);
    }

    .contact-poster__links a svg {
        width: 30px;
        height: 30px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .site-footer__top > div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .45);
    }

    .site-footer__top > div:last-child {
        border-bottom: 0;
    }

    .site-footer__bottom {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .site-footer__bottom nav {
        justify-content: flex-start;
    }

    .site-footer__bottom > p:last-child {
        text-align: left;
    }

    .legal-hero {
        min-height: 520px;
        padding-block: 3rem 4.5rem;
    }

    .legal-hero h1 {
        font-size: clamp(3.8rem, 17vw, 6.6rem);
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-block: 2.5rem 6rem;
    }

    .legal-toc {
        position: static;
    }

    .legal-toc ol {
        grid-template-columns: repeat(2, 1fr);
        gap: .65rem 1.3rem;
    }

    .legal-section {
        scroll-margin-top: calc(var(--header-h) + 20px);
    }

    .legal-contact-box {
        box-shadow: 8px 8px 0 var(--orange);
    }
}

@media (max-width: 430px) {
    .brand__image {
        height: 40px;
    }

    .hero__equation {
        font-size: 21.5vw;
    }

    .hero__promise {
        font-size: 9.5vw;
    }

    .manifest-strip > div {
        padding: .8rem;
        font-size: .74rem;
    }

    .manifest-dot {
        width: 24px;
    }

    .industry {
        min-height: 620px;
    }

    .country-grid span {
        padding: .75rem .5rem;
        font-size: .88rem;
    }

    .legal-toc ol {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1800px) {
    body {
        font-size: 1.05rem;
    }

    .hero__grid {
        min-height: 900px;
    }

    .hero__equation {
        font-size: 10rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .has-js .reveal,
    .has-js .reveal.is-visible {
        opacity: 1;
        transform: none;
    }
}

/* Defensive min-width rules for expressive grid typography. */
.process-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-list li,
.process-list li > div,
.service-tile,
.demand__headline,
.international__headline {
    min-width: 0;
}

.process-list li {
    overflow: hidden;
}

.process-list h3,
.process-list li p,
.demand__headline h2,
.international__headline h2 {
    overflow-wrap: anywhere;
}

@media (max-width: 1280px) {
    .process-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .process-list {
        grid-template-columns: minmax(0, 1fr);
    }
}
