:root {
    --color-black: #050505;
    --color-ink: #121212;
    --color-muted: #6f6f6f;
    --color-line: #e2e2e2;
    --color-surface: #ffffff;
    --color-soft: #f5f5f5;
    --color-glass: rgb(0 0 0 / 0.62);
    --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --container: 1280px;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
    scrollbar-color: rgb(255 255 255 / 0.34) #080808;
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #080808;
}

::-webkit-scrollbar-thumb {
    border: 2px solid #080808;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.28);
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(255 255 255 / 0.42);
}

body {
    margin: 0;
    color: var(--color-ink);
    background: var(--color-surface);
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.6;
}

html.has-open-menu,
body.has-open-menu {
    overflow: hidden;
    overscroll-behavior: none;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

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

.container {
    width: min(100% - 48px, var(--container));
    margin-inline: auto;
}

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

.skip-link:focus {
    z-index: 1000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: var(--color-black);
    background: var(--color-surface);
}

.site-header {
    position: absolute;
    z-index: 30;
    top: 0;
    right: 0;
    left: 0;
    color: var(--color-surface);
    border-bottom: 1px solid rgb(255 255 255 / 0.16);
    background: var(--color-glass);
    backdrop-filter: blur(14px);
}

.site-header--sticky {
    position: fixed;
    color: var(--color-black);
    border-bottom-color: rgb(18 18 18 / 0.1);
    background: rgb(255 255 255 / 0.94);
    box-shadow: 0 0 0 rgb(13 20 31 / 0);
    opacity: 0;
    transform: translateY(-110%);
    transition:
        transform 640ms cubic-bezier(0.16, 1, 0.3, 1),
        opacity 420ms ease,
        box-shadow 640ms ease;
    pointer-events: none;
}

.site-header--sticky.is-visible {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 16px 42px rgb(13 20 31 / 0.08);
    pointer-events: auto;
}

.site-header--sticky.is-menu-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    min-height: 82px;
    gap: 28px;
    max-width: none;
    width: min(100% - 72px, 1680px);
    margin-inline: auto;
}

.site-branding {
    min-width: 300px;
}

.site-branding__name {
    display: inline-grid;
    gap: 7px;
    justify-items: center;
    color: var(--color-surface);
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.site-header--sticky .site-branding__name {
    color: var(--color-black);
}

.site-branding__logo {
    width: auto;
    height: 21px;
    filter: brightness(0) invert(1);
}

.site-header--sticky .site-branding__logo {
    filter: brightness(0);
}

.site-branding__company {
    color: rgb(255 255 255 / 0.72);
    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    text-transform: none;
}

.site-header--sticky .site-branding__company {
    color: rgb(18 18 18 / 0.68);
}

.primary-menu,
.footer-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-menu {
    justify-content: center;
    gap: 0;
}

.primary-menu a,
.footer-menu a {
    color: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.primary-menu a {
    position: relative;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding-inline: 17px;
    color: rgb(255 255 255 / 0.78);
    transition: color 180ms ease;
}

.site-header--sticky .primary-menu a {
    color: rgb(18 18 18 / 0.72);
}

.primary-menu > li {
    position: relative;
}

.primary-menu > li + li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 14px;
    transform: translateY(-50%);
    background: rgb(255 255 255 / 0.14);
}

.site-header--sticky .primary-menu > li + li::before {
    background: rgb(18 18 18 / 0.14);
}

.primary-menu a::after {
    content: "";
    position: absolute;
    right: 17px;
    bottom: 8px;
    left: 17px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--color-surface);
    opacity: 0.78;
    transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease;
}

.site-header--sticky .primary-menu a::after {
    background: var(--color-black);
}

.primary-menu a:hover,
.primary-menu a:focus-visible,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
    color: var(--color-surface);
}

.site-header--sticky .primary-menu a:hover,
.site-header--sticky .primary-menu a:focus-visible,
.site-header--sticky .primary-menu .current-menu-item > a,
.site-header--sticky .primary-menu .current_page_item > a {
    color: var(--color-black);
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after {
    transform: scaleX(1);
}

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

.header-contact__item {
    display: grid;
    grid-template-columns: 38px auto;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    color: var(--color-surface);
    text-decoration: none;
    transition: opacity 180ms ease;
}

.site-header--sticky .header-contact__item {
    color: var(--color-black);
}

.header-contact__icon {
    position: relative;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(255 255 255 / 0.22);
    border-radius: 50%;
    background: rgb(255 255 255 / 0.08);
    transition: border-color 180ms ease, background 180ms ease;
}

.site-header--sticky .header-contact__icon {
    border-color: rgb(18 18 18 / 0.18);
    background: rgb(18 18 18 / 0.035);
}

.site-header--sticky .header-contact__item:hover .header-contact__icon,
.site-header--sticky .header-contact__item:focus-visible .header-contact__icon {
    border-color: rgb(18 18 18 / 0.34);
}

.header-contact__item:hover .header-contact__icon,
.header-contact__item:focus-visible .header-contact__icon {
    border-color: rgb(255 255 255 / 0.34);
}

.header-contact__item:hover,
.header-contact__item:focus-visible {
    opacity: 0.86;
}

.header-contact__icon::before {
    content: none;
}

.header-contact__icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--color-surface);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.site-header--sticky .header-contact__icon svg {
    stroke: var(--color-black);
}

.header-contact__content {
    display: grid;
    line-height: 1.15;
}

.header-contact__label {
    color: rgb(255 255 255 / 0.72);
    font-size: 0.78rem;
    font-weight: 600;
}

.site-header--sticky .header-contact__label {
    color: rgb(18 18 18 / 0.58);
}

.header-contact strong {
    margin-top: 4px;
    font-size: 0.86rem;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(255 255 255 / 0.2);
    border-radius: 6px;
    background: rgb(255 255 255 / 0.08);
    cursor: pointer;
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-surface);
}

.nav-toggle__line {
    position: relative;
}

.nav-toggle__line::before,
.nav-toggle__line::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle__line::before {
    top: -7px;
}

.nav-toggle__line::after {
    top: 7px;
}

.site-header--sticky .nav-toggle {
    border-color: rgb(18 18 18 / 0.16);
    background: rgb(18 18 18 / 0.035);
}

.site-header--sticky .nav-toggle__line,
.site-header--sticky .nav-toggle__line::before,
.site-header--sticky .nav-toggle__line::after {
    background: var(--color-black);
}

.mobile-menu-contact {
    display: none;
}

.mobile-menu-social {
    display: none;
}

.scroll-top {
    position: fixed;
    z-index: 55;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(18 18 18 / 0.12);
    border-radius: 50%;
    color: var(--color-black);
    background: rgb(255 255 255 / 0.92);
    box-shadow: 0 16px 38px rgb(13 20 31 / 0.14);
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0ms linear 180ms, border-color 180ms ease, background 180ms ease;
    backdrop-filter: blur(14px);
}

.scroll-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0ms;
}

.scroll-top:hover,
.scroll-top:focus-visible {
    border-color: rgb(18 18 18 / 0.22);
    background: var(--color-surface);
}

.scroll-top i {
    font-size: 0.95rem;
}

body.has-open-menu .scroll-top {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero {
    position: relative;
    display: grid;
    min-height: 920px;
    align-items: center;
    overflow: hidden;
    color: var(--color-surface);
    background: var(--color-black);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
}

.hero::after {
    z-index: 1;
    background:
        linear-gradient(180deg, rgb(0 0 0 / 0.28), rgb(0 0 0 / 0.18) 42%, rgb(0 0 0 / 0.52)),
        linear-gradient(90deg, rgb(0 0 0 / 0.34), rgb(0 0 0 / 0.04) 32%, rgb(0 0 0 / 0.06) 68%, rgb(0 0 0 / 0.28));
}

.hero__slides {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.045);
    transition: opacity 1200ms ease, transform 9800ms ease;
}

.hero__slide.is-active {
    opacity: 1;
    transform: scale(1.015);
}

.hero__controls {
    position: absolute;
    z-index: 4;
    top: 50%;
    right: 0;
    left: 0;
    display: flex;
    width: min(100% - 48px, var(--container));
    justify-content: space-between;
    margin-inline: auto;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero__arrow {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(255 255 255 / 0.2);
    border-radius: 50%;
    color: rgb(255 255 255 / 0.78);
    background: rgb(0 0 0 / 0.12);
    cursor: pointer;
    pointer-events: auto;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.hero__arrow:hover,
.hero__arrow:focus-visible {
    border-color: rgb(255 255 255 / 0.42);
    color: var(--color-surface);
    background: rgb(255 255 255 / 0.06);
}

.hero__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.hero__dot {
    position: relative;
    width: 42px;
    height: 2px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.28);
    cursor: pointer;
    overflow: hidden;
}

.hero__dot::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-surface);
    transform: scaleX(0);
    transform-origin: left;
}

.hero__dot.is-active::before {
    animation: heroDotProgress var(--hero-slide-delay, 9500ms) linear forwards;
}

.hero.is-paused .hero__dot.is-active::before {
    animation-play-state: paused;
}

.hero__scroll {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 44px;
    left: 0;
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 34px;
    padding: 0;
    border: 0;
    margin-inline: auto;
    color: rgb(255 255 255 / 0.58);
    background: transparent;
    cursor: pointer;
    font: inherit;
    text-decoration: none;
    transition: color 180ms ease;
}

.hero__scroll i {
    display: block;
    height: 10px;
    font-size: 1.12rem;
    line-height: 1;
    animation: heroScrollCue 1500ms ease-in-out infinite;
}

.hero__scroll i:nth-child(2) {
    animation-delay: 120ms;
}

.hero__scroll i:nth-child(3) {
    animation-delay: 240ms;
}

.hero__scroll:hover,
.hero__scroll:focus-visible {
    color: var(--color-surface);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 174px;
    padding-bottom: 132px;
}

.hero__content {
    max-width: 980px;
    text-align: center;
    animation: heroContentIn 900ms ease 180ms both;
    transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.hero__content.is-leaving {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(14px);
}

.hero__content.is-entering {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.hero__content.is-entering h1,
.hero__content.is-entering .hero__models,
.hero__content.is-entering .hero__lead,
.hero__content.is-entering .hero__specs,
.hero__content.is-entering .hero__actions {
    animation: heroItemIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero__content.is-entering h1 {
    animation-delay: 70ms;
}

.hero__content.is-entering .hero__models {
    animation-delay: 140ms;
}

.hero__content.is-entering .hero__lead {
    animation-delay: 210ms;
}

.hero__content.is-entering .hero__specs {
    animation-delay: 290ms;
}

.hero__content.is-entering .hero__actions {
    animation-delay: 360ms;
}

.hero h1 {
    margin: 0;
    font-size: 4.35rem;
    font-weight: 260;
    line-height: 1;
    text-transform: uppercase;
}

.hero__models {
    display: inline-flex;
    max-width: 100%;
    min-height: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 24px 0 0;
    color: rgb(255 255 255 / 0.92);
    background: transparent;
    font-size: 1rem;
    font-weight: 760;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero__lead {
    max-width: 640px;
    margin: 18px auto 0;
    color: rgb(255 255 255 / 0.7);
    font-size: 1rem;
}

.hero__specs {
    position: relative;
    z-index: 1;
    isolation: isolate;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 900px;
    margin: 30px auto 0;
    overflow: hidden;
    border-top: 1px solid rgb(255 255 255 / 0.22);
    border-bottom: 1px solid rgb(255 255 255 / 0.16);
    border-radius: 0;
    background: rgb(0 0 0 / 0.16);
    backdrop-filter: blur(8px);
}

.hero__specs[hidden] {
    display: none;
}

.hero__spec {
    display: grid;
    align-content: center;
    min-height: 76px;
    padding: 13px 18px;
    text-align: center;
}

.hero__spec + .hero__spec {
    border-left: 1px solid rgb(255 255 255 / 0.12);
}

.hero__spec span {
    color: rgb(255 255 255 / 0.58);
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.25;
}

.hero__spec strong {
    margin-top: 6px;
    color: var(--color-surface);
    font-size: 1.2rem;
    font-weight: 780;
    line-height: 1;
    white-space: nowrap;
}

.hero__actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    animation: heroActionsIn 760ms ease 520ms both;
}

.button,
.search-form__submit {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 760;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.button--primary,
.search-form__submit {
    color: var(--color-black);
    background: var(--color-surface);
}

.button--secondary {
    color: var(--color-surface);
    border-color: rgb(255 255 255 / 0.32);
    background: transparent;
}

.button:hover,
.button:focus-visible,
.search-form__submit:hover,
.search-form__submit:focus-visible {
    opacity: 1;
}

.button--primary:hover,
.button--primary:focus-visible,
.search-form__submit:hover,
.search-form__submit:focus-visible {
    color: var(--color-black);
    background: rgb(255 255 255 / 0.9);
}

.button--secondary:hover,
.button--secondary:focus-visible {
    border-color: rgb(255 255 255 / 0.58);
    background: rgb(255 255 255 / 0.04);
}

.page-section {
    padding-block: 64px;
}

.site-main > .page-section:has(.home-seo-content) {
    width: min(100% - 48px, var(--container));
    padding-block: 56px;
}

.site-main > .page-section:has(.home-seo-content) .home-seo-content {
    margin-block: 0;
}

.site-main > .page-section:has(.home-seo-content) + .contact-section {
    padding-top: 0;
}

section[id] {
    scroll-margin-top: 82px;
}

.about-intro {
    position: relative;
    overflow: hidden;
    padding-block: 74px;
    background:
        linear-gradient(90deg, rgb(246 247 249 / 0.96), rgb(246 247 249 / 0.88)),
        var(--color-soft);
}

.about-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.42;
    background-image:
        linear-gradient(30deg, transparent 0 46%, rgb(18 18 18 / 0.06) 46% 47%, transparent 47%),
        linear-gradient(150deg, transparent 0 47%, rgb(18 18 18 / 0.045) 47% 48%, transparent 48%);
    background-position: center;
    background-size: 180px 120px;
    pointer-events: none;
}

.about-intro__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    align-items: center;
    gap: 84px;
}

.about-intro__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    border: 1px solid rgb(18 18 18 / 0.08);
    border-radius: 8px;
    background: #111;
    box-shadow: 0 22px 54px rgb(13 20 31 / 0.12);
}

.about-intro__media::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 112px;
    background: linear-gradient(180deg, transparent, rgb(0 0 0 / 0.76));
    pointer-events: none;
}

.about-intro__media img,
.about-intro__media iframe {
    height: 100%;
}

.about-intro__media img {
    object-fit: cover;
}

.about-intro__media iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    border: 0;
    pointer-events: none;
}

.about-intro__content {
    max-width: 760px;
}

.section-kicker {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 14px;
    color: rgb(18 18 18 / 0.78);
    font-size: 0.78rem;
    font-weight: 820;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-kicker::after {
    content: "";
    width: 42px;
    height: 1px;
    background: rgb(18 18 18 / 0.52);
}

.about-intro h2 {
    margin: 0 0 22px;
    color: var(--color-black);
    font-size: 2.35rem;
    line-height: 1.12;
}

.about-intro p:not(.section-kicker) {
    margin: 0;
    color: rgb(18 18 18 / 0.72);
    font-size: 1rem;
    line-height: 1.85;
}

.about-intro p:not(.section-kicker) + p {
    margin-top: 18px;
}

.models-section {
    position: relative;
    overflow: hidden;
    padding-block: 74px;
    background:
        radial-gradient(ellipse at 50% 0, rgb(255 255 255 / 0.09), transparent 34%),
        linear-gradient(180deg, #171a1f 0 360px, rgb(23 26 31 / 0.86) 430px, rgb(23 26 31 / 0.46) 520px, rgb(255 255 255 / 0.82) 660px, #ffffff 800px),
        #ffffff;
}

.models-section::before,
.models-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.models-section::before {
    inset: 0 0 auto;
    height: 640px;
    opacity: 0.44;
    background-image: radial-gradient(circle, rgb(255 255 255 / 0.28) 1px, transparent 1.6px);
    background-position: center;
    background-size: 18px 18px;
    mask-image: linear-gradient(180deg, #000 0, #000 62%, transparent 100%);
}

.models-section::after {
    top: 360px;
    right: 0;
    left: 0;
    height: 430px;
    opacity: 1;
    background: linear-gradient(180deg, rgb(255 255 255 / 0), rgb(255 255 255 / 0.54) 48%, #ffffff 100%);
}

.models-section__inner {
    position: relative;
    z-index: 1;
    max-width: none;
    width: min(100% - 72px, 1680px);
}

.models-section__header {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.models-section__header .section-kicker {
    justify-content: center;
    color: rgb(255 255 255 / 0.88);
}

.models-section__header .section-kicker::after {
    display: none;
}

.models-section__header h2 {
    margin: 0;
    color: var(--color-surface);
    font-size: 2.45rem;
    line-height: 1.12;
    text-shadow: none;
}

.models-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.model-card {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid rgb(18 18 18 / 0.06);
    border-radius: 8px;
    background: var(--color-surface);
    box-shadow: 0 18px 42px rgb(13 20 31 / 0.08);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.model-card:hover {
    border-color: rgb(18 18 18 / 0.18);
    box-shadow: 0 26px 62px rgb(13 20 31 / 0.13);
    transform: translateY(-4px);
}

.model-card__media {
    display: flex;
    min-height: 210px;
    align-items: center;
    justify-content: center;
    padding: 26px 26px 0;
    background:
        linear-gradient(135deg, rgb(18 18 18 / 0.035), transparent 36%),
        var(--color-surface);
    text-decoration: none;
}

.model-card__media img {
    width: 100%;
    max-height: 188px;
    object-fit: contain;
    transition: transform 260ms ease, filter 260ms ease;
}

.model-card:hover .model-card__media img {
    filter: contrast(1.04);
    transform: scale(1.035);
}

.model-card__body {
    display: grid;
    align-content: end;
    justify-items: center;
    gap: 14px;
    padding: 18px 28px 28px;
    text-align: center;
}

.model-card__logo {
    width: auto;
    height: 10px;
    filter: brightness(0);
    opacity: 1;
}

.model-card h3 {
    margin: 0;
    color: var(--color-black);
    font-size: 1.18rem;
    line-height: 1.2;
}

.model-card__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(18 18 18 / 0.26), transparent);
}

.model-card__button {
    display: inline-flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(18 18 18 / 0.56);
    border-radius: 4px;
    color: var(--color-black);
    font-size: 0.78rem;
    font-weight: 760;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.model-card__button:hover,
.model-card__button:focus-visible {
    border-color: var(--color-black);
    color: var(--color-surface);
    background: var(--color-black);
}

.dealer-cta {
    position: relative;
    display: grid;
    min-height: 460px;
    align-items: center;
    overflow: hidden;
    color: var(--color-surface);
    background:
        linear-gradient(180deg, rgb(0 0 0 / 0.48), rgb(0 0 0 / 0.56)),
        url("/wp-content/uploads/2026/06/3a.webp") center / cover fixed;
}

.dealer-cta::before {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px solid rgb(255 255 255 / 0.18);
    pointer-events: none;
}

.dealer-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    text-align: center;
}

.dealer-cta__brand {
    display: inline-grid;
    justify-items: center;
    gap: 8px;
    margin: 0 0 22px;
    color: rgb(255 255 255 / 0.78);
    font-size: 0.78rem;
    font-weight: 500;
}

.dealer-cta__brand img {
    width: auto;
    height: 24px;
    filter: brightness(0) invert(1);
}

.dealer-cta h2 {
    max-width: 980px;
    margin: 0;
    font-size: 2.8rem;
    line-height: 1.12;
}

.dealer-cta p {
    margin: 14px 0 0;
    color: rgb(255 255 255 / 0.82);
    font-size: 1.25rem;
    font-weight: 700;
}

.dealer-cta__button {
    display: inline-flex;
    min-width: 150px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
    border: 1px solid var(--color-surface);
    border-radius: 4px;
    background: var(--color-surface);
    color: var(--color-black);
    font-size: 0.86rem;
    font-weight: 760;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 180ms ease, background 180ms ease;
}

.dealer-cta__button:hover,
.dealer-cta__button:focus-visible {
    border-color: var(--color-surface);
    background: rgb(255 255 255 / 0.84);
}

.why-us {
    position: relative;
    overflow: hidden;
    padding-block: 84px;
    background:
        radial-gradient(circle at 10% 0, rgb(18 18 18 / 0.055), transparent 30%),
        radial-gradient(circle at 92% 22%, rgb(18 18 18 / 0.035), transparent 26%),
        linear-gradient(180deg, #ffffff, #f7f8fa),
        #ffffff;
}

.why-us::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.48;
    background-image:
        linear-gradient(90deg, rgb(18 18 18 / 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgb(18 18 18 / 0.035) 1px, transparent 1px),
        linear-gradient(135deg, transparent 0 47%, rgb(18 18 18 / 0.055) 47% 47.35%, transparent 47.35% 100%);
    background-position:
        -1px -1px,
        -1px -1px,
        22px 18px;
    background-size:
        68px 68px,
        68px 68px,
        220px 150px;
    mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
    pointer-events: none;
}

.why-us::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -180px;
    z-index: 0;
    width: 520px;
    height: 520px;
    border: 1px solid rgb(18 18 18 / 0.08);
    background:
        linear-gradient(135deg, rgb(18 18 18 / 0.045), transparent 52%),
        linear-gradient(90deg, rgb(255 255 255 / 0.46), transparent);
    transform: rotate(45deg);
    pointer-events: none;
}

.why-us__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 46px;
}

.why-us__header {
    display: grid;
    max-width: 820px;
    gap: 14px;
}

.why-us__header h2 {
    margin: 0;
    color: var(--color-black);
    font-size: 2.7rem;
    line-height: 1.12;
}

.why-us__header > p:not(.section-kicker) {
    max-width: 720px;
    margin: 0;
    color: rgb(18 18 18 / 0.68);
    font-size: 1rem;
    line-height: 1.75;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid rgb(18 18 18 / 0.1);
    border-radius: 8px;
    background: rgb(255 255 255 / 0.72);
    box-shadow: 0 18px 46px rgb(13 20 31 / 0.045);
    backdrop-filter: blur(8px);
}

.why-us__item {
    position: relative;
    display: grid;
    align-content: start;
    min-height: 282px;
    padding: 30px 28px;
    transition: background 180ms ease;
}

.why-us__item:hover {
    background: rgb(255 255 255 / 0.78);
}

.why-us__item + .why-us__item {
    border-left: 1px solid rgb(18 18 18 / 0.1);
}

.why-us__number {
    color: rgb(18 18 18 / 0.36);
    font-size: 0.78rem;
    font-weight: 820;
}

.why-us__icon {
    position: absolute;
    top: 28px;
    right: 26px;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(18 18 18 / 0.12);
    border-radius: 50%;
    color: rgb(18 18 18 / 0.52);
    font-size: 0.92rem;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.why-us__item:hover .why-us__icon {
    border-color: rgb(18 18 18 / 0.22);
    color: var(--color-black);
    background: rgb(18 18 18 / 0.035);
}

.why-us__item h3 {
    margin: 58px 0 14px;
    color: var(--color-black);
    font-size: 1.15rem;
    line-height: 1.25;
}

.why-us__item p {
    margin: 0;
    color: rgb(18 18 18 / 0.64);
    font-size: 0.94rem;
    line-height: 1.65;
}

.why-us__strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 6px;
    background: rgb(18 18 18 / 0.1);
    box-shadow: 0 18px 44px rgb(13 20 31 / 0.08);
}

.why-us__strip div {
    display: grid;
    gap: 5px;
    padding: 24px 28px;
    background:
        linear-gradient(135deg, rgb(255 255 255 / 0.06), transparent 34%),
        var(--color-black);
    color: var(--color-surface);
}

.why-us__strip strong {
    font-size: 1.35rem;
    line-height: 1;
}

.why-us__strip span {
    color: rgb(255 255 255 / 0.62);
    font-size: 0.82rem;
    text-transform: uppercase;
}

.contact-cta {
    position: relative;
    display: grid;
    min-height: 320px;
    align-items: center;
    overflow: hidden;
    color: var(--color-surface);
    background:
        linear-gradient(90deg, rgb(0 0 0 / 0.72), rgb(0 0 0 / 0.42)),
        url("/wp-content/uploads/2026/06/5a.webp") center / cover;
}

.contact-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 0.12), rgb(0 0 0 / 0.32));
    pointer-events: none;
}

.contact-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
}

.contact-cta__content p {
    margin: 0 0 10px;
    color: rgb(255 255 255 / 0.82);
    font-size: 0.92rem;
    font-weight: 760;
}

.contact-cta__content h2 {
    max-width: 760px;
    margin: 0;
    font-size: 2.25rem;
    line-height: 1.16;
}

.contact-cta__button {
    display: inline-flex;
    min-width: 150px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-surface);
    border-radius: 4px;
    background: var(--color-surface);
    color: var(--color-black);
    font-size: 0.86rem;
    font-weight: 760;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 180ms ease, background 180ms ease;
}

.contact-cta__button:hover,
.contact-cta__button:focus-visible {
    border-color: var(--color-surface);
    background: rgb(255 255 255 / 0.84);
}

.service-section {
    position: relative;
    overflow: hidden;
    padding-block: 84px;
    color: var(--color-black);
    background:
        radial-gradient(circle at 86% 0, rgb(18 18 18 / 0.055), transparent 30%),
        radial-gradient(circle at 12% 92%, rgb(18 18 18 / 0.035), transparent 28%),
        linear-gradient(180deg, #ffffff, #f5f6f8);
}

.service-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.42;
    background-image:
        linear-gradient(90deg, rgb(18 18 18 / 0.034) 1px, transparent 1px),
        linear-gradient(0deg, rgb(18 18 18 / 0.03) 1px, transparent 1px),
        linear-gradient(120deg, transparent 0 47%, rgb(18 18 18 / 0.062) 47% 47.35%, transparent 47.35%),
        radial-gradient(circle, rgb(18 18 18 / 0.075) 1px, transparent 1.8px);
    background-position:
        -1px -1px,
        -1px -1px,
        36px 12px,
        0 0;
    background-size:
        64px 64px,
        64px 64px,
        210px 140px,
        22px 22px;
    mask-image: linear-gradient(180deg, #000 0, #000 74%, transparent 96%);
    pointer-events: none;
}

.service-section::after {
    content: "";
    position: absolute;
    top: -170px;
    left: -130px;
    z-index: 0;
    width: 500px;
    height: 500px;
    border: 1px solid rgb(18 18 18 / 0.075);
    background:
        linear-gradient(135deg, transparent, rgb(18 18 18 / 0.045) 54%, transparent),
        linear-gradient(180deg, rgb(255 255 255 / 0.5), transparent);
    transform: rotate(45deg);
    pointer-events: none;
}

.service-section__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
    gap: 64px;
}

.service-section .section-kicker {
    color: rgb(18 18 18 / 0.76);
}

.service-section .section-kicker::after {
    background: rgb(18 18 18 / 0.42);
}

.service-section__content h2 {
    margin: 0 0 20px;
    font-size: 2.45rem;
    line-height: 1.12;
}

.service-section__content p:not(.section-kicker) {
    margin: 0;
    color: rgb(18 18 18 / 0.68);
    line-height: 1.75;
}

.service-section__button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    margin-top: 30px;
    border: 1px solid var(--color-black);
    border-radius: 4px;
    background: var(--color-black);
    color: var(--color-surface);
    font-size: 0.84rem;
    font-weight: 760;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease;
}

.service-section__button:hover,
.service-section__button:focus-visible {
    background: transparent;
    color: var(--color-black);
}

.service-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid rgb(18 18 18 / 0.1);
    background: rgb(255 255 255 / 0.72);
    box-shadow: 0 18px 46px rgb(13 20 31 / 0.05);
}

.service-card {
    min-height: 236px;
    padding: 28px;
    border: 1px solid rgb(18 18 18 / 0.08);
    background: rgb(255 255 255 / 0.54);
}

.service-card__icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(18 18 18 / 0.14);
    border-radius: 50%;
    color: rgb(18 18 18 / 0.74);
}

.service-card h3 {
    margin: 32px 0 12px;
    font-size: 1.08rem;
    line-height: 1.25;
}

.service-card p {
    margin: 0;
    color: rgb(18 18 18 / 0.62);
    font-size: 0.92rem;
    line-height: 1.65;
}

.process-strip {
    position: relative;
    overflow: hidden;
    color: var(--color-surface);
    background:
        linear-gradient(90deg, rgb(0 0 0 / 0.78), rgb(0 0 0 / 0.48)),
        linear-gradient(180deg, rgb(0 0 0 / 0.1), rgb(0 0 0 / 0.42)),
        url("/wp-content/uploads/2026/06/mainhero.avif") center / cover;
}

.process-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgb(0 0 0 / 0.06), rgb(0 0 0 / 0.34)),
        radial-gradient(circle at 84% 18%, rgb(255 255 255 / 0.14), transparent 28%);
    pointer-events: none;
}

.process-strip__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
    align-items: center;
    gap: 56px;
    min-height: 390px;
    padding-block: 70px;
}

.process-strip__header p {
    margin: 0 0 14px;
    color: rgb(255 255 255 / 0.72);
    font-size: 0.78rem;
    font-weight: 780;
    text-transform: uppercase;
}

.process-strip__header h2 {
    max-width: 430px;
    margin: 0;
    font-size: 2.35rem;
    line-height: 1.12;
}

.process-strip__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgb(255 255 255 / 0.26);
    border-bottom: 1px solid rgb(255 255 255 / 0.16);
    background: rgb(0 0 0 / 0.18);
    backdrop-filter: blur(8px);
}

.process-step {
    position: relative;
    min-height: 188px;
    padding: 24px 22px 26px;
}

.process-step + .process-step {
    border-left: 1px solid rgb(255 255 255 / 0.14);
}

.process-step span {
    display: block;
    color: rgb(255 255 255 / 0.42);
    font-size: 0.72rem;
    font-weight: 820;
}

.process-step h3 {
    margin: 38px 0 10px;
    font-size: 1rem;
    line-height: 1.2;
}

.process-step p {
    margin: 0;
    color: rgb(255 255 255 / 0.68);
    font-size: 0.86rem;
    line-height: 1.55;
}

.contact-section {
    padding-block: 44px;
    background: var(--color-surface);
}

.contact-section__inner {
    display: grid;
    grid-template-columns: minmax(440px, 0.97fr) minmax(0, 1.03fr);
    overflow: hidden;
    border: 1px solid rgb(18 18 18 / 0.08);
    border-radius: 8px;
    background: var(--color-surface);
    box-shadow: 0 28px 86px rgb(13 20 31 / 0.12);
}

.contact-section__panel {
    display: grid;
    align-content: start;
    min-height: 620px;
    padding: 48px 44px;
    color: var(--color-surface);
    background:
        linear-gradient(180deg, rgb(0 0 0 / 0.24), rgb(0 0 0 / 0.76)),
        linear-gradient(90deg, rgb(0 0 0 / 0.42), transparent 58%),
        url("/wp-content/uploads/2026/06/6a.webp") center / cover;
}

.contact-section__brand {
    display: inline-grid;
    justify-self: start;
    justify-items: center;
    gap: 8px;
    margin-bottom: 68px;
    line-height: 1;
}

.contact-section__brand span {
    color: rgb(255 255 255 / 0.78);
    font-size: 0.76rem;
    font-weight: 520;
}

.contact-section__logo {
    width: auto;
    height: 22px;
    filter: brightness(0) invert(1);
}

.contact-section__panel .section-kicker {
    color: rgb(255 255 255 / 0.78);
}

.contact-section__panel .section-kicker::after {
    background: rgb(255 255 255 / 0.3);
}

.contact-section__panel h2 {
    margin: 0;
    font-size: 2.42rem;
    line-height: 1.12;
}

.contact-section__panel > p:not(.section-kicker) {
    margin: 18px 0 0;
    color: rgb(255 255 255 / 0.78);
    line-height: 1.7;
}

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

.contact-section__detail {
    position: relative;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    min-height: 66px;
    padding: 12px 13px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.16);
    background:
        linear-gradient(135deg, rgb(255 255 255 / 0.12), rgb(255 255 255 / 0.045)),
        rgb(0 0 0 / 0.14);
    color: var(--color-surface);
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-section__detail:hover,
.contact-section__detail:focus-visible {
    border-color: rgb(255 255 255 / 0.34);
    background:
        linear-gradient(135deg, rgb(255 255 255 / 0.18), rgb(255 255 255 / 0.065)),
        rgb(0 0 0 / 0.08);
    transform: translateX(3px);
}

.contact-section__detail-icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    align-self: center;
    justify-content: center;
    justify-self: center;
    border: 1px solid rgb(255 255 255 / 0.2);
    border-radius: 50%;
    color: rgb(255 255 255 / 0.86);
    background: rgb(255 255 255 / 0.08);
    font-size: 0.72rem;
    line-height: 1;
}

.contact-section__detail-copy {
    display: grid;
    min-width: 0;
    align-self: center;
    gap: 4px;
    line-height: 1.15;
}

.contact-section__detail-copy span {
    color: rgb(255 255 255 / 0.58);
    font-size: 0.58rem;
    font-weight: 720;
    text-transform: uppercase;
}

.contact-section__detail-copy strong {
    overflow-wrap: anywhere;
    font-size: 0.8rem;
    line-height: 1.25;
}

.contact-form-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 48px;
    background:
        linear-gradient(135deg, rgb(255 255 255 / 0.96), rgb(245 247 249 / 0.98)),
        var(--color-surface);
}

.contact-form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.72;
    background-image:
        linear-gradient(90deg, rgb(18 18 18 / 0.045) 1px, transparent 1px),
        linear-gradient(0deg, rgb(18 18 18 / 0.035) 1px, transparent 1px),
        linear-gradient(135deg, transparent 0 47%, rgb(18 18 18 / 0.055) 47% 48%, transparent 48% 100%);
    background-position:
        -1px -1px,
        -1px -1px,
        18px 12px;
    background-size:
        44px 44px,
        44px 44px,
        180px 180px;
    mask-image: linear-gradient(180deg, rgb(0 0 0 / 0.92), transparent 92%);
    pointer-events: none;
}

.contact-form-card::after {
    content: "";
    position: absolute;
    top: -72px;
    right: -116px;
    z-index: 0;
    width: 320px;
    height: 320px;
    border: 1px solid rgb(18 18 18 / 0.08);
    background:
        linear-gradient(135deg, rgb(18 18 18 / 0.055), transparent 48%),
        linear-gradient(90deg, rgb(255 255 255 / 0.36), transparent);
    transform: rotate(45deg);
    pointer-events: none;
}

.contact-form-card > * {
    position: relative;
    z-index: 1;
}

.contact-form-card__notice {
    padding: 14px 16px;
    margin-bottom: 22px;
    border-radius: 4px;
    font-weight: 700;
}

.contact-form-card__notice--success {
    color: #135f2c;
    background: #e9f7ee;
}

.contact-form-card__notice--error {
    color: #7a1f1f;
    background: #fbecec;
}

.contact-form {
    display: grid;
    gap: 20px;
}

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

.contact-form__field {
    display: grid;
    gap: 8px;
}

.contact-form__field span {
    color: rgb(18 18 18 / 0.64);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid rgb(18 18 18 / 0.16);
    border-radius: 4px;
    background: rgb(255 255 255 / 0.9);
    color: var(--color-black);
    font: inherit;
    box-shadow: 0 10px 28px rgb(13 20 31 / 0.035);
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form__field textarea {
    min-height: 222px;
    resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: rgb(18 18 18 / 0.54);
    background: var(--color-surface);
    box-shadow: 0 0 0 4px rgb(18 18 18 / 0.055);
}

.contact-form__field--hidden {
    position: absolute;
    left: -9999px;
}

.contact-form__consent {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    color: rgb(18 18 18 / 0.58);
    font-size: 0.78rem;
    line-height: 1.55;
}

.contact-form__consent input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-black);
}

.contact-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding-top: 10px;
}

.contact-form__footer button {
    min-height: 48px;
    padding: 12px 24px;
    border: 1px solid var(--color-black);
    border-radius: 4px;
    background: var(--color-black);
    color: var(--color-surface);
    font: inherit;
    font-size: 0.84rem;
    font-weight: 760;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease;
}

.contact-form__footer button:hover,
.contact-form__footer button:focus-visible {
    background: transparent;
    color: var(--color-black);
}

.contact-form__footer span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #177a36;
    font-size: 0.86rem;
    font-weight: 700;
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroActionsIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroItemIn {
    from {
        opacity: 0;
        filter: blur(6px);
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes heroDotProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes heroScrollCue {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

.page-header {
    max-width: 760px;
    margin-bottom: 32px;
}

.page-title,
.entry__title {
    margin: 0 0 18px;
    font-size: 3rem;
    line-height: 1.12;
}

.entry {
    max-width: 820px;
}

.entry + .entry {
    padding-top: 36px;
    margin-top: 36px;
    border-top: 1px solid var(--color-line);
}

.entry__title a {
    color: var(--color-ink);
    text-decoration: none;
}

.entry__title a:hover {
    color: var(--color-muted);
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.entry__thumbnail {
    display: block;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 8px;
}

.entry__content > *:first-child {
    margin-top: 0;
}

.entry__content > *:last-child {
    margin-bottom: 0;
}

.content-list {
    display: grid;
    gap: 0;
}

.search-form {
    display: flex;
    max-width: 560px;
    gap: 8px;
}

.search-form__field {
    min-width: 0;
    flex: 1;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    font: inherit;
}

.home-seo-content {
    position: relative;
    isolation: isolate;
    width: min(100%, 1120px);
    margin: 24px auto 44px;
    padding-block: 46px 52px;
    overflow: hidden;
    border-top: 1px solid rgb(18 18 18 / 0.1);
    border-bottom: 1px solid rgb(18 18 18 / 0.1);
}

.home-seo-content::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.46;
    background-image:
        linear-gradient(90deg, rgb(18 18 18 / 0.035) 1px, transparent 1px),
        linear-gradient(0deg, rgb(18 18 18 / 0.03) 1px, transparent 1px),
        linear-gradient(135deg, transparent 0 47%, rgb(18 18 18 / 0.055) 47% 47.25%, transparent 47.25%);
    background-position:
        -1px -1px,
        -1px -1px,
        28px 14px;
    background-size:
        64px 64px,
        64px 64px,
        210px 140px;
    mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
    pointer-events: none;
}

.home-seo-content p {
    margin: 0;
    color: rgb(18 18 18 / 0.68);
    font-size: 0.96rem;
    line-height: 1.75;
}

.home-seo-content h2,
.home-seo-content h3 {
    margin: 0;
    color: var(--color-black);
    line-height: 1.14;
}

.home-seo-content h2 {
    max-width: 720px;
    font-size: 2.42rem;
}

.home-seo-content h3 {
    font-size: 1.08rem;
}

.home-seo-content a {
    color: var(--color-black);
    font-weight: 760;
    text-decoration-thickness: 1px;
}

.home-seo-content__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    align-items: end;
    gap: 34px;
}

.home-seo-content__intro {
    display: grid;
    gap: 18px;
    max-width: 720px;
}

.home-seo-content__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgb(18 18 18 / 0.72);
    font-size: 0.76rem;
    font-weight: 820;
    text-transform: uppercase;
}

.home-seo-content__eyebrow::after {
    content: "";
    width: 42px;
    height: 1px;
    background: rgb(18 18 18 / 0.36);
}

.home-seo-content__lead {
    max-width: 680px;
    font-size: 1.06rem;
}

.home-seo-content__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.home-seo-content__actions a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 17px;
    border: 1px solid rgb(18 18 18 / 0.16);
    border-radius: 4px;
    background: rgb(255 255 255 / 0.78);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.76rem;
    transition: border-color 180ms ease, background 180ms ease;
}

.home-seo-content__actions a:first-child {
    border-color: var(--color-black);
    color: var(--color-surface);
    background: var(--color-black);
}

.home-seo-content__actions a:hover,
.home-seo-content__actions a:focus-visible {
    border-color: var(--color-black);
    background: rgb(18 18 18 / 0.055);
}

.home-seo-content__actions a:first-child:hover,
.home-seo-content__actions a:first-child:focus-visible {
    background: rgb(18 18 18 / 0.86);
}

.home-seo-content__feature {
    position: relative;
    min-height: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #111;
}

.home-seo-content__feature img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.home-seo-content__feature figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 13px 15px;
    color: rgb(255 255 255 / 0.72);
    background: linear-gradient(180deg, transparent, rgb(0 0 0 / 0.82));
    font-size: 0.76rem;
}

.home-seo-content__proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgb(18 18 18 / 0.1);
    border-radius: 8px;
    background: rgb(255 255 255 / 0.74);
    backdrop-filter: blur(8px);
}

.home-seo-content__proof article {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 210px;
    padding: 24px 22px;
}

.home-seo-content__proof article + article {
    border-left: 1px solid rgb(18 18 18 / 0.1);
}

.home-seo-content__proof span {
    color: rgb(18 18 18 / 0.34);
    font-size: 0.72rem;
    font-weight: 820;
}

.home-seo-content__proof p {
    font-size: 0.88rem;
    line-height: 1.62;
}

.home-seo-content__showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
    align-items: stretch;
    gap: 14px;
    margin-top: 28px;
}

.home-seo-content__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-self: stretch;
    gap: 14px;
    height: 100%;
}

.home-seo-content__photo,
.home-seo-content__video {
    margin: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 7px;
    background: #111;
}

.home-seo-content__photo img,
.home-seo-content__video iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.home-seo-content__photo img {
    object-fit: cover;
}

.home-seo-content__video {
    aspect-ratio: 9 / 16;
    align-self: stretch;
}

.home-seo-content__video iframe {
    border: 0;
    pointer-events: none;
}

.home-seo-content__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgb(18 18 18 / 0.1);
    border-radius: 8px;
    background: rgb(18 18 18 / 0.1);
}

.home-seo-content__details article {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 28px;
    background: rgb(255 255 255 / 0.86);
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: var(--color-surface);
    background:
        linear-gradient(90deg, rgb(5 5 5 / 0.9), rgb(5 5 5 / 0.74)),
        linear-gradient(180deg, rgb(5 5 5 / 0.48), rgb(5 5 5 / 0.92)),
        url("/wp-content/uploads/2026/06/5a.webp") center / cover;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.44;
    background-image:
        radial-gradient(circle, rgb(255 255 255 / 0.28) 1px, transparent 1.6px),
        linear-gradient(120deg, transparent 0 47%, rgb(255 255 255 / 0.14) 47% 47.25%, transparent 47.25%),
        linear-gradient(30deg, transparent 0 48%, rgb(255 255 255 / 0.09) 48% 48.2%, transparent 48.2%);
    background-position: center, center, center;
    background-size: 18px 18px, 170px 118px, 210px 140px;
    mask-image:
        linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent),
        linear-gradient(180deg, #000, transparent 92%);
    pointer-events: none;
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.9fr) minmax(300px, 1fr);
    gap: 72px;
    padding-block: 82px 74px;
}

.site-footer__about {
    max-width: 380px;
}

.site-footer__brand {
    display: inline-grid;
    justify-items: center;
    gap: 8px;
    color: var(--color-surface);
    line-height: 1;
    text-decoration: none;
}

.site-footer__brand img {
    width: auto;
    height: 24px;
    filter: brightness(0) invert(1);
}

.site-footer__brand span {
    color: rgb(255 255 255 / 0.72);
    font-size: 0.78rem;
    font-weight: 520;
}

.site-footer__about p {
    margin: 34px 0 0;
    color: rgb(255 255 255 / 0.66);
    line-height: 1.8;
}

.site-footer h2 {
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgb(255 255 255 / 0.16);
    font-size: 1.08rem;
    line-height: 1.2;
}

.site-footer__nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer__nav a,
.site-footer__contact a {
    color: rgb(255 255 255 / 0.7);
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer__nav a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.94rem;
}

.site-footer__nav a::before {
    content: "";
    width: 14px;
    height: 1px;
    background: rgb(255 255 255 / 0.34);
    transition: width 180ms ease, background 180ms ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
    color: var(--color-surface);
}

.site-footer__nav a:hover::before,
.site-footer__nav a:focus-visible::before {
    width: 22px;
    background: var(--color-surface);
}

.site-footer__contact address {
    display: grid;
    gap: 11px;
    margin: 0;
    color: rgb(255 255 255 / 0.66);
    font-style: normal;
}

.site-footer__contact address > span {
    color: rgb(255 255 255 / 0.62);
}

.site-footer__contact address a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-footer__contact address i {
    width: 16px;
    color: rgb(255 255 255 / 0.86);
    text-align: center;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.site-footer__social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(255 255 255 / 0.12);
    border-radius: 50%;
    color: var(--color-surface);
    background: rgb(255 255 255 / 0.08);
    text-decoration: none;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
    border-color: rgb(255 255 255 / 0.32);
    background: rgb(255 255 255 / 0.14);
    transform: translateY(-2px);
}

.site-footer__bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgb(255 255 255 / 0.12);
    background: rgb(255 255 255 / 0.05);
}

.site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 76px;
    color: rgb(255 255 255 / 0.58);
    font-size: 0.9rem;
}

.site-footer__bottom a {
    color: rgb(255 255 255 / 0.7);
    text-decoration: none;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
    color: var(--color-surface);
}

.comments-area {
    max-width: 820px;
    padding-top: 36px;
    margin-top: 48px;
    border-top: 1px solid var(--color-line);
}

@media (max-width: 1320px) {
    .header-contact {
        gap: 14px;
    }

    .header-contact__item:nth-child(2) .header-contact__content {
        display: none;
    }
}

@media (max-width: 1120px) {
    .site-header.is-menu-open,
    .site-header.is-menu-closing {
        z-index: 80;
    }

    .site-header__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        width: min(100% - 48px, 1680px);
    }

    .site-branding {
        grid-column: 1;
    }

    .site-header.is-menu-open .site-branding,
    .site-header.is-menu-closing .site-branding {
        position: relative;
        z-index: 70;
    }

    .site-header.is-menu-open .site-branding__name,
    .site-header.is-menu-closing .site-branding__name {
        color: var(--color-surface);
    }

    .site-header.is-menu-open .site-branding__logo,
    .site-header.is-menu-closing .site-branding__logo {
        filter: brightness(0) invert(1);
    }

    .site-header.is-menu-open .site-branding__company,
    .site-header.is-menu-closing .site-branding__company {
        color: rgb(255 255 255 / 0.72);
    }

    .header-contact {
        grid-column: 2;
        justify-self: end;
    }

    .nav-toggle {
        position: relative;
        z-index: 70;
        grid-column: 3;
        justify-self: end;
    }

    .primary-navigation {
        position: fixed;
        z-index: 60;
        inset: 0;
        display: grid;
        align-content: start;
        min-height: 100vh;
        min-height: 100dvh;
        padding: clamp(84px, 10vh, 104px) 24px 34px;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        border: 0;
        background: rgb(5 5 5 / 0.96);
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
        pointer-events: none;
        transition: opacity 220ms ease, transform 260ms ease, visibility 0ms linear 260ms;
        backdrop-filter: blur(18px);
    }

    .site-header--sticky .primary-navigation {
        background: rgb(5 5 5 / 0.97);
    }

    .site-header--sticky.is-menu-open .primary-navigation,
    .site-header--sticky.is-menu-closing .primary-navigation {
        background: rgb(255 255 255 / 0.98);
    }

    .site-header--sticky.is-menu-open .site-branding__name,
    .site-header--sticky.is-menu-closing .site-branding__name {
        color: var(--color-black);
    }

    .site-header--sticky.is-menu-open .site-branding__logo,
    .site-header--sticky.is-menu-closing .site-branding__logo {
        filter: brightness(0);
    }

    .site-header--sticky.is-menu-open .site-branding__company,
    .site-header--sticky.is-menu-closing .site-branding__company {
        color: rgb(18 18 18 / 0.68);
    }

    .primary-navigation.is-open {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0ms;
    }

    .primary-menu {
        width: min(100%, 720px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        margin-inline: auto;
    }

    .primary-menu > li {
        border-bottom: 1px solid rgb(255 255 255 / 0.14);
    }

    .primary-menu > li:last-child {
        border-bottom: 0;
    }

    .primary-menu a {
        display: flex;
        min-height: 58px;
        justify-content: center;
        padding-inline: 0;
        font-size: clamp(1rem, 3.4vw, 1.36rem);
        text-align: center;
    }

    .primary-navigation .primary-menu a {
        color: rgb(255 255 255 / 0.9);
    }

    .site-header--sticky.is-menu-open .primary-navigation .primary-menu a,
    .site-header--sticky.is-menu-closing .primary-navigation .primary-menu a {
        color: rgb(18 18 18 / 0.86);
    }

    .site-header--sticky.is-menu-open .primary-menu > li,
    .site-header--sticky.is-menu-closing .primary-menu > li {
        border-bottom-color: rgb(18 18 18 / 0.12);
    }

    .primary-menu a::after {
        display: none;
    }

    .primary-menu > li + li::before {
        display: none;
    }

    .primary-navigation .primary-menu a:hover,
    .primary-navigation .primary-menu a:focus-visible,
    .primary-navigation .primary-menu .current-menu-item > a,
    .primary-navigation .primary-menu .current_page_item > a {
        color: var(--color-surface);
    }

    .site-header--sticky.is-menu-open .primary-navigation .primary-menu a:hover,
    .site-header--sticky.is-menu-open .primary-navigation .primary-menu a:focus-visible,
    .site-header--sticky.is-menu-open .primary-navigation .primary-menu .current-menu-item > a,
    .site-header--sticky.is-menu-open .primary-navigation .primary-menu .current_page_item > a,
    .site-header--sticky.is-menu-closing .primary-navigation .primary-menu a:hover,
    .site-header--sticky.is-menu-closing .primary-navigation .primary-menu a:focus-visible,
    .site-header--sticky.is-menu-closing .primary-navigation .primary-menu .current-menu-item > a,
    .site-header--sticky.is-menu-closing .primary-navigation .primary-menu .current_page_item > a {
        color: var(--color-black);
    }

    .mobile-menu-contact {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, 720px);
        gap: 12px;
        padding-top: 20px;
        margin: 20px auto 0;
        border-top: 1px solid rgb(255 255 255 / 0.16);
    }

    .site-header--sticky.is-menu-open .mobile-menu-contact,
    .site-header--sticky.is-menu-closing .mobile-menu-contact {
        border-top-color: rgb(18 18 18 / 0.14);
    }

    .mobile-menu-contact__item {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
        min-height: 78px;
        padding: 14px;
        border: 1px solid rgb(255 255 255 / 0.18);
        border-radius: 6px;
        color: var(--color-surface);
        text-decoration: none;
        background: rgb(255 255 255 / 0.06);
        transition: border-color 180ms ease, background 180ms ease;
    }

    .site-header--sticky.is-menu-open .mobile-menu-contact__item,
    .site-header--sticky.is-menu-closing .mobile-menu-contact__item {
        color: var(--color-black);
        border-color: rgb(18 18 18 / 0.14);
        background: rgb(18 18 18 / 0.035);
    }

    .mobile-menu-contact__item:hover,
    .mobile-menu-contact__item:focus-visible {
        border-color: rgb(255 255 255 / 0.36);
        background: rgb(255 255 255 / 0.1);
    }

    .site-header--sticky.is-menu-open .mobile-menu-contact__item:hover,
    .site-header--sticky.is-menu-open .mobile-menu-contact__item:focus-visible,
    .site-header--sticky.is-menu-closing .mobile-menu-contact__item:hover,
    .site-header--sticky.is-menu-closing .mobile-menu-contact__item:focus-visible {
        border-color: rgb(18 18 18 / 0.28);
        background: rgb(18 18 18 / 0.06);
    }

    .mobile-menu-contact__icon {
        display: inline-flex;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgb(255 255 255 / 0.22);
        border-radius: 50%;
    }

    .site-header--sticky.is-menu-open .mobile-menu-contact__icon,
    .site-header--sticky.is-menu-closing .mobile-menu-contact__icon {
        border-color: rgb(18 18 18 / 0.18);
    }

    .mobile-menu-contact__icon svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: var(--color-surface);
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.8;
    }

    .site-header--sticky.is-menu-open .mobile-menu-contact__icon svg,
    .site-header--sticky.is-menu-closing .mobile-menu-contact__icon svg {
        stroke: var(--color-black);
    }

    .mobile-menu-contact__content {
        display: grid;
        min-width: 0;
        line-height: 1.2;
    }

    .mobile-menu-contact__content span {
        color: rgb(255 255 255 / 0.64);
        font-size: 0.76rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .site-header--sticky.is-menu-open .mobile-menu-contact__content span,
    .site-header--sticky.is-menu-closing .mobile-menu-contact__content span {
        color: rgb(18 18 18 / 0.58);
    }

    .mobile-menu-contact__content strong {
        margin-top: 5px;
        overflow-wrap: anywhere;
        font-size: 0.9rem;
    }

    .mobile-menu-social {
        display: flex;
        width: min(100%, 720px);
        justify-content: center;
        gap: 10px;
        margin: 16px auto 0;
    }

    .mobile-menu-social a {
        display: inline-flex;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgb(255 255 255 / 0.18);
        border-radius: 50%;
        color: var(--color-surface);
        background: rgb(255 255 255 / 0.06);
        text-decoration: none;
        transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
    }

    .mobile-menu-social a:hover,
    .mobile-menu-social a:focus-visible {
        border-color: rgb(255 255 255 / 0.36);
        background: rgb(255 255 255 / 0.1);
    }

    .site-header--sticky.is-menu-open .mobile-menu-social a,
    .site-header--sticky.is-menu-closing .mobile-menu-social a {
        color: var(--color-black);
        border-color: rgb(18 18 18 / 0.14);
        background: rgb(18 18 18 / 0.035);
    }

    .site-header--sticky.is-menu-open .mobile-menu-social a:hover,
    .site-header--sticky.is-menu-open .mobile-menu-social a:focus-visible,
    .site-header--sticky.is-menu-closing .mobile-menu-social a:hover,
    .site-header--sticky.is-menu-closing .mobile-menu-social a:focus-visible {
        border-color: rgb(18 18 18 / 0.28);
        background: rgb(18 18 18 / 0.06);
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-toggle[aria-expanded="true"] {
        border-color: rgb(255 255 255 / 0.24);
        background: rgb(255 255 255 / 0.08);
    }

    .site-header--sticky.is-menu-open .nav-toggle[aria-expanded="true"] {
        border-color: rgb(18 18 18 / 0.16);
        background: rgb(18 18 18 / 0.035);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__line {
        background: transparent;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__line::before,
    .nav-toggle[aria-expanded="true"] .nav-toggle__line::after,
    .site-header--sticky .nav-toggle[aria-expanded="true"] .nav-toggle__line::before,
    .site-header--sticky .nav-toggle[aria-expanded="true"] .nav-toggle__line::after {
        top: 0;
        background: var(--color-surface);
    }

    .site-header--sticky.is-menu-open .nav-toggle[aria-expanded="true"] .nav-toggle__line::before,
    .site-header--sticky.is-menu-open .nav-toggle[aria-expanded="true"] .nav-toggle__line::after {
        background: var(--color-black);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__line::before {
        transform: rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__line::after {
        transform: rotate(-45deg);
    }

}

@media (max-width: 1120px) {
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
    }

    .site-footer__about {
        grid-column: 1 / -1;
        max-width: 620px;
    }
}

@media (max-width: 1280px) {
    .models-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    section[id] {
        scroll-margin-top: 76px;
    }

    .container {
        width: min(100% - 32px, var(--container));
    }

    .site-header__inner {
        min-height: 76px;
        gap: 16px;
        width: min(100% - 32px, 1680px);
    }

    .site-branding {
        min-width: 0;
    }

    .site-branding__name {
        gap: 6px;
    }

    .site-branding__logo {
        height: 18px;
    }

    .site-branding__company {
        font-size: 0.66rem;
    }

    .header-contact {
        display: none;
    }

    .primary-menu {
        width: min(100%, 520px);
    }

    .mobile-menu-contact {
        grid-template-columns: 1fr;
        width: min(100%, 520px);
    }

    .mobile-menu-social {
        width: min(100%, 520px);
    }

    .mobile-menu-contact__item {
        min-height: 72px;
    }

    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 46px;
        height: 46px;
    }

    .hero {
        min-height: clamp(660px, 82vh, 720px);
        min-height: clamp(660px, 82svh, 720px);
        touch-action: pan-y;
    }

    .hero__slide {
        background-position: center top;
    }

    .hero__controls {
        display: none;
    }

    .hero__dots {
        margin-top: 18px;
    }

    .hero__scroll {
        bottom: 24px;
    }

    .hero__inner {
        padding-top: 116px;
        padding-bottom: 68px;
    }

    .hero h1 {
        font-size: 2.55rem;
    }

    .hero__models {
        display: flex;
        min-height: 0;
        padding: 0;
        margin-top: 18px;
        font-size: 0.86rem;
    }

    .hero__lead {
        margin-top: 14px;
        font-size: 0.98rem;
    }

    .hero__specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 18px;
    }

    .hero__spec {
        min-height: 68px;
        padding: 10px;
    }

    .hero__spec + .hero__spec {
        border-left: 0;
    }

    .hero__spec:nth-child(2n) {
        border-left: 1px solid rgb(255 255 255 / 0.14);
    }

    .hero__spec:nth-child(n + 3) {
        border-top: 1px solid rgb(255 255 255 / 0.14);
    }

    .hero__spec span {
        font-size: 0.64rem;
    }

    .hero__spec strong {
        font-size: 0.98rem;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        margin-top: 22px;
    }

    .button,
    .search-form__submit {
        width: 100%;
    }

    .page-section {
        padding-block: 44px;
    }

    .about-intro {
        padding-block: 48px;
    }

    .about-intro__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-intro__media {
        display: none;
    }

    .about-intro h2 {
        font-size: 1.9rem;
    }

    .models-section {
        padding-block: 48px;
        background:
            radial-gradient(ellipse at 50% 0, rgb(255 255 255 / 0.09), transparent 34%),
            linear-gradient(180deg, #171a1f 0 330px, rgb(23 26 31 / 0.78) 410px, rgb(23 26 31 / 0.34) 520px, rgb(255 255 255 / 0.86) 680px, #ffffff 790px),
            #ffffff;
    }

    .models-section::before {
        height: 640px;
    }

    .models-section::after {
        top: 330px;
        height: 430px;
    }

    .models-section__inner {
        width: min(100% - 32px, 1680px);
    }

    .models-section__header h2 {
        font-size: 1.9rem;
    }

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

    .model-card {
        min-height: 300px;
    }

    .model-card__media {
        min-height: 170px;
        padding: 20px 18px 0;
    }

    .model-card__body {
        padding: 14px 18px 22px;
    }

    .dealer-cta {
        min-height: 380px;
        background-attachment: scroll;
    }

    .dealer-cta::before {
        inset: 16px;
    }

    .dealer-cta h2 {
        font-size: 2rem;
    }

    .dealer-cta p {
        font-size: 1rem;
    }

    .why-us {
        padding-block: 56px;
    }

    .why-us__header h2 {
        font-size: 1.9rem;
    }

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

    .why-us__item {
        min-height: 220px;
        padding: 24px 20px;
    }

    .why-us__item + .why-us__item {
        border-left: 0;
    }

    .why-us__item:nth-child(2n) {
        border-left: 1px solid rgb(18 18 18 / 0.1);
    }

    .why-us__item:nth-child(n + 3) {
        border-top: 1px solid rgb(18 18 18 / 0.1);
    }

    .why-us__item h3 {
        margin-top: 34px;
    }

    .why-us__strip {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        min-height: 300px;
    }

    .contact-cta__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-cta__content h2 {
        font-size: 1.8rem;
    }

    .contact-cta__button {
        justify-self: start;
    }

    .service-section {
        padding-block: 56px;
    }

    .service-section__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .service-section__content h2 {
        font-size: 1.9rem;
    }

    .service-section__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 0;
        padding: 24px;
    }

    .process-strip__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        min-height: 0;
        padding-block: 54px;
    }

    .process-strip__header h2 {
        font-size: 1.9rem;
    }

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

    .process-step {
        min-height: 172px;
        padding: 22px 20px;
    }

    .process-step + .process-step {
        border-left: 0;
    }

    .process-step:nth-child(2n) {
        border-left: 1px solid rgb(255 255 255 / 0.14);
    }

    .process-step:nth-child(n + 3) {
        border-top: 1px solid rgb(255 255 255 / 0.14);
    }

    .contact-section {
        padding-block: 32px;
    }

    .contact-section__inner {
        grid-template-columns: 1fr;
    }

    .contact-section__panel {
        min-height: 0;
        padding: 32px 24px;
    }

    .contact-section__brand {
        margin-bottom: 42px;
    }

    .contact-section__panel h2 {
        font-size: 1.9rem;
    }

    .contact-section__details {
        grid-template-columns: 1fr;
    }

    .contact-section__detail {
        grid-column: auto;
        grid-template-columns: 38px minmax(0, 1fr);
        padding-inline: 18px;
    }

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

    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .contact-form__field textarea {
        min-height: 150px;
    }

    .contact-form__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .search-form {
        flex-direction: column;
    }

    .site-main > .page-section:has(.home-seo-content) {
        width: 100%;
        padding-block: 28px;
    }

    .home-seo-content {
        width: min(100% - 32px, 680px);
        margin-block: 0;
        padding-block: 28px 30px;
    }

    .home-seo-content__hero,
    .home-seo-content__showcase,
    .home-seo-content__details {
        grid-template-columns: 1fr;
    }

    .home-seo-content__hero {
        gap: 22px;
    }

    .home-seo-content p {
        font-size: 0.94rem;
        line-height: 1.68;
    }

    .home-seo-content h2 {
        margin-bottom: 16px;
        font-size: 1.78rem;
    }

    .home-seo-content__lead {
        font-size: 0.98rem;
    }

    .home-seo-content__feature {
        min-height: 0;
    }

    .home-seo-content__feature img {
        min-height: 230px;
        aspect-ratio: 16 / 10;
    }

    .home-seo-content__proof {
        grid-template-columns: 1fr;
    }

    .home-seo-content__proof article {
        min-height: 0;
        padding: 20px;
    }

    .home-seo-content__proof article + article {
        border-top: 1px solid rgb(18 18 18 / 0.1);
        border-left: 0;
    }

    .home-seo-content__gallery {
        gap: 8px;
    }

    .home-seo-content__photo img {
        aspect-ratio: 16 / 10;
    }

    .home-seo-content__video {
        display: none;
    }

    .home-seo-content__details article {
        padding: 22px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-block: 56px 48px;
    }

    .site-footer__nav ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .site-footer__bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        min-height: 86px;
    }
}

@media (max-width: 520px) {
    .hero {
        min-height: clamp(620px, 80vh, 680px);
        min-height: clamp(620px, 80svh, 680px);
    }

    .hero__inner {
        padding-top: 108px;
        padding-bottom: 58px;
    }

    .hero h1 {
        font-size: 2.28rem;
    }

    .page-title,
    .entry__title {
        font-size: 2rem;
    }

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

    .models-section {
        background:
            radial-gradient(ellipse at 50% 0, rgb(255 255 255 / 0.09), transparent 34%),
            linear-gradient(180deg, #171a1f 0 260px, rgb(23 26 31 / 0.78) 340px, rgb(23 26 31 / 0.34) 440px, rgb(255 255 255 / 0.86) 600px, #ffffff 710px),
            #ffffff;
    }

    .models-section::before {
        height: 520px;
    }

    .models-section::after {
        top: 260px;
        height: 390px;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .why-us__item,
    .why-us__item:nth-child(2n) {
        border-left: 0;
    }

    .why-us__item + .why-us__item {
        border-top: 1px solid rgb(18 18 18 / 0.1);
    }

    .process-strip__steps {
        grid-template-columns: 1fr;
    }

    .process-step,
    .process-step:nth-child(2n) {
        border-left: 0;
    }

    .process-step + .process-step {
        border-top: 1px solid rgb(255 255 255 / 0.14);
    }

    .site-main > .page-section:has(.home-seo-content) {
        padding-block: 22px;
    }

    .home-seo-content {
        width: min(100% - 28px, 560px);
        padding-block: 24px 26px;
    }

    .home-seo-content p {
        font-size: 0.91rem;
        line-height: 1.64;
    }

    .home-seo-content h2 {
        font-size: 1.52rem;
    }

    .home-seo-content h3 {
        font-size: 1.12rem;
    }

    .home-seo-content__actions {
        flex-direction: column;
    }

    .home-seo-content__actions a {
        width: 100%;
    }

    .home-seo-content__gallery {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .home-seo-content__video {
        width: min(58vw, 205px);
    }
}
