:root {
    --paper: #faf8f3;
    --ink: #151515;
    --soft-ink: #4f4f4a;
    --muted: #8a8982;
    --line: #dedbd2;
    --wash: #f0ede5;
    --accent: #e6c9b8;
    --radius: 8px;
    --page: clamp(18px, 4vw, 56px);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.45;
    text-rendering: geometricPrecision;
}

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

.skip-link {
    background: var(--ink);
    color: var(--paper);
    font-size: 14px;
    font-weight: 650;
    left: var(--page);
    padding: 10px 14px;
    position: fixed;
    top: 12px;
    transform: translateY(-150%);
    transition: transform 240ms cubic-bezier(0.2, 0, 0, 1);
    z-index: 100;
}

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

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

button {
    font: inherit;
}

main > section,
.footer {
    position: relative;
}

section {
    scroll-margin-top: 92px;
}

.motion-ready .reveal-section {
    --build-line: 0;
    --build-scan: 0;
    overflow: hidden;
}

.motion-ready .reveal-section::before {
    background: currentColor;
    content: "";
    height: 1px;
    inset-inline: var(--page);
    opacity: 0.18;
    position: absolute;
    top: 0;
    transform: scaleX(var(--build-line));
    transform-origin: left;
    z-index: 1;
}

.motion-ready .reveal-section::after {
    background:
        linear-gradient(90deg, transparent, rgba(21, 21, 21, 0.045), transparent);
    content: "";
    height: 100%;
    inset-block: 0;
    inset-inline-start: 0;
    opacity: var(--build-scan);
    pointer-events: none;
    position: absolute;
    transform: translateX(-18%);
    width: 34%;
    z-index: 0;
}

.motion-ready .reveal-item {
    opacity: 0;
    transform: translateY(12px);
}

.motion-ready:not(.anime-ready) .reveal-section::before {
    transition: transform 1160ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.motion-ready:not(.anime-ready) .reveal-section.is-visible::before {
    --build-line: 1;
}

.motion-ready:not(.anime-ready) .reveal-item {
    transition:
        opacity 840ms cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 1110ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-delay: calc(var(--reveal-order, 0) * 78ms);
}

.motion-ready:not(.anime-ready) .reveal-section.is-visible .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.motion-ready.anime-ready .reveal-item {
    will-change: transform, opacity;
}

.motion-ready.anime-ready .reveal-section.is-complete .reveal-item {
    will-change: auto;
}

.motion-ready .reveal-section .feature-image img,
.motion-ready .reveal-section .company-grid article,
.motion-ready .reveal-section .service-list article,
.motion-ready .reveal-section .process-grid div {
    transform: translateY(12px);
}

.site-header {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(21, 21, 21, 0.08);
    box-shadow: 0 10px 30px rgba(21, 21, 21, 0.04);
    display: grid;
    gap: 24px;
    grid-template-columns: auto 1fr auto;
    left: 0;
    padding: 18px clamp(24px, 4vw, 56px);
    position: sticky;
    top: 0;
    z-index: 20;
}

.brand {
    align-items: center;
    display: inline-flex;
    gap: 14px;
    letter-spacing: 0;
    perspective: 700px;
}

.logo-mark {
    --logo-x: 0px;
    --logo-y: 0px;
    --logo-rx: 0deg;
    --logo-ry: 0deg;
    background:
        linear-gradient(135deg, #222 0%, #111 58%, #333 100%);
    border-radius: 12px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.12),
        0 12px 28px rgba(21, 21, 21, 0.16);
    color: var(--paper);
    display: grid;
    height: 58px;
    overflow: hidden;
    place-items: center;
    position: relative;
    transform: rotateX(var(--logo-rx)) rotateY(var(--logo-ry)) translate3d(var(--logo-x), var(--logo-y), 0);
    transition:
        box-shadow 300ms ease,
        transform 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
    width: 58px;
}

.logo-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 13px 13px;
    inset: 0;
    opacity: 0.45;
    position: absolute;
    transform: translate3d(calc(var(--logo-x) * -0.5), calc(var(--logo-y) * -0.5), 0);
    transition: opacity 300ms ease, transform 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.logo-core {
    align-items: center;
    display: grid;
    font-size: 13px;
    font-weight: 850;
    gap: 1px;
    grid-template-columns: repeat(3, 1fr);
    letter-spacing: -0.04em;
    line-height: 1;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}

.logo-core span {
    align-items: center;
    display: inline-flex;
    height: 18px;
    justify-content: center;
    width: 13px;
}

.logo-core span:last-child {
    color: var(--accent);
}

.logo-axis {
    background: var(--accent);
    opacity: 0.8;
    position: absolute;
    transform: translate3d(var(--logo-x), var(--logo-y), 0);
    transition: transform 350ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 300ms ease;
}

.logo-axis-x {
    height: 1px;
    left: 10px;
    right: 10px;
    top: 17px;
}

.logo-axis-y {
    bottom: 10px;
    right: 16px;
    top: 10px;
    width: 1px;
}

.brand:hover .logo-mark,
.brand:focus-visible .logo-mark {
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        0 18px 34px rgba(21, 21, 21, 0.2);
}

.brand:hover .logo-grid,
.brand:focus-visible .logo-grid {
    opacity: 0.7;
}

.brand-copy {
    display: grid;
    gap: 3px;
}

.brand-copy strong {
    color: var(--ink);
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
    text-transform: uppercase;
}

.brand-copy small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.nav-menu {
    align-items: center;
    display: flex;
    gap: clamp(14px, 3vw, 36px);
    justify-content: center;
}

.nav-menu a,
.header-link {
    color: var(--soft-ink);
    font-size: 15px;
    font-weight: 650;
    line-height: 1;
    position: relative;
}

.nav-menu a::after,
.header-link::after {
    background: var(--ink);
    bottom: -5px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 325ms cubic-bezier(0.2, 0, 0, 1);
    width: 100%;
}

.nav-menu a:hover::after,
.header-link:hover::after,
.nav-menu a:focus-visible::after,
.header-link:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.header-link {
    align-items: center;
    background: var(--ink);
    border-radius: var(--radius);
    color: var(--paper);
    display: inline-flex;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    transition: background-color 215ms cubic-bezier(0.2, 0, 0, 1), transform 215ms cubic-bezier(0.2, 0, 0, 1);
}

.header-link::after {
    display: none;
}

.header-link:hover {
    background: #30302c;
}

.header-link:active {
    transform: scale(0.96);
}

.language-selector {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    padding: 3px;
}

.lang-btn {
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: var(--muted);
    cursor: pointer;
    font-size: 11px;
    font-weight: 650;
    height: 27px;
    padding: 0 9px;
    transition: background-color 215ms cubic-bezier(0.2, 0, 0, 1), color 215ms cubic-bezier(0.2, 0, 0, 1), transform 215ms cubic-bezier(0.2, 0, 0, 1);
}

.lang-btn:hover {
    color: var(--ink);
}

.lang-btn:active {
    transform: scale(0.96);
}

.lang-btn.active {
    background: var(--ink);
    color: var(--paper);
}

.hero {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 34px clamp(24px, 5vw, 56px);
    grid-template-columns: repeat(12, 1fr);
    isolation: isolate;
    min-height: calc(100vh - 65px);
    overflow: hidden;
    padding: clamp(60px, 7vw, 104px) var(--page) clamp(34px, 5vw, 62px);
    position: relative;
}

.hero > :not(.retail-gallery):not(.engineering-model-layer) {
    position: relative;
    z-index: 2;
}

.engineering-model-layer {
    inset: 0;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.engineering-model-layer::after {
    background:
        radial-gradient(circle at 58% 44%, transparent 0 30%, rgba(250, 248, 243, 0.08) 52%, rgba(250, 248, 243, 0.42) 82%),
        linear-gradient(90deg, rgba(250, 248, 243, 0.52), transparent 34%, rgba(250, 248, 243, 0.34));
    content: "";
    inset: 0;
    position: absolute;
}

#engineering-model-canvas {
    display: block;
    height: 100%;
    mix-blend-mode: normal;
    opacity: 0.98;
    width: 100%;
}

.model-credit {
    align-self: end;
    color: rgba(21, 21, 21, 0.48);
    font-size: 11px;
    grid-column: 1 / 6;
    line-height: 1.4;
    max-width: 360px;
    z-index: 3;
}

.model-credit a {
    text-decoration: underline;
    text-decoration-thickness: from-font;
    text-underline-offset: 2px;
}

.hero-title {
    grid-column: 1 / 11;
}

.index-label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0;
    margin-bottom: 22px;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(4.7rem, 13.8vw, 11.8rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.86;
    max-width: 1200px;
    text-wrap: balance;
}

h1 span {
    display: block;
}

.retail-gallery {
    inset: 0;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.retail-gallery[hidden] {
    display: none;
}

.retail-gallery::before {
    background:
        radial-gradient(circle at 55% 45%, rgba(250, 248, 243, 0.22), transparent 34%),
        linear-gradient(90deg, rgba(250, 248, 243, 0.9), rgba(250, 248, 243, 0.48) 28%, rgba(250, 248, 243, 0.32) 58%, rgba(250, 248, 243, 0.86));
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.retail-gallery-track {
    align-items: center;
    display: flex;
    gap: clamp(18px, 3vw, 44px);
    height: 100%;
    padding-inline: 8vw;
    position: relative;
    transform: translate3d(0, 0, 0);
    transition: transform 2430ms cubic-bezier(0.19, 1, 0.22, 1);
    width: max-content;
    will-change: transform;
}

.retail-shot {
    background: rgba(240, 237, 229, 0.8);
    border-radius: 14px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.34),
        0 32px 90px rgba(21, 21, 21, 0.12);
    flex: 0 0 auto;
    filter: blur(10px) saturate(0.75);
    height: clamp(360px, 58vh, 620px);
    opacity: 0.18;
    overflow: hidden;
    position: relative;
    transform: scale(0.82) translateY(26px);
    transition:
        filter 2030ms cubic-bezier(0.19, 1, 0.22, 1),
        opacity 2030ms cubic-bezier(0.19, 1, 0.22, 1),
        transform 2430ms cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, opacity, filter;
}

.retail-shot-wide {
    width: clamp(540px, 62vw, 940px);
}

.retail-shot-portrait {
    width: clamp(330px, 36vw, 560px);
}

.retail-shot-pano {
    width: clamp(660px, 74vw, 1120px);
}

.retail-shot.is-near {
    filter: blur(5px) saturate(0.86);
    opacity: 0.24;
    transform: scale(0.9) translateY(12px);
}

.retail-shot.is-active {
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.42),
        0 36px 110px rgba(21, 21, 21, 0.18);
    filter: none;
    opacity: 0.72;
    transform: scale(2) translateY(0);
    z-index: 2;
}

.retail-shot img {
    display: block;
    height: 100%;
    filter: none;
    object-fit: cover;
    width: 100%;
}

.retail-shot figcaption {
    background: rgba(21, 21, 21, 0.72);
    bottom: 14px;
    color: var(--paper);
    font-size: 12px;
    inset-inline: 14px;
    line-height: 1.35;
    opacity: 0;
    padding: 10px 12px;
    position: absolute;
    transform: translateY(6px);
    transition:
        opacity 570ms cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 570ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.retail-shot.is-active figcaption {
    opacity: 0.86;
    transform: translateY(0);
}

.hero-note {
    align-self: start;
    background: var(--ink);
    color: var(--paper);
    grid-column: 10 / 13;
    margin-top: clamp(28px, 3.8vw, 52px);
    max-width: 280px;
    padding: 18px 18px 20px;
}

.hero-note span {
    color: rgba(250, 248, 243, 0.58);
    display: block;
    font-size: 11px;
    font-weight: 650;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-note p {
    font-size: 14px;
    line-height: 1.55;
    text-wrap: pretty;
}

.hero-body {
    align-self: end;
    grid-column: 1 / 6;
    margin-top: clamp(42px, 8vw, 96px);
}

.hero-body p {
    color: var(--soft-ink);
    font-size: clamp(16px, 1.45vw, 20px);
    max-width: 560px;
}

.primary-link,
.contact-link {
    align-items: center;
    background: var(--ink);
    border-radius: 999px;
    color: var(--paper);
    display: inline-flex;
    font-size: 14px;
    font-weight: 650;
    justify-content: center;
    margin-top: 30px;
    min-height: 46px;
    padding: 0 20px;
    transition: opacity 215ms cubic-bezier(0.2, 0, 0, 1), transform 215ms cubic-bezier(0.2, 0, 0, 1);
}

.primary-link:hover,
.contact-link:hover {
    opacity: 0.88;
}

.primary-link:active,
.contact-link:active {
    transform: scale(0.96);
}

.hero-meta {
    align-self: end;
    display: grid;
    gap: 12px;
    grid-column: 8 / 13;
}

.hero-meta span {
    border-top: 1px solid var(--line);
    color: var(--soft-ink);
    display: block;
    font-size: clamp(18px, 2.2vw, 30px);
    font-weight: 400;
    line-height: 1.1;
    padding-top: 14px;
}

.profile-strip {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: clamp(28px, 6vw, 70px);
    grid-template-columns: 0.58fr 0.42fr;
    padding: clamp(68px, 8vw, 104px) var(--page);
}

.profile-strip h2 {
    max-width: 860px;
}

.profile-facts {
    align-self: end;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

.profile-facts p {
    color: var(--soft-ink);
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.65;
}

.profile-facts a {
    color: var(--ink);
    display: inline-block;
    font-size: 13px;
    font-weight: 650;
    margin-top: 22px;
    position: relative;
}

.profile-facts a::after {
    background: var(--ink);
    bottom: -5px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
}

.company-strip {
    background: var(--wash);
    border-bottom: 1px solid var(--line);
    padding: clamp(76px, 10vw, 128px) var(--page);
}

.company-grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: clamp(48px, 7vw, 84px);
}

.company-grid article {
    background: var(--paper);
    min-height: 240px;
    padding: 22px;
}

.company-grid span {
    display: block;
    font-size: clamp(2rem, 4vw, 4.8rem);
    font-weight: 360;
    letter-spacing: -0.06em;
    line-height: 0.9;
}

.company-grid p {
    color: var(--soft-ink);
    font-size: 14px;
    line-height: 1.65;
    margin-top: 70px;
}

.source-link {
    color: var(--ink);
    display: inline-block;
    font-size: 13px;
    font-weight: 650;
    margin-top: 28px;
    position: relative;
}

.source-link::after {
    background: var(--ink);
    bottom: -5px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
}

.feature-image {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: clamp(24px, 5vw, 58px);
    grid-template-columns: minmax(280px, 0.72fr) 1fr;
    padding: var(--page);
}

.feature-image figure {
    display: grid;
    gap: 12px;
}

.feature-image img {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    box-shadow: inset 0 0 0 1px oklch(0 0 0 / 0.1);
    display: block;
    height: 100%;
    max-height: 780px;
    object-fit: cover;
    width: 100%;
}

.feature-image figcaption,
.retail-catalog figcaption {
    color: var(--soft-ink);
    font-size: 13px;
    line-height: 1.55;
}

.feature-image div {
    align-self: end;
    max-width: 780px;
}

.retail-catalog {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    padding: clamp(76px, 10vw, 128px) var(--page);
}

.retail-catalog-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(48px, 7vw, 84px);
}

.retail-catalog figure {
    display: grid;
    gap: 12px;
}

.retail-catalog img {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    box-shadow: inset 0 0 0 1px oklch(0 0 0 / 0.1);
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.founder-section {
    background: #ffffff;
}

.founder-grid {
    align-items: end;
    border-top: 1px solid var(--line);
    display: grid;
    gap: clamp(22px, 5vw, 60px);
    grid-template-columns: minmax(0, 0.68fr) auto;
    margin-top: clamp(48px, 7vw, 84px);
    padding-top: 22px;
}

.founder-grid p {
    color: var(--soft-ink);
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.65;
    max-width: 780px;
}

.founder-grid a {
    color: var(--ink);
    font-size: 13px;
    font-weight: 650;
    position: relative;
    white-space: nowrap;
}

.founder-grid a::after {
    background: var(--ink);
    bottom: -5px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
}

h2 {
    font-size: clamp(2.1rem, 6vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.96;
}

.section {
    border-bottom: 1px solid var(--line);
    padding: clamp(76px, 10vw, 128px) var(--page);
}

.section-intro {
    display: grid;
    gap: 24px;
    grid-template-columns: 0.32fr 1fr;
}

.section-intro h2 {
    max-width: 980px;
}

.service-list {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(56px, 7vw, 96px);
}

.service-list article {
    border-left: 1px solid var(--line);
    min-height: 360px;
    padding: 0 clamp(20px, 3vw, 38px) 6px;
}

.service-list article:last-child {
    border-right: 1px solid var(--line);
}

.service-list span {
    color: color-mix(in srgb, var(--muted) 48%, transparent);
    display: block;
    font-size: clamp(3rem, 6vw, 6.4rem);
    font-weight: 300;
    letter-spacing: -0.06em;
    line-height: 0.9;
    margin-bottom: clamp(50px, 8vw, 110px);
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.7rem);
    font-weight: 520;
    letter-spacing: -0.025em;
    line-height: 1.05;
}

.service-list p {
    color: var(--soft-ink);
    font-size: 14px;
    line-height: 1.65;
    margin-top: 16px;
    max-width: 330px;
}

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

.dark-section .index-label {
    color: color-mix(in srgb, var(--paper) 46%, transparent);
}

.process-grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: clamp(52px, 7vw, 92px);
}

.process-grid div {
    background: color-mix(in srgb, var(--paper) 7%, transparent);
    min-height: 260px;
    padding: 24px;
}

.process-grid span {
    display: block;
    font-size: clamp(1.35rem, 2.8vw, 2.7rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
}

.process-grid p {
    color: color-mix(in srgb, var(--paper) 68%, transparent);
    font-size: 14px;
    line-height: 1.65;
    margin-top: 72px;
}

.contact-section {
    display: grid;
    gap: 28px;
    grid-template-columns: 0.27fr 1fr;
    padding: clamp(76px, 10vw, 132px) var(--page);
}

.contact-section h2 {
    max-width: 960px;
}

.contact-link {
    grid-column: 2;
    justify-self: start;
}

.footer {
    align-items: center;
    color: var(--muted);
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    padding: 24px var(--page);
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .logo-mark,
    .logo-grid,
    .logo-axis {
        transform: none !important;
    }

    .engineering-model-layer {
        display: none;
    }

    .retail-gallery-track {
        animation: none;
        transform: none;
    }
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr;
    }

    .nav-menu,
    .header-actions {
        justify-content: flex-start;
    }

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

    .hero-title,
    .retail-gallery,
    .hero-note,
    .hero-body,
    .hero-meta {
        grid-column: 1;
    }

    .retail-gallery {
        margin: 0;
    }

    .hero-note {
        margin-top: 0;
        max-width: 360px;
    }

    .hero-body {
        margin-top: 24px;
    }

    .feature-image,
    .profile-strip,
    .founder-grid,
    .section-intro,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-link {
        grid-column: 1;
    }

    .service-list,
    .company-grid,
    .retail-catalog-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-list article:nth-child(2n) {
        border-right: 1px solid var(--line);
    }
}

@media (max-width: 640px) {
    .site-header {
        position: static;
    }

    .nav-menu {
        gap: 12px 18px;
        flex-wrap: wrap;
    }

    .header-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    h1 {
        font-size: clamp(3.25rem, 16.5vw, 5.2rem);
    }

    .hero {
        min-height: auto;
    }

    .retail-gallery-track {
        gap: 16px;
        padding-inline: 6vw;
    }

    .retail-shot {
        border-radius: 10px;
        height: clamp(300px, 48vh, 440px);
    }

    .retail-shot-wide {
        width: 520px;
    }

    .retail-shot-portrait {
        width: 280px;
    }

    .retail-shot-pano {
        width: 580px;
    }

    .feature-image {
        padding-inline: 0;
    }

    .feature-image div {
        padding-inline: var(--page);
    }

    .feature-image img {
        border-radius: 0;
        max-height: none;
    }

    .service-list,
    .company-grid,
    .retail-catalog-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .company-grid article {
        min-height: 210px;
    }

    .service-list article,
    .service-list article:last-child,
    .service-list article:nth-child(2n) {
        border-left: 0;
        border-right: 0;
        border-top: 1px solid var(--line);
        min-height: auto;
        padding: 28px 0;
    }

    .service-list span {
        font-size: 3rem;
        margin-bottom: 42px;
    }

    .process-grid div {
        min-height: 210px;
    }

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