@font-face {
    font-family: "SFPro";
    src: url("../fonts/SFProDisplay-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SFPro";
    src: url("../fonts/SFProDisplay-Semibol.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "BebasNeue";
    src: url("../fonts/bebas-neue-bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "RobotoCustom";
    src: url("../fonts/roboto-regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "GilroyUltraLight";
    src: url("../fonts/Gilroy-UltraLight.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --page-bg: #090909;
    --surface: #ffffff;
    --surface-muted: #f1efeb;
    --surface-dark: #24292b;
    --text: #1d1d1d;
    --text-muted: #6f6f75;
    --line: rgba(29, 29, 29, 0.08);
    --accent: #ed8733;
    --accent-soft: rgba(237, 135, 51, 0.14);
    --hero-overlay: linear-gradient(180deg, rgba(8, 8, 8, 0.22) 0%, rgba(8, 8, 8, 0.64) 100%);
    --shadow-soft: 0 30px 80px rgba(23, 25, 27, 0.08);
    --shadow-strong: 0 20px 80px rgba(10, 10, 10, 0.28);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --wrapper: min(1200px, calc(100vw - 40px));
    --header-height: 96px;
    --ease: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "SFPro", Arial, sans-serif;
    background: var(--page-bg);
    color: var(--text);
    line-height: 1.45;
    overflow-x: hidden;
}

body.is-locked {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

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

.wrapper {
    width: var(--wrapper);
    margin: 0 auto;
}

.scroll-progress {
    display: none;
}

.scroll-progress__bar {
    display: none;
}

.site-header {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 60;
    transition: transform var(--ease), opacity var(--ease), top var(--ease);
}

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

.site-header__inner {
    width: min(1160px, calc(100vw - 120px));
    margin: 0 auto;
    min-height: 78px;
    padding: 10px 14px 10px 20px;
    display: flex;
    align-items: center;
    gap: 22px;
    border-radius: 999px;
    background: rgba(248, 243, 240, 0.96);
    box-shadow: 0 8px 24px rgba(6, 6, 6, 0.14);
}

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

.brand img {
    width: clamp(118px, 8vw, 150px);
    height: auto;
}

.site-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(26px, 2.2vw, 42px);
    margin-left: 4px;
    font-size: clamp(16px, 1.2vw, 22px);
    color: rgba(29, 29, 29, 0.9);
}

.site-nav a {
    position: relative;
    font-family: "RobotoCustom", "SFPro", Arial, sans-serif;
    font-weight: 400;
    line-height: 1;
    transition: color var(--ease);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 999px;
    background: rgba(29, 29, 29, 0.06);
    color: var(--text);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 0 auto;
    background: currentColor;
    transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle span + span {
    margin-top: 6px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: transform var(--ease), background-color var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button--dark {
    background: var(--text);
    color: #fff;
    box-shadow: 0 12px 30px rgba(29, 29, 29, 0.18);
}

.button--dark:hover,
.button--dark:focus-visible {
    background: #0f1010;
}

.site-header__actions .button {
    min-height: 58px;
    padding: 0 28px;
    font-size: clamp(16px, 1.05vw, 19px);
    font-weight: 600;
    box-shadow: none;
}

.button--light {
    background: #fff;
    color: var(--text);
    box-shadow: 0 16px 40px rgba(12, 12, 12, 0.18);
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.32);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.button--text {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--text);
    box-shadow: none;
}

.button--text:hover,
.button--text:focus-visible {
    transform: none;
    color: var(--accent);
}

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

.button--xl {
    min-height: 64px;
    padding-inline: 34px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow--accent {
    color: var(--accent);
}

.hero {
    position: relative;
    min-height: 100svh;
    color: #fff;
    overflow: clip;
    background: #0a0a0a;
}

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

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.84);
}

.hero__overlay {
    background: var(--hero-overlay);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: min(1600px, calc(100vw - 90px));
    margin: 0 auto;
    min-height: 100svh;
    padding: calc(var(--header-height) + 56px) 0 56px;
    display: flex;
    align-items: center;
}

.hero__copy {
    width: max-content;
    max-width: calc(100vw - 190px);
    margin-left: 78px;
    margin-top: 0;
    transform: translateY(-60px);
}

.hero__copy h1 {
    margin: 0;
    display: block;
    width: max-content;
    max-width: 100%;
    font-family: "BebasNeue", "SFPro", Arial, sans-serif;
    font-size: clamp(84px, 8.2vw, 152px);
    line-height: 0.88;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.58);
    text-shadow: none;
}

.hero__lede {
    width: max-content;
    max-width: 100%;
    margin: 18px 0 0;
    font-family: "RobotoCustom", "SFPro", Arial, sans-serif;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.15;
    font-weight: 400;
    white-space: nowrap;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 2;
    transform: translateX(-50%);
    width: 38px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.16);
    backdrop-filter: blur(8px);
}

.hero__scroll span {
    position: absolute;
    top: 16px;
    left: 50%;
    width: 4px;
    height: 14px;
    margin-left: -2px;
    border-radius: 999px;
    background: #fff;
    animation: scrollPulse 1.6s infinite;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

@keyframes scrollPulse {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    80% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

.section {
    padding: 120px 0;
}

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

.section--beige {
    background: var(--surface-muted);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: center;
}

#flagship {
    padding-top: 132px;
    padding-bottom: 140px;
    background: #f8f5f2;
}

#flagship .split-layout {
    grid-template-columns: minmax(360px, 500px) minmax(380px, 460px);
    justify-content: center;
    gap: clamp(64px, 8vw, 150px);
    align-items: center;
}

#flagship .split-layout__copy {
    max-width: 500px;
}

.split-layout__copy h2,
.section-heading h2,
.feature-grid__copy h2,
.final-cta__inner h2,
.manifesto h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.035em;
}

.lead {
    margin: 22px 0 0;
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text);
}

#flagship .split-layout__copy h2 {
    font-size: clamp(64px, 6vw, 86px);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.055em;
    color: #3a3a3d;
}

#flagship .lead {
    max-width: 470px;
    margin-top: 30px;
    font-size: clamp(26px, 2.35vw, 36px);
    line-height: 1.32;
    font-weight: 500;
    color: #3d3d40;
}

#flagship .button-row {
    align-items: center;
    gap: 18px;
    margin-top: 42px;
}

#flagship .button--dark {
    min-height: 60px;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.12);
}

#flagship .button--text {
    color: #3d3d40;
    font-size: 15px;
    font-weight: 500;
}

#flagship .button--text:hover,
#flagship .button--text:focus-visible {
    color: var(--accent);
}

.body-copy,
.modal__text,
.final-cta__inner p,
.manifesto__content p {
    margin: 18px 0 0;
    max-width: 640px;
    color: var(--text-muted);
    font-size: 17px;
}

.editorial-media {
    position: relative;
    min-height: 640px;
}

#flagship .editorial-media {
    min-height: auto;
}

.editorial-media__main,
.editorial-media__side {
    margin: 0;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.editorial-media__main {
    width: min(100%, 640px);
    border-radius: var(--radius-lg);
    background: var(--surface-muted);
}

#flagship .editorial-media__main {
    width: 100%;
    max-width: 452px;
    aspect-ratio: 0.78;
    border-radius: 34px;
    background: #e8e2dc;
    box-shadow: 0 18px 54px rgba(20, 20, 20, 0.1);
}

.editorial-media__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#flagship .editorial-media__main img {
    object-position: center;
}

.editorial-media__side {
    position: absolute;
    right: 0;
    bottom: -26px;
    width: min(44%, 280px);
    border-radius: 26px;
}

.editorial-media__side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-heading {
    max-width: 920px;
}

#models {
    padding-top: 86px;
    padding-bottom: 116px;
    background: #f5f2ed;
}

#models .wrapper {
    width: min(1280px, calc(100vw - 156px));
}

#models .section-heading {
    max-width: none;
}

#models .eyebrow {
    margin-bottom: 0;
    color: #707078;
    font-size: 15px;
    letter-spacing: 0.12em;
}

.model-showcase {
    display: grid;
    gap: 24px;
    margin-top: 44px;
}

.model-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 0;
    align-items: stretch;
    isolation: isolate;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: transform var(--ease);
}

.model-strip:hover {
    transform: translateY(-4px);
}

.model-strip__media {
    position: relative;
    z-index: 2;
    min-height: 350px;
    padding: 26px 28px 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #2f2f31;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 26px 62px rgba(14, 14, 14, 0.12);
}

.model-strip__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 24%);
    pointer-events: none;
}

.model-strip__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.32));
    transform: scale(1) translateY(16px);
    transition: transform 480ms ease;
}

.model-strip:hover .model-strip__media img {
    transform: scale(1.1) translateY(16px);
}

.model-strip__content {
    position: relative;
    z-index: 1;
    margin-left: -88px;
    padding: 8px 0;
}

.model-strip__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 34px 44px 34px 116px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 58px rgba(18, 19, 20, 0.08);
}

.model-strip__panel::before {
    content: "";
    position: absolute;
    left: 88px;
    top: 26px;
    bottom: 26px;
    width: 1px;
    background: rgba(237, 135, 51, 0.22);
}

.model-strip__index {
    margin: 0;
    font-family: "GilroyUltraLight", "SFPro", Arial, sans-serif;
    color: #ff7f54;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1;
    font-weight: 300;
}

.model-strip__content h3 {
    margin: 12px 0 0;
    font-size: clamp(46px, 4.5vw, 72px);
    line-height: 0.88;
    font-weight: 700;
    letter-spacing: -0.07em;
    color: #444447;
    text-transform: uppercase;
}

.model-strip__details {
    margin-top: 24px;
    padding-top: 24px;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid rgba(237, 135, 51, 0.22);
}

.model-strip__specs {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 6px;
    font-family: "GilroyUltraLight", "SFPro", Arial, sans-serif;
    color: #ef5822;
    font-size: clamp(14px, 0.98vw, 17px);
    line-height: 1.35;
    font-weight: 300;
    max-width: 430px;
}

.model-strip__specs li::marker {
    color: #ef5822;
}

.model-strip__specs strong {
    font-weight: 300;
}

.model-strip__content .button--dark {
    width: min(100%, 330px);
    min-height: 56px;
    align-self: center;
    margin-top: auto;
    padding-inline: 24px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 16px 34px rgba(17, 17, 17, 0.14);
}

@media (min-width: 1400px) and (max-width: 1680px) {
    #models .wrapper {
        width: min(1180px, calc(100vw - 170px));
    }

    .model-strip {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
    }

    .model-strip__media {
        min-height: 320px;
    }

    .model-strip:nth-child(2) .model-strip__media {
        min-height: 320px;
    }

    .model-strip__content h3 {
        font-size: clamp(42px, 4.2vw, 62px);
    }

    .model-strip__specs {
        font-size: 15px;
    }
}

.manifesto {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    color: #fff;
    background: var(--surface-dark);
    overflow: clip;
}

.manifesto__image,
.manifesto__overlay {
    position: absolute;
    inset: 0;
}

.manifesto__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
    transform: scale(1.06);
}

.manifesto__overlay {
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.7) 100%),
        radial-gradient(circle at 20% 20%, rgba(237, 135, 51, 0.26), transparent 28%);
}

.manifesto__content {
    position: relative;
    z-index: 1;
    padding-top: 140px;
    padding-bottom: 140px;
}

.manifesto__content p {
    color: rgba(255, 255, 255, 0.72);
}

#story .wrapper {
    width: min(1500px, calc(100vw - 104px));
}

#story .manifesto__content {
    display: flex;
    align-items: center;
}

#story .reveal {
    max-width: 860px;
    margin-left: 56px;
}

#story h2 {
    max-width: none;
    font-family: "BebasNeue", "SFPro", Arial, sans-serif;
    font-size: clamp(34px, 4.4vw, 72px);
    line-height: 0.92;
    font-weight: 700;
    letter-spacing: -0.03em;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.46);
    text-shadow: none;
}

#story .manifesto__content p {
    max-width: none;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(18px, 1.5vw, 26px);
    line-height: 1.28;
    font-weight: 600;
}

#story .manifesto__content p span {
    display: block;
    white-space: nowrap;
}

.feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.84fr);
    gap: 56px;
    align-items: center;
}

.feature-grid__media {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface-muted);
    box-shadow: var(--shadow-soft);
}

.feature-grid__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-points {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.service-points article {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface-muted);
}

.service-points strong {
    font-size: 17px;
    font-weight: 600;
}

.service-points span {
    color: var(--text-muted);
    font-size: 15px;
}

.final-cta {
    position: relative;
    background: #f5f2ed;
}

#contact {
    padding-top: 132px;
    padding-bottom: 108px;
}

#contact .wrapper {
    width: min(1480px, calc(100vw - 96px));
}

.suppliers {
    max-width: none;
}

.suppliers__heading {
    text-align: center;
}

.suppliers__heading h2,
.suppliers__heading p {
    margin: 0;
    color: #444447;
    font-family: "SFPro", Arial, sans-serif;
    font-size: clamp(24px, 3.4vw, 42px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.04em;
    word-spacing: 0.08em;
    text-transform: uppercase;
}

.suppliers__heading p {
    margin-top: 42px;
}

.suppliers__frame {
    margin-top: 64px;
    padding: 22px 28px 28px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(20, 20, 20, 0.08);
}

.suppliers__tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.suppliers__tab {
    min-width: 108px;
    padding: 0 0 12px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: rgba(68, 68, 71, 0.58);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--ease), border-color var(--ease);
}

.suppliers__tab.is-active {
    color: #444447;
    border-color: #444447;
}

.suppliers__panel {
    margin-top: 32px;
}

.suppliers__panel[hidden] {
    display: none;
}

.supplier-row {
    display: grid;
    grid-template-columns: minmax(220px, 1.1fr) minmax(320px, 1.55fr) minmax(180px, auto) auto;
    align-items: center;
    gap: 28px;
    padding: 28px 0;
    border-top: 1px solid rgba(68, 68, 71, 0.14);
    border-bottom: 1px solid rgba(68, 68, 71, 0.14);
}

.supplier-row__company,
.supplier-row__address {
    display: grid;
    gap: 8px;
}

.supplier-row strong,
.supplier-row__phone a {
    color: #444447;
    font-size: 18px;
    line-height: 1.32;
    font-weight: 700;
}

.supplier-row span {
    color: rgba(68, 68, 71, 0.62);
    font-size: 15px;
    line-height: 1.4;
}

.supplier-row__phone {
    justify-self: end;
}

.button--compact {
    min-height: 44px;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(29, 29, 29, 0.14);
}

.supplier-map {
    position: relative;
    min-height: 420px;
    background: #ededee;
    overflow: hidden;
}

.supplier-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(1) contrast(0.94) brightness(1.04);
}

.supplier-map__card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: grid;
    gap: 12px;
    width: min(100%, 430px);
    padding: 22px 22px 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 38px rgba(18, 18, 18, 0.14);
}

.supplier-map__card strong,
.supplier-map__card a {
    color: #444447;
    font-size: 18px;
    font-weight: 700;
}

.supplier-map__card p {
    margin: 0;
    color: rgba(68, 68, 71, 0.72);
    font-size: 15px;
    line-height: 1.45;
}

.supplier-map__card .button {
    justify-self: start;
    margin-top: 4px;
}

.suppliers__address {
    max-width: 1540px;
    margin: 42px auto 0;
    color: #444447;
    font-size: clamp(14px, 1.85vw, 24px);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.08em;
    text-align: center;
    text-transform: uppercase;
}

.site-footer {
    padding: 0;
    background: #2f2f31;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer__inner {
    width: min(1480px, calc(100vw - 96px));
    padding: 36px 0 28px;
    color: inherit;
}

.site-footer__top {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.site-footer__main {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-top: 54px;
}

.site-footer__nav {
    display: grid;
    gap: 16px;
}

.site-footer__nav a,
.site-footer__nav p,
.site-footer__contacts a,
.site-footer__title {
    margin: 0;
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.22;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__contacts {
    display: grid;
    justify-items: end;
    align-content: start;
    gap: 16px;
    text-align: right;
}

.site-footer__bottom {
    display: grid;
    gap: 28px;
    padding-top: 44px;
}

.site-footer__legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
}

.site-footer__legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
}

.site-footer__disclaimer {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.35;
}

.site-footer__inner p {
    margin: 0;
}

.brand--footer img {
    width: 150px;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 55;
    padding: calc(var(--header-height) + 28px) 16px 24px;
    background: rgba(18, 20, 21, 0.22);
    backdrop-filter: blur(10px);
}

.mobile-menu__panel {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 60px rgba(16, 18, 19, 0.15);
}

.mobile-menu__panel a {
    padding: 14px 12px;
    border-radius: 16px;
    color: var(--text);
    font-family: "RobotoCustom", "SFPro", Arial, sans-serif;
    font-size: 16px;
    background: var(--surface-muted);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 18px;
}

.modal[hidden],
.mobile-menu[hidden] {
    display: none;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 16, 17, 0.56);
    backdrop-filter: blur(10px);
}

.modal__dialog {
    position: relative;
    width: min(620px, calc(100vw - 36px));
    padding: 34px 34px 30px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(29, 29, 29, 0.06);
    box-shadow: var(--shadow-strong);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(29, 29, 29, 0.06);
    cursor: pointer;
}

.modal__close::before,
.modal__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1.5px;
    background: var(--text);
}

.modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__content h2 {
    margin: 0;
    font-size: clamp(38px, 4.8vw, 52px);
    line-height: 0.94;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: #2f3134;
}

.modal__badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    margin: 6px 0 18px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(237, 135, 51, 0.12);
    color: #b76425;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.modal__text {
    max-width: 500px;
    color: #575a61;
    font-size: 17px;
    line-height: 1.5;
}

.lead-form {
    margin-top: 28px;
}

.lead-form__field {
    display: grid;
    gap: 12px;
}

.lead-form__field span {
    font-size: 14px;
    color: #5d6066;
    font-weight: 600;
}

.lead-form__field input {
    width: 100%;
    min-height: 64px;
    padding: 0 20px;
    border: 1px solid rgba(29, 29, 29, 0.12);
    border-radius: 20px;
    background: #fffdfb;
    color: var(--text);
    outline: none;
    font-size: 17px;
    transition: border-color var(--ease), box-shadow var(--ease), background-color var(--ease);
}

.lead-form__field input:focus {
    border-color: rgba(237, 135, 51, 0.8);
    box-shadow: 0 0 0 4px rgba(237, 135, 51, 0.12);
    background: #fff;
}

.lead-form .button {
    margin-top: 20px;
}

.lead-form .button:disabled {
    opacity: 0.7;
    cursor: wait;
}

.lead-form__hint,
.lead-form__status {
    margin: 16px 0 0;
    font-size: 14px;
    color: #6b6e75;
}

.lead-form__hint a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.lead-form__hint a:hover,
.lead-form__hint a:focus-visible {
    color: #b76425;
}

.lead-form__status.is-success {
    color: #b76425;
}

.lead-form__status.is-error {
    color: #c33d2f;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

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

@media (max-width: 1080px) {
    .site-header__inner {
        width: min(1040px, calc(100vw - 72px));
        min-height: 72px;
        padding: 8px 12px 8px 18px;
        gap: 18px;
    }

    .brand img {
        width: clamp(108px, 11vw, 132px);
    }

    .site-nav {
        gap: clamp(18px, 1.8vw, 30px);
        font-size: clamp(15px, 1.05vw, 18px);
    }

    .site-header__actions {
        gap: 10px;
    }

    .site-header__actions .button {
        min-height: 50px;
        padding: 0 22px;
        font-size: 15px;
    }

    .split-layout,
    .feature-grid,
    .model-strip {
        grid-template-columns: 1fr;
    }

    .editorial-media {
        min-height: unset;
        padding-bottom: 80px;
    }

    .editorial-media__main {
        width: 100%;
    }

    #flagship .split-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    #flagship .split-layout__copy {
        max-width: 100%;
    }

    #flagship .lead {
        max-width: 680px;
    }

    #flagship .editorial-media__main {
        max-width: 520px;
    }

    .editorial-media__side {
        width: min(48%, 280px);
    }

    #models .wrapper {
        width: min(1120px, calc(100vw - 36px));
    }

    .model-showcase {
        gap: 28px;
    }

    .model-strip__content {
        z-index: 3;
        margin-left: 0;
        margin-top: -38px;
        padding: 0 16px 16px;
    }

    .model-strip__panel {
        min-height: auto;
        padding: 24px 28px 26px 40px;
    }

    .model-strip__panel::before {
        left: 22px;
        top: 18px;
        bottom: 18px;
    }

    .model-strip__media {
        min-height: 320px;
        padding: 26px 20px 0;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 72px;
    }

    .site-nav,
    .site-header__actions .button {
        display: none;
    }

    .site-header {
        top: 14px;
    }

    .site-header__inner {
        width: calc(100vw - 32px);
        min-height: var(--header-height);
        padding: 8px 12px 8px 16px;
        gap: 14px;
    }

    .brand img {
        width: 112px;
    }

    .menu-toggle {
        display: inline-block;
        width: 46px;
        height: 46px;
    }

    .hero__content {
        width: calc(100vw - 36px);
        padding-top: calc(var(--header-height) + 84px);
        padding-bottom: 72px;
        align-items: center;
    }

    .hero__copy {
        width: calc(100vw - 56px);
        max-width: 100%;
        margin-left: 10px;
        margin-top: 0;
        transform: translateY(24px);
    }

    .section,
    .manifesto__content {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .site-footer__inner {
        width: calc(100vw - 40px);
        padding: 28px 0 22px;
    }

    #models {
        padding-top: 72px;
        padding-bottom: 88px;
    }

    #models .wrapper {
        width: calc(100vw - 30px);
    }

    #story .wrapper {
        width: calc(100vw - 40px);
    }

    #story .reveal {
        max-width: 760px;
        margin-left: 16px;
    }

    #story h2 {
        font-size: clamp(28px, 5.2vw, 56px);
        color: rgba(255, 255, 255, 0.4);
    }

    #story .manifesto__content p {
        max-width: 620px;
        margin-top: 18px;
        font-size: clamp(18px, 2.6vw, 22px);
    }

    #contact {
        padding-top: 96px;
        padding-bottom: 80px;
    }

    #contact .wrapper {
        width: calc(100vw - 40px);
    }

    .suppliers__heading h2,
    .suppliers__heading p {
        font-size: clamp(20px, 4.8vw, 34px);
    }

    .suppliers__heading p {
        margin-top: 28px;
    }

    .suppliers__frame {
        margin-top: 44px;
        padding: 18px 20px 22px;
    }

    .supplier-row {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 0;
    }

    .supplier-row__phone,
    .supplier-row__action {
        justify-self: start;
    }

    .supplier-map {
        min-height: 420px;
    }

    .supplier-map iframe {
        height: 420px;
    }

    .supplier-map__card {
        left: 18px;
        right: auto;
        bottom: 18px;
        width: min(100%, 360px);
        padding: 18px 18px 16px;
        gap: 10px;
    }

    .suppliers__address {
        margin-top: 34px;
        font-size: clamp(14px, 2.4vw, 22px);
    }

    .site-footer__main {
        flex-direction: column;
        gap: 38px;
        padding-top: 34px;
    }

    .site-footer__contacts {
        justify-items: start;
        text-align: left;
    }

    .site-footer__nav a,
    .site-footer__nav p,
    .site-footer__contacts a,
    .site-footer__title {
        font-size: clamp(22px, 4vw, 30px);
    }

    .site-footer__bottom {
        gap: 22px;
        padding-top: 34px;
    }
}

@media (max-width: 640px) {
    :root {
        --wrapper: calc(100vw - 24px);
        --header-height: 64px;
    }

    .site-header {
        top: 12px;
    }

    .site-header__inner {
        min-height: var(--header-height);
        width: calc(100vw - 24px);
        padding: 7px 10px 7px 14px;
        gap: 10px;
    }

    .brand img {
        width: 96px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .menu-toggle span {
        width: 15px;
    }

    .menu-toggle span + span {
        margin-top: 5px;
    }

    .menu-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(3.25px) rotate(45deg);
    }

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

    .mobile-menu {
        padding-top: calc(var(--header-height) + 30px);
    }

    .mobile-menu__panel {
        gap: 8px;
        padding: 14px;
        border-radius: 24px;
    }

    .mobile-menu__panel a {
        padding: 12px 12px;
        font-size: 15px;
    }

    .mobile-menu__panel .button {
        min-height: 54px;
    }

    .hero__content {
        width: calc(100vw - 24px);
        padding-top: calc(var(--header-height) + 72px);
        padding-bottom: 96px;
        align-items: center;
    }

    .hero__copy {
        width: calc(100vw - 36px);
        margin-left: 0;
        margin-top: 0;
        transform: translateY(34px);
    }

    .hero__copy h1 {
        font-size: clamp(64px, 19vw, 98px);
    }

    .hero__lede {
        margin-top: 14px;
    }

    .hero__lede,
    .lead,
    .body-copy,
    .modal__text,
    .manifesto__content p,
    .final-cta__inner p,
    .model-strip__specs {
        font-size: 16px;
    }

    #flagship {
        padding-top: 88px;
        padding-bottom: 92px;
    }

    #flagship .split-layout__copy h2 {
        font-size: clamp(52px, 16vw, 72px);
    }

    #flagship .lead {
        margin-top: 18px;
        font-size: 18px;
        line-height: 1.35;
    }

    #flagship .button-row {
        margin-top: 28px;
        gap: 14px;
    }

    .hero__actions,
    .button-row {
        flex-direction: column;
    }

    .button,
    .button--xl {
        width: 100%;
    }

    .editorial-media {
        padding-bottom: 0;
    }

    .editorial-media__side {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
    }

    #models .wrapper {
        width: calc(100vw - 20px);
    }

    #story .wrapper {
        width: calc(100vw - 24px);
    }

    #story .reveal {
        max-width: 100%;
        margin-left: 0;
    }

    #story h2 {
        font-size: clamp(20px, 8vw, 34px);
        line-height: 0.98;
        color: rgba(255, 255, 255, 0.38);
    }

    #story .manifesto__content p {
        max-width: 320px;
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.34;
        font-weight: 600;
    }

    #contact {
        padding-top: 78px;
        padding-bottom: 50px;
    }

    #contact .wrapper {
        width: calc(100vw - 24px);
    }

    .suppliers__heading h2,
    .suppliers__heading p {
        font-size: clamp(16px, 6.8vw, 24px);
        line-height: 0.9;
    }

    .suppliers__heading p {
        margin-top: 20px;
    }

    .suppliers__frame {
        margin-top: 30px;
        padding: 16px 14px 16px;
    }

    .suppliers__tabs {
        gap: 10px;
    }

    .suppliers__tab {
        min-width: 88px;
        padding-bottom: 10px;
        font-size: 13px;
    }

    .suppliers__panel {
        margin-top: 20px;
    }

    .supplier-row {
        gap: 14px;
        padding: 18px 0;
    }

    .supplier-row strong,
    .supplier-row__phone a,
    .supplier-map__card strong,
    .supplier-map__card a {
        font-size: 16px;
    }

    .supplier-row span,
    .supplier-map__card p {
        font-size: 14px;
    }

    .supplier-map {
        display: grid;
        gap: 14px;
        min-height: auto;
        background: transparent;
    }

    .supplier-map iframe {
        height: 300px;
        border-radius: 0;
    }

    .supplier-map__card {
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        gap: 10px;
        padding: 16px 16px 14px;
        box-shadow: 0 14px 28px rgba(18, 18, 18, 0.1);
    }

    .supplier-map__card .button {
        width: 100%;
        justify-self: stretch;
    }

    .suppliers__address {
        margin-top: 24px;
        font-size: clamp(12px, 4.4vw, 16px);
        line-height: 1.06;
    }

    .model-showcase {
        gap: 22px;
        margin-top: 28px;
    }

    .model-strip__content {
        margin-top: -26px;
        padding: 0 10px 10px;
    }

    .model-strip__panel {
        padding: 26px 22px 28px 34px;
        border-radius: 30px;
    }

    .model-strip__panel::before {
        left: 18px;
        top: 20px;
        bottom: 20px;
    }

    .model-strip__index {
        font-size: 16px;
    }

    .model-strip__content h3 {
        margin-top: 14px;
        font-size: clamp(48px, 15vw, 74px);
    }

    .model-strip__details {
        margin-top: 18px;
        padding-top: 18px;
    }

    .model-strip__specs {
        gap: 8px;
        padding-left: 18px;
        font-size: 16px;
        line-height: 1.4;
    }

    .model-strip__content .button--dark {
        width: 100%;
        min-height: 60px;
        margin-top: 20px;
        font-size: 15px;
    }

    .model-strip__media {
        min-height: 280px;
        padding: 18px 16px;
        align-items: center;
        justify-content: center;
    }

    .model-strip__media img {
        max-height: 92%;
        transform: scale(1) translateY(0);
        object-position: center;
    }

    .model-strip:hover .model-strip__media img {
        transform: scale(1.04) translateY(0);
    }

    .modal__dialog {
        padding: 24px 18px 20px;
        border-radius: 26px;
    }

    .site-footer__inner {
        width: calc(100vw - 24px);
        padding: 22px 0 14px;
    }

    .site-footer__top {
        padding-bottom: 16px;
    }

    .brand--footer img {
        width: 132px;
    }

    .site-footer__main {
        gap: 24px;
        padding-top: 24px;
    }

    .site-footer__nav {
        gap: 12px;
    }

    .site-footer__nav a,
    .site-footer__nav p,
    .site-footer__contacts a,
    .site-footer__title {
        font-size: 16px;
        line-height: 1.24;
    }

    .site-footer__contacts {
        gap: 10px;
    }

    .site-footer__bottom {
        gap: 16px;
        padding-top: 24px;
    }

    .site-footer__legal-links {
        gap: 12px 18px;
        flex-direction: column;
    }

    .site-footer__legal-links a {
        font-size: 13px;
    }

    .site-footer__disclaimer {
        max-width: none;
        font-size: 12px;
        line-height: 1.38;
    }
}
