:root {
    --black: #0b0b0a;
    --black-soft: #151512;
    --ink: #191815;
    --muted: #69655e;
    --stone: #8e887d;
    --white: #fff;
    --warm-white: #f8f6f1;
    --warm: #f0ece3;
    --gold: #9d7934;
    --gold-bright: #c7a45d;
    --gold-pale: #e3d3ae;
    --line: rgba(25, 24, 21, .15);
    --line-light: rgba(255, 255, 255, .18);
    --shadow: 0 28px 80px rgba(19, 17, 12, .13);
    --container: 1280px;
    --gutter: clamp(24px, 4.5vw, 64px);
    --header-height: 84px;
    --preview-toolbar-height: 0px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
    max-width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--preview-toolbar-height) + 24px);
}

body {
    min-width: 320px;
    max-width: 100%;
    margin: 0;
    overflow-x: clip;
    color: var(--ink);
    background: var(--white);
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

img,
video {
    width: 100%;
    height: auto;
}

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

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

button {
    cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

h1,
h2,
h3 {
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    font-weight: 500;
    line-height: 1.24;
    text-wrap: balance;
    white-space: pre-line;
}

button,
a,
summary,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 4px;
}

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

[hidden] {
    display: none !important;
}

.site-shell {
    width: 100%;
    overflow: clip;
}

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

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

.skip-link {
    position: fixed;
    z-index: 10000;
    top: calc(var(--preview-toolbar-height) + 12px);
    left: 12px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--gold);
    transform: translateY(-180%);
    transition: transform .2s ease;
}

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

.section {
    padding-block: clamp(92px, 8vw, 132px);
}

.eyebrow {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .2em;
}

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

.section-heading {
    margin-bottom: clamp(42px, 5vw, 68px);
}

.section-heading h2,
.about-section__content h2,
.consultation-section__intro h2 {
    margin-top: 17px;
    font-size: clamp(34px, 3.15vw, 48px);
    font-weight: 500;
    letter-spacing: -.035em;
}

.section-heading > p:last-child,
.section-heading > div + p {
    color: var(--muted);
    font-size: 15px;
    line-height: 2;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .64fr);
    align-items: end;
    gap: clamp(48px, 8vw, 120px);
}

.section-heading--split > p {
    max-width: 540px;
    justify-self: end;
}

.section-heading--center {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

.section-heading--center > p:last-child {
    max-width: 760px;
    margin: 23px auto 0;
}

.section-heading--action {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading--light h2,
.section-heading--light > p {
    color: var(--white);
}

.section-heading--light > p {
    opacity: .7;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: .03em;
    transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease);
}

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

.button--gold,
.button--primary {
    color: var(--black);
    background: var(--gold-bright);
    border-color: var(--gold-bright);
}

.button--gold:hover,
.button--primary:hover {
    background: #d3b573;
    border-color: #d3b573;
}

.button--glass {
    color: var(--white);
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .48);
    backdrop-filter: blur(8px);
}

.button--glass:hover {
    background: rgba(255, 255, 255, .13);
}

.button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    border-bottom: 1px solid var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
}

.text-link span {
    color: var(--gold);
    transition: transform .2s ease;
}

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

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

/* Header */
.site-header {
    position: fixed;
    z-index: 1000;
    top: var(--preview-toolbar-height);
    right: 0;
    left: 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.site-header.is-sticky,
.site-header.has-open-navigation {
    color: var(--ink);
    background: rgba(255, 255, 255, .97);
    border-color: var(--line);
    box-shadow: 0 10px 34px rgba(17, 15, 10, .07);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(24px, 3.5vw, 54px);
}

.wordmark,
.footer-wordmark {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.wordmark {
    min-height: 52px;
    white-space: nowrap;
}

.wordmark strong,
.footer-wordmark strong {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .15em;
}

.wordmark span,
.footer-wordmark span {
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: .16em;
    opacity: .68;
}

.primary-nav {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.4vw, 24px);
}

.primary-nav > a {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    white-space: nowrap;
}

.primary-nav > a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 1px;
    background: var(--gold-bright);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s var(--ease);
}

.primary-nav > a:hover::after,
.primary-nav > a.is-current::after {
    transform: scaleX(1);
    transform-origin: left;
}

.primary-nav__contact {
    display: none;
}

.button--header {
    min-width: 112px;
    min-height: 44px;
    padding: 10px 18px;
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, .55);
}

.site-header.is-sticky .button--header,
.site-header.has-open-navigation .button--header {
    color: var(--ink);
    border-color: var(--ink);
}

.button--header:hover {
    color: var(--black);
    background: var(--gold-bright);
    border-color: var(--gold-bright);
}

.nav-toggle {
    width: 48px;
    height: 48px;
    display: none;
    padding: 0;
    border: 0;
    background: transparent;
}

.nav-toggle > span:not(.sr-only) {
    width: 25px;
    height: 1px;
    display: block;
    margin: 7px auto;
    background: currentColor;
    transition: transform .25s ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-last-child(2) {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 680px;
    display: grid;
    color: var(--white);
    background: var(--black);
    overflow: hidden;
}

.hero__media,
.hero__veil {
    position: absolute;
    inset: 0;
}

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

.hero__media img,
.hero__media video {
    object-fit: cover;
    object-position: 58% center;
    opacity: .82;
    transform: scale(1.025);
    transition: opacity .9s ease, transform 1.4s var(--ease);
}

.hero.is-loaded .hero__media img,
.hero.is-loaded .hero__media video {
    opacity: 1;
    transform: scale(1);
}

.hero__veil {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 5, 4, .91) 0%, rgba(5, 5, 4, .71) 34%, rgba(5, 5, 4, .22) 64%, rgba(5, 5, 4, .14) 100%),
        linear-gradient(0deg, rgba(5, 5, 4, .68) 0%, transparent 48%, rgba(5, 5, 4, .26) 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 5vh);
    padding-bottom: 0;
}

.hero__content {
    width: min(760px, 69%);
    opacity: 1;
    transform: translateY(-4vh);
    transition: opacity .7s .12s ease, transform .8s .12s var(--ease);
}

.hero__content.is-loaded,
.no-js .hero__content {
    opacity: 1;
    transform: translateY(-4vh);
}

.hero h1 {
    max-width: 760px;
    margin-top: 24px;
    font-size: clamp(46px, 5vw, 70px);
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: -.05em;
}

.hero__lead {
    max-width: 650px;
    margin-top: 26px;
    color: rgba(255, 255, 255, .79);
    font-size: 17px;
    line-height: 1.95;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    min-height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    letter-spacing: .12em;
    transform: translateX(-50%);
    transition: color .2s ease;
}

.hero__scroll i {
    position: relative;
    width: 24px;
    height: 38px;
    display: block;
    border: 1px solid rgba(255, 255, 255, .64);
    border-radius: 14px;
}

.hero__scroll i::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 2px;
    height: 7px;
    background: var(--gold-bright);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: hero-mouse-wheel 1.8s var(--ease) 3;
}

.hero__scroll:hover {
    color: var(--white);
}

@keyframes hero-mouse-wheel {
    0% {
        opacity: 0;
        transform: translate(-50%, -2px);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 8px);
    }
}

/* Service scope */
.scope-section {
    background: var(--warm-white);
}

.scope-portico {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: var(--black-soft);
    box-shadow: var(--shadow);
}

.scope-portico > picture,
.scope-portico > img,
.scope-portico > picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.scope-portico > picture img,
.scope-portico > img {
    object-fit: cover;
    object-position: center;
}

.scope-portico::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 7, .08) 10%, rgba(8, 8, 7, .2) 48%, rgba(8, 8, 7, .9) 100%);
}

.scope-portico__grid {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scope-portico__grid article {
    display: flex;
    align-items: flex-end;
    padding: clamp(28px, 3.4vw, 48px);
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, .25);
    transition: background .35s var(--ease);
}

.scope-portico__grid article:last-child {
    border-right: 0;
}

.scope-portico__grid article:hover {
    background: rgba(9, 9, 8, .26);
}

.scope-portico__grid article > div {
    max-width: 300px;
}

.scope-portico__grid h3 {
    font-size: clamp(21px, 2vw, 28px);
}

.scope-portico__grid p {
    margin-top: 15px;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.9;
}

/* Fleet experience */
.fleet-section {
    color: var(--white);
    background: var(--black);
}

.fleet-section .section-heading > p:last-child {
    color: rgba(255, 255, 255, .66);
}

.fleet-gallery {
    height: clamp(560px, 48vw, 680px);
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.fleet-gallery__item {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background: var(--black-soft);
}

.fleet-gallery__item--1,
.fleet-gallery__item:first-child {
    grid-row: 1 / span 2;
}

.fleet-gallery__item picture,
.fleet-gallery__item img {
    width: 100%;
    height: 100%;
}

.fleet-gallery__item img {
    object-fit: cover;
    transition: transform .8s var(--ease), filter .5s ease;
}

.fleet-gallery__item:hover img {
    transform: scale(1.025);
    filter: brightness(.92);
}

.fleet-gallery__item::after {
    content: "";
    position: absolute;
    inset: 36% 0 0;
    background: linear-gradient(180deg, transparent, rgba(4, 4, 4, .87));
    pointer-events: none;
}

.fleet-gallery__item figcaption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    gap: 7px;
    padding: clamp(24px, 3vw, 42px);
}

.fleet-gallery__item figcaption strong {
    font-size: 21px;
    font-weight: 500;
}

.fleet-gallery__item figcaption span {
    color: rgba(255, 255, 255, .67);
    font-size: 13px;
}

/* Service standard */
.standard-section {
    background: var(--white);
}

.standard-cards {
    position: relative;
    background: var(--black-soft);
    border: 1px solid rgba(199, 164, 93, .3);
    box-shadow: 0 28px 70px rgba(21, 19, 14, .13);
    overflow: hidden;
}

.standard-card {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: 56px minmax(170px, .42fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(22px, 3vw, 48px);
    padding: clamp(22px, 2.25vw, 30px) clamp(26px, 3.6vw, 54px);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.standard-card:last-child {
    border-bottom: 0;
}

.standard-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 3px;
    height: 30px;
    background: var(--gold-bright);
    transform: translateY(-50%);
}

.standard-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--gold-bright);
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(199, 164, 93, .48);
}

.standard-card__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.45;
}

.standard-cards h3 {
    color: var(--white);
    font-size: clamp(18px, 1.55vw, 22px);
    font-weight: 500;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.standard-cards p {
    max-width: 760px;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.85;
    overflow-wrap: anywhere;
}

/* Travel scenarios */
.scenarios-section {
    color: var(--white);
    background: var(--black-soft);
}

.scenario-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(280px, .72fr);
    border: 1px solid var(--line-light);
    background: #080807;
}

.scenario-stage__visual {
    position: relative;
    min-height: 590px;
    overflow: hidden;
}

.scenario-stage__visual figure,
.scenario-stage__visual img {
    width: 100%;
    height: 100%;
}

.scenario-stage__visual figure {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.scenario-stage__visual img {
    object-fit: cover;
}

.scenario-stage__visual figure::after {
    content: "";
    position: absolute;
    inset: 25% 0 0;
    background: linear-gradient(180deg, transparent, rgba(5, 5, 4, .84));
}

.scenario-stage__visual figcaption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(180px, .42fr) minmax(0, 1fr);
    align-items: end;
    gap: 34px;
    padding: clamp(30px, 4vw, 56px);
}

.scenario-stage__visual figcaption strong {
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 500;
}

.scenario-stage__visual figcaption span {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.9;
}

.scenario-stage__tabs {
    display: grid;
    grid-template-rows: repeat(5, minmax(86px, 1fr));
    border-left: 1px solid var(--line-light);
}

.scenario-stage__tabs button {
    position: relative;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 26px;
    color: rgba(255, 255, 255, .58);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line-light);
    font-size: 15px;
    text-align: left;
    transition: color .25s ease, background .25s ease;
}

.scenario-stage__tabs button:last-child {
    border-bottom: 0;
}

.scenario-stage__tabs button:hover,
.scenario-stage__tabs button.is-active {
    color: var(--white);
    background: rgba(199, 164, 93, .12);
}

.scenario-stage__tabs button::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    width: 3px;
    background: var(--gold-bright);
    transform: scaleY(0);
    transition: transform .25s var(--ease);
}

.scenario-stage__tabs button.is-active::before {
    transform: scaleY(1);
}

.scenario-stage__tabs i {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

/* Cases */
.cases-section {
    background: var(--warm-white);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.case-card {
    min-width: 0;
    overflow: hidden;
    background: var(--black-soft);
}

.case-card > a {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    color: var(--white);
}

.case-card figure,
.case-card img {
    width: 100%;
    height: 100%;
}

.case-card figure {
    position: absolute;
    inset: 0;
}

.case-card img {
    object-fit: cover;
    transition: transform .7s var(--ease), filter .35s ease;
}

.case-card__content {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 2.5vw, 36px);
    background: linear-gradient(180deg, transparent 32%, rgba(6, 6, 5, .18) 52%, rgba(6, 6, 5, .94) 100%);
    transition: background .35s ease;
}

.case-card h3 {
    font-size: clamp(19px, 1.65vw, 23px);
    line-height: 1.55;
    text-shadow: 0 2px 22px rgba(0, 0, 0, .3);
}

.case-card p,
.case-card__content > span {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    transition: max-height .35s var(--ease), margin .35s var(--ease), opacity .25s ease, transform .35s var(--ease);
}

.case-card p {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.9;
}

.case-card__content > span {
    color: var(--gold-pale);
    font-size: 12px;
    letter-spacing: .05em;
}

.case-card > a:hover img,
.case-card > a:focus-visible img {
    filter: brightness(.72);
    transform: scale(1.045);
}

.case-card > a:hover .case-card__content,
.case-card > a:focus-visible .case-card__content {
    background: linear-gradient(180deg, rgba(6, 6, 5, .08), rgba(6, 6, 5, .88));
}

.case-card > a:hover p,
.case-card > a:focus-visible p {
    max-height: 120px;
    margin-top: 13px;
    opacity: 1;
    transform: none;
}

.case-card > a:hover .case-card__content > span,
.case-card > a:focus-visible .case-card__content > span {
    max-height: 30px;
    margin-top: 18px;
    opacity: 1;
    transform: none;
}

/* Service journey */
.journey-section {
    background: var(--white);
}

.journey-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    align-items: stretch;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.journey-cards::before {
    display: none;
}

.journey-cards li {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(24, 21, 15, .045);
}

.journey-cards li::after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -1px;
    left: -1px;
    height: 3px;
    background: var(--gold);
}

.journey-cards__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 22px;
    color: var(--stone);
    background: var(--warm-white);
    border-bottom: 1px solid var(--line);
    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: .14em;
}

.journey-cards__head strong {
    color: var(--gold);
    font-size: 27px;
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1;
}

.journey-cards__body {
    flex: 1;
    padding: 25px 22px 30px;
}

.journey-cards h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.journey-cards p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

/* About */
.about-section {
    background: var(--warm);
}

.about-section__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(400px, .96fr);
    align-items: stretch;
    padding: 0;
    background: var(--white);
    box-shadow: var(--shadow);
}

.about-section__layout > figure {
    min-height: 640px;
    overflow: hidden;
    background: var(--black-soft);
}

.about-section__layout > figure picture,
.about-section__layout > figure img {
    width: 100%;
    height: 100%;
}

.about-section__layout > figure img {
    object-fit: cover;
}

.about-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 6vw, 86px);
}

.about-section__content h2 {
    max-width: 600px;
}

.about-section__copy {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.about-section__copy p {
    color: var(--muted);
    font-size: 14px;
    line-height: 2;
}

.about-section blockquote {
    margin: 30px 0 18px;
    padding: 20px 0 20px 24px;
    color: #54482e;
    border-left: 2px solid var(--gold);
    font-family: "SimSun", "宋体", serif;
    font-size: 18px;
    line-height: 1.8;
}

.about-section .text-link {
    align-self: flex-start;
}

/* News */
.news-section {
    background: var(--white);
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(360px, .7fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: start;
}

.news-feature a {
    display: block;
}

.news-feature figure {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--warm);
}

.news-feature figure img,
.news-briefs figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s var(--ease);
}

.news-feature a:hover figure img,
.news-briefs a:hover figure img {
    transform: scale(1.035);
}

.news-feature__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 22px;
    color: var(--gold);
    font-size: 12px;
    line-height: 1.5;
}

.news-feature__meta time {
    color: var(--stone);
}

.news-feature h3 {
    margin-top: 13px;
    font-size: clamp(24px, 2.4vw, 34px);
    transition: color .2s ease;
}

.news-feature a:hover h3,
.news-briefs a:hover h3 {
    color: var(--gold);
}

.news-feature > a > p {
    max-width: 760px;
    margin-top: 15px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.news-briefs {
    display: grid;
}

.news-briefs article {
    border-top: 1px solid var(--line);
}

.news-briefs article:last-child {
    border-bottom: 1px solid var(--line);
}

.news-briefs a {
    min-height: 174px;
    display: grid;
    grid-template-columns: 136px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 20px;
    padding-block: 18px;
}

.news-briefs figure {
    width: 136px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--warm);
}

.news-briefs span,
.news-briefs time {
    color: var(--stone);
    font-size: 12px;
}

.news-briefs h3 {
    margin: 9px 0 7px;
    font-size: 16px;
    line-height: 1.65;
    transition: color .2s ease;
}

.news-briefs i {
    color: var(--gold);
    font-size: 18px;
    font-style: normal;
}

/* Help and FAQ */
.help-section {
    background: var(--warm-white);
}

.help-section__layout {
    display: grid;
    grid-template-columns: minmax(300px, .62fr) minmax(0, 1.38fr);
    gap: clamp(50px, 8vw, 116px);
    align-items: start;
}

.help-section__layout > .section-heading {
    margin-bottom: 0;
}

.help-section__layout > .section-heading > p:last-of-type {
    max-width: 410px;
    margin-top: 23px;
}

.help-section__layout .text-link {
    margin-top: 30px;
}

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

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

.faq-item summary {
    min-height: 82px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    font-weight: 600;
}

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

.faq-item__number {
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.faq-item__toggle {
    position: relative;
    width: 28px;
    height: 28px;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 1px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform .25s ease;
}

.faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-item__answer {
    padding: 0 48px 26px 60px;
}

.faq-item__answer p {
    max-width: 720px;
    color: var(--muted);
    font-size: 14px;
    line-height: 2;
}

/* Consultation */
.consultation-section {
    padding-block: clamp(92px, 8vw, 132px);
    color: var(--white);
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.consultation-section__layout {
    display: grid;
    grid-template-columns: minmax(330px, .64fr) minmax(0, 1.36fr);
    align-items: start;
    gap: clamp(42px, 6vw, 88px);
}

.consultation-section__intro {
    position: sticky;
    top: calc(var(--header-height) + var(--preview-toolbar-height) + 36px);
    padding: 18px 0 30px;
}

.consultation-section__intro h2 {
    color: var(--white);
    font-size: clamp(38px, 4vw, 54px);
}

.consultation-section__intro > p:nth-of-type(2) {
    max-width: 430px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
    line-height: 2;
}

.contact-ledger {
    margin-top: 48px;
    border-top: 1px solid var(--line-light);
}

.contact-ledger > div {
    min-height: 78px;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid var(--line-light);
}

.contact-ledger span {
    color: rgba(255, 255, 255, .46);
    font-size: 12px;
}

.contact-ledger a,
.contact-ledger button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
}

.contact-ledger button {
    gap: 12px;
}

.contact-ledger button em {
    color: var(--gold-pale);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
}

.copy-status {
    min-height: 24px;
    margin-top: 8px;
    color: var(--gold-pale);
    font-size: 12px;
}

.consultation-section__form {
    min-width: 0;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 32px 90px rgba(0, 0, 0, .25);
}

.quote-form-shell,
.quote-form-shell form {
    width: 100%;
}

.quote-wizard,
.form-success {
    padding: clamp(32px, 4.5vw, 58px);
}

.quote-step__heading {
    margin-bottom: 34px;
}

.quote-step__heading h3,
.form-success h3 {
    margin-top: 12px;
    font-size: clamp(25px, 2.5vw, 34px);
}

.form-alert {
    display: grid;
    gap: 4px;
    margin-bottom: 26px;
    padding: 16px 18px;
    color: #742c23;
    background: #fff3f0;
    border-left: 3px solid #a84538;
    font-size: 13px;
}

.field-group {
    min-width: 0;
    margin: 0 0 28px;
    padding: 0;
    border: 0;
}

.field-group legend {
    width: 100%;
    margin-bottom: 13px;
    font-size: 13px;
    font-weight: 700;
}

.field-group legend span,
.field > label > span:not(.optional),
.consent > span > span {
    color: #a64232;
}

.field-group--trip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.field-group--trip legend,
.field-group--trip > .field-error {
    grid-column: 1 / -1;
}

.choice-card {
    position: relative;
    min-width: 0;
    min-height: 82px;
    display: block;
    cursor: pointer;
}

.choice-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.choice-card > span {
    width: 100%;
    height: 100%;
    min-height: 82px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 15px;
    background: var(--warm-white);
    border: 1px solid var(--line);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.choice-card strong {
    font-size: 14px;
}

.choice-card small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.choice-card input:checked + span {
    background: #fbf7ed;
    border-color: var(--gold);
    box-shadow: inset 0 -3px 0 var(--gold);
}

.choice-card input:focus-visible + span {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
}

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

[data-bay-area-fields] {
    margin-bottom: 20px;
}

.field {
    min-width: 0;
}

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

.field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
}

.field .optional {
    margin-left: 6px;
    color: var(--stone);
    font-size: 12px;
    font-weight: 400;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(25, 24, 21, .24);
    border-radius: 0;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea {
    min-height: 104px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #969087;
    opacity: 1;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: rgba(25, 24, 21, .46);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 0;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(157, 121, 52, .12);
}

.field [aria-invalid="true"],
.field-group[aria-invalid="true"] .choice-card > span {
    border-color: #a84538;
}

.field-error {
    display: block;
    margin-top: 7px;
    color: #9a3328;
    font-size: 12px;
    line-height: 1.55;
}

.form-note {
    margin: -12px 0 25px;
    color: var(--stone);
    font-size: 12px;
    line-height: 1.7;
}

.quote-actions + .form-note {
    margin: 13px 0 0;
    text-align: right;
}

.captcha-row {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    align-items: end;
    gap: 16px;
    margin-top: 22px;
}

.captcha-row > img {
    width: 160px;
    height: 48px;
    object-fit: contain;
    border: 1px solid var(--line);
}

.consent {
    min-height: 44px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 24px;
    color: var(--muted);
    cursor: pointer;
    font-size: 12px;
    line-height: 1.7;
}

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

.field-error--consent {
    margin-top: -7px;
}

.quote-actions {
    display: flex;
    margin-top: 26px;
}

.quote-actions--end {
    justify-content: flex-end;
}

.button--submit {
    min-width: 190px;
    min-height: 52px;
    border: 0;
}

.button__loading {
    display: none;
}

.is-submitting [data-submit-label] {
    display: none;
}

.is-submitting .button__loading {
    display: inline;
}

.form-success {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.form-success__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50%;
}

.form-success__icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.form-success > p:not(.eyebrow) {
    max-width: 560px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
}

.form-success .text-link {
    margin-top: 28px;
}

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

.site-footer__core {
    background: #070706;
}

.site-footer__main {
    display: grid;
    grid-template-columns: minmax(280px, 1.25fr) minmax(300px, .9fr) minmax(270px, .8fr);
    gap: clamp(38px, 5vw, 76px);
    padding-block: clamp(72px, 7vw, 108px);
}

.footer-wordmark {
    color: var(--white);
    min-height: 44px;
}

.site-footer__brand > p {
    max-width: 360px;
    margin-top: 27px;
    color: rgba(255, 255, 255, .53);
    font-size: 13px;
    line-height: 2;
}

.site-footer__brand .site-footer__area {
    margin-top: 21px;
    color: var(--gold-pale);
    font-size: 12px;
    letter-spacing: .08em;
}

.site-footer__column h2,
.site-footer__contact > h2 {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .04em;
}

.site-footer__column nav {
    display: grid;
    gap: 5px;
    margin-top: 20px;
}

.site-footer__navigation nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 22px;
}

.site-footer__column a {
    min-height: 44px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    transition: color .2s ease;
}

.site-footer__column a:hover {
    color: var(--gold-pale);
}

.site-footer__contact {
    padding-left: clamp(28px, 3.5vw, 52px);
    border-left: 1px solid var(--line-light);
}

.site-footer__contact > h2 {
    font-size: 15px;
    line-height: 1.5;
}

.site-footer__contact dl {
    display: grid;
    gap: 9px;
    margin-top: 24px;
}

.site-footer__contact dl > div {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.site-footer__contact dt {
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
}

.site-footer__contact dd,
.site-footer__contact a,
.site-footer__contact button {
    font-size: 13px;
}

.site-footer__contact dd a,
.site-footer__contact dd button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.site-footer__contact button {
    min-height: 44px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
}

.site-footer__bottom {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-block: 16px;
    color: rgba(255, 255, 255, .38);
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 12px;
}

.back-to-top {
    position: fixed;
    z-index: 60;
    right: clamp(18px, 2.4vw, 34px);
    bottom: clamp(20px, 2.4vw, 34px);
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(8, 8, 7, .9);
    border: 1px solid rgba(199, 164, 93, .72);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .22s ease, visibility .22s ease, transform .28s var(--ease), background .22s ease;
    backdrop-filter: blur(12px);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.back-to-top:hover {
    color: var(--black);
    background: var(--gold-bright);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.mobile-action-bar {
    display: none;
}

/* Reveal motion is progressive enhancement: content stays visible without JS. */
.motion-ready [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .72s ease, transform .78s var(--ease);
}

.motion-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 1180px) {
    :root {
        --gutter: 38px;
    }

    .site-header__inner {
        gap: 22px;
    }

    .primary-nav {
        gap: 13px;
    }

    .primary-nav > a {
        font-size: 12px;
    }

    .standard-card {
        grid-template-columns: 50px minmax(150px, .4fr) minmax(0, 1fr);
        gap: 20px;
        padding: 24px 30px;
    }

    .standard-cards h3 {
        font-size: 18px;
    }

    .news-layout {
        grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
        gap: 38px;
    }

    .site-footer__main {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
        gap: 52px 64px;
    }
}

@media (max-width: 1060px) {
    :root {
        --header-height: 76px;
    }

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

    .primary-nav {
        position: fixed;
        z-index: 1001;
        top: calc(var(--preview-toolbar-height) + var(--header-height));
        right: 0;
        left: 0;
        max-height: calc(100svh - var(--preview-toolbar-height) - var(--header-height));
        display: grid;
        align-content: start;
        justify-content: stretch;
        gap: 0;
        padding: 22px var(--gutter) 30px;
        overflow-y: auto;
        color: var(--ink);
        background: rgba(255, 255, 255, .985);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 24px 50px rgba(20, 18, 13, .12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity .24s ease, visibility .24s ease, transform .3s var(--ease);
    }

    .primary-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .primary-nav > a {
        min-height: 52px;
        justify-content: space-between;
        border-bottom: 1px solid var(--line);
        font-size: 14px;
    }

    .primary-nav > a::after {
        display: none;
    }

    .primary-nav__contact {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 22px;
    }

    .primary-nav__contact a {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--line);
        font-size: 13px;
    }

    .primary-nav__contact a:last-child {
        color: var(--black);
        background: var(--gold-bright);
        border-color: var(--gold-bright);
    }

    .nav-toggle {
        display: block;
    }

    .site-header .button--header {
        justify-self: end;
    }

    .hero__inner {
        padding-top: calc(var(--header-height) + 80px);
    }

    .standard-card {
        grid-template-columns: 46px minmax(140px, .38fr) minmax(0, 1fr);
        padding-inline: 26px;
    }

    .standard-card__icon {
        width: 42px;
        height: 42px;
    }

    .standard-cards p {
        font-size: 12px;
    }

    .journey-cards {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .journey-cards li {
        grid-column: span 2;
    }

    .journey-cards li:nth-child(4),
    .journey-cards li:nth-child(5) {
        grid-column: span 3;
    }

    .journey-cards h3 {
        font-size: 17px;
    }

    .journey-cards p {
        font-size: 12px;
    }

    .consultation-section__layout {
        grid-template-columns: minmax(290px, .56fr) minmax(0, 1.44fr);
        gap: 38px;
    }
}

@media (max-width: 900px) {
    :root {
        --gutter: 30px;
    }

    .section-heading--split {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .scope-portico {
        min-height: 560px;
    }

    .scope-portico__grid article {
        padding: 28px 24px;
    }

    .fleet-gallery {
        height: 520px;
        grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
        gap: 10px;
    }

    .standard-cards {
        display: block;
    }

    .standard-card,
    .standard-card--1,
    .standard-card--2,
    .standard-card--3,
    .standard-card--4,
    .standard-card--5 {
        grid-template-columns: 46px minmax(130px, .36fr) minmax(0, 1fr);
        padding: 24px 26px;
    }

    .scenario-stage {
        grid-template-columns: 1fr;
    }

    .scenario-stage__visual {
        min-height: 520px;
    }

    .scenario-stage__tabs {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        grid-template-rows: auto;
        border-top: 1px solid var(--line-light);
        border-left: 0;
    }

    .scenario-stage__tabs button {
        min-height: 70px;
        justify-content: center;
        padding: 12px 8px;
        border-right: 1px solid var(--line-light);
        border-bottom: 0;
        font-size: 12px;
        text-align: center;
    }

    .scenario-stage__tabs button:last-child {
        border-right: 0;
    }

    .scenario-stage__tabs button::before {
        top: -1px;
        right: 0;
        bottom: auto;
        left: 0;
        width: auto;
        height: 3px;
        transform: scaleX(0);
    }

    .scenario-stage__tabs button.is-active::before {
        transform: scaleX(1);
    }

    .scenario-stage__tabs i {
        display: none;
    }

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

    .case-card > a {
        aspect-ratio: 4 / 5;
    }

    .journey-cards {
        gap: 12px;
    }

    .journey-cards li {
        min-width: 0;
    }

    .journey-cards__head,
    .journey-cards__body {
        padding-inline: 24px;
    }

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

    .about-section__layout > figure {
        min-height: 500px;
    }

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

    .news-briefs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .news-briefs article,
    .news-briefs article:last-child {
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .news-briefs a {
        min-height: 0;
        display: block;
        padding-block: 16px;
    }

    .news-briefs figure {
        width: 100%;
        aspect-ratio: 4 / 3;
        margin-bottom: 14px;
    }

    .news-briefs i {
        display: none;
    }

    .help-section__layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .help-section__layout > .section-heading {
        max-width: 620px;
    }

    .consultation-section__layout {
        grid-template-columns: 1fr;
    }

    .consultation-section__intro {
        position: static;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr);
        gap: 20px 48px;
        padding: 0;
    }

    .consultation-section__intro > .eyebrow,
    .consultation-section__intro > h2,
    .consultation-section__intro > p,
    .consultation-section__intro > .copy-status {
        grid-column: 1;
    }

    .contact-ledger {
        grid-column: 2;
        grid-row: 1 / span 4;
        margin-top: 0;
    }

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

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__contact {
        padding: 0 0 0 36px;
        border-top: 0;
        border-left: 1px solid var(--line-light);
    }
}

@media (max-width: 700px) {
    :root {
        --gutter: 22px;
    }

    body {
        padding-bottom: calc(62px + env(safe-area-inset-bottom));
        font-size: 15px;
    }

    .section {
        padding-block: 78px;
    }

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

    .section-heading h2,
    .about-section__content h2,
    .consultation-section__intro h2 {
        font-size: clamp(30px, 8.7vw, 38px);
        line-height: 1.3;
    }

    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-heading--split > p {
        max-width: 620px;
        justify-self: start;
    }

    .section-heading--action {
        align-items: flex-end;
        gap: 18px;
    }

    .site-header .button--header {
        display: none;
    }

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

    .nav-toggle {
        justify-self: end;
    }

    .wordmark strong {
        font-size: 20px;
    }

    .wordmark span {
        font-size: 12px;
    }

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

    .hero__inner {
        height: 100%;
        min-height: 0;
    }

    .hero__media img,
    .hero__media video {
        object-position: 66% center;
    }

    .hero__veil {
        background:
            linear-gradient(90deg, rgba(5, 5, 4, .87), rgba(5, 5, 4, .24)),
            linear-gradient(0deg, rgba(5, 5, 4, .82) 0%, rgba(5, 5, 4, .1) 62%, rgba(5, 5, 4, .35) 100%);
    }

    .hero__inner {
        padding-top: calc(var(--header-height) + 4vh);
        padding-bottom: 0;
    }

    .hero__content {
        width: 100%;
        transform: translateY(-3vh);
    }

    .hero__content.is-loaded,
    .no-js .hero__content {
        transform: translateY(-3vh);
    }

    .hero h1 {
        margin-top: 18px;
        font-size: clamp(38px, 11vw, 50px);
        line-height: 1.22;
    }

    .hero__lead {
        margin-top: 21px;
        font-size: 15px;
        line-height: 1.85;
    }

    .hero__actions {
        margin-top: 28px;
    }

    .hero__scroll {
        bottom: 76px;
        display: flex;
        font-size: 10px;
    }

    .scope-portico {
        min-height: 660px;
    }

    .scope-portico__grid {
        grid-template-columns: 1fr;
        align-content: end;
    }

    .scope-portico__grid article {
        min-height: 170px;
        padding: 24px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .22);
        background: rgba(8, 8, 7, .31);
        backdrop-filter: blur(3px);
    }

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

    .scope-portico__grid article > div {
        max-width: 520px;
    }

    .scope-portico__grid h3 {
        font-size: 20px;
    }

    .scope-portico__grid p {
        margin-top: 8px;
        font-size: 12px;
    }

    .fleet-gallery {
        height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 430px 250px;
        gap: 8px;
    }

    .fleet-gallery__item--1,
    .fleet-gallery__item:first-child {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .fleet-gallery__item:nth-child(2),
    .fleet-gallery__item:nth-child(3) {
        grid-row: 2;
    }

    .fleet-gallery__item figcaption {
        padding: 22px;
    }

    .fleet-gallery__item figcaption strong {
        font-size: 18px;
    }

    .standard-card,
    .standard-card:last-child {
        grid-template-columns: 44px minmax(0, 1fr);
        align-items: start;
        gap: 6px 18px;
        padding: 23px 22px;
    }

    .standard-card__icon {
        width: 44px;
        height: 44px;
        grid-row: 1 / span 2;
    }

    .standard-cards h3,
    .standard-cards p {
        grid-column: 2;
    }

    .standard-cards p {
        margin-top: 7px;
    }

    .scenario-stage__visual {
        min-height: 480px;
    }

    .scenario-stage__visual figcaption {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 26px;
    }

    .scenario-stage__visual figcaption strong {
        font-size: 23px;
    }

    .scenario-stage__visual figcaption span {
        font-size: 12px;
    }

    .scenario-stage__tabs {
        grid-template-columns: 1fr;
    }

    .scenario-stage__tabs button {
        min-height: 52px;
        justify-content: space-between;
        padding: 10px 18px;
        border-right: 0;
        border-bottom: 1px solid var(--line-light);
        text-align: left;
    }

    .scenario-stage__tabs button::before {
        top: 0;
        right: auto;
        bottom: 0;
        left: 0;
        width: 3px;
        height: auto;
        transform: scaleY(0);
    }

    .scenario-stage__tabs button.is-active::before {
        transform: scaleY(1);
    }

    .scenario-stage__tabs i {
        display: block;
    }

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

    .case-card > a {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .case-card__content {
        padding: 24px;
    }

    .journey-cards {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .journey-cards li,
    .journey-cards li:nth-child(4),
    .journey-cards li:nth-child(5) {
        grid-column: auto;
    }

    .about-section__layout > figure {
        min-height: 400px;
    }

    .about-section__content {
        padding: 38px 26px 44px;
    }

    .news-briefs {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .news-briefs article:last-child {
        border-bottom: 1px solid var(--line);
    }

    .news-briefs a {
        min-height: 142px;
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 16px;
    }

    .news-briefs figure {
        width: 112px;
        margin-bottom: 0;
    }

    .faq-item summary {
        grid-template-columns: 30px minmax(0, 1fr) 28px;
        gap: 10px;
        font-size: 14px;
    }

    .faq-item__answer {
        padding: 0 38px 24px 40px;
    }

    .consultation-section {
        padding-block: 78px;
    }

    .consultation-section__intro {
        display: block;
    }

    .contact-ledger {
        margin-top: 34px;
    }

    .quote-wizard,
    .form-success {
        padding: 30px 22px;
    }

    .field-group--trip,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .field-group--trip legend,
    .field-group--trip > .field-error,
    .field--wide {
        grid-column: auto;
    }

    .choice-card,
    .choice-card > span {
        min-height: 70px;
    }

    .field input,
    .field select,
    .field textarea {
        font-size: 16px;
    }

    .captcha-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .quote-actions--end {
        justify-content: stretch;
    }

    .button--submit {
        width: 100%;
    }

    .quote-actions + .form-note {
        text-align: left;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .site-footer__contact {
        padding-top: 36px;
        padding-left: 0;
        border-top: 1px solid var(--line-light);
        border-left: 0;
    }

    .site-footer__bottom {
        min-height: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        padding-block: 22px;
    }

    .mobile-action-bar {
        position: fixed;
        z-index: 1100;
        right: 0;
        bottom: 0;
        left: 0;
        min-height: calc(62px + env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-bottom: env(safe-area-inset-bottom);
        color: var(--white);
        background: rgba(9, 9, 8, .97);
        border-top: 1px solid rgba(255, 255, 255, .16);
        backdrop-filter: blur(16px);
    }

    .mobile-action-bar a,
    .mobile-action-bar button {
        min-width: 0;
        min-height: 62px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        color: var(--white);
        background: transparent;
        border: 0;
        border-right: 1px solid rgba(255, 255, 255, .16);
        font-size: 12px;
        font-weight: 600;
    }

    .mobile-action-bar > :last-child {
        color: var(--black);
        background: var(--gold-bright);
        border-right: 0;
    }

    .back-to-top {
        right: 14px;
        bottom: calc(76px + env(safe-area-inset-bottom));
        width: 46px;
        height: 46px;
    }
}

@media (hover: none) {
    .case-card img {
        filter: brightness(.78);
    }

    .case-card__content {
        background: linear-gradient(180deg, transparent 24%, rgba(6, 6, 5, .9) 100%);
    }

    .case-card p {
        max-height: 120px;
        margin-top: 11px;
        opacity: 1;
        transform: none;
    }
}

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

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .hero__actions .button {
        padding-inline: 14px;
    }

    .fleet-gallery {
        grid-template-rows: 370px 215px;
    }

    .fleet-gallery__item figcaption {
        padding: 18px;
    }

    .fleet-gallery__item figcaption span {
        font-size: 12px;
        line-height: 1.55;
    }

    .news-briefs a {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .news-briefs figure {
        width: 96px;
    }

    .contact-ledger > div {
        grid-template-columns: 78px minmax(0, 1fr);
    }
}

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

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

    .motion-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Inner pages — shared editorial system */
.content-shell {
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
    margin-inline: auto;
}

.inner-section {
    padding-block: clamp(88px, 7.5vw, 124px);
}

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

.button--dark:hover {
    color: var(--black);
    background: var(--gold-bright);
    border-color: var(--gold-bright);
}

.inner-hero,
.inner-masthead {
    position: relative;
    display: flex;
    align-items: end;
    min-height: clamp(390px, 48vw, 560px);
    padding-top: calc(var(--header-height) + var(--preview-toolbar-height) + 76px);
    padding-bottom: clamp(64px, 7vw, 96px);
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 14%, rgba(199, 164, 93, .15), transparent 28%),
        linear-gradient(135deg, #080807 0%, #15130f 62%, #090908 100%);
}

.inner-hero::after,
.inner-masthead::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 164, 93, .68), transparent);
}

.inner-hero__inner,
.inner-masthead__inner {
    position: relative;
    z-index: 1;
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
    margin-inline: auto;
}

.inner-hero h1,
.inner-masthead h1 {
    max-width: 920px;
    margin-top: 18px;
    color: var(--white);
    font-size: clamp(40px, 4.4vw, 62px);
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -.045em;
}

.inner-hero__description,
.inner-hero__copy > p:last-child,
.inner-masthead__lead {
    max-width: 720px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .68);
    font-size: 16px;
    line-height: 1.9;
}

.inner-hero .eyebrow,
.inner-masthead .eyebrow {
    color: var(--gold-pale);
}

.inner-hero--archive,
.inner-hero--search,
.inner-masthead--compact,
.inner-masthead--contact,
.inner-masthead--answer,
.inner-masthead--editorial {
    min-height: clamp(400px, 42vw, 500px);
}

.inner-masthead--editorial {
    min-height: clamp(480px, 55vw, 650px);
}

.inner-masthead--editorial h1 {
    max-width: 980px;
}

.breadcrumbs,
.inner-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, .52);
    font-size: 12px;
    line-height: 1.6;
}

.breadcrumbs a,
.inner-breadcrumb a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color .2s ease;
}

.breadcrumbs a:hover,
.inner-breadcrumb a:hover {
    color: var(--gold-pale);
}

.inner-heading {
    margin-bottom: clamp(40px, 5vw, 66px);
}

.inner-heading h2 {
    margin-top: 16px;
    font-size: clamp(32px, 3.1vw, 46px);
    letter-spacing: -.035em;
}

.inner-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .66fr);
    align-items: end;
    gap: clamp(42px, 8vw, 112px);
}

.inner-heading--split > p {
    max-width: 520px;
    justify-self: end;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.inner-heading--action {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
}

.rich-content,
.article-body {
    color: #37342f;
    font-size: 16px;
    line-height: 1.95;
    overflow-wrap: anywhere;
}

.rich-content > :first-child,
.article-body > :first-child {
    margin-top: 0;
}

.rich-content > :last-child,
.article-body > :last-child {
    margin-bottom: 0;
}

.rich-content h2,
.article-body h2 {
    margin: 2.25em 0 .72em;
    color: var(--ink);
    font-size: clamp(25px, 2.2vw, 32px);
    line-height: 1.42;
    letter-spacing: -.025em;
}

.rich-content h3,
.article-body h3 {
    margin: 1.9em 0 .65em;
    color: var(--ink);
    font-size: 21px;
    line-height: 1.5;
}

.rich-content p,
.article-body p,
.rich-content ul,
.rich-content ol,
.article-body ul,
.article-body ol,
.rich-content blockquote,
.article-body blockquote {
    margin: 0 0 1.45em;
}

.rich-content ul,
.rich-content ol,
.article-body ul,
.article-body ol {
    padding-left: 1.4em;
}

.rich-content li + li,
.article-body li + li {
    margin-top: .55em;
}

.rich-content a,
.article-body a {
    color: #755519;
    text-decoration: underline;
    text-decoration-color: rgba(157, 121, 52, .48);
    text-underline-offset: 4px;
}

.rich-content blockquote,
.article-body blockquote {
    padding: 22px 26px;
    color: var(--ink);
    background: var(--warm-white);
    border-left: 3px solid var(--gold);
}

.rich-content img,
.article-body img {
    height: auto;
    margin-block: 34px;
}

.rich-content table,
.article-body table {
    width: 100%;
    margin-block: 30px;
    border-collapse: collapse;
    font-size: 14px;
}

.rich-content th,
.rich-content td,
.article-body th,
.article-body td {
    padding: 13px 15px;
    border: 1px solid var(--line);
    text-align: left;
}

.inner-consultation {
    color: var(--white);
    background: #11110f;
    border-top: 1px solid rgba(199, 164, 93, .42);
}

.inner-consultation__inner {
    min-height: 260px;
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(300px, .8fr) auto;
    align-items: center;
    gap: clamp(30px, 5vw, 72px);
    padding-block: 50px;
}

.inner-consultation h2 {
    max-width: 590px;
    margin-top: 14px;
    color: var(--white);
    font-size: clamp(28px, 2.8vw, 40px);
    letter-spacing: -.03em;
}

.inner-consultation__inner > p {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    line-height: 1.9;
}

/* Collection navigation and case archive */
.collection-section,
.content-archive {
    background: var(--warm-white);
}

.collection-section,
.content-archive {
    padding-top: clamp(70px, 6vw, 92px);
}

.collection-toolbar {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
    align-items: end;
    gap: clamp(40px, 7vw, 100px);
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.collection-toolbar h2 {
    margin-top: 13px;
    font-size: clamp(28px, 2.5vw, 38px);
    letter-spacing: -.03em;
}

.collection-filters,
.taxonomy-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.collection-filters a,
.taxonomy-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    color: var(--muted);
    background: var(--white);
    border: 1px solid var(--line);
    font-size: 12px;
    font-weight: 600;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.collection-filters a:hover,
.collection-filters a.is-active,
.taxonomy-nav a:hover,
.taxonomy-nav a.is-current {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 1.6vw, 22px);
}

.collection-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-card,
.case-index-card {
    min-width: 0;
    overflow: hidden;
    background: var(--black);
}

.case-index-card__link {
    position: relative;
    display: block;
    min-height: 100%;
    overflow: hidden;
    color: var(--white);
}

.case-index-card__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #24231f;
}

.case-index-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 4, .02) 32%, rgba(5, 5, 4, .9) 100%);
    transition: background .3s ease;
}

.case-index-card__media img {
    height: 100%;
    object-fit: cover;
    transition: transform .65s var(--ease), filter .4s ease;
}

.case-index-card__content {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px 24px 24px;
}

.case-index-card__scope {
    color: var(--gold-pale);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
}

.case-index-card h2,
.case-index-card h3 {
    margin-top: 10px;
    color: var(--white);
    font-size: clamp(18px, 1.55vw, 23px);
    line-height: 1.45;
}

.case-index-card__excerpt {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    line-height: 1.75;
    opacity: 0;
    transform: translateY(8px);
    transition: max-height .35s var(--ease), margin .3s ease, opacity .25s ease, transform .35s var(--ease);
}

.case-index-card__action {
    min-height: 34px;
    display: inline-flex;
    align-items: end;
    margin-top: 12px;
    color: var(--gold-pale);
    border-bottom: 1px solid rgba(227, 211, 174, .55);
    font-size: 12px;
    font-weight: 600;
}

.case-index-card__link:hover .case-index-card__media img,
.case-index-card__link:focus-visible .case-index-card__media img {
    transform: scale(1.045);
    filter: brightness(.76);
}

.case-index-card__link:hover .case-index-card__excerpt,
.case-index-card__link:focus-visible .case-index-card__excerpt {
    max-height: 130px;
    margin-top: 11px;
    opacity: 1;
    transform: none;
}

.collection-empty,
.content-empty,
.faq-empty {
    display: grid;
    justify-items: start;
    min-height: 320px;
    align-content: center;
    padding: clamp(34px, 5vw, 70px);
    background: var(--white);
    border: 1px solid var(--line);
}

.collection-empty h2,
.content-empty h2,
.faq-empty h2 {
    margin-top: 14px;
    font-size: clamp(28px, 3vw, 40px);
}

.collection-empty > p:not(.eyebrow),
.content-empty > p:not(.eyebrow),
.faq-empty > p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
}

.collection-empty__actions,
.content-empty__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.collection-pagination,
.archive-pagination,
.page-nav__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.collection-pagination__next,
.page-nav__link--next {
    justify-self: end;
}

.collection-pagination a,
.archive-pagination a,
.page-nav__link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
}

.collection-pagination > p,
.archive-pagination > span,
.page-nav__current {
    color: var(--stone);
    font-size: 12px;
}

.page-nav__link--disabled {
    color: #aaa59b;
}

/* Case detail */
.case-detail__hero {
    min-height: clamp(590px, 65vw, 760px);
    padding-bottom: 70px;
}

.case-detail__hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
    align-items: end;
    gap: clamp(42px, 7vw, 100px);
}

.case-detail__intro h1 {
    max-width: 680px;
    font-size: clamp(38px, 4vw, 56px);
}

.case-detail__lead {
    max-width: 650px;
    margin-top: 23px;
    color: rgba(255, 255, 255, .67);
    font-size: 15px;
    line-height: 1.9;
}

.case-detail__taxonomies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
}

.case-detail__taxonomies a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    color: rgba(255, 255, 255, .65);
    border: 1px solid rgba(255, 255, 255, .22);
    font-size: 12px;
}

.case-detail__cover {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #292823;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}

.case-detail__cover::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    pointer-events: none;
}

.case-detail__cover img {
    height: 100%;
    object-fit: cover;
}

.case-detail__dossier {
    background: var(--warm-white);
}

.case-detail__facts {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    color: var(--white);
    background: var(--black);
    border-top: 3px solid var(--gold-bright);
}

.case-detail__fact {
    min-width: 0;
    padding: 30px 24px 34px;
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.case-detail__fact:last-child {
    border-right: 0;
}

.case-detail__fact dt {
    color: var(--gold-pale);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
}

.case-detail__fact dd {
    margin-top: 14px;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.case-detail__story-grid {
    display: grid;
    grid-template-columns: minmax(260px, .58fr) minmax(0, 1.42fr);
    gap: clamp(50px, 9vw, 140px);
}

.case-detail__story-heading {
    position: sticky;
    top: calc(var(--header-height) + var(--preview-toolbar-height) + 34px);
    align-self: start;
}

.case-detail__story-heading h2 {
    margin-top: 15px;
    font-size: clamp(30px, 3vw, 43px);
}

.case-detail__story-heading > p:last-child {
    margin-top: 22px;
    color: var(--muted);
    font-size: 14px;
}

.case-detail__body {
    max-width: 760px;
    padding-top: 4px;
}

.case-detail__related {
    background: var(--warm-white);
}

/* News archive and editorial article */
.content-archive > .container > .taxonomy-nav {
    justify-content: flex-start;
    margin-bottom: 48px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
}

.content-archive__featured {
    margin-bottom: clamp(48px, 6vw, 82px);
}

.content-grid {
    display: grid;
    gap: clamp(22px, 2.5vw, 34px);
}

.content-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card {
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--line);
    transition: transform .3s var(--ease), box-shadow .3s ease, border-color .25s ease;
}

.content-card:hover {
    border-color: rgba(157, 121, 52, .48);
    box-shadow: 0 22px 54px rgba(18, 16, 11, .1);
    transform: translateY(-4px);
}

.content-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content-card__media {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--warm);
}

.content-card__media img {
    height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease), filter .35s ease;
}

.content-card:hover .content-card__media img {
    transform: scale(1.035);
    filter: saturate(.9);
}

.content-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px 25px 28px;
}

.content-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--stone);
    font-size: 12px;
    line-height: 1.5;
}

.content-card__meta span {
    color: var(--gold);
    font-weight: 600;
}

.content-card h2,
.content-card h3 {
    margin-top: 14px;
    font-size: clamp(19px, 1.65vw, 24px);
    line-height: 1.48;
    letter-spacing: -.02em;
}

.content-card__body > p {
    margin-top: 15px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.content-card__more {
    min-height: 38px;
    display: inline-flex;
    align-items: end;
    align-self: flex-start;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    color: var(--ink);
    border-bottom: 1px solid var(--gold);
    font-size: 12px;
    font-weight: 600;
}

.content-card__more i {
    color: var(--gold);
    font-style: normal;
}

.content-card--featured {
    border: 0;
    background: var(--black);
}

.content-card--featured .content-card__link {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(340px, .78fr);
    min-height: 520px;
}

.content-card--featured .content-card__media {
    height: 100%;
    aspect-ratio: auto;
}

.content-card--featured .content-card__body {
    justify-content: center;
    padding: clamp(38px, 5vw, 70px);
    color: var(--white);
}

.content-card--featured .content-card__meta {
    color: rgba(255, 255, 255, .48);
}

.content-card--featured .content-card__meta span,
.content-card--featured .content-card__more {
    color: var(--gold-pale);
}

.content-card--featured h2,
.content-card--featured h3 {
    margin-top: 18px;
    color: var(--white);
    font-size: clamp(27px, 2.7vw, 39px);
    line-height: 1.4;
}

.content-card--featured .content-card__body > p {
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
}

.page-nav {
    margin-top: 54px;
}

.article-detail__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, .32fr);
    align-items: end;
    gap: clamp(44px, 8vw, 120px);
}

.article-detail__header .breadcrumbs {
    grid-column: 1 / -1;
    margin-bottom: 6px;
}

.article-detail__heading h1 {
    max-width: 900px;
    font-size: clamp(38px, 4.15vw, 58px);
}

.article-detail__heading > a.eyebrow,
.article-detail__meta dd a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.article-detail__subtitle {
    max-width: 760px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
    line-height: 1.85;
}

.article-detail__meta {
    align-self: end;
    padding-left: 26px;
    border-left: 1px solid rgba(255, 255, 255, .2);
}

.article-detail__meta > div + div {
    margin-top: 18px;
}

.article-detail__meta dt {
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
}

.article-detail__meta dd {
    margin-top: 5px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.65;
}

.article-detail__main {
    background: var(--white);
}

.article-detail__cover {
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: var(--warm);
}

.article-detail__cover img {
    height: 100%;
    object-fit: cover;
}

.article-detail__content {
    width: min(760px, 100%);
    margin: clamp(54px, 7vw, 92px) auto 0;
}

.article-detail__lead {
    margin-bottom: 38px;
    padding: 24px 0 24px 26px;
    color: var(--ink);
    border-left: 3px solid var(--gold);
    font-size: 18px;
    line-height: 1.85;
}

.article-detail__source {
    display: flex;
    gap: 14px;
    margin-top: 40px;
    padding-top: 22px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 12px;
}

.article-detail__source span,
.article-tags > span {
    color: var(--stone);
}

.article-tags {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 18px;
    margin-top: 24px;
    font-size: 12px;
}

.article-tags div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-tags a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    background: var(--warm-white);
    border: 1px solid var(--line);
}

.article-detail__return {
    margin-top: 42px;
}

.related-content {
    background: var(--warm-white);
}

/* Help center */
.faq-archive {
    background: var(--warm-white);
}

.faq-archive__layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: start;
    gap: clamp(46px, 7vw, 100px);
}

.faq-category-rail__inner {
    position: sticky;
    top: calc(var(--header-height) + var(--preview-toolbar-height) + 30px);
    padding: 28px 24px;
    background: var(--black);
    border-top: 3px solid var(--gold-bright);
}

.faq-category-rail__label {
    color: var(--gold-pale);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
}

.faq-category-rail__nav {
    display: grid;
    margin-top: 16px;
}

.faq-category-rail__nav a {
    position: relative;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    color: rgba(255, 255, 255, .6);
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
    transition: color .2s ease, background .2s ease, padding .25s var(--ease);
}

.faq-category-rail__nav a:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.faq-category-rail__nav a:hover,
.faq-category-rail__nav a.is-active {
    padding-left: 20px;
    color: var(--white);
    background: rgba(255, 255, 255, .07);
}

.faq-category-rail__nav a.is-active::before {
    content: "";
    position: absolute;
    top: 13px;
    bottom: 13px;
    left: 0;
    width: 2px;
    background: var(--gold-bright);
}

.faq-category-rail__tags {
    margin-top: 28px;
}

.faq-category-rail__tags > div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.faq-category-rail__tags a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    color: rgba(255, 255, 255, .6);
    border: 1px solid rgba(255, 255, 255, .14);
    font-size: 12px;
}

.faq-category-rail__tags a.is-active {
    color: var(--black);
    background: var(--gold-bright);
    border-color: var(--gold-bright);
}

.faq-archive__summary {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
    color: var(--stone);
    font-size: 12px;
}

.faq-archive__summary p {
    color: var(--ink);
    font-weight: 600;
}

.faq-question-group + .faq-question-group {
    margin-top: clamp(56px, 6vw, 86px);
}

.faq-question-group__heading {
    display: grid;
    grid-template-columns: 48px minmax(0, .55fr) minmax(260px, .9fr);
    align-items: start;
    gap: 24px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.faq-question-group__heading > p {
    color: var(--gold);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}

.faq-question-group__heading h2 {
    font-size: clamp(24px, 2.2vw, 31px);
}

.faq-question-group__heading > span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}

.faq-question-list {
    background: var(--white);
    border: 1px solid var(--line);
    border-bottom: 0;
}

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

.faq-question-list .faq-question summary {
    min-height: 82px;
    grid-template-columns: 38px minmax(0, 1fr) 32px;
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 600;
}

.faq-question-list .faq-item__answer {
    padding: 0 58px 28px 82px;
}

.faq-question-list .faq-question__answer .rich-content {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.faq-question-list .faq-question__answer .text-link {
    margin-top: 14px;
}

.faq-empty .button {
    margin-top: 26px;
}

.faq-detail__answer {
    background: var(--white);
}

.faq-detail__answer-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 760px);
    justify-content: center;
    gap: clamp(50px, 8vw, 120px);
}

.faq-detail__answer-label {
    position: sticky;
    top: calc(var(--header-height) + var(--preview-toolbar-height) + 32px);
    align-self: start;
    padding-top: 6px;
}

.faq-detail__answer-label h2 {
    margin-top: 12px;
    font-size: 26px;
}

.faq-detail__category {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    margin-top: 22px;
    color: var(--muted);
    border-bottom: 1px solid var(--gold);
    font-size: 12px;
}

.faq-detail__answer-body {
    position: relative;
    padding: clamp(32px, 4vw, 52px);
    background: var(--warm-white);
    border-left: 3px solid var(--gold);
    font-size: 17px;
}

.faq-detail__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-bottom: 54px;
    font-size: 12px;
}

.faq-detail__tags > span {
    margin-right: 10px;
    color: var(--stone);
}

.faq-detail__tags a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    background: var(--warm-white);
    border: 1px solid var(--line);
}

.faq-related {
    background: var(--warm-white);
}

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

.faq-related-card {
    min-width: 0;
    background: var(--white);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.faq-related-card a {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    padding: 26px 24px;
    transition: color .25s ease, background .25s ease;
}

.faq-related-card a:hover {
    color: var(--white);
    background: var(--black);
}

.faq-related-card span {
    color: var(--gold);
    font-size: 12px;
}

.faq-related-card h3 {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.55;
}

.faq-related-card i {
    margin-top: auto;
    color: var(--gold);
    font-style: normal;
}

/* Service page */
.inner-masthead--service {
    min-height: clamp(640px, 72vw, 820px);
    padding-bottom: 64px;
}

.inner-masthead__service-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(44px, 7vw, 104px);
}

.inner-masthead__content h1 {
    font-size: clamp(42px, 4.5vw, 62px);
}

.inner-masthead__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

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

.inner-masthead__figure {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #25241f;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}

.inner-masthead__figure::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .16);
    pointer-events: none;
}

.inner-masthead__figure img {
    height: 100%;
    object-fit: cover;
}

.inner-masthead__figure figcaption {
    position: absolute;
    z-index: 1;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 15px;
    color: var(--white);
    background: rgba(8, 8, 7, .86);
    border: 1px solid rgba(255, 255, 255, .18);
    font-size: 12px;
    backdrop-filter: blur(10px);
}

.inner-masthead__figure figcaption span {
    color: var(--gold-pale);
    letter-spacing: .08em;
}

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

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

.service-scope-card {
    min-width: 0;
    padding: clamp(28px, 3.2vw, 46px);
    background: var(--warm-white);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-scope-card--primary {
    color: var(--white);
    background: var(--black);
    border-color: rgba(255, 255, 255, .15);
}

.service-scope-card > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
}

.service-scope-card > div em {
    font-style: normal;
    font-variant-numeric: tabular-nums;
}

.service-scope-card h3 {
    margin-top: 34px;
    font-size: clamp(22px, 2vw, 29px);
}

.service-scope-card--primary h3 {
    color: var(--white);
}

.service-scope-card > p {
    min-height: 7.2em;
    margin-top: 16px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.service-scope-card--primary > p {
    color: rgba(255, 255, 255, .62);
}

.service-scope-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.service-scope-card li {
    padding: 7px 10px;
    color: var(--muted);
    background: var(--white);
    border: 1px solid var(--line);
    font-size: 12px;
}

.service-scope-card--primary li {
    color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .16);
}

.service-page__capabilities {
    color: var(--white);
    background: var(--black);
}

.service-page__capabilities-layout {
    display: grid;
    grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr);
    align-items: start;
    gap: clamp(50px, 9vw, 140px);
}

.service-page__capabilities .section-heading {
    position: sticky;
    top: calc(var(--header-height) + var(--preview-toolbar-height) + 34px);
    margin-bottom: 0;
}

.service-page__capabilities h2 {
    color: var(--white);
}

.service-page__capabilities .section-heading > p:last-child {
    margin-top: 22px;
    color: rgba(255, 255, 255, .58);
}

.service-page__capability-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
    list-style: none;
}

.service-page__capability-list li {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.service-page__capability-list li > span {
    color: var(--gold-pale);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}

.service-page__capability-list h3 {
    color: var(--white);
    font-size: 23px;
}

.service-page__capability-list p {
    margin-top: 9px;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    line-height: 1.8;
}

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

.service-page__editorial-layout {
    display: grid;
    grid-template-columns: minmax(260px, .6fr) minmax(0, 1.4fr);
    gap: clamp(50px, 9vw, 140px);
}

.service-page__editorial-heading h2 {
    margin-top: 15px;
    font-size: clamp(30px, 3vw, 44px);
}

.service-page__cms-body {
    max-width: 760px;
}

.service-page__cms-body h2:first-child {
    margin-top: 0;
}

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

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

.service-page__case-card {
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--line);
}

.service-page__case-card > a {
    display: grid;
    grid-template-columns: minmax(180px, .72fr) minmax(0, 1.28fr);
    min-height: 330px;
}

.service-page__case-card figure {
    overflow: hidden;
    background: var(--warm);
}

.service-page__case-card img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.service-page__case-card:hover img {
    transform: scale(1.035);
}

.service-page__case-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(26px, 3vw, 42px);
}

.service-page__case-copy > span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
}

.service-page__case-copy h3 {
    margin-top: 13px;
    font-size: clamp(20px, 1.8vw, 26px);
    line-height: 1.5;
}

.service-page__case-copy > p {
    margin-top: 13px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}

.service-page__case-copy dl {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.service-page__case-copy dl > div {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    font-size: 12px;
}

.service-page__case-copy dl > div + div {
    margin-top: 7px;
}

.service-page__case-copy dt {
    color: var(--stone);
}

.service-page__case-copy dd {
    color: var(--ink);
}

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


/* About: low-density editorial flow */
.about-page {
    background: var(--white);
}

.about-hero {
    color: var(--white);
    background: var(--black);
}

.about-hero__inner {
    min-height: 0;
    display: block;
    padding-top: calc(var(--header-height) + var(--preview-toolbar-height) + 30px);
    padding-bottom: clamp(68px, 8vw, 108px);
}

.about-hero .breadcrumbs {
    color: rgba(255, 255, 255, .64);
}

.about-hero__title {
    min-width: 0;
    max-width: 920px;
    margin-top: clamp(50px, 6vw, 76px);
}

.about-hero__company {
    padding-left: 0;
    color: var(--gold-pale);
    font-family: Arial, "Microsoft YaHei", "微软雅黑", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: .025em;
}

.about-hero__company::before {
    content: none;
}

.about-hero h1 {
    max-width: 900px;
    margin-top: 18px;
    color: var(--white);
    font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    font-size: clamp(38px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -.025em;
    text-wrap: balance;
    overflow-wrap: break-word;
}

.about-hero__summary {
    min-width: 0;
    max-width: 1080px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    align-items: start;
    gap: clamp(52px, 8vw, 112px);
    margin-top: clamp(42px, 5vw, 62px);
}

.about-hero__intro,
.about-hero__philosophy {
    min-width: 0;
    margin: 0;
    text-wrap: pretty;
    overflow-wrap: break-word;
}

.about-hero__intro {
    max-width: 650px;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 1.86;
}

.about-hero__philosophy {
    max-width: 460px;
    color: var(--gold-pale);
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 500;
    line-height: 1.72;
    letter-spacing: -.01em;
}

.about-positioning {
    padding-block: clamp(72px, 8vw, 104px);
    background: var(--white);
}

.about-positioning__layout {
    display: grid;
    grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: clamp(56px, 8vw, 104px);
}

.about-positioning h2 {
    min-width: 0;
    max-width: 520px;
    font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    font-size: clamp(30px, 3vw, 38px);
    font-weight: 500;
    line-height: 1.52;
    letter-spacing: -.02em;
    text-wrap: balance;
    overflow-wrap: break-word;
    scroll-margin-top: calc(var(--header-height) + var(--preview-toolbar-height) + 24px);
}

.about-positioning__prose {
    min-width: 0;
    max-width: 720px;
}

.about-positioning__prose p {
    min-width: 0;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
    text-wrap: pretty;
    overflow-wrap: break-word;
}

.about-positioning__prose p + p {
    margin-top: 24px;
}

.about-services {
    padding-block: clamp(76px, 9vw, 112px);
    background: var(--warm-white);
}

.about-services__heading {
    margin-bottom: clamp(60px, 7vw, 88px);
}

.about-services__heading h2 {
    max-width: 720px;
    padding: 0;
    border: 0;
    font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    font-size: clamp(34px, 3.5vw, 42px);
    font-weight: 500;
    letter-spacing: -.025em;
    text-wrap: balance;
    scroll-margin-top: calc(var(--header-height) + var(--preview-toolbar-height) + 24px);
}

.about-services__list {
    display: block;
}

.about-service {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(44px, 6vw, 80px);
}

.about-service + .about-service {
    margin-top: clamp(72px, 8vw, 104px);
}

.about-service h3 {
    min-width: 0;
    max-width: 260px;
    margin: 0;
    color: var(--ink);
    font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    font-size: clamp(23px, 2vw, 27px);
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -.015em;
    text-wrap: balance;
    overflow-wrap: break-word;
    scroll-margin-top: calc(var(--header-height) + var(--preview-toolbar-height) + 24px);
}

.about-service__chapter {
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-family: Arial, "Microsoft YaHei", "微软雅黑", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .04em;
}

.about-service__title {
    display: block;
}

.about-service__items {
    min-width: 0;
    display: grid;
    gap: 26px 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-service__items li {
    min-width: 0;
    display: grid;
    grid-template-columns: 1.3em minmax(0, 1fr);
    align-items: start;
    column-gap: .15em;
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.82;
    text-wrap: pretty;
    overflow-wrap: break-word;
}

.about-service__index {
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: .82em;
    font-weight: 600;
    line-height: 2.2;
}

.about-service__copy {
    min-width: 0;
}

.about-service--journey .about-service__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-service--journey .about-service__items li:first-child {
    grid-column: 1 / -1;
    max-width: 48em;
}

.about-service--fleet .about-service__items {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
}

.about-service--assurance .about-service__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-service--assurance .about-service__items li:first-child {
    grid-column: 1 / -1;
    max-width: 48em;
}

.about-service--booking .about-service__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-service--booking .about-service__items li:first-child {
    grid-column: 1 / -1;
    max-width: 42em;
}

@media (max-width: 1100px) {
    .about-hero h1 {
        font-size: clamp(35px, 4.4vw, 45px);
    }

    .about-hero__summary {
        grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
        gap: 48px;
    }

    .about-positioning__layout {
        grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
        gap: 48px;
    }

    .about-service {
        grid-template-columns: 200px minmax(0, 1fr);
        gap: 42px;
    }

    .about-service--booking .about-service__items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-service--booking .about-service__items li:last-child {
        grid-column: 1 / -1;
        max-width: 42em;
    }

}

@media (max-width: 900px) {
    .about-hero__summary,
    .about-positioning__layout,
    .about-service {
        grid-template-columns: 1fr;
    }

    .about-hero__summary {
        max-width: 720px;
        gap: 26px;
    }

    .about-hero__philosophy {
        max-width: 620px;
    }

    .about-positioning__layout {
        gap: 30px;
    }

    .about-positioning h2 {
        max-width: 620px;
    }

    .about-service {
        gap: 24px;
    }

    .about-service h3 {
        max-width: none;
    }
}

@media (max-width: 700px) {
    .about-hero__inner {
        padding-top: calc(var(--header-height) + var(--preview-toolbar-height) + 18px);
        padding-bottom: 52px;
    }

    .about-hero__title {
        margin-top: 34px;
    }

    .about-hero h1 {
        margin-top: 16px;
        font-size: 28px;
        line-height: 1.43;
    }

    .about-hero__summary {
        gap: 24px;
        margin-top: 32px;
    }

    .about-hero__intro {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-hero__philosophy {
        font-size: 20px;
        line-height: 1.65;
    }

    .about-positioning {
        padding-block: 50px;
    }

    .about-positioning__layout {
        gap: 24px;
    }

    .about-positioning h2 {
        font-size: 26px;
        line-height: 1.5;
    }

    .about-positioning__prose p {
        line-height: 1.84;
    }

    .about-positioning__prose p + p {
        margin-top: 18px;
    }

    .about-services {
        padding-block: 50px 58px;
    }

    .about-services__heading {
        margin-bottom: 44px;
    }

    .about-services__heading h2 {
        font-size: 31px;
    }

    .about-service + .about-service {
        margin-top: 56px;
    }

    .about-service {
        gap: 18px;
    }

    .about-service h3 {
        font-size: 23px;
        line-height: 1.5;
    }

    .about-service__items,
    .about-service--journey .about-service__items,
    .about-service--fleet .about-service__items,
    .about-service--assurance .about-service__items,
    .about-service--booking .about-service__items {
        display: block;
    }

    .about-service__items li {
        font-size: 16px;
        line-height: 1.78;
    }

    .about-service__items li + li {
        margin-top: 18px;
    }
}

/* Contact */
.contact-page__channels {
    background: var(--white);
}

.contact-page__channels-layout {
    display: grid;
    grid-template-columns: minmax(270px, .62fr) minmax(0, 1.38fr);
    align-items: start;
    gap: clamp(52px, 9vw, 140px);
}

.contact-page__channels .section-heading {
    position: sticky;
    top: calc(var(--header-height) + var(--preview-toolbar-height) + 32px);
    margin-bottom: 0;
}

.contact-page__channels .section-heading > p:last-child {
    margin-top: 22px;
}

.contact-page__ledger {
    border-top: 1px solid var(--line);
}

.contact-page__ledger > div {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) minmax(160px, .65fr);
    align-items: center;
    gap: 20px;
    min-height: 106px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.contact-page__ledger span {
    color: var(--stone);
    font-size: 12px;
}

.contact-page__ledger a,
.contact-page__ledger button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-self: start;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    font-size: clamp(18px, 2vw, 25px);
    font-weight: 500;
}

.contact-page__ledger button em {
    margin-left: 10px;
    color: var(--gold);
    font-size: 12px;
    font-style: normal;
}

.contact-page__ledger p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.contact-page__channels-layout > .copy-status {
    grid-column: 2;
}

.contact-page__prepare {
    background: var(--warm-white);
}

.contact-page__prepare-layout {
    display: grid;
    grid-template-columns: minmax(280px, .66fr) minmax(0, 1.34fr);
    gap: clamp(50px, 9vw, 140px);
}

.contact-page__prepare-copy h2 {
    margin-top: 15px;
    font-size: clamp(31px, 3vw, 44px);
}

.contact-page__prepare-copy .rich-content {
    margin-top: 26px;
    font-size: 14px;
}

.contact-page__prepare-list {
    margin: 0;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--line);
    list-style: none;
}

.contact-page__prepare-list li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 20px;
    padding: 26px 30px;
    border-bottom: 1px solid var(--line);
}

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

.contact-page__prepare-list li > span {
    color: var(--gold);
    font-size: 12px;
}

.contact-page__prepare-list h3 {
    font-size: 19px;
}

.contact-page__prepare-list p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}

.contact-page__handoff {
    color: var(--white);
    background: #11110f;
    border-top: 1px solid rgba(199, 164, 93, .42);
}

.contact-page__handoff-inner {
    min-height: 250px;
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(280px, .72fr) auto;
    align-items: center;
    gap: clamp(36px, 6vw, 84px);
    padding-block: 46px;
}

.contact-page__handoff h2 {
    margin-top: 13px;
    color: var(--white);
    font-size: clamp(30px, 3vw, 42px);
}

.contact-page__handoff-inner > p {
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
}

.generic-page__content {
    background: var(--white);
}

.generic-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(250px, 330px);
    justify-content: center;
    align-items: start;
    gap: clamp(50px, 8vw, 110px);
}

.generic-page__aside {
    position: sticky;
    top: calc(var(--header-height) + var(--preview-toolbar-height) + 30px);
    padding: 30px 26px;
    color: var(--white);
    background: var(--black);
    border-top: 3px solid var(--gold-bright);
}

.generic-page__aside h2 {
    margin-top: 13px;
    color: var(--white);
    font-size: 24px;
}

.generic-page__aside > p:not(.eyebrow) {
    margin-top: 15px;
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
}

.generic-page__aside .button {
    margin-top: 24px;
    color: var(--black);
    background: var(--gold-bright);
    border-color: var(--gold-bright);
}

/* Search */
.search-page {
    background: var(--warm-white);
}

.search-page__inner {
    max-width: 1020px;
}

.search-form {
    padding: clamp(28px, 4vw, 48px);
    color: var(--white);
    background: var(--black);
    border-top: 3px solid var(--gold-bright);
}

.search-form label {
    display: block;
    margin-bottom: 16px;
    color: var(--gold-pale);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
}

.search-form__control {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
}

.search-form__control input {
    width: 100%;
    min-height: 56px;
    padding: 0 20px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 0;
    font: inherit;
    font-size: 14px;
    outline: 0;
}

.search-form__control input:focus {
    border-color: var(--gold-bright);
    box-shadow: inset 0 0 0 2px var(--gold-bright);
}

.search-form__control .button {
    min-width: 126px;
    min-height: 56px;
}

.search-page__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-top: clamp(62px, 7vw, 94px);
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.search-page__heading h2 {
    margin-top: 12px;
    font-size: clamp(28px, 3vw, 40px);
}

.search-page__heading > p {
    flex: 0 0 auto;
    color: var(--stone);
    font-size: 12px;
}

.search-results {
    margin: 0;
    padding: 0;
    list-style: none;
}

.search-results > li {
    border-bottom: 1px solid var(--line);
}

.search-result__link {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: clamp(28px, 4vw, 52px);
    align-items: center;
    padding-block: 30px;
}

.search-result__media {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--warm);
}

.search-result__media img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease), filter .35s ease;
}

.search-result__link:hover .search-result__media img,
.search-result__link:focus-visible .search-result__media img {
    transform: scale(1.035);
    filter: brightness(.88);
}

.search-result__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
}

.search-result__meta time {
    color: var(--stone);
    font-weight: 400;
}

.search-result__body h3 {
    margin-top: 12px;
    font-size: clamp(21px, 2vw, 27px);
    line-height: 1.45;
}

.search-result__body > p {
    max-width: 680px;
    margin-top: 11px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.search-result__more {
    min-height: 38px;
    display: inline-flex;
    align-items: end;
    gap: 8px;
    margin-top: 12px;
    color: var(--ink);
    border-bottom: 1px solid var(--gold);
    font-size: 12px;
    font-weight: 600;
}

.search-result__more i {
    color: var(--gold);
    font-style: normal;
    transition: transform .25s ease;
}

.search-result__link:hover .search-result__more i,
.search-result__link:focus-visible .search-result__more i {
    transform: translateX(4px);
}

.search-page__empty {
    margin-top: 42px;
}

/* 404 */
.not-found {
    position: relative;
    min-height: max(680px, 92svh);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--black);
}

.not-found__media,
.not-found__veil {
    position: absolute;
    inset: 0;
}

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

.not-found__veil {
    background:
        linear-gradient(90deg, rgba(5, 5, 4, .94) 0%, rgba(5, 5, 4, .72) 47%, rgba(5, 5, 4, .28) 100%),
        linear-gradient(180deg, rgba(5, 5, 4, .15), rgba(5, 5, 4, .68));
}

.not-found__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(190px, 1fr);
    align-items: end;
    gap: clamp(50px, 9vw, 150px);
    padding-top: calc(var(--header-height) + var(--preview-toolbar-height) + 70px);
    padding-bottom: 86px;
}

.not-found__copy {
    position: relative;
}

.not-found__code {
    position: absolute;
    top: -116px;
    left: -10px;
    color: rgba(255, 255, 255, .08);
    font-family: Arial, sans-serif;
    font-size: clamp(110px, 15vw, 220px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.08em;
    pointer-events: none;
}

.not-found__copy .eyebrow,
.not-found__copy h1,
.not-found__copy > p:not(.not-found__code) {
    position: relative;
}

.not-found__copy h1 {
    max-width: 700px;
    margin-top: 17px;
    color: var(--white);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.045em;
}

.not-found__copy > p:not(.eyebrow, .not-found__code) {
    max-width: 620px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.9;
}

.not-found__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.not-found__aside {
    margin-bottom: 5px;
    padding: 24px 0 3px 24px;
    border-left: 1px solid rgba(199, 164, 93, .62);
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
}

.not-found__aside span,
.not-found__aside a {
    display: block;
}

.not-found__aside a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    margin-top: 7px;
    color: var(--gold-pale);
    font-weight: 600;
}

@media (max-width: 1180px) {
    .collection-grid,
    .case-detail__related-grid,
    .faq-related__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .case-detail__facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .case-detail__fact:nth-child(3) {
        border-right: 0;
    }

    .case-detail__fact:nth-child(n + 4) {
        border-top: 1px solid rgba(255, 255, 255, .14);
    }

    .contact-page__handoff-inner,
    .inner-consultation__inner {
        grid-template-columns: minmax(0, 1fr) minmax(260px, .72fr);
    }

    .contact-page__handoff-inner .button,
    .inner-consultation__inner .button {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 1060px) {
    .inner-hero,
    .inner-masthead,
    .inner-hero--archive,
    .inner-hero--search,
    .inner-masthead--compact,
    .inner-masthead--contact,
    .inner-masthead--answer,
    .inner-masthead--editorial {
        min-height: 430px;
        padding-top: calc(var(--header-height) + var(--preview-toolbar-height) + 54px);
        padding-bottom: 62px;
    }

    .inner-masthead--service,
    .case-detail__hero {
        min-height: auto;
        padding-bottom: 58px;
    }

    .inner-masthead__service-layout,
    .case-detail__hero-grid {
        grid-template-columns: minmax(0, .92fr) minmax(300px, 1.08fr);
        gap: 42px;
    }

    .inner-heading--split,
    .collection-toolbar {
        grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
        gap: 42px;
    }

    .faq-archive__layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 46px;
    }

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

    .faq-detail__answer-layout {
        grid-template-columns: 200px minmax(0, 1fr);
        gap: 46px;
    }

    .service-page__scope-grid {
        grid-template-columns: 1fr;
    }

    .service-scope-card {
        display: grid;
        grid-template-columns: 120px minmax(180px, .65fr) minmax(0, 1.35fr);
        align-items: start;
        gap: 24px;
    }

    .service-scope-card h3,
    .service-scope-card > p,
    .service-scope-card ul {
        margin-top: 0;
    }

    .service-scope-card > p {
        min-height: 0;
    }

    .service-scope-card ul {
        grid-column: 3;
    }

    .service-page__case-card > a {
        grid-template-columns: 1fr;
    }

    .service-page__case-card figure {
        aspect-ratio: 16 / 10;
    }

}

@media (max-width: 900px) {
    .inner-section {
        padding-block: 82px;
    }

    .inner-hero h1,
    .inner-masthead h1,
    .inner-masthead__content h1 {
        font-size: clamp(36px, 7vw, 52px);
    }

    .inner-heading--split,
    .collection-toolbar,
    .case-detail__story-grid,
    .service-page__capabilities-layout,
    .service-page__editorial-layout,
    .contact-page__channels-layout,
    .contact-page__prepare-layout,
    .generic-page__layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .inner-heading--split > p {
        justify-self: start;
    }

    .collection-filters,
    .taxonomy-nav {
        justify-content: flex-start;
    }

    .collection-grid,
    .collection-grid--three,
    .content-grid--three,
    .case-detail__related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .case-detail__hero-grid,
    .inner-masthead__service-layout {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .case-detail__cover,
    .inner-masthead__figure {
        width: min(100%, 680px);
        aspect-ratio: 16 / 10;
    }

    .case-detail__story-heading,
    .service-page__capabilities .section-heading,
    .contact-page__channels .section-heading,
    .generic-page__aside {
        position: static;
    }

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

    .faq-archive__layout,
    .faq-detail__answer-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .faq-category-rail {
        position: static;
    }

    .faq-category-rail__nav,
    .faq-category-rail__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .faq-category-rail__nav a,
    .faq-category-rail__tags a {
        width: auto;
        min-height: 44px;
        padding: 9px 14px;
        border: 1px solid var(--line);
    }

    .service-page__case-grid {
        grid-template-columns: 1fr;
    }

    .service-page__case-card > a {
        grid-template-columns: minmax(220px, .78fr) minmax(0, 1.22fr);
        min-height: 300px;
    }

    .contact-page__channels-layout > .copy-status {
        grid-column: auto;
    }

    .contact-page__ledger > div {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .contact-page__ledger p {
        grid-column: 2;
    }

    .search-page__inner {
        max-width: none;
    }

    .not-found__inner {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 42px;
    }

    .not-found__aside {
        max-width: 320px;
    }
}

@media (hover: none) {
    .case-index-card__excerpt {
        max-height: 130px;
        margin-top: 11px;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 700px) {
    .inner-section {
        padding-block: 68px;
    }

    .inner-hero,
    .inner-masthead,
    .inner-hero--archive,
    .inner-hero--search,
    .inner-masthead--compact,
    .inner-masthead--contact,
    .inner-masthead--answer,
    .inner-masthead--editorial {
        min-height: 390px;
        padding-top: calc(var(--header-height) + var(--preview-toolbar-height) + 40px);
        padding-bottom: 50px;
    }

    .inner-masthead--service,
    .case-detail__hero {
        min-height: auto;
    }

    .inner-hero h1,
    .inner-masthead h1,
    .inner-masthead__content h1,
    .case-detail__intro h1 {
        font-size: clamp(32px, 9vw, 43px);
        letter-spacing: -.035em;
    }

    .inner-hero__description,
    .inner-hero__copy > p:last-child,
    .inner-masthead__lead,
    .case-detail__lead {
        margin-top: 18px;
        font-size: 14px;
    }

    .breadcrumbs,
    .inner-breadcrumb {
        margin-bottom: 24px;
    }

    .inner-heading,
    .collection-toolbar {
        margin-bottom: 34px;
    }

    .inner-heading h2,
    .collection-toolbar h2 {
        font-size: 30px;
    }

    .inner-heading--action,
    .search-page__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .collection-filters,
    .taxonomy-nav,
    .faq-category-rail__nav,
    .faq-category-rail__tags {
        flex-wrap: nowrap;
        margin-inline: calc(var(--gutter) * -1);
        padding-inline: var(--gutter);
        overflow-x: auto;
        scrollbar-width: none;
    }

    .collection-filters::-webkit-scrollbar,
    .taxonomy-nav::-webkit-scrollbar,
    .faq-category-rail__nav::-webkit-scrollbar,
    .faq-category-rail__tags::-webkit-scrollbar {
        display: none;
    }

    .collection-filters a,
    .taxonomy-nav a,
    .faq-category-rail__nav a,
    .faq-category-rail__tags a {
        flex: 0 0 auto;
    }

    .collection-grid,
    .collection-grid--three,
    .content-grid--three,
    .case-detail__related-grid,
    .faq-related__grid {
        grid-template-columns: 1fr;
    }

    .case-index-card__media {
        aspect-ratio: 4 / 4.65;
    }

    .case-detail__cover,
    .inner-masthead__figure {
        aspect-ratio: 4 / 3;
    }

    .case-detail__facts {
        grid-template-columns: 1fr;
    }

    .case-detail__fact,
    .case-detail__fact:nth-child(3) {
        border-right: 0;
        border-top: 1px solid rgba(255, 255, 255, .14);
    }

    .case-detail__fact:first-child {
        border-top: 0;
    }

    .article-detail__meta {
        grid-template-columns: 1fr;
    }

    .article-detail__cover {
        aspect-ratio: 4 / 3;
    }

    .article-detail__content {
        padding-inline: 0;
    }

    .faq-question__answer,
    .faq-item__answer {
        padding-right: 0;
    }

    .service-scope-card {
        display: block;
        padding: 30px 24px;
    }

    .service-scope-card h3 {
        margin-top: 25px;
    }

    .service-scope-card > p {
        margin-top: 14px;
    }

    .service-scope-card ul {
        margin-top: 22px;
    }

    .service-page__capability-list li,
    .contact-page__prepare-list li {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 14px;
    }

    .service-page__case-card > a {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .service-page__case-card figure {
        aspect-ratio: 16 / 10;
    }

    .contact-page__handoff-inner,
    .inner-consultation__inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .contact-page__handoff-inner .button,
    .inner-consultation__inner .button {
        grid-column: auto;
    }

    .contact-page__ledger > div {
        grid-template-columns: 1fr;
        gap: 7px;
        padding-block: 21px;
    }

    .contact-page__ledger p {
        grid-column: auto;
    }

    .search-form {
        padding: 24px 20px;
    }

    .search-form__control {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .search-form__control .button {
        width: 100%;
    }

    .search-result__link {
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 18px;
        padding-block: 22px;
    }

    .search-result__body > p {
        display: none;
    }

    .search-result__body h3 {
        font-size: 18px;
    }

    .search-result__more {
        min-height: 32px;
        margin-top: 7px;
    }

    .not-found {
        min-height: max(660px, 90svh);
    }

    .not-found__veil {
        background: linear-gradient(180deg, rgba(5, 5, 4, .48), rgba(5, 5, 4, .94));
    }

    .not-found__inner {
        align-content: end;
        padding-top: calc(var(--header-height) + var(--preview-toolbar-height) + 90px);
        padding-bottom: 64px;
    }

    .not-found__code {
        top: -80px;
        font-size: 115px;
    }

    .not-found__copy h1 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .not-found__aside {
        display: none;
    }
}

@media (max-width: 440px) {
    .inner-section {
        padding-block: 60px;
    }

    .inner-heading h2,
    .collection-toolbar h2,
    .contact-page__prepare-copy h2,
    .contact-page__handoff h2 {
        font-size: 27px;
    }

    .collection-pagination,
    .archive-pagination,
    .page-nav__inner {
        grid-template-columns: 1fr 1fr;
    }

    .collection-pagination > p,
    .archive-pagination > span,
    .page-nav__current {
        grid-column: 1 / -1;
        grid-row: 1;
        justify-self: center;
    }

    .collection-pagination__previous,
    .page-nav__link--previous {
        grid-column: 1;
    }

    .collection-pagination__next,
    .page-nav__link--next {
        grid-column: 2;
    }

    .case-index-card__content {
        padding: 24px 20px 20px;
    }

    .faq-related-card a {
        min-height: 190px;
    }

    .search-result__link {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 14px;
    }

    .search-result__meta time {
        display: none;
    }

    .search-result__body h3 {
        margin-top: 7px;
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .case-index-card__media img,
    .search-result__media img,
    .search-result__more i {
        transition: none;
    }
}
