@font-face {
    font-family: "Nautilus";
    src: url("Nautilus.woff") format("woff");
    font-display: swap;
}

:root {
    --cream: #fbf5df;
    --cream-deep: #f1e5bf;
    --paper: #fffdf7;
    --yellow: #ffe600;
    --yellow-warm: #f4c700;
    --red: #a41f25;
    --red-bright: #c52a32;
    --burgundy: #3b0e12;
    --ink: #231d1a;
    --muted: #70665f;
    --line: rgba(35, 29, 26, .14);
    --white: #fff;
    --shadow: 0 26px 80px rgba(72, 35, 26, .14);
    --container: min(1240px, calc(100vw - 48px));
    --radius-lg: 38px;
    --radius-md: 26px;
    --radius-sm: 16px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 6% 5%, rgba(255, 230, 0, .14), transparent 24rem),
        var(--cream);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

html.dialog-open,
body.nav-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

address {
    font-style: normal;
}

figure,
blockquote,
dl,
dd {
    margin: 0;
}

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

h1,
h2,
h3 {
    line-height: 1.05;
    text-wrap: balance;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(2.95rem, 5.2vw, 5.2rem);
    font-weight: 750;
    letter-spacing: -.068em;
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2.45rem, 4.7vw, 5.1rem);
    font-weight: 730;
    letter-spacing: -.06em;
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(1.22rem, 2vw, 1.65rem);
    letter-spacing: -.025em;
}

h1 em,
h2 em {
    color: var(--red);
    font-family: "Nautilus", Georgia, serif;
    font-size: 1.08em;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.8em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    border-radius: 10px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: none;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.page-shell {
    min-height: 100vh;
    overflow: clip;
}

.section {
    padding: 112px 0;
}

.section-compact {
    padding-top: 58px;
    padding-bottom: 0;
}

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

.section-red {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 230, 0, .2), transparent 22rem),
        var(--red);
}

.section-red::before {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.section-burgundy {
    color: var(--white);
    background: var(--burgundy);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
    color: var(--red);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.25;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: var(--yellow-warm);
}

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

.eyebrow-light > span {
    background: var(--yellow);
}

.micro-label {
    margin-bottom: 10px;
    color: var(--red);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1;
    transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.document-icon:focus-visible,
.site-nav a:focus-visible,
.footer-links a:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

.button-small {
    min-height: 45px;
    padding: 11px 18px;
    font-size: .8rem;
}

.button-red {
    color: var(--white);
    background: var(--red);
    box-shadow: 0 14px 30px rgba(164, 31, 37, .2);
}

.button-red:hover {
    background: var(--burgundy);
}

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

.button-dark:hover {
    background: var(--red);
}

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

.button-yellow:hover {
    background: #fff06b;
}

.button-outline-light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .6);
    background: transparent;
}

.button-outline-light:hover {
    color: var(--red);
    background: var(--white);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    border: 0;
    border-bottom: 1px solid currentColor;
    color: var(--ink);
    background: transparent;
    font-weight: 800;
    line-height: 1.25;
}

.text-link span {
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid transparent;
    background: rgba(251, 245, 223, .88);
    backdrop-filter: blur(18px);
    transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(255, 253, 247, .96);
    box-shadow: 0 12px 35px rgba(63, 32, 24, .07);
}

.header-inner {
    display: flex;
    min-height: 94px;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.brand img {
    width: 112px;
    height: 76px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.site-nav a {
    position: relative;
    padding: 12px 0;
    font-size: .84rem;
    font-weight: 750;
    white-space: nowrap;
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

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

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

.header-phone {
    display: flex;
    flex-direction: column;
    font-size: .8rem;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
}

.header-phone span {
    color: var(--muted);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    margin-left: auto;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
}

.nav-toggle > span:not(.sr-only) {
    width: 20px;
    height: 2px;
    flex: 0 0 2px;
    border-radius: 999px;
    background: var(--white);
    transition: transform .2s ease, opacity .2s ease;
}

.home-hero {
    position: relative;
    padding: 30px 0 0;
}

.hero-grid {
    display: grid;
    min-height: 500px;
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
    align-items: center;
    gap: 58px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding-bottom: 22px;
}

.hero-copy h1 {
    max-width: 780px;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 26px;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.7vw, 1.36rem);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hero-facts {
    display: grid;
    max-width: 690px;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 36px;
    border-top: 1px solid var(--line);
}

.hero-facts > div {
    padding: 18px 24px 0 0;
}

.hero-facts dt {
    margin-bottom: 5px;
    color: var(--red);
    font-size: 1.75rem;
    font-weight: 850;
    letter-spacing: -.06em;
}

.hero-facts dd {
    max-width: 165px;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.45;
}

.hero-visual {
    position: relative;
    min-height: 540px;
    margin-top: -22px;
}

.hero-image {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 3%;
    width: 87.5%;
    aspect-ratio: 1;
    overflow: hidden;
    border: 12px solid var(--paper);
    border-radius: 50%;
    background: var(--cream-deep);
    box-shadow: var(--shadow);
    transform: rotate(2deg);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
}

.product-media-blur {
    isolation: isolate;
}

.media-blur-bg {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
}

.media-blur-bg::before {
    content: "";
    position: absolute;
    inset: -32px;
    background-image:
        linear-gradient(rgba(35, 29, 26, .08), rgba(35, 29, 26, .08)),
        var(--media-bg);
    background-position: center;
    background-size: cover;
    filter: blur(24px) saturate(1.2);
    transform: scale(1.08);
}

.product-media-blur > img {
    position: relative;
    z-index: 1;
}

.product-white,
.product-white img {
    background: var(--white);
}

.product-white > .media-blur-bg {
    display: none;
}

.hero-orbit {
    position: absolute;
    border-radius: 50%;
}

.hero-orbit-one {
    top: 0;
    right: -7%;
    width: 350px;
    height: 350px;
    background: var(--yellow);
}

.hero-orbit-two {
    bottom: 40px;
    left: 0;
    width: 210px;
    height: 210px;
    background: var(--red);
}

.hero-note {
    position: absolute;
    z-index: 4;
    right: -28px;
    bottom: 8px;
    display: flex;
    max-width: 255px;
    align-items: center;
    gap: 14px;
    padding: 16px 19px;
    border-radius: 18px;
    background: var(--paper);
    box-shadow: 0 18px 48px rgba(55, 30, 23, .15);
}

.hero-note p {
    margin: 0;
    font-size: .78rem;
    line-height: 1.45;
}

.hero-note-icon {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--red);
    background: var(--yellow);
}

.hero-seal {
    position: absolute;
    z-index: 4;
    bottom: -12px;
    left: -4%;
    display: flex;
    width: 145px;
    height: 145px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    color: var(--white);
    background: var(--red);
    text-align: center;
    transform: rotate(-7deg);
}

.hero-seal span {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-seal strong {
    font-family: "Nautilus", Georgia, serif;
    font-size: 1.62rem;
    font-weight: 400;
    line-height: 1;
}

.marquee {
    overflow: hidden;
    padding: 17px 0;
    color: var(--white);
    background: var(--red);
}

.marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    will-change: transform;
    animation: marquee var(--marquee-duration, 28s) linear infinite;
}

.marquee-group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
}

.marquee span {
    font-size: .77rem;
    font-weight: 850;
    letter-spacing: .16em;
}

.marquee i {
    color: var(--yellow);
    font-style: normal;
}

@keyframes marquee {
    to { transform: translate3d(var(--marquee-shift, -50%), 0, 0); }
}

.client-ribbon {
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.client-ribbon .container {
    display: grid;
    grid-template-columns: 210px 1fr;
    align-items: center;
    gap: 44px;
}

.client-ribbon p {
    margin: 0;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 750;
    line-height: 1.45;
    text-transform: uppercase;
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(7, minmax(70px, 1fr));
    align-items: center;
    gap: 30px;
}

.logo-row img {
    width: auto;
    max-width: 100%;
    height: 40px;
    margin: auto;
    filter: grayscale(1);
    object-fit: contain;
    opacity: .65;
    transition: filter .2s ease, opacity .2s ease;
}

.logo-row img:hover {
    filter: none;
    opacity: 1;
}

.split-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
    align-items: center;
    gap: 82px;
}

.split-story-reverse .story-image {
    order: 2;
}

.story-image {
    position: relative;
}

.story-slider {
    aspect-ratio: 4 / 3;
    isolation: isolate;
}

.story-slide {
    position: absolute;
    z-index: 1;
    inset: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .65s ease;
}

.story-slide.is-active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
}

.story-image::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -28px;
    right: 30px;
    width: 52%;
    height: 58%;
    border-radius: 50%;
    background: var(--yellow);
}

.story-image img {
    width: 100%;
    min-height: 480px;
    border-radius: var(--radius-lg);
    background: var(--cream-deep);
    box-shadow: var(--shadow);
    object-fit: contain;
}

.story-slider .story-slide img {
    display: block;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.story-slide.product-white {
    background: transparent;
}

.story-slide.product-white > img {
    background: var(--white);
}

.story-slide:not(.product-white) > img {
    background: transparent;
}

.story-slide .media-blur-bg,
.story-image > .media-blur-bg {
    border-radius: var(--radius-lg);
}

.image-caption {
    position: absolute;
    z-index: 3;
    right: -24px;
    bottom: 26px;
    padding: 13px 18px;
    border-radius: 999px;
    color: var(--white);
    background: var(--red);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.story-slider-controls {
    position: absolute;
    z-index: 3;
    bottom: 31px;
    left: 26px;
    display: flex;
    gap: 8px;
    padding: 7px;
    border-radius: 999px;
    background: rgba(255, 253, 247, .88);
    box-shadow: 0 8px 24px rgba(63, 32, 24, .14);
    backdrop-filter: blur(8px);
}

.story-slider-controls button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(63, 32, 24, .28);
    transition: width .2s ease, background-color .2s ease;
}

.story-slider-controls button.is-active {
    width: 24px;
    border-radius: 999px;
    background: var(--red);
}

.story-slider-controls button:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
}

.story-copy p:not(.eyebrow) {
    max-width: 585px;
    color: var(--muted);
    font-size: 1.06rem;
}

.check-list {
    display: grid;
    gap: 13px;
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    font-weight: 700;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    color: var(--red);
    background: var(--yellow);
    font-size: .72rem;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 52px;
}

.section-heading h2 {
    margin-bottom: 0;
}

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

.section-summary {
    max-width: 410px;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 1.02rem;
}

.competence-preview {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .18);
}

.competence-mini {
    min-height: 230px;
    padding: 34px;
    background: rgba(73, 8, 13, .28);
    transition: background-color .25s ease;
}

.competence-mini:hover {
    background: rgba(73, 8, 13, .48);
}

.competence-mark {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 46px;
}

.competence-mark > span:first-child {
    color: var(--yellow);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .14em;
}

.competence-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
}

.competence-icon img {
    width: 28px;
    height: 28px;
}

.competence-mini p {
    max-width: 280px;
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: .88rem;
}

.home-work-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
}

.work-tile {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    border-radius: var(--radius-md);
    color: var(--white);
    background: var(--ink);
}

.work-tile:nth-child(even) {
    min-height: 440px;
    margin-top: 0;
}

.work-tile::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(to top, rgba(35, 16, 15, .78), transparent 60%);
}

.work-tile img {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .55s ease;
}

.work-tile.product-white img {
    object-fit: cover;
}

.work-tile:hover img {
    transform: none;
}

.work-tile > span:not(.media-blur-bg),
.work-tile > strong {
    position: absolute;
    z-index: 3;
    right: 22px;
    bottom: 54px;
    left: 22px;
}

.work-tile > span:not(.media-blur-bg) {
    bottom: 82px;
    color: var(--yellow);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.work-tile > .media-blur-bg {
    z-index: 0;
    inset: 0;
}

.work-tile > strong {
    font-size: 1rem;
    line-height: 1.25;
}

.section-foot {
    display: flex;
    justify-content: center;
    margin-top: 46px;
}

.process-intro {
    max-width: 710px;
    margin-bottom: 50px;
}

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

.process-grid li {
    min-height: 280px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--cream);
}

.process-grid li:nth-child(2) {
    background: var(--yellow);
}

.process-grid li:nth-child(4) {
    color: var(--white);
    background: var(--red);
}

.process-mark {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 76px;
}

.process-mark > span:first-child {
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .14em;
}

.process-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
}

.process-icon img {
    width: 29px;
    height: 29px;
    filter: brightness(0) invert(1);
}

.process-grid li:nth-child(4) .process-icon {
    background: var(--yellow);
}

.process-grid li:nth-child(4) .process-icon img {
    filter: none;
}

.process-grid li p {
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
}

.process-grid li:nth-child(4) p {
    color: rgba(255, 255, 255, .7);
}

.cta-panel {
    display: flex;
    min-height: 300px;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    padding: 56px 64px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 230, 0, .2), transparent 18rem),
        var(--red);
    box-shadow: var(--shadow);
}

.cta-panel h2 {
    margin-bottom: 14px;
    font-size: clamp(2.2rem, 4.3vw, 4.5rem);
}

.cta-panel p:not(.eyebrow) {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.cta-panel .button {
    flex: 0 0 auto;
}

.inner-hero {
    padding: 38px 0 44px;
}

.inner-hero-red {
    color: var(--white);
    background:
        radial-gradient(circle at 94% 15%, rgba(255, 230, 0, .22), transparent 25rem),
        var(--red);
}

.inner-hero-red h1 em {
    color: var(--yellow);
}

.inner-hero-yellow {
    background: var(--yellow);
}

.inner-hero-short {
    padding: 38px 0 46px;
}

.inner-hero-grid {
    display: grid;
    min-height: 360px;
    grid-template-columns: 1fr .84fr;
    align-items: center;
    gap: 58px;
}

.inner-hero-copy > p:not(.eyebrow) {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.08rem;
}

.inner-hero-red .inner-hero-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .75);
}

.breadcrumbs {
    display: flex;
    gap: 9px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
}

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

.breadcrumbs > span:last-child {
    color: var(--ink);
}

.breadcrumbs-light {
    color: rgba(255, 255, 255, .65);
}

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

.breadcrumbs-light > span:last-child {
    color: var(--yellow);
}

.inner-hero-image {
    position: relative;
    border-radius: var(--radius-lg);
}

.inner-hero-image::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -26px 38px 38px -26px;
    border-radius: var(--radius-lg);
    background: var(--yellow);
}

.inner-hero-red .inner-hero-image::before {
    background: rgba(255, 230, 0, .9);
}

.inner-hero-image img {
    width: 100%;
    height: 340px;
    border: 10px solid var(--paper);
    border-radius: var(--radius-lg);
    background: var(--cream-deep);
    box-shadow: var(--shadow);
    object-fit: contain;
}

.inner-hero-image figcaption {
    position: absolute;
    z-index: 3;
    right: -30px;
    bottom: 30px;
    display: flex;
    max-width: 230px;
    align-items: center;
    gap: 13px;
    padding: 15px 18px;
    border-radius: 17px;
    color: var(--white);
    background: var(--red);
}

.inner-hero-red .inner-hero-image figcaption {
    color: var(--ink);
    background: var(--yellow);
}

.inner-hero-image figcaption strong {
    font-size: 1.7rem;
    letter-spacing: -.06em;
}

.inner-hero-image figcaption span {
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.35;
}

.inner-title {
    max-width: 950px;
}

.inner-title > p:not(.eyebrow) {
    max-width: 750px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.page-about .inner-hero-image {
    background: var(--white);
}

.page-about .inner-hero-image .media-blur-bg {
    display: none;
}

.page-about .inner-hero-image img {
    border-color: var(--white);
    background: var(--white);
    box-shadow: none;
}

.page-about .inner-hero + .section {
    padding-top: 64px;
}

.page-competencies .split-story-reverse .story-image img {
    height: auto;
    min-height: 0;
}

.inner-hero-yellow .inner-title > p:not(.eyebrow) {
    color: rgba(35, 29, 26, .68);
}

.about-lead-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
}

.display-quote {
    position: relative;
}

.display-quote > span {
    position: absolute;
    top: -60px;
    left: -8px;
    color: var(--yellow-warm);
    font-family: Georgia, serif;
    font-size: 9rem;
    line-height: 1;
}

.display-quote blockquote {
    position: relative;
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    font-weight: 750;
    letter-spacing: -.045em;
    line-height: 1.25;
}

.prose {
    color: var(--muted);
    font-size: 1.02rem;
}

.prose .lead,
.large-copy {
    color: var(--ink);
    font-size: clamp(1.45rem, 2.5vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: 1.3;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.value-card {
    padding: 48px 38px;
    border-radius: var(--radius-md);
    background: var(--cream);
}

.value-card-yellow {
    background: var(--yellow);
}

.value-card-red {
    color: var(--white);
    background: var(--red);
}

.value-number {
    display: block;
    margin-bottom: 92px;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .14em;
}

.value-card h3 {
    font-size: 2rem;
}

.value-card p {
    margin: 0;
    color: var(--ink);
    font-size: .9rem;
}

.value-card-red p {
    color: rgba(255, 255, 255, .94);
}

.milestones {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
}

.milestone-heading {
    position: sticky;
    top: 140px;
    align-self: start;
}

.milestone-list {
    border-top: 1px solid var(--line);
}

.milestone-list article {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 30px;
    padding: 36px 0;
    border-bottom: 1px solid var(--line);
}

.milestone-list article > strong {
    color: var(--red);
    font-size: 1.9rem;
    letter-spacing: -.05em;
}

.milestone-list p {
    margin: 0;
    color: var(--muted);
}

.mission-grid {
    display: grid;
    min-height: 420px;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 60px;
}

.mission-grid h2 {
    margin: 0;
}

.mission-grid h2 em {
    color: var(--yellow);
}

.capability-list {
    display: grid;
    gap: 14px;
}

.capability-card {
    display: grid;
    min-height: 230px;
    grid-template-columns: 90px .85fr 1fr;
    align-items: center;
    gap: 36px;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
    transition: transform .25s ease, box-shadow .25s ease;
}

.capability-card:hover {
    z-index: 1;
    box-shadow: var(--shadow);
    transform: scale(1.01);
}

.capability-card-yellow {
    background: var(--yellow);
}

.capability-card-red {
    color: var(--white);
    background: var(--red);
}

.capability-index {
    display: flex;
    width: 76px;
    height: 76px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: .73rem;
    font-weight: 850;
}

.capability-index img {
    width: 34px;
    height: 34px;
}

.capability-index span {
    font-size: .62rem;
    letter-spacing: .1em;
}

.capability-card-red .capability-index {
    border-color: rgba(255, 255, 255, .32);
}

.capability-card-red .capability-index img {
    filter: brightness(0) invert(1);
}

:is(.page-about, .page-competencies) .inner-hero-image {
    margin-bottom: 56px;
}

.page-competencies .story-image {
    margin-bottom: 62px;
}

:is(.page-about, .page-competencies) .inner-hero-image figcaption {
    right: -18px;
    bottom: -56px;
}

.page-competencies .story-image .image-caption {
    right: 18px;
    bottom: -54px;
}

.capability-card h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.5vw, 3.45rem);
}

.capability-card > p {
    margin: 0;
    color: var(--muted);
}

.capability-card-red .micro-label {
    color: var(--yellow);
}

.capability-card-red > p {
    color: rgba(255, 255, 255, .73);
}

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

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 42px;
}

.filter-bar button {
    min-height: 42px;
    padding: 9px 17px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    font-size: .78rem;
    font-weight: 750;
}

.filter-bar button:hover,
.filter-bar button.is-active {
    color: var(--white);
    border-color: var(--red);
    background: var(--red);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.portfolio-card {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
}

.portfolio-card[hidden] {
    display: none;
}

.portfolio-media {
    position: relative;
    display: block;
    height: 590px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--cream);
}

.portfolio-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .55s ease;
}

.portfolio-media:not(.product-white) img {
    object-fit: cover;
}

.portfolio-media:not(.product-white) > .media-blur-bg {
    display: none;
}

.portfolio-card:hover .portfolio-media img {
    transform: none;
}

.zoom-mark {
    position: absolute;
    z-index: 3;
    right: 20px;
    bottom: 20px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--red);
    transition: transform .25s ease;
}

.portfolio-card:hover .zoom-mark {
    transform: rotate(10deg) scale(1.05);
}

.portfolio-meta {
    display: flex;
    flex-direction: column;
    padding: 18px 6px 8px;
}

.portfolio-meta small {
    margin-bottom: 5px;
    color: var(--red);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.portfolio-meta strong {
    font-size: 1.25rem;
    line-height: 1.25;
}

.content-note {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 52px;
    padding: 24px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--cream);
}

.content-note > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--red);
    background: var(--yellow);
    font-weight: 850;
}

.content-note p {
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
}

.gallery-dialog {
    max-width: min(1000px, calc(100vw - 40px));
    max-height: calc(100vh - 40px);
    padding: 16px;
    border: 0;
    border-radius: var(--radius-md);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.gallery-dialog::backdrop,
.quote-dialog::backdrop {
    background: rgba(28, 12, 12, .8);
    backdrop-filter: blur(6px);
}

.gallery-dialog img {
    max-width: 100%;
    max-height: calc(100vh - 130px);
    border-radius: 18px;
    object-fit: contain;
}

.gallery-dialog p {
    margin: 12px 50px 0 4px;
    font-weight: 750;
}

.gallery-close {
    position: absolute;
    z-index: 2;
    top: 25px;
    right: 25px;
}

.trust-intro {
    display: grid;
    grid-template-columns: 1fr 250px;
    align-items: end;
    gap: 80px;
    margin-bottom: 64px;
}

.trust-intro .large-copy {
    max-width: 780px;
    margin: 0;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.trust-stat strong {
    color: var(--red);
    font-size: 2.3rem;
    letter-spacing: -.06em;
}

.trust-stat span {
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.4;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.client-card {
    display: flex;
    min-height: 190px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--paper);
    transition: transform .25s ease, box-shadow .25s ease;
}

.client-card:hover {
    z-index: 1;
    box-shadow: 0 18px 45px rgba(55, 31, 24, .11);
    transform: translateY(-4px);
}

.client-card img {
    width: auto;
    max-width: min(100%, 225px);
    height: 76px;
    filter: grayscale(1);
    object-fit: contain;
    transition: filter .25s ease;
}

.client-card:hover img {
    filter: none;
}

.client-card figcaption {
    color: var(--muted);
    font-size: .68rem;
    line-height: 1.3;
    text-align: center;
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.document-card {
    display: flex;
    min-height: 500px;
    align-items: flex-start;
    flex-direction: column;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
}

.document-card-yellow {
    background: var(--yellow);
}

.document-card-red {
    color: var(--white);
    background: var(--red);
}

.document-icon {
    position: relative;
    display: grid;
    width: 94px;
    height: 112px;
    place-items: center;
    margin-bottom: 56px;
    border: 2px solid currentColor;
    border-radius: 8px 20px 8px 8px;
    transition: transform .2s ease, background-color .2s ease;
}

a.document-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .22);
}

.document-icon::after {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    width: 27px;
    height: 27px;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    border-radius: 0 18px 0 5px;
}

.document-icon span {
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .14em;
}

.document-card h2 {
    font-size: 2rem;
}

.document-card p:not(.micro-label) {
    color: var(--muted);
}

.document-card-red .micro-label {
    color: var(--yellow);
}

.document-card-red p:not(.micro-label) {
    color: rgba(255, 255, 255, .7);
}

.document-card .text-link {
    margin-top: auto;
}

.document-card-red .text-link {
    color: var(--white);
}

.document-help {
    display: grid;
    grid-template-columns: 1.25fr .75fr auto;
    align-items: center;
    gap: 36px;
    margin-top: 70px;
    padding: 44px;
    border-radius: var(--radius-md);
    background: var(--cream-deep);
}

.document-help h2 {
    margin: 0;
    font-size: clamp(2rem, 2.7vw, 3rem);
}

.document-help > p {
    margin: 0;
    color: var(--muted);
}

.page-documents .document-help h2 {
    white-space: nowrap;
}

.page-documents .inner-hero + .section {
    padding-top: 54px;
    padding-bottom: 36px;
}

.page-documents .section-compact,
.page-clients .section-compact {
    padding-top: 22px;
}

.page-clients .inner-hero + .section {
    padding-bottom: 36px;
}

.contact-hero {
    padding: 38px 0 46px;
    color: var(--white);
    background:
        radial-gradient(circle at 8% 85%, rgba(255, 230, 0, .16), transparent 24rem),
        var(--red);
}

.contact-hero h1 em {
    color: var(--yellow);
}

.contact-grid {
    display: grid;
    grid-template-columns: .93fr 1.07fr;
    align-items: start;
    gap: 58px;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 610px;
    color: rgba(255, 255, 255, .73);
    font-size: 1.08rem;
}

.contact-direct {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-direct a {
    display: flex;
    max-width: 500px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .22);
}

.contact-direct small {
    color: rgba(255, 255, 255, .6);
    font-size: .68rem;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-direct strong {
    font-size: 1.12rem;
}

.contact-form-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.contact-form-card h2 {
    margin-bottom: 14px;
    font-size: 2.25rem;
}

.contact-form-card .quote-form {
    gap: 12px;
}

.contact-form-card .field input {
    height: 45px;
}

.contact-form-card .field textarea {
    min-height: 78px;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.office-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    border-radius: var(--radius-md);
}

.office-card h2 {
    margin-bottom: 20px;
    font-size: 3.5rem;
}

.office-card address {
    margin-bottom: 22px;
}

.office-card a {
    width: fit-content;
    margin-top: 6px;
    border-bottom: 1px solid currentColor;
    font-weight: 750;
}

.office-card-red {
    color: var(--white);
    background: var(--red);
}

.office-card-red .micro-label {
    color: var(--yellow);
}

.office-card-yellow {
    background: var(--yellow);
}

.legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: start;
    gap: 100px;
}

.legal-nav {
    position: sticky;
    top: 130px;
    display: grid;
    gap: 10px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
}

.legal-nav strong {
    margin-bottom: 8px;
}

.legal-nav a {
    color: var(--muted);
    font-size: .84rem;
}

.legal-nav a:hover {
    color: var(--red);
}

.legal-copy {
    max-width: 790px;
}

.legal-copy .lead {
    margin-bottom: 55px;
    font-size: 1.3rem;
    font-weight: 700;
}

.legal-copy h2 {
    margin-top: 48px;
    font-size: 2rem;
}

.legal-copy p {
    color: var(--muted);
}

.legal-rules {
    display: grid;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: legal-rule;
}

.legal-rules li {
    position: relative;
    min-height: 42px;
    padding: 7px 0 7px 58px;
    color: var(--muted);
    line-height: 1.7;
    counter-increment: legal-rule;
}

.legal-rules li::before {
    content: counter(legal-rule);
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--red);
    font-size: .78rem;
    font-weight: 850;
}

.legal-copy a {
    color: var(--red);
    text-decoration: underline;
}

.legal-date {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: .8rem;
}

.quote-form {
    display: grid;
    gap: 18px;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.field {
    display: grid;
    gap: 7px;
}

.field > span {
    font-size: .72rem;
    font-weight: 800;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 13px;
    outline: none;
    background: var(--white);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field input {
    height: 51px;
    padding: 0 16px;
}

.field textarea {
    min-height: 112px;
    padding: 14px 16px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(164, 31, 37, .11);
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.45;
}

.consent input {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: 2px;
    accent-color: var(--red);
}

.consent a {
    color: var(--red);
    text-decoration: underline;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.form-status {
    margin: 0;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.35;
}

.form-status.is-success {
    color: #2f7b3c;
}

.form-status.is-error {
    color: var(--red);
}

.form-trap {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.quote-dialog {
    position: fixed;
    inset: 0;
    width: min(760px, calc(100vw - 36px));
    max-height: calc(100vh - 36px);
    margin: auto;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.dialog-inner {
    position: relative;
    max-height: calc(100vh - 36px);
    padding: 44px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.quote-dialog.custom-scrollbar-ready .dialog-inner {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.quote-dialog.custom-scrollbar-ready .dialog-inner::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.dialog-scrollbar {
    position: absolute;
    z-index: 4;
    top: 32px;
    right: 8px;
    bottom: 32px;
    width: 7px;
    border-radius: 999px;
    background: rgba(164, 31, 37, .11);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    touch-action: none;
}

.quote-dialog.has-scrollbar .dialog-scrollbar {
    opacity: 1;
    pointer-events: auto;
}

.dialog-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 44px;
    border-radius: inherit;
    background: rgba(164, 31, 37, .78);
    box-shadow: 0 0 0 2px var(--paper);
    cursor: grab;
    will-change: height, transform;
}

.dialog-scrollbar-thumb:hover {
    background: var(--red);
}

.dialog-scrollbar-thumb:active {
    cursor: grabbing;
}

.dialog-close {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--ink);
    font-size: 1.45rem;
    line-height: 1;
}

.dialog-inner > .dialog-close {
    position: absolute;
    top: 24px;
    right: 24px;
}

.dialog-intro {
    max-width: 590px;
    padding-right: 50px;
    margin-bottom: 30px;
}

.dialog-intro h2 {
    margin-bottom: 12px;
    font-size: 2.8rem;
}

.dialog-intro > p:not(.eyebrow) {
    color: var(--muted);
}

.site-footer {
    margin-top: 56px;
    padding-top: 70px;
    color: var(--white);
    background: var(--ink);
}

main > .section:last-child {
    padding-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr .65fr;
    gap: 58px;
    padding-bottom: 58px;
}

.footer-brand .brand img {
    width: 159px;
    height: 108px;
    max-width: none;
}

.footer-brand > p {
    max-width: 290px;
    color: rgba(255, 255, 255, .55);
    font-size: .85rem;
}

.footer-label {
    margin-bottom: 18px;
    color: var(--yellow);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-office,
.footer-links {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.footer-office address {
    max-width: 220px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, .58);
    font-size: .8rem;
}

.footer-office a,
.footer-links a {
    margin: 3px 0;
    color: rgba(255, 255, 255, .85);
    font-size: .8rem;
}

.footer-office a:hover,
.footer-links a:hover {
    color: var(--yellow);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .45);
    font-size: .7rem;
}

.footer-bottom a:last-child {
    margin-left: auto;
}

.footer-bottom a:hover {
    color: var(--white);
}

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

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

.product-white,
.product-white > img {
    background: var(--white);
}

@media (max-width: 1160px) {
    .site-nav {
        gap: 16px;
    }

    .header-phone {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr .9fr;
    }

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

    .work-tile:nth-child(even) {
        margin-top: 0;
    }

    .document-help {
        grid-template-columns: 1fr 1fr;
    }

    .document-help .button {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 940px) {
    :root {
        --container: min(100% - 36px, 760px);
    }

    .section {
        padding: 82px 0;
    }

    .section-compact {
        padding-top: 28px;
    }

    .header-inner {
        min-height: 82px;
    }

    .brand img {
        width: 94px;
        height: 64px;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        z-index: 99;
        top: 82px;
        right: 0;
        bottom: auto;
        left: 0;
        display: flex;
        width: 100%;
        height: calc(100dvh - 82px);
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
        padding: 36px 28px;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: var(--paper);
        transform: translateX(100%);
        transition: transform .3s ease;
    }

    .site-nav.is-open {
        transform: none;
    }

    .site-nav a {
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
        font-size: 1.15rem;
    }

    .site-nav a::after {
        display: none;
    }

    .nav-open .nav-toggle > span:first-child {
        transform: translateY(9px) rotate(45deg);
    }

    .nav-open .nav-toggle > span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-open .nav-toggle > span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .header-actions {
        display: none;
    }

    .hero-grid,
    .inner-hero-grid,
    .split-story,
    .about-lead-grid,
    .milestones,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding-top: 34px;
    }

    .hero-grid {
        min-height: auto;
        gap: 10px;
    }

    .hero-copy {
        padding-bottom: 20px;
    }

    .hero-visual {
        min-height: 0;
        margin-top: -12px;
        padding: 12px 0 54px;
    }

    .hero-image {
        position: relative;
        top: auto;
        right: auto;
        width: min(87.5%, 537px);
        margin-inline: auto;
        transform: none;
    }

    .section-red::before {
        inset: 8px;
    }

    .client-ribbon .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .logo-row {
        grid-template-columns: repeat(4, 1fr);
    }

    .split-story {
        gap: 52px;
    }

    .split-story-reverse .story-image {
        order: initial;
    }

    .story-image img {
        min-height: 420px;
    }

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

    .competence-mini {
        min-height: 0;
        padding: 28px;
    }

    .competence-mark {
        margin-bottom: 18px;
    }

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

    .process-intro {
        margin-bottom: 32px;
    }

    .process-grid li {
        min-height: 0;
        padding: 26px 28px 28px;
    }

    .process-mark {
        margin-bottom: 18px;
    }

    .inner-hero-grid {
        gap: 32px;
    }

    .inner-hero-image {
        width: min(90%, 610px);
        margin-inline: auto;
    }

    .milestone-heading {
        position: static;
        padding-bottom: 32px;
    }

    .milestone-heading h2 {
        margin-bottom: 0;
    }

    .milestones {
        display: block;
    }

    .page-about .milestones {
        gap: 0;
    }

    .page-about .milestone-list {
        margin-top: 0;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 70px 0;
    }

    .capability-card {
        grid-template-columns: 86px 1fr;
    }

    .capability-card > p {
        grid-column: 2;
    }

    .portfolio-media {
        height: 450px;
    }

    .portfolio-card:nth-child(3n + 2) .portfolio-media {
        height: 450px;
    }

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

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

    .document-card {
        min-height: 390px;
    }

    .document-help {
        grid-template-columns: 1fr;
    }

    .document-help .button {
        grid-column: auto;
    }

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

@media (max-width: 680px) {
    :root {
        --container: calc(100% - 28px);
        --radius-lg: 28px;
        --radius-md: 22px;
    }

    body {
        font-size: 15px;
    }

    h1 {
        font-size: clamp(2.45rem, 11vw, 3.75rem);
    }

    h2 {
        font-size: clamp(2.1rem, 9vw, 3.3rem);
    }

    .section {
        padding: 56px 0;
    }

    .text-link {
        min-height: 44px;
        align-items: center;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .breadcrumbs a {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
        margin-block: -12px;
    }

    .hero-actions,
    .section-heading,
    .cta-panel,
    .form-actions,
    .footer-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button,
    .cta-panel .button {
        width: 100%;
    }

    .hero-actions {
        gap: 16px;
    }

    .hero-actions .text-link {
        width: auto;
        min-height: 44px;
        align-self: flex-start;
        padding: 10px 16px;
        border: 1px solid rgba(35, 29, 26, .24);
        border-radius: 999px;
    }

    .hero-facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .hero-facts > div {
        display: block;
        padding: 14px 4px 0 0;
        border-bottom: 0;
    }

    .hero-facts dt {
        margin-bottom: 4px;
        font-size: 1.45rem;
    }

    .hero-facts dd {
        font-size: .68rem;
        line-height: 1.35;
    }

    .hero-visual {
        min-height: 0;
        margin-top: -8px;
        padding: 8px 0 62px;
    }

    .hero-image {
        top: auto;
        right: auto;
        width: min(100%, 450px);
        border-width: 8px;
    }

    .hero-orbit-one {
        width: 250px;
        height: 250px;
    }

    .hero-orbit-two {
        width: 150px;
        height: 150px;
    }

    .hero-note {
        right: -4px;
        bottom: 6px;
        max-width: 220px;
    }

    .hero-seal {
        bottom: -12px;
        left: -6px;
        width: 112px;
        height: 112px;
    }

    .hero-seal strong {
        font-size: 1.25rem;
    }

    .logo-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .section-heading {
        gap: 24px;
        margin-bottom: 36px;
    }

    .section-heading .button {
        align-self: flex-start;
    }

    .story-image img {
        min-height: 330px;
    }

    .image-caption {
        right: 12px;
        bottom: 15px;
    }

    .story-slider-controls {
        bottom: 20px;
        left: 16px;
    }

    .competence-preview,
    .home-work-grid,
    .process-grid,
    .value-grid,
    .portfolio-grid,
    .office-grid {
        grid-template-columns: 1fr;
    }

    .competence-mini {
        min-height: 0;
        padding: 22px 24px 24px;
    }

    .competence-mark {
        margin-bottom: 12px;
    }

    .competence-icon {
        width: 42px;
        height: 42px;
    }

    .competence-mini h3 {
        margin-bottom: 6px;
    }

    .competence-mini p {
        line-height: 1.4;
    }

    .work-tile,
    .work-tile:nth-child(even) {
        min-height: 390px;
    }

    .process-grid li {
        min-height: 0;
        padding: 22px 24px 24px;
    }

    .process-mark {
        margin-bottom: 12px;
    }

    .process-icon {
        width: 44px;
        height: 44px;
    }

    .process-grid li h3 {
        margin-bottom: 6px;
    }

    .process-intro {
        margin-bottom: 24px;
    }

    .cta-panel {
        min-height: auto;
        gap: 30px;
        padding: 38px 28px;
    }

    .inner-hero,
    .inner-hero-short {
        padding: 30px 0 36px;
    }

    .inner-hero-grid {
        min-height: auto;
        gap: 24px;
    }

    .breadcrumbs {
        margin-bottom: 22px;
    }

    .inner-hero-image {
        width: calc(100% - 20px);
    }

    .inner-hero-image img {
        height: 250px;
    }

    .inner-hero-image figcaption {
        right: -14px;
        bottom: 18px;
    }

    :is(.page-about, .page-competencies) .inner-hero-image figcaption,
    .page-competencies .story-image .image-caption {
        right: 8px;
    }

    :is(.page-about, .page-competencies) .inner-hero-image {
        margin-bottom: 50px;
    }

    :is(.page-about, .page-competencies) .inner-hero-image figcaption {
        bottom: -50px;
    }

    .page-competencies .story-image .image-caption {
        bottom: -52px;
    }

    .display-quote > span {
        top: -45px;
        font-size: 7rem;
    }

    .value-number {
        margin-bottom: 65px;
    }

    .milestone-list article {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .capability-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px;
    }

    .capability-card > p {
        grid-column: auto;
    }

    .portfolio-media,
    .portfolio-card:nth-child(3n + 2) .portfolio-media {
        height: 360px;
    }

    .filter-bar {
        flex-wrap: nowrap;
        padding-bottom: 12px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-padding-inline: 4px;
        scroll-snap-type: x proximity;
        scrollbar-color: var(--red) rgba(164, 31, 37, .1);
        scrollbar-width: thin;
        touch-action: pan-x;
    }

    .filter-bar::-webkit-scrollbar {
        height: 5px;
    }

    .filter-bar::-webkit-scrollbar-track {
        border-radius: 999px;
        background: rgba(164, 31, 37, .1);
    }

    .filter-bar::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: var(--red);
    }

    .filter-bar button {
        flex: 0 0 auto;
        min-height: 44px;
        scroll-snap-align: start;
    }

    .content-note {
        align-items: flex-start;
    }

    .trust-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .client-card {
        min-height: 155px;
        padding: 18px;
    }

    .client-card img {
        height: 62px;
    }

    .document-card {
        min-height: 390px;
        padding: 28px;
    }

    .document-icon {
        margin-bottom: 32px;
    }

    .document-help {
        padding: 30px;
    }

    .page-documents .document-help h2 {
        white-space: normal;
    }

    .contact-form-card {
        padding: 28px;
    }

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

    .contact-direct a {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        min-height: 44px;
        justify-content: center;
    }

    .office-card {
        padding: 30px;
    }

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

    .legal-nav {
        position: static;
    }

    .legal-nav a {
        display: flex;
        min-height: 44px;
        align-items: center;
    }

    .page-privacy h1 em,
    .page-tenders h1 em {
        font-size: .82em;
        overflow-wrap: anywhere;
    }

    .dialog-inner {
        padding: 32px 22px;
    }

    .dialog-scrollbar {
        top: 24px;
        right: 5px;
        bottom: 24px;
        width: 6px;
    }

    .dialog-intro {
        padding-right: 38px;
    }

    .dialog-intro h2 {
        font-size: 2.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 38px;
    }

    .footer-label {
        margin-bottom: 9px;
    }

    .footer-office address {
        margin-bottom: 7px;
        line-height: 1.4;
    }

    .footer-office a,
    .footer-links a,
    .footer-bottom a {
        display: flex;
        min-height: 34px;
        align-items: center;
        margin: 0;
    }

    .footer-bottom {
        gap: 8px;
        justify-content: flex-start;
    }

    .footer-bottom a:last-child {
        margin-left: 0;
    }

    .page-about .milestones {
        gap: 0;
    }

    .page-about .milestone-heading {
        padding-bottom: 24px;
    }

    .page-about .milestone-list {
        margin-top: 0;
    }
}

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

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

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