@charset "UTF-8";

:root {
    --ink: #101615;
    --ink-soft: #1a211f;
    --paper: #f3f1eb;
    --paper-warm: #ebe8df;
    --white: #fff;
    --muted: #777b75;
    --line: rgba(16, 22, 21, .14);
    --accent: #c8ff3d;
    --accent-dark: #a8da28;
    --blue: #405a68;
    --container: 1380px;
    --gutter: clamp(20px, 4vw, 64px);
    --radius: 2px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Arial", "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    cursor: pointer;
}

::selection {
    color: var(--ink);
    background: var(--accent);
}

.container {
    width: min(100% - (var(--gutter) * 2), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    padding: 12px 18px;
    color: var(--ink);
    background: var(--accent);
    transform: translateY(-150%);
}

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

.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    transition: color .3s ease, background .3s ease, transform .3s ease;
}

.site-header.is-scrolled {
    position: fixed;
    color: var(--ink);
    background: rgba(243, 241, 235, .94);
    border-color: var(--line);
    box-shadow: 0 8px 30px rgba(16, 22, 21, .08);
    backdrop-filter: blur(16px);
}

.site-header.is-hidden {
    transform: translateY(-105%);
}

.header-inner {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
    letter-spacing: -.04em;
}

.brand-mark {
    width: 38px;
    color: var(--accent);
}

.brand-name {
    font-size: 21px;
    font-weight: 800;
    line-height: .86;
}

.brand-name small {
    display: block;
    margin-top: 5px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 2.4vw, 42px);
}

.desktop-nav a {
    position: relative;
    padding: 33px 0 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .03em;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 26px;
}

.header-phone {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: right;
}

.header-phone span {
    margin-bottom: 4px;
    opacity: .6;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .03em;
    transition: color .2s ease, background .2s ease, border .2s ease, transform .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-small {
    min-height: 44px;
    padding-inline: 20px;
    font-size: 11px;
}

.button-light {
    color: var(--ink);
    background: var(--white);
}

.is-scrolled .button-light {
    color: var(--paper);
    background: var(--ink);
}

.button-accent {
    color: var(--ink);
    background: var(--accent);
}

.button-accent:hover {
    background: var(--white);
}

.button-dark {
    color: var(--white);
    background: var(--ink);
}

.button-dark:hover {
    color: var(--ink);
    background: var(--accent);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 6px auto;
    background: currentColor;
    transition: transform .25s ease;
}

.menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

.messages {
    position: fixed;
    z-index: 110;
    top: 100px;
    right: var(--gutter);
    width: min(420px, calc(100% - 40px));
}

.message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    color: var(--ink);
    background: var(--accent);
    box-shadow: 0 18px 50px rgba(16, 22, 21, .2);
    font-size: 14px;
    font-weight: 700;
}

.message button {
    border: 0;
    background: none;
    font-size: 22px;
}

.hero {
    position: relative;
    min-height: min(940px, 100svh);
    overflow: hidden;
    color: var(--white);
    background: #15202a;
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media {
    background: url("../img/terminal-hero.webp") center / cover no-repeat;
    animation: heroScale 18s ease-out both;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(8, 14, 16, .94) 0%, rgba(8, 14, 16, .78) 32%, rgba(8, 14, 16, .12) 69%, rgba(8, 14, 16, .24) 100%),
        linear-gradient(0deg, rgba(8, 14, 16, .58) 0%, transparent 42%);
}

@keyframes heroScale {
    from { transform: scale(1.04); }
    to { transform: scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: min(940px, 100svh);
    flex-direction: column;
    justify-content: center;
    padding-top: 130px;
    padding-bottom: 52px;
}

.hero-kicker,
.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero-kicker {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .7);
}

.hero-kicker span {
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.hero h1,
.page-hero h1 {
    max-width: 1000px;
    margin: 0;
    font-size: clamp(56px, 7vw, 112px);
    font-weight: 600;
    letter-spacing: -.075em;
    line-height: .86;
}

.hero h1 em,
.page-hero h1 em,
.section-heading h2 em,
.stats-statement h2 em {
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.hero-copy {
    max-width: 530px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: clamp(16px, 1.3vw, 20px);
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 38px;
    margin-top: 36px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    transition: color .2s ease, gap .2s ease;
}

.text-link:hover {
    gap: 32px;
    color: var(--accent-dark);
}

.text-link-light {
    color: var(--white);
}

.text-link-light:hover {
    color: var(--accent);
}

.hero-proof {
    display: flex;
    max-width: 710px;
    margin-top: auto;
    padding-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.hero-proof div {
    min-width: 170px;
    padding-right: 34px;
}

.hero-proof div + div {
    padding-left: 34px;
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.hero-proof strong {
    display: block;
    color: var(--accent);
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
}

.hero-proof span {
    display: block;
    margin-top: 9px;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-index {
    position: absolute;
    z-index: 3;
    right: var(--gutter);
    bottom: 55px;
    font-family: Georgia, serif;
    font-size: 18px;
}

.hero-index span {
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
}

.brand-strip {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.brand-strip-inner {
    display: grid;
    min-height: 122px;
    grid-template-columns: minmax(180px, .7fr) 2fr;
    align-items: center;
    gap: 60px;
}

.brand-strip p {
    max-width: 230px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.producer-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.producer-list span {
    color: #3f4542;
    font-size: clamp(17px, 1.8vw, 27px);
    font-weight: 800;
    letter-spacing: -.035em;
}

.producer-list span + span::before {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 clamp(16px, 2.3vw, 40px) 6px 0;
    border-radius: 50%;
    background: var(--accent-dark);
    content: "";
}

.section {
    padding-block: clamp(90px, 10vw, 150px);
}

.section-heading {
    display: grid;
    grid-template-columns: .45fr 1.6fr .8fr;
    align-items: end;
    gap: 30px;
    margin-bottom: 64px;
}

.section-heading .eyebrow {
    align-self: start;
    padding-top: 12px;
    color: var(--muted);
}

.section-heading h2,
.products-intro h2,
.request-copy h2,
.office-details h2,
.geography-copy h2,
.sectors h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 75px);
    font-weight: 600;
    letter-spacing: -.065em;
    line-height: .95;
}

.section-heading h2 em {
    color: var(--blue);
}

.section-heading > p,
.products-intro > p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.solution-card {
    position: relative;
    display: flex;
    min-height: 480px;
    flex-direction: column;
    padding: clamp(28px, 3vw, 48px);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: color .3s ease, background .3s ease, transform .3s ease;
}

.solution-card:hover {
    z-index: 1;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-8px);
}

.solution-card-featured {
    background: var(--accent);
}

.solution-card-featured:hover {
    color: var(--ink);
    background: var(--accent);
}

.card-number {
    align-self: flex-end;
    color: var(--muted);
    font-family: Georgia, serif;
    font-size: 13px;
}

.solution-card-featured .card-number {
    color: rgba(16, 22, 21, .55);
}

.solution-icon {
    width: 65px;
    margin: 60px 0 35px;
}

.solution-card h3 {
    margin: 0 0 18px;
    font-size: clamp(25px, 2.2vw, 34px);
    font-weight: 700;
    letter-spacing: -.05em;
    line-height: 1;
}

.solution-card p {
    max-width: 360px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.solution-card:hover p {
    color: rgba(255, 255, 255, .65);
}

.solution-card-featured p,
.solution-card-featured:hover p {
    color: rgba(16, 22, 21, .65);
}

.solution-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 26px;
    border-top: 1px solid currentColor;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.products {
    color: var(--white);
    background: var(--ink);
}

.products-intro {
    display: grid;
    grid-template-columns: 1.5fr .55fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 70px;
}

.eyebrow-light {
    color: rgba(255, 255, 255, .52);
}

.products-intro .eyebrow {
    margin-bottom: 28px;
}

.products-intro p {
    color: rgba(255, 255, 255, .55);
}

.product-list {
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.product-row {
    display: grid;
    min-height: 118px;
    grid-template-columns: 80px 1.2fr .8fr 50px;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    transition: color .25s ease, padding .25s ease, background .25s ease;
}

.product-row:hover {
    padding-inline: 22px;
    color: var(--ink);
    background: var(--accent);
}

.product-index {
    color: rgba(255, 255, 255, .35);
    font-family: Georgia, serif;
    font-size: 13px;
}

.product-row:hover .product-index {
    color: rgba(16, 22, 21, .5);
}

.product-name {
    font-size: clamp(24px, 2.6vw, 40px);
    font-weight: 600;
    letter-spacing: -.05em;
}

.product-meta {
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    letter-spacing: .04em;
}

.product-row:hover .product-meta {
    color: rgba(16, 22, 21, .62);
}

.product-arrow {
    font-size: 20px;
    text-align: right;
}

.trademark-note {
    max-width: 770px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, .32);
    font-size: 10px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}

.process-step {
    position: relative;
    min-height: 260px;
    padding: 35px 35px 30px 0;
    border-bottom: 1px solid var(--line);
}

.process-step:not(:last-child) {
    border-right: 1px solid var(--line);
}

.process-step:not(:first-child) {
    padding-left: 35px;
}

.process-step > span {
    color: var(--accent-dark);
    font-family: Georgia, serif;
    font-size: 14px;
}

.process-step h3 {
    margin: 65px 0 16px;
    font-size: 26px;
    letter-spacing: -.04em;
}

.process-step p {
    max-width: 230px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.stats-panel {
    color: var(--white);
    background:
        linear-gradient(105deg, rgba(16, 22, 21, .98), rgba(16, 22, 21, .8)),
        url("../img/terminal-hero.webp") center / cover;
}

.stats-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
}

.stats-statement {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stats-statement h2 {
    margin: 38px 0 50px;
    font-size: clamp(43px, 5.2vw, 78px);
    line-height: .95;
}

.stats-statement h2 em {
    display: block;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.stat-card {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(28px, 3vw, 45px);
    border-right: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.stat-card strong {
    color: var(--accent);
    font-family: Georgia, serif;
    font-size: clamp(33px, 3vw, 50px);
    font-weight: 400;
    letter-spacing: -.04em;
}

.stat-card p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.section-heading-row .eyebrow {
    margin-bottom: 28px;
    padding: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 46px);
}

.news-card a {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.news-visual {
    position: relative;
    display: flex;
    height: clamp(220px, 24vw, 350px);
    overflow: hidden;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px;
    color: var(--white);
    background: #42535a;
    transition: transform .35s ease;
}

.news-visual::before,
.news-visual::after {
    position: absolute;
    content: "";
    transition: transform .5s ease;
}

.news-visual::before {
    width: 58%;
    height: 72%;
    right: -8%;
    bottom: -14%;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 50%;
}

.news-visual::after {
    width: 70%;
    height: 2px;
    right: -6%;
    bottom: 30%;
    background: var(--accent);
    transform: rotate(-28deg);
}

.news-card:hover .news-visual::before {
    transform: scale(1.12);
}

.news-card:hover .news-visual::after {
    transform: rotate(-32deg) translateX(-16px);
}

.news-visual-2 {
    background: #715e45;
}

.news-visual-3,
.news-visual-0 {
    background: #273b35;
}

.news-visual-4 {
    background: #5f4747;
}

.news-visual span {
    position: relative;
    z-index: 1;
    padding: 7px 10px;
    color: var(--ink);
    background: var(--accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.news-visual b {
    position: absolute;
    right: 18px;
    bottom: -23px;
    color: rgba(255, 255, 255, .08);
    font-family: Georgia, serif;
    font-size: 145px;
    font-weight: 400;
    line-height: 1;
}

.news-card time {
    margin-top: 24px;
    color: var(--muted);
    font-family: Georgia, serif;
    font-size: 11px;
}

.news-card h3,
.news-card h2 {
    margin: 17px 0 14px;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 650;
    letter-spacing: -.045em;
    line-height: 1.1;
    transition: color .2s ease;
}

.news-card:hover h3,
.news-card:hover h2 {
    color: #527025;
}

.news-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.news-more {
    margin-top: auto;
    padding-top: 24px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.request-section {
    padding-block: clamp(90px, 10vw, 150px);
    color: var(--white);
    background: #273b35;
}

.request-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(60px, 9vw, 140px);
}

.request-copy h2 {
    margin: 34px 0 26px;
}

.request-copy > p {
    max-width: 470px;
    color: rgba(255, 255, 255, .58);
    font-size: 15px;
}

.request-contact {
    margin-top: 75px;
}

.request-contact small {
    display: block;
    color: rgba(255, 255, 255, .45);
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.request-contact a {
    display: inline-block;
    margin-top: 9px;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
    font-family: Georgia, serif;
    font-size: clamp(26px, 3vw, 42px);
}

.lead-form {
    padding: clamp(30px, 4vw, 55px);
    color: var(--ink);
    background: var(--paper);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 24px;
}

.field {
    display: flex;
    flex-direction: column;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    outline: 0;
    background: transparent;
    font-size: 14px;
    resize: vertical;
    transition: border .2s ease;
}

.field textarea {
    min-height: 90px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #a3a49f;
}

.field-error {
    margin-top: 6px;
    color: #9d2f28;
    font-size: 11px;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 10px;
}

.consent input {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin: 1px 0 0;
    accent-color: var(--ink);
}

.consent a {
    border-bottom: 1px solid currentColor;
}

.consent-error {
    display: block;
}

.button-submit {
    width: 100%;
    margin-top: 30px;
    justify-content: space-between;
}

.button-submit:hover {
    color: var(--white);
    background: var(--ink);
}

.site-footer {
    padding: 72px 0 30px;
    color: var(--white);
    background: #0b0f0e;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    gap: 50px;
    padding-bottom: 65px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.brand-footer {
    justify-self: start;
}

.footer-top > p {
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-family: Georgia, serif;
    font-size: 22px;
    line-height: 1.25;
}

.footer-call {
    justify-self: end;
    font-family: Georgia, serif;
    font-size: 27px;
    text-align: right;
}

.footer-call small {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, .4);
    font-family: Arial, sans-serif;
    font-size: 8px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    padding: 62px 0;
}

.footer-grid h2 {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, .34);
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
    display: block;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
}

.footer-grid a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .34);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-bottom span:nth-child(2) {
    margin-left: auto;
}

.to-top {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: var(--white);
    background: transparent;
}

.to-top:hover {
    color: var(--ink);
    background: var(--accent);
}

/* Inner pages */
.page-hero {
    padding: 190px 0 100px;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 10%, rgba(200, 255, 61, .12), transparent 30%),
        var(--ink);
}

.page-hero-compact {
    padding-bottom: 85px;
}

.page-hero-about {
    background:
        linear-gradient(105deg, rgba(16, 22, 21, .98) 0%, rgba(16, 22, 21, .74) 64%, rgba(16, 22, 21, .45)),
        url("../img/terminal-hero.webp") center 58% / cover;
}

.page-hero-contacts {
    background:
        radial-gradient(circle at 78% 25%, rgba(64, 90, 104, .55), transparent 32%),
        var(--ink);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, .45);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.7fr .6fr;
    align-items: end;
    gap: 70px;
}

.page-hero h1 {
    font-size: clamp(55px, 7vw, 104px);
}

.page-hero-grid > p {
    max-width: 440px;
    margin: 0 0 5px;
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: .35fr 1.65fr;
    gap: 60px;
}

.manifesto-grid > .eyebrow {
    padding-top: 12px;
    color: var(--muted);
}

.lead-text {
    max-width: 1000px;
    margin: 0;
    font-size: clamp(31px, 4vw, 58px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: 1.1;
}

.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}

.two-columns p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.values-section {
    background: var(--paper-warm);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.value-card {
    min-height: 300px;
    padding: clamp(32px, 4vw, 60px);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.value-card span {
    color: var(--accent-dark);
    font-family: Georgia, serif;
    font-size: 13px;
}

.value-card h3 {
    margin: 65px 0 15px;
    font-size: 30px;
    letter-spacing: -.045em;
}

.value-card p {
    max-width: 410px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.sectors {
    color: var(--white);
    background: var(--ink);
}

.sectors-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}

.sectors h2 {
    margin-top: 35px;
}

.sector-list {
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.sector-list div {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    font-size: clamp(20px, 2.2vw, 32px);
    letter-spacing: -.03em;
}

.sector-list span {
    color: var(--accent);
    font-family: Georgia, serif;
    font-size: 11px;
}

.geography-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(60px, 10vw, 150px);
}

.geography-visual {
    position: relative;
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
}

.map-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
}

.orbit-one {
    width: 72%;
    height: 72%;
}

.orbit-two {
    width: 42%;
    height: 42%;
}

.map-core {
    position: relative;
    z-index: 2;
    color: var(--accent);
    font-family: Georgia, serif;
    font-size: clamp(70px, 9vw, 130px);
    line-height: .8;
    text-align: center;
}

.map-core small {
    display: block;
    margin-top: 24px;
    color: rgba(255, 255, 255, .58);
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.map-point {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--blue);
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(200, 255, 61, .14);
}

.point-one { top: 19%; left: 48%; }
.point-two { right: 17%; bottom: 30%; }
.point-three { bottom: 20%; left: 24%; }

.geography-copy .eyebrow {
    margin-bottom: 35px;
    color: var(--muted);
}

.geography-copy p {
    max-width: 510px;
    margin: 32px 0 42px;
    color: var(--muted);
    font-size: 15px;
}

.news-page {
    min-height: 600px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 50px;
}

.filter-tabs a {
    padding: 11px 17px;
    border: 1px solid var(--line);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.filter-tabs a:hover,
.filter-tabs a[aria-current="page"] {
    color: var(--paper);
    background: var(--ink);
}

.news-grid-page {
    row-gap: 80px;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 80px;
    border: 1px solid var(--line);
    text-align: center;
}

.article-header {
    padding: 180px 0 100px;
    color: var(--white);
    background: var(--ink);
}

.article-header-inner {
    max-width: 1060px;
}

.article-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.article-meta span {
    padding: 6px 9px;
    color: var(--ink);
    background: var(--accent);
    font-weight: 800;
}

.article-header h1 {
    margin: 0;
    font-size: clamp(44px, 6vw, 84px);
    line-height: .98;
    letter-spacing: -.065em;
}

.article-header-inner > p {
    max-width: 720px;
    margin: 35px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 18px;
}

.article-layout {
    display: grid;
    grid-template-columns: 180px minmax(0, 760px);
    justify-content: center;
    gap: 70px;
    padding-block: 90px 130px;
}

.article-share {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 8px;
}

.article-share span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.article-share button {
    padding: 0 0 4px;
    border: 0;
    border-bottom: 1px solid;
    background: transparent;
    font-size: 11px;
}

.article-body {
    font-family: Georgia, serif;
    font-size: 19px;
    line-height: 1.75;
}

.article-body p {
    margin: 0 0 32px;
}

.article-body p:first-child::first-letter {
    float: left;
    margin: 10px 10px 0 0;
    color: var(--blue);
    font-size: 80px;
    line-height: .7;
}

.article-callout {
    margin-top: 60px;
    padding: 42px;
    background: var(--accent);
}

.article-callout span {
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.article-callout p {
    margin: 14px 0 25px;
    font-size: 24px;
    line-height: 1.3;
}

.article-callout .button {
    font-family: Arial, sans-serif;
}

.related-news {
    background: var(--paper-warm);
}

.contacts-info {
    background: var(--paper);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid var(--line);
}

.contact-card {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(25px, 3vw, 45px);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .2s ease;
}

a.contact-card:hover {
    background: var(--accent);
}

.contact-card > span {
    margin-bottom: auto;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-card strong {
    font-size: clamp(21px, 2.1vw, 31px);
    line-height: 1.15;
    letter-spacing: -.04em;
}

.contact-card small {
    margin-top: 13px;
    color: var(--muted);
    font-size: 10px;
}

.contacts-request {
    background: var(--ink);
}

.check-list {
    padding: 0;
    margin: 55px 0 0;
    list-style: none;
}

.check-list li {
    margin: 15px 0;
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
}

.check-list li::before {
    margin-right: 12px;
    color: var(--accent);
    content: "✓";
}

.office-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    align-items: stretch;
    gap: 80px;
}

.office-map {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #d9ded9;
}

.map-grid {
    position: absolute;
    inset: -20%;
    opacity: .65;
    background:
        linear-gradient(27deg, transparent 47%, #fff 48%, #fff 51%, transparent 52%) 0 0 / 120px 90px,
        linear-gradient(90deg, transparent 48%, #bcc7bf 49%, #bcc7bf 51%, transparent 52%) 0 0 / 80px 80px,
        linear-gradient(0deg, transparent 48%, #bcc7bf 49%, #bcc7bf 51%, transparent 52%) 0 0 / 80px 80px;
    transform: rotate(-8deg) scale(1.2);
}

.office-pin {
    position: absolute;
    top: 48%;
    left: 55%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--ink);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 14px 35px rgba(16, 22, 21, .25);
}

.office-pin i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.office-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.office-details .eyebrow {
    margin-bottom: 30px;
    color: var(--muted);
}

.office-details p {
    margin: 28px 0 35px;
    color: var(--muted);
}

.office-details .text-link {
    align-self: flex-start;
}

.legal-hero {
    padding: 190px 0 80px;
    color: var(--white);
    background: var(--ink);
}

.legal-hero .breadcrumbs {
    margin-bottom: 45px;
}

.legal-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(46px, 6vw, 82px);
    letter-spacing: -.06em;
    line-height: 1;
}

.legal-hero p {
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .45);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.legal-content {
    padding-block: 90px 130px;
}

.legal-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 800px);
    justify-content: center;
    gap: 90px;
}

.legal-grid aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding-top: 8px;
}

.legal-grid aside span {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.legal-grid aside a {
    padding-bottom: 3px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
}

.legal-grid article h2 {
    margin: 60px 0 20px;
    font-size: 29px;
    letter-spacing: -.04em;
}

.legal-grid article h2:first-child {
    margin-top: 0;
}

.legal-grid article p {
    color: #555b57;
    font-family: Georgia, serif;
    font-size: 17px;
    line-height: 1.8;
}

.legal-grid article a {
    border-bottom: 1px solid;
}

.requisite-row {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 30px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.requisite-row:first-child {
    border-top: 1px solid var(--line);
}

.requisite-row span {
    color: var(--muted);
    font-size: 11px;
}

.requisite-row strong {
    font-size: 14px;
}

.legal-note {
    margin-top: 30px;
    padding: 18px;
    border-left: 3px solid var(--accent-dark);
    background: var(--paper-warm);
    font-family: Arial, sans-serif !important;
    font-size: 12px !important;
}

.error-page {
    display: grid;
    min-height: 75vh;
    padding: 180px 0 100px;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    text-align: center;
}

.error-page span {
    color: var(--accent);
    font-family: Georgia, serif;
    font-size: clamp(90px, 16vw, 220px);
    line-height: .7;
    opacity: .25;
}

.error-page h1 {
    margin: 20px 0 10px;
    font-size: clamp(38px, 5vw, 70px);
    letter-spacing: -.06em;
}

.error-page p {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .55);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 1100px) {
    .desktop-nav,
    .header-phone,
    .desktop-only {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .site-header.menu-active {
        position: fixed;
        color: var(--white);
        background: var(--ink);
    }

    .mobile-menu {
        position: fixed;
        z-index: -1;
        inset: 0;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        justify-content: space-between;
        padding: 130px var(--gutter) 50px;
        color: var(--white);
        background: var(--ink);
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s;
    }

    .menu-open .mobile-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu nav {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
        font-size: clamp(32px, 6vw, 60px);
        font-weight: 600;
        letter-spacing: -.05em;
    }

    .mobile-menu nav span {
        color: var(--accent);
        font-family: Georgia, serif;
        font-size: 11px;
    }

    .mobile-menu-footer {
        display: flex;
        gap: 30px;
        color: rgba(255, 255, 255, .5);
        font-size: 12px;
    }

    .section-heading {
        grid-template-columns: .35fr 1.4fr;
    }

    .section-heading > p {
        grid-column: 2;
    }

    .request-grid,
    .stats-inner,
    .sectors-grid {
        gap: 60px;
    }
}

@media (max-width: 820px) {
    .header-inner {
        min-height: 72px;
    }

    .hero {
        min-height: 850px;
    }

    .hero-content {
        min-height: 850px;
        padding-top: 120px;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(8, 14, 16, .93), rgba(8, 14, 16, .55)),
            linear-gradient(0deg, rgba(8, 14, 16, .8), transparent 58%);
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(52px, 12vw, 78px);
    }

    .hero-proof div {
        min-width: 0;
        flex: 1;
    }

    .hero-index {
        display: none;
    }

    .brand-strip-inner {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-block: 28px;
    }

    .producer-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .producer-list span + span::before {
        display: none;
    }

    .section-heading,
    .products-intro,
    .stats-inner,
    .request-grid,
    .page-hero-grid,
    .manifesto-grid,
    .sectors-grid,
    .geography-grid,
    .office-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        gap: 25px;
    }

    .section-heading > p {
        grid-column: auto;
    }

    .solution-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        min-height: 410px;
    }

    .product-row {
        grid-template-columns: 45px 1fr 30px;
    }

    .product-meta {
        display: none;
    }

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

    .stats-statement h2 em {
        display: inline;
    }

    .news-grid {
        gap: 55px;
    }

    .news-visual {
        height: 420px;
    }

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

    .footer-call {
        grid-column: 1 / -1;
        justify-self: start;
        text-align: left;
    }

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

    .page-hero {
        padding-top: 150px;
    }

    .page-hero-grid {
        gap: 35px;
    }

    .two-columns {
        gap: 30px;
    }

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

    .contact-card {
        min-height: 190px;
    }

    .office-grid {
        gap: 50px;
    }

    .office-map {
        min-height: 400px;
    }

    .article-layout,
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-share {
        flex-direction: row;
        align-items: center;
    }

    .legal-grid aside {
        display: none;
    }
}

@media (max-width: 560px) {
    :root {
        --gutter: 18px;
    }

    .hero {
        min-height: 790px;
    }

    .hero-content {
        min-height: 790px;
        padding-bottom: 30px;
    }

    .hero-kicker {
        margin-bottom: 24px;
        font-size: 8px;
    }

    .hero h1 {
        font-size: clamp(47px, 15vw, 67px);
    }

    .hero-copy {
        margin-top: 28px;
        font-size: 14px;
    }

    .hero-cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
        margin-top: 28px;
    }

    .hero-cta .button {
        width: 100%;
        justify-content: space-between;
    }

    .hero-proof {
        padding-top: 24px;
    }

    .hero-proof div {
        padding-right: 12px;
    }

    .hero-proof div + div {
        padding-left: 12px;
    }

    .hero-proof strong {
        font-size: 24px;
    }

    .hero-proof span {
        font-size: 7px;
    }

    .section {
        padding-block: 75px;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2,
    .products-intro h2,
    .request-copy h2,
    .office-details h2,
    .geography-copy h2,
    .sectors h2 {
        font-size: 41px;
    }

    .solution-card {
        min-height: 360px;
    }

    .solution-icon {
        margin-block: 40px 28px;
    }

    .product-row {
        min-height: 96px;
        gap: 15px;
    }

    .product-name {
        font-size: 22px;
    }

    .process-grid,
    .stats-cards,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .process-step,
    .process-step:not(:first-child) {
        min-height: 230px;
        padding: 28px 0;
        border-right: 0;
    }

    .process-step h3 {
        margin-top: 48px;
    }

    .stats-inner {
        gap: 50px;
    }

    .stat-card {
        min-height: 180px;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .news-visual {
        height: 290px;
    }

    .request-grid {
        width: 100%;
        gap: 50px;
    }

    .request-copy {
        padding-inline: var(--gutter);
    }

    .request-contact {
        margin-top: 45px;
    }

    .lead-form {
        padding: 28px 20px;
    }

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

    .field-full {
        grid-column: auto;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-call {
        grid-column: auto;
    }

    .footer-grid {
        gap: 35px 25px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom span:nth-child(2) {
        margin-left: 0;
    }

    .page-hero {
        padding: 135px 0 70px;
    }

    .breadcrumbs {
        margin-bottom: 40px;
    }

    .page-hero h1 {
        font-size: 49px;
    }

    .manifesto-grid {
        gap: 35px;
    }

    .lead-text {
        font-size: 33px;
    }

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

    .value-card {
        min-height: 260px;
    }

    .sectors-grid {
        gap: 55px;
    }

    .sector-list div {
        min-height: 72px;
    }

    .contact-card {
        min-height: 160px;
    }

    .article-header {
        padding: 140px 0 70px;
    }

    .article-header h1 {
        font-size: 42px;
    }

    .article-layout {
        padding-block: 55px 80px;
    }

    .article-body {
        font-size: 17px;
    }

    .article-callout {
        padding: 28px;
    }

    .legal-hero {
        padding: 140px 0 60px;
    }

    .legal-hero h1 {
        font-size: 43px;
    }

    .legal-content {
        padding-block: 60px 90px;
    }

    .requisite-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mobile-menu-footer {
        flex-direction: column;
        gap: 8px;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
