:root {
    --ink: #07080a;
    --ink-soft: #111419;
    --blue: #0954c7;
    --blue-bright: #176be3;
    --gold: #d2a84a;
    --paper: #eef0ed;
    --white: #f7f8f5;
    --gray: #aab0b9;
    --line: rgba(7, 8, 10, 0.17);
    --page-pad: 52px;
    --header-h: 78px;
    --sans: "Manrope", Arial, sans-serif;
    --serif: "Source Serif 4", Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--ink);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

button, a, input, textarea, select {
    font: inherit;
    letter-spacing: 0;
}

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

button {
    color: inherit;
}

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

.grain {
    position: fixed;
    inset: 0;
    z-index: 80;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.page-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 3px;
    background: transparent;
}

.page-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 70;
    height: var(--header-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 var(--page-pad);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
    background: rgba(7, 8, 10, 0.96);
    border-color: rgba(255, 255, 255, 0.12);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    width: max-content;
}

.brand img {
    width: 38px;
    height: 38px;
}

.brand-name {
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
}

.brand-name b {
    display: block;
    margin-top: 4px;
    color: var(--gold);
    font-size: 10px;
    text-transform: uppercase;
}

.header-axis {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 10px;
}

.header-axis span {
    width: 46px;
    height: 1px;
    background: currentColor;
}

.menu-toggle {
    justify-self: end;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    color: var(--ink);
    background: var(--gold);
    border-color: var(--gold);
}

.menu-toggle svg {
    width: 19px;
    height: 19px;
}

.menu-panel {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 110px max(var(--page-pad), calc((100vw - 1320px) / 2));
    color: var(--white);
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 260ms ease, transform 360ms cubic-bezier(.2,.8,.2,1), visibility 360ms;
}

.menu-panel.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
}

.menu-panel::before {
    content: "";
    position: absolute;
    inset: var(--header-h) 0 0 52%;
    border-left: 1px solid rgba(255,255,255,.12);
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 44px 44px;
}

.menu-panel__meta {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
}

.menu-panel > a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    gap: 28px;
    width: max-content;
    font-family: var(--serif);
    font-size: 62px;
    line-height: 1.12;
    transition: color 180ms ease, transform 260ms ease;
}

.menu-panel > a span {
    width: 20px;
    color: var(--gold);
    font-family: var(--sans);
    font-size: 11px;
}

.menu-panel > a:hover {
    color: var(--gold);
    transform: translateX(10px);
}

.menu-panel > p {
    position: absolute;
    z-index: 1;
    right: var(--page-pad);
    bottom: 50px;
    margin: 0;
    color: rgba(255,255,255,.48);
    font-size: 11px;
    text-align: right;
    text-transform: uppercase;
}

.hero {
    position: relative;
    height: 88svh;
    min-height: 640px;
    max-height: 920px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 112%;
    object-fit: cover;
    object-position: center bottom;
    transform: scale(1.04);
    animation: heroIn 1500ms cubic-bezier(.2,.8,.2,1) forwards;
    will-change: transform;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 6, 9, .84) 0%, rgba(4, 6, 9, .56) 38%, rgba(4, 6, 9, .08) 70%, rgba(4, 6, 9, .16) 100%);
}

.hero-shade::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 28%;
    background: linear-gradient(0deg, rgba(4,6,9,.72), transparent);
}

.hero-grid {
    position: absolute;
    inset: var(--header-h) 0 0;
    background-image: linear-gradient(90deg, transparent calc(25% - 1px), rgba(255,255,255,.13) 25%, transparent calc(25% + 1px), transparent calc(50% - 1px), rgba(255,255,255,.13) 50%, transparent calc(50% + 1px), transparent calc(75% - 1px), rgba(255,255,255,.13) 75%, transparent calc(75% + 1px));
    pointer-events: none;
}

.hero-copy {
    position: absolute;
    z-index: 2;
    left: var(--page-pad);
    bottom: 78px;
    width: min(850px, calc(100% - 104px));
}

.eyebrow,
.kicker {
    display: flex;
    align-items: center;
    gap: 17px;
    margin: 0 0 26px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
    content: "";
    width: 38px;
    height: 2px;
    background: var(--gold);
}

.eyebrow span {
    color: rgba(255,255,255,.58);
}

.hero-title {
    margin: 0;
    font-family: var(--sans);
    font-size: 84px;
    font-weight: 600;
    line-height: 0.94;
}

.title-line {
    display: block;
    overflow: hidden;
    padding-bottom: .12em;
    margin-bottom: -.12em;
}

.title-line > span {
    display: block;
    transform: translateY(108%);
    animation: titleIn 900ms 180ms cubic-bezier(.2,.8,.2,1) forwards;
}

.title-line--offset {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.78);
}

.title-line--offset > span {
    animation-delay: 300ms;
}

.hero-support {
    display: flex;
    align-items: end;
    gap: 54px;
    margin-top: 34px;
}

.hero-support > p {
    width: 420px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 14px;
}

.line-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.line-link svg {
    width: 16px;
    height: 16px;
    transition: transform 200ms ease;
}

.line-link:hover svg {
    transform: translate(3px, 3px);
}

.hero-coordinate,
.hero-index,
.hero-scroll {
    position: absolute;
    z-index: 2;
    font-size: 10px;
}

.hero-coordinate {
    top: 112px;
    right: var(--page-pad);
    display: flex;
    gap: 18px;
    color: rgba(255,255,255,.6);
}

.hero-index {
    right: var(--page-pad);
    bottom: 77px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.hero-index b {
    font-family: var(--serif);
    font-size: 54px;
    font-weight: 400;
}

.hero-index span {
    color: var(--gold);
}

.hero-scroll {
    right: 28px;
    bottom: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.54);
    transform: none;
}

.hero-scroll span {
    width: 1px;
    height: 46px;
    overflow: hidden;
    background: rgba(255,255,255,.3);
}

.hero-scroll span::after {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scrollLineVertical 1600ms ease-in-out infinite;
}

.hero-scroll b {
    font-size: 9px;
    font-weight: 500;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

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

.marquee-track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: marquee 24s linear infinite;
}

.marquee span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.marquee i {
    width: 7px;
    height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
}

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

.type-system {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    min-height: 760px;
    border-bottom: 1px solid var(--line);
}

.section-rail {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 100px 40px 54px var(--page-pad);
    border-right: 1px solid var(--line);
}

.section-rail > span {
    color: var(--blue);
    font-family: var(--serif);
    font-size: 60px;
}

.section-rail p {
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.type-system__body {
    padding: 102px var(--page-pad) 90px 7vw;
}

.kicker {
    color: var(--blue);
}

.display-sample {
    max-width: 980px;
    margin: 0;
    font-family: var(--serif);
    font-size: 92px;
    font-weight: 400;
    line-height: 0.98;
}

.display-sample em,
.material-content h2 em {
    color: var(--blue);
    font-weight: 400;
}

.type-specimen {
    display: grid;
    grid-template-columns: 240px minmax(0, 460px);
    gap: 68px;
    align-items: end;
    margin-top: 82px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.specimen-alpha {
    margin: 0;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 150px;
    line-height: .75;
}

.type-specimen > div > p {
    margin: 0 0 28px;
    color: #484d55;
    font-size: 14px;
}

.type-specimen dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
}

.type-specimen dl div {
    padding: 10px 12px 10px 0;
    border-top: 1px solid var(--line);
}

.type-specimen dt {
    color: #767c84;
    font-size: 9px;
    font-weight: 700;
}

.type-specimen dd {
    margin: 5px 0 0;
    font-size: 11px;
}

.structure-lab {
    display: grid;
    grid-template-columns: minmax(360px, 36%) 1fr;
    min-height: 760px;
    color: var(--white);
    background: var(--ink);
}

.structure-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px var(--page-pad);
    border-right: 1px solid rgba(255,255,255,.14);
}

.kicker--gold {
    color: var(--gold);
}

.structure-copy h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: 58px;
    font-weight: 400;
    line-height: 1;
}

.structure-description {
    max-width: 390px;
    margin: 34px 0 48px;
    color: rgba(255,255,255,.58);
    font-size: 13px;
}

.mode-switch {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(255,255,255,.2);
}

.mode-switch button {
    min-height: 44px;
    padding: 8px;
    border: 0;
    border-right: 1px solid rgba(255,255,255,.2);
    border-radius: 0;
    color: rgba(255,255,255,.62);
    background: transparent;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.mode-switch button:last-child {
    border-right: 0;
}

.mode-switch button.is-active {
    color: var(--ink);
    background: var(--gold);
}

.structure-stage {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background-color: #0a0d12;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 42px 42px;
    cursor: crosshair;
}

#structure-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.stage-coordinates {
    position: absolute;
    inset: auto 32px 23px;
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.34);
    font-size: 9px;
}

.stage-legend {
    position: absolute;
    top: 28px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.44);
    font-size: 9px;
}

.stage-legend i {
    width: 8px;
    height: 8px;
    background: var(--gold);
}

.material-study {
    display: grid;
    grid-template-columns: minmax(360px, 42%) 1fr;
    min-height: 900px;
}

.material-photo {
    position: relative;
    min-height: 900px;
    overflow: hidden;
}

.material-photo img {
    width: 100%;
    height: 108%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.photo-caption {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    color: var(--white);
    background: var(--blue);
    font-size: 9px;
    font-weight: 700;
}

.material-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 8vw 80px;
    overflow: hidden;
}

.material-number {
    position: absolute;
    top: 18px;
    right: 3vw;
    color: rgba(9,84,199,.09);
    font-family: var(--serif);
    font-size: 280px;
    line-height: 1;
}

.material-content h2 {
    position: relative;
    margin: 0;
    font-family: var(--serif);
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
}

.material-content > p:not(.kicker) {
    position: relative;
    max-width: 520px;
    margin: 34px 0 70px;
    color: #4f555d;
    font-size: 14px;
}

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

.material-scales > div {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 2px 9px;
    padding: 18px 10px 0 0;
}

.material-scales span {
    grid-row: span 2;
    width: 24px;
    height: 36px;
    background: var(--swatch);
    border: 1px solid rgba(7,8,10,.12);
}

.material-scales b {
    font-size: 10px;
}

.material-scales small {
    color: #757a81;
    font-size: 8px;
}

.brand-field {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    padding: 52px var(--page-pad);
    color: var(--white);
    background: var(--blue);
}

.brand-field__grid {
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image:
        linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
    background-size: 70px 70px;
}

.brand-field__top {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.4);
    font-size: 9px;
    font-weight: 700;
}

.brand-lockup {
    position: relative;
    display: grid;
    grid-template-columns: 132px auto;
    grid-template-rows: auto auto;
    align-items: end;
    column-gap: 28px;
    width: max-content;
    margin: 130px auto 0;
}

.brand-lockup img {
    grid-row: 1 / 3;
    width: 132px;
    height: 132px;
}

.brand-lockup p {
    margin: 0;
    font-size: 104px;
    font-weight: 600;
    line-height: .8;
}

.brand-lockup > span {
    align-self: start;
    margin-top: 21px;
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.brand-field__copy {
    position: relative;
    max-width: 420px;
    margin: 90px 0 0 auto;
    color: rgba(255,255,255,.7);
    font-family: var(--serif);
    font-size: 20px;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 130px;
    padding: 28px var(--page-pad);
    color: var(--white);
    background: var(--ink);
}

.site-footer > p {
    margin: 0;
    color: rgba(255,255,255,.48);
    font-size: 9px;
    text-align: center;
    text-transform: uppercase;
}

.site-footer > p span {
    color: var(--gold);
}

.back-top {
    justify-self: end;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.25);
}

.back-top:hover {
    color: var(--ink);
    background: var(--gold);
    border-color: var(--gold);
}

.back-top svg {
    width: 16px;
}

.reveal,
.reveal-up,
.reveal-image {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 850ms cubic-bezier(.2,.8,.2,1);
}

.reveal-image {
    transform: scale(.97);
}

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

@keyframes heroIn {
    from { opacity: 0; transform: scale(1.12); }
    to { opacity: 1; transform: scale(1.04); }
}

@keyframes titleIn {
    to { transform: translateY(0); }
}

@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(210%); }
}

@keyframes scrollLineVertical {
    0% { transform: translateY(-100%); }
    50%, 100% { transform: translateY(210%); }
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
    :root {
        --page-pad: 28px;
        --header-h: 72px;
    }

    .hero {
        height: 86svh;
        min-height: 620px;
    }

    .hero-title {
        font-size: 68px;
    }

    .type-system {
        grid-template-columns: 130px 1fr;
    }

    .section-rail {
        padding-left: 28px;
    }

    .display-sample {
        font-size: 70px;
    }

    .type-specimen {
        grid-template-columns: 160px 1fr;
        gap: 42px;
    }

    .specimen-alpha {
        font-size: 120px;
    }

    .structure-lab {
        grid-template-columns: 42% 58%;
    }

    .structure-copy h2 {
        font-size: 46px;
    }

    .material-content {
        padding-right: 5vw;
        padding-left: 6vw;
    }

    .material-content h2 {
        font-size: 58px;
    }

    .material-scales {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 0;
    }
}

@media (max-width: 700px) {
    :root {
        --page-pad: 18px;
        --header-h: 66px;
    }

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

    .header-axis {
        display: none;
    }

    .menu-panel {
        padding: 96px 22px 40px;
    }

    .menu-panel::before {
        left: 70%;
    }

    .menu-panel > a {
        gap: 16px;
        font-size: 44px;
    }

    .menu-panel > p {
        right: 20px;
        bottom: 30px;
    }

    .hero {
        height: 82svh;
        min-height: 590px;
        max-height: 780px;
    }

    .hero-media {
        width: 150%;
        max-width: none;
        left: -50%;
        object-position: 72% bottom;
    }

    .hero-shade {
        background: linear-gradient(90deg, rgba(4,6,9,.9), rgba(4,6,9,.42));
    }

    .hero-grid {
        background-image: linear-gradient(90deg, transparent calc(50% - 1px), rgba(255,255,255,.13) 50%, transparent calc(50% + 1px));
    }

    .hero-copy {
        left: var(--page-pad);
        bottom: 60px;
        width: calc(100% - 36px);
    }

    .eyebrow {
        margin-bottom: 19px;
        font-size: 9px;
    }

    .hero-title {
        font-size: 48px;
        line-height: .98;
    }

    .hero-support {
        display: block;
        margin-top: 27px;
    }

    .hero-support > p {
        width: min(100%, 340px);
        font-size: 12px;
    }

    .hero-support .line-link {
        margin-top: 22px;
    }

    .hero-coordinate,
    .hero-index {
        display: none;
    }

    .hero-scroll {
        right: 12px;
        bottom: 14px;
        transform: none;
    }

    .marquee {
        padding: 13px 0;
    }

    .marquee-track {
        gap: 22px;
    }

    .type-system {
        display: block;
        min-height: 0;
    }

    .section-rail {
        flex-direction: row;
        justify-content: flex-start;
        align-items: end;
        padding: 48px 18px 20px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .section-rail > span {
        font-size: 46px;
    }

    .section-rail p {
        text-align: left;
    }

    .type-system__body {
        padding: 54px 18px 70px;
    }

    .kicker {
        margin-bottom: 20px;
        font-size: 9px;
    }

    .display-sample {
        font-size: 48px;
    }

    .type-specimen {
        grid-template-columns: 100px 1fr;
        gap: 24px;
        margin-top: 54px;
    }

    .specimen-alpha {
        align-self: start;
        font-size: 86px;
        line-height: .9;
    }

    .type-specimen dl {
        display: block;
    }

    .structure-lab {
        display: block;
        min-height: 0;
    }

    .structure-copy {
        padding: 68px 18px 50px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.14);
    }

    .structure-copy h2 {
        font-size: 43px;
    }

    .structure-description {
        margin: 26px 0 38px;
    }

    .mode-switch {
        max-width: none;
    }

    .structure-stage {
        min-height: 520px;
    }

    .material-study {
        display: flex;
        min-height: 0;
        flex-direction: column;
    }

    .material-photo {
        min-height: 540px;
        aspect-ratio: 4 / 5;
    }

    .material-content {
        padding: 72px 18px 76px;
    }

    .material-number {
        top: 0;
        right: 10px;
        font-size: 180px;
    }

    .material-content h2 {
        font-size: 48px;
    }

    .material-content > p:not(.kicker) {
        margin: 28px 0 52px;
    }

    .brand-field {
        min-height: 620px;
        padding: 32px 18px;
    }

    .brand-lockup {
        grid-template-columns: 78px auto;
        column-gap: 16px;
        margin-top: 130px;
    }

    .brand-lockup img {
        width: 78px;
        height: 78px;
    }

    .brand-lockup p {
        font-size: 58px;
    }

    .brand-lockup > span {
        margin-top: 12px;
        font-size: 12px;
    }

    .brand-field__copy {
        margin-top: 100px;
        font-size: 17px;
    }

    .site-footer {
        grid-template-columns: 1fr auto;
        min-height: 150px;
        padding: 28px 18px;
    }

    .site-footer > p {
        grid-column: 1 / 3;
        grid-row: 2;
        margin-top: 24px;
        text-align: left;
    }
}

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

    *, *::before, *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }

    .reveal,
    .reveal-up,
    .reveal-image {
        opacity: 1;
        transform: none;
    }
}

/* Official brand and commercial content */
.brand--official {
    height: 52px;
}

.brand--official img,
.brand--official.brand--footer img {
    width: 218px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
}

.title-line--small {
    margin-top: 13px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: .48em;
    font-weight: 400;
    line-height: 1.08;
}

.hero-support {
    align-items: flex-end;
}

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

.action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid currentColor;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.action-link svg {
    width: 17px;
    height: 17px;
}

.action-link--gold {
    border-color: var(--gold);
    color: var(--ink);
    background: var(--gold);
}

.action-link--gold:hover {
    color: var(--white);
    background: transparent;
}

.action-link--large {
    min-height: 58px;
    padding: 0 26px;
    font-size: 12px;
}

.services-section {
    padding: 112px var(--page-pad) 80px;
    color: var(--ink);
    background: #f7f8f5;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 9vw;
    align-items: end;
    margin-bottom: 64px;
}

.section-heading h2,
.field-work__heading h2,
.about-content h2,
.contact-copy h2,
.detail-intro h2,
.detail-process__heading h2,
.fit-section__copy h2,
.faq-heading h2,
.detail-contact__copy h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: 68px;
    font-weight: 400;
    line-height: 1;
}

.section-heading > p {
    max-width: 500px;
    margin: 0 0 4px;
    color: #535961;
    font-size: 14px;
}

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

.service-card {
    min-height: 430px;
    padding: 34px 36px 38px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 68px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
}

.service-card__top svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.4;
}

.service-card h3 {
    max-width: 440px;
    margin: 0 0 20px;
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.08;
}

.service-card > p {
    max-width: 590px;
    margin: 0;
    color: #555b63;
    font-size: 13px;
}

.service-card ul {
    display: grid;
    gap: 8px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3d4249;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.service-card li::before {
    content: "";
    width: 14px;
    height: 1px;
    background: var(--gold);
}

.service-card--blue {
    color: var(--white);
    background: var(--blue);
}

.service-card--blue .service-card__top,
.service-card--blue > p,
.service-card--blue li {
    color: rgba(255,255,255,.8);
}

.services-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 26px 12px 0;
    color: #434951;
    font-size: 11px;
    text-transform: uppercase;
}

.services-foot span {
    color: var(--blue);
    font-weight: 700;
}

.services-foot p {
    margin: 0;
}

.services-foot i {
    width: 5px;
    height: 5px;
    background: var(--gold);
    transform: rotate(45deg);
}

.cat-feature {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    gap: 10vw;
    min-height: 720px;
    padding: 120px var(--page-pad) 86px;
    overflow: hidden;
    color: var(--white);
    background: #102345;
}

.cat-feature__grid,
.contact-grid {
    position: absolute;
    inset: 0;
    opacity: .32;
    background-image:
        linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
    background-size: 62px 62px;
}

.cat-feature__index {
    position: absolute;
    top: 34px;
    right: var(--page-pad);
    color: rgba(255,255,255,.5);
    font-size: 9px;
    font-weight: 700;
}

.cat-feature__copy,
.cat-feature__scope {
    position: relative;
    z-index: 1;
    align-self: center;
}

.cat-feature__copy h2 {
    max-width: 790px;
    margin: 0;
    font-family: var(--serif);
    font-size: 78px;
    font-weight: 400;
    line-height: .96;
}

.cat-feature__copy > p:not(.kicker) {
    max-width: 620px;
    margin: 34px 0 38px;
    color: rgba(255,255,255,.68);
    font-size: 14px;
}

.cat-feature__scope {
    display: grid;
    border-top: 1px solid rgba(255,255,255,.25);
}

.cat-feature__scope span {
    position: relative;
    padding: 22px 38px 22px 0;
    border-bottom: 1px solid rgba(255,255,255,.25);
    font-family: var(--serif);
    font-size: 22px;
}

.cat-feature__scope span::after {
    content: "+";
    position: absolute;
    top: 21px;
    right: 0;
    color: var(--gold);
    font-family: var(--sans);
}

.field-work {
    padding: 112px var(--page-pad) 120px;
}

.field-work__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
    gap: 9vw;
    align-items: end;
    margin-bottom: 64px;
}

.field-work__heading .kicker,
.field-work__heading h2 {
    grid-column: 1;
}

.field-work__heading h2 {
    grid-row: 2;
}

.field-work__heading h2 em,
.detail-process__heading h2 em {
    color: var(--blue);
    font-weight: 400;
}

.field-work__heading > p:last-child {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: end;
    max-width: 460px;
    margin: 0 0 4px;
    color: #545a62;
    font-size: 14px;
}

.field-gallery {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: 360px 500px;
    gap: 12px;
}

.field-shot {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: var(--ink-soft);
}

.field-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}

.field-shot:hover img {
    transform: scale(1.035);
}

.field-shot:nth-child(1) img {
    object-position: center 58%;
}

.field-shot:nth-child(2) img {
    object-position: center 52%;
}

.field-shot:nth-child(3) img {
    object-position: center 46%;
}

.field-shot:nth-child(4) img {
    object-position: center 55%;
}

.field-shot figcaption {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    color: var(--white);
    background: rgba(7,8,10,.86);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.field-shot figcaption span {
    color: var(--gold);
}

.about-section {
    display: grid;
    grid-template-columns: minmax(380px, 44%) 1fr;
    min-height: 840px;
    color: var(--white);
    background: var(--ink);
}

.about-media {
    position: relative;
    min-height: 840px;
    overflow: hidden;
}

.about-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 8vw;
}

.about-content h2 {
    max-width: 780px;
}

.about-name {
    display: grid;
    gap: 4px;
    margin: 44px 0 30px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.about-name strong {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
}

.about-name span {
    color: rgba(255,255,255,.52);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-content > p:not(.kicker) {
    max-width: 650px;
    margin: 0 0 18px;
    color: rgba(255,255,255,.62);
    font-size: 14px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 30px 0 0;
    padding: 1px;
    list-style: none;
    background: rgba(255,255,255,.14);
}

.about-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 14px 16px;
    color: rgba(255,255,255,.78);
    background: var(--ink);
    font-size: 11px;
}

.about-points svg {
    flex: 0 0 auto;
    width: 19px;
    color: var(--gold);
}

.contact-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(290px, .7fr) minmax(0, 1.3fr);
    min-height: 790px;
    overflow: hidden;
    color: var(--white);
    background: #102345;
}

.contact-brand,
.contact-copy,
.contact-details {
    position: relative;
    z-index: 1;
}

.contact-brand {
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    padding: 80px 5vw;
    border-right: 1px solid rgba(255,255,255,.24);
}

.contact-brand img {
    width: min(100%, 390px);
    height: auto;
}

.contact-copy {
    align-self: end;
    padding: 90px 8vw 62px;
}

.contact-copy h2 {
    max-width: 900px;
}

.contact-copy > p:not(.kicker) {
    max-width: 620px;
    margin: 28px 0 34px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 8vw 72px;
}

.contact-details > a,
.contact-details > div {
    display: grid;
    gap: 8px;
    min-height: 100px;
    padding: 20px 26px 20px 0;
    border-top: 1px solid rgba(255,255,255,.32);
}

.contact-details > :nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.22);
}

.contact-details > :nth-child(even) {
    padding-left: 26px;
}

.contact-details span {
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
}

.contact-details strong {
    align-self: start;
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 55;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 17px;
    color: var(--ink);
    background: var(--gold);
    box-shadow: 0 14px 34px rgba(0,0,0,.24);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 180ms ease, background-color 180ms ease;
}

.whatsapp-float:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.whatsapp-float svg {
    width: 19px;
}

/* CAT detail page */
.detail-hero {
    position: relative;
    min-height: 820px;
    height: 88svh;
    max-height: 960px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.detail-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 75% 38%;
}

.detail-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,8,12,.96) 0%, rgba(5,8,12,.84) 44%, rgba(5,8,12,.25) 72%, rgba(5,8,12,.32) 100%);
}

.detail-hero__grid {
    position: absolute;
    inset: var(--header-h) 0 0;
    background-image: linear-gradient(90deg, transparent calc(33.333% - 1px), rgba(255,255,255,.13) 33.333%, transparent calc(33.333% + 1px), transparent calc(66.666% - 1px), rgba(255,255,255,.13) 66.666%, transparent calc(66.666% + 1px));
}

.detail-hero__copy {
    position: absolute;
    z-index: 2;
    left: var(--page-pad);
    bottom: 74px;
    width: min(900px, calc(100% - 104px));
}

.detail-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 45px;
    color: rgba(255,255,255,.6);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.detail-back svg {
    width: 15px;
}

.detail-hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: 76px;
    font-weight: 400;
    line-height: .96;
}

.detail-hero__lead {
    max-width: 630px;
    margin: 30px 0 30px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
}

.detail-hero__index {
    position: absolute;
    right: var(--page-pad);
    bottom: 32px;
    z-index: 2;
    color: rgba(255,255,255,.5);
    font-size: 9px;
    font-weight: 700;
}

.detail-intro {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
    gap: 9vw;
    padding: 120px var(--page-pad);
    overflow: hidden;
}

.detail-intro__number {
    position: absolute;
    top: -80px;
    right: 2vw;
    color: rgba(9,84,199,.07);
    font-family: var(--serif);
    font-size: 330px;
    line-height: 1;
}

.detail-intro > div:not(.detail-intro__number) {
    position: relative;
    z-index: 1;
}

.detail-intro__heading {
    grid-column: 1;
}

.detail-intro__text {
    grid-column: 2;
    align-self: end;
}

.detail-intro__text p {
    margin: 0 0 18px;
    color: #50565e;
    font-size: 14px;
}

.cat-scope {
    padding: 112px var(--page-pad) 120px;
    color: var(--white);
    background: var(--ink);
}

.section-heading--dark > p {
    color: rgba(255,255,255,.56);
}

.cat-scope__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255,255,255,.18);
    border-left: 1px solid rgba(255,255,255,.18);
}

.cat-scope__grid article {
    position: relative;
    min-height: 380px;
    padding: 30px 26px;
    border-right: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.cat-scope__grid article > span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
}

.cat-scope__grid article > svg {
    position: absolute;
    top: 26px;
    right: 24px;
    width: 28px;
    color: var(--gold);
    stroke-width: 1.3;
}

.cat-scope__grid h3 {
    margin: 120px 0 18px;
    font-family: var(--serif);
    font-size: 29px;
    font-weight: 400;
    line-height: 1.05;
}

.cat-scope__grid p {
    margin: 0;
    color: rgba(255,255,255,.56);
    font-size: 12px;
}

.detail-process {
    display: grid;
    grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
    gap: 9vw;
    padding: 120px var(--page-pad);
}

.detail-process__heading {
    align-self: start;
}

.process-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    padding: 27px 0;
    border-bottom: 1px solid var(--line);
}

.process-list > li > span {
    padding-top: 3px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
}

.process-list h3 {
    margin: 0 0 7px;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
}

.process-list p {
    max-width: 620px;
    margin: 0;
    color: #555b63;
    font-size: 13px;
}

.fit-section {
    display: grid;
    grid-template-columns: minmax(380px, 48%) 1fr;
    min-height: 780px;
    color: var(--white);
    background: #102345;
}

.fit-section__media {
    min-height: 780px;
    overflow: hidden;
}

.fit-section__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fit-section__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 7vw;
}

.fit-list {
    display: grid;
    gap: 1px;
    margin: 44px 0 0;
    padding: 1px;
    list-style: none;
    background: rgba(255,255,255,.17);
}

.fit-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 68px;
    padding: 14px 18px;
    background: #102345;
    font-size: 12px;
}

.fit-list svg {
    width: 20px;
    color: var(--gold);
}

.faq-section {
    display: grid;
    grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
    gap: 10vw;
    padding: 120px var(--page-pad);
}

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

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 82px;
    cursor: pointer;
    font-family: var(--serif);
    font-size: 21px;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary svg {
    flex: 0 0 auto;
    width: 18px;
    color: var(--blue);
    transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 720px;
    margin: -6px 50px 28px 0;
    color: #555b63;
    font-size: 13px;
}

.detail-contact {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
    min-height: 650px;
    overflow: hidden;
    color: var(--white);
    background: #102345;
}

.detail-contact__logo,
.detail-contact__copy {
    position: relative;
    z-index: 1;
}

.detail-contact__logo {
    align-self: center;
    width: min(76%, 360px);
    height: auto;
    margin: 70px auto;
}

.detail-contact__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 9vw;
    border-left: 1px solid rgba(255,255,255,.24);
}

.detail-contact__copy > p:not(.kicker) {
    max-width: 590px;
    margin: 27px 0 34px;
    color: rgba(255,255,255,.7);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .section-heading h2,
    .field-work__heading h2,
    .about-content h2,
    .contact-copy h2,
    .detail-intro h2,
    .detail-process__heading h2,
    .fit-section__copy h2,
    .faq-heading h2,
    .detail-contact__copy h2 {
        font-size: 56px;
    }

    .cat-feature__copy h2 {
        font-size: 64px;
    }

    .service-card {
        min-height: 450px;
    }

    .cat-scope__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .brand--official {
        height: 42px;
    }

    .brand--official img,
    .brand--official.brand--footer img {
        width: 170px;
        max-height: 42px;
    }

    .menu-panel > a {
        font-size: 39px;
    }

    .hero {
        height: 88svh;
        min-height: 650px;
    }

    .hero-copy {
        bottom: 48px;
    }

    .hero-title {
        font-size: 45px;
    }

    .title-line--small {
        margin-top: 9px;
        font-size: .53em;
    }

    .hero-support > p {
        max-width: 310px;
    }

    .hero-actions {
        flex-wrap: wrap;
        gap: 18px;
        margin-top: 22px;
    }

    .hero-support .action-link,
    .hero-support .line-link {
        margin-top: 0;
    }

    .action-link {
        min-height: 46px;
        padding: 0 15px;
        font-size: 10px;
    }

    .type-specimen {
        display: block;
    }

    .specimen-alpha {
        margin-bottom: 36px;
    }

    .type-specimen dl {
        display: grid;
        grid-template-columns: 1fr;
    }

    .services-section,
    .field-work,
    .cat-scope,
    .detail-intro,
    .detail-process,
    .faq-section {
        padding: 72px 18px;
    }

    .section-heading,
    .field-work__heading,
    .detail-intro,
    .detail-process,
    .faq-section {
        display: block;
    }

    .section-heading h2,
    .field-work__heading h2,
    .about-content h2,
    .contact-copy h2,
    .detail-intro h2,
    .detail-process__heading h2,
    .fit-section__copy h2,
    .faq-heading h2,
    .detail-contact__copy h2 {
        font-size: 43px;
    }

    .section-heading > p,
    .field-work__heading > p:last-child {
        margin-top: 28px;
    }

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

    .service-card {
        min-height: 0;
        padding: 26px 22px 30px;
    }

    .service-card__top {
        margin-bottom: 50px;
    }

    .service-card h3 {
        font-size: 31px;
    }

    .services-foot {
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px 14px;
        padding-top: 24px;
    }

    .services-foot span {
        width: 100%;
    }

    .cat-feature {
        display: block;
        min-height: 0;
        padding: 100px 18px 72px;
    }

    .cat-feature__index {
        top: 25px;
        right: 18px;
    }

    .cat-feature__copy h2 {
        font-size: 48px;
    }

    .cat-feature__scope {
        margin-top: 64px;
    }

    .cat-feature__scope span {
        font-size: 19px;
    }

    .mode-switch button {
        padding: 7px 4px;
        font-size: 8px;
    }

    .field-work__heading {
        display: block;
    }

    .field-gallery {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .field-shot,
    .field-shot--wide,
    .field-shot--tall {
        aspect-ratio: 4 / 3;
    }

    .field-shot--tall {
        aspect-ratio: 3 / 4;
    }

    .about-section,
    .contact-section,
    .fit-section,
    .detail-contact {
        display: block;
        min-height: 0;
    }

    .about-media,
    .fit-section__media {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .about-content,
    .fit-section__copy,
    .detail-contact__copy {
        padding: 72px 18px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .contact-brand {
        min-height: 350px;
        padding: 62px 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.24);
    }

    .contact-brand img {
        width: min(74%, 290px);
    }

    .contact-copy {
        padding: 72px 18px 50px;
    }

    .contact-details {
        grid-template-columns: 1fr;
        padding: 0 18px 64px;
    }

    .contact-details > :nth-child(odd),
    .contact-details > :nth-child(even) {
        padding: 18px 0;
        border-right: 0;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 46px;
        height: 46px;
        min-height: 46px;
        justify-content: center;
        padding: 0;
    }

    .whatsapp-float span {
        display: none;
    }

    .detail-hero {
        min-height: 680px;
        height: 88svh;
    }

    .detail-hero > img {
        width: 145%;
        max-width: none;
        left: -45%;
        object-position: 70% center;
    }

    .detail-hero__shade {
        background: linear-gradient(90deg, rgba(5,8,12,.94), rgba(5,8,12,.54));
    }

    .detail-hero__copy {
        left: 18px;
        bottom: 48px;
        width: calc(100% - 36px);
    }

    .detail-back {
        margin-bottom: 28px;
    }

    .detail-hero h1 {
        font-size: 45px;
    }

    .detail-hero__lead {
        max-width: 340px;
        font-size: 12px;
    }

    .detail-hero__index,
    .detail-intro__number {
        display: none;
    }

    .detail-intro__text {
        grid-column: auto;
        margin-top: 34px;
    }

    .cat-scope__grid article {
        min-height: 320px;
    }

    .detail-process__heading,
    .faq-heading {
        margin-bottom: 44px;
    }

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

    .fit-list {
        margin-top: 36px;
    }

    .faq-list summary {
        min-height: 76px;
        font-size: 18px;
    }

    .detail-contact__logo {
        display: block;
        width: min(68%, 270px);
        margin: 0 auto;
        padding-top: 64px;
    }

    .detail-contact__copy {
        border-left: 0;
    }

    .site-footer {
        padding-bottom: 82px;
    }
}
