:root {
    --esa-ink: #0b0c0e;
    --esa-ink-2: #14161a;
    --esa-ink-3: #23262b;
    --esa-paper: #f5f1e8;
    --esa-paper-2: #e9e4da;
    --esa-white: #fffffb;
    --esa-muted: #6d6d69;
    --esa-line: rgba(11, 12, 14, .12);
    --esa-yellow: #f5c400;
    --esa-yellow-2: #ffd83d;
    --esa-green: #22c55e;
    --esa-red: #b42318;
    --esa-radius-sm: 12px;
    --esa-radius-md: 22px;
    --esa-radius-lg: 30px;
    --esa-shadow: 0 24px 70px rgba(0, 0, 0, .14);
    --esa-container: 1200px;
}

[x-cloak] {
    display: none !important;
}

html {
    scroll-padding-top: 92px;
}

.esa-body {
    color: var(--esa-ink);
    background: var(--esa-paper);
    -webkit-font-smoothing: antialiased;
}

.esa-body.menu-open {
    overflow: hidden;
}

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

.esa-section {
    padding: clamp(72px, 8vw, 112px) 0;
}

.esa-dark {
    color: var(--esa-white);
    background: var(--esa-ink);
}

.esa-grid-bg {
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 70px 70px;
}

.site-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 42px 42px;
}

.site-noise {
    background-image: url('/textures/grain.svg');
    background-size: 200px;
    background-blend-mode: multiply;
}

.product-lift {
    filter: drop-shadow(0 24px 32px rgba(10, 10, 10, .22));
}

.esa-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 850;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

.esa-button svg {
    width: 18px;
    height: 18px;
}

.esa-button-primary {
    color: var(--esa-ink);
    background: var(--esa-yellow);
    box-shadow: 0 12px 30px rgba(245, 196, 0, .16);
}

.esa-button-primary:hover {
    background: var(--esa-yellow-2);
    box-shadow: 0 16px 36px rgba(245, 196, 0, .25);
}

.esa-button-dark {
    color: var(--esa-white);
    background: var(--esa-ink);
}

.esa-button-dark:hover {
    background: #272a30;
}

.esa-button-ghost {
    color: var(--esa-white);
    border-color: rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .04);
}

.esa-button-ghost:hover {
    border-color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .08);
}

.esa-button-lg {
    min-height: 58px;
    padding-inline: 27px;
}

.esa-button-sm {
    min-height: 44px;
    padding: 10px 17px;
    font-size: 13px;
}

.esa-button-block {
    width: 100%;
}

.esa-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .68);
}

.esa-eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 99px;
    background: var(--esa-yellow);
}

.esa-eyebrow-dark {
    color: var(--esa-muted);
}

.esa-title {
    margin: 0;
    font-size: clamp(42px, 4.6vw, 70px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 900;
}

.esa-title em,
.esa-hero-title em {
    color: var(--esa-yellow);
    font-style: normal;
}

.esa-section-heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 360px);
    gap: clamp(28px, 5vw, 70px);
    align-items: end;
    margin-bottom: 58px;
}

.esa-section-heading p {
    margin: 0 0 5px;
    color: var(--esa-muted);
    line-height: 1.75;
}

.esa-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    color: var(--esa-white);
    transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}

.esa-header.is-scrolled,
.esa-header.is-open {
    color: var(--esa-ink);
    background: rgba(245, 241, 232, .94);
    box-shadow: 0 1px 0 rgba(11, 12, 14, .1);
    backdrop-filter: blur(16px);
}

.esa-nav-wrap {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.esa-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
}

.esa-brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
}

.esa-brand-mark svg {
    width: 100%;
    height: 100%;
    fill: var(--esa-yellow);
}

.esa-brand-drop {
    fill: var(--esa-ink);
}

.esa-brand-copy {
    display: flex;
    flex-direction: column;
    line-height: .94;
    letter-spacing: .06em;
}

.esa-brand-copy strong {
    font-size: 15px;
    font-weight: 950;
}

.esa-brand-copy small {
    margin-top: 5px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .2em;
    opacity: .72;
}

.esa-primary-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.esa-primary-nav a {
    position: relative;
    font-size: 14px;
    font-weight: 750;
    opacity: .83;
}

.esa-primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 2px;
    background: var(--esa-yellow);
    transition: right .25s ease;
}

.esa-primary-nav a:hover::after,
.esa-primary-nav a:focus-visible::after {
    right: 0;
}

.esa-primary-nav a:hover {
    opacity: 1;
}

.esa-menu-toggle {
    display: none;
    margin-left: auto;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.esa-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

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

.esa-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

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

.esa-cart-link {
    position: relative;
}

.esa-cart-count {
    min-width: 20px;
    height: 20px;
    padding-inline: 5px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--esa-yellow);
    background: var(--esa-ink);
    font-size: 11px;
    font-weight: 900;
}

.esa-hero {
    position: relative;
    min-height: 850px;
    padding: 150px 0 64px;
    overflow: hidden;
    color: var(--esa-white);
    background:
        linear-gradient(90deg, rgba(11, 12, 14, .98) 0%, rgba(11, 12, 14, .86) 35%, rgba(11, 12, 14, .42) 62%, rgba(11, 12, 14, .2) 100%),
        url('/images/hero-garage-background.png') center right / cover no-repeat,
        var(--esa-ink);
}

.esa-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 12, 14, .34) 0%, rgba(11, 12, 14, .08) 42%, rgba(11, 12, 14, .68) 100%),
        radial-gradient(circle at 12% 50%, rgba(245, 196, 0, .12), transparent 34%);
    pointer-events: none;
}

.esa-hero-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.esa-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
    gap: 66px;
    align-items: center;
}

.esa-hero-title {
    margin: 0;
    max-width: 680px;
    font-size: clamp(48px, 5.2vw, 82px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 900;
}

.esa-hero-lead {
    max-width: 600px;
    margin: 28px 0 0;
    font-size: 19px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .68);
}

.esa-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 36px;
}

.esa-hero-proof {
    margin-top: 48px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.esa-hero-proof div {
    display: flex;
    flex-direction: column;
}

.esa-hero-proof strong {
    font-size: 15px;
}

.esa-hero-proof span {
    margin-top: 3px;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
}

.esa-hero-visual {
    display: none;
}

.esa-garage-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--esa-radius-lg);
    background: #111317;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .42);
    transform: rotate(1.2deg);
}

.esa-garage-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.esa-garage-topline {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    color: rgba(255, 255, 255, .58);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 9px;
    font-weight: 800;
}

.esa-garage-art {
    width: 100%;
    aspect-ratio: 760 / 620;
}

.esa-garage-caption {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px 23px;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.esa-caption-index {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--esa-ink);
    background: var(--esa-yellow);
    font-weight: 950;
    font-size: 12px;
}

.esa-garage-caption div {
    display: flex;
    flex-direction: column;
}

.esa-garage-caption strong {
    font-size: 14px;
}

.esa-garage-caption small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .5);
}

.esa-visual-badge {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 17px;
    background: rgba(19, 21, 25, .9);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
    backdrop-filter: blur(14px);
}

.esa-visual-badge-top {
    top: 12%;
    left: -45px;
}

.esa-visual-badge-bottom {
    right: -36px;
    bottom: 12%;
}

.esa-visual-badge > span:last-child {
    display: flex;
    flex-direction: column;
}

.esa-visual-badge strong {
    font-size: 12px;
}

.esa-visual-badge small {
    color: rgba(255, 255, 255, .5);
    font-size: 10px;
}

.esa-badge-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--esa-ink);
    background: var(--esa-yellow);
    font-size: 17px;
    font-weight: 950;
}

.esa-mini-ring {
    width: 43px;
    height: 43px;
    display: grid;
    place-content: center;
    border: 2px solid var(--esa-yellow);
    border-radius: 50%;
    text-align: center;
    line-height: .9;
}

.esa-mini-ring b {
    font-size: 13px;
}

.esa-mini-ring small {
    font-size: 7px;
    letter-spacing: .1em;
}

.esa-marquee {
    position: relative;
    z-index: 3;
    width: calc(100% + 40px);
    margin: 66px 0 -64px -20px;
    overflow: hidden;
    color: var(--esa-ink);
    background: var(--esa-yellow);
    transform: rotate(-1deg);
}

.esa-marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 15px 0;
    animation: esa-marquee 24s linear infinite;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .13em;
}

.esa-marquee-track i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--esa-ink);
}

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

.esa-trust-strip {
    padding: 43px 0;
    background: var(--esa-paper-2);
    border-bottom: 1px solid var(--esa-line);
}

.esa-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.esa-trust-item {
    display: flex;
    gap: 17px;
    padding: 4px 28px;
    border-right: 1px solid var(--esa-line);
}

.esa-trust-item:first-child {
    padding-left: 0;
}

.esa-trust-item:last-child {
    border: 0;
    padding-right: 0;
}

.esa-trust-number {
    color: #a5a29b;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
}

.esa-trust-item strong {
    display: block;
    font-size: 14px;
}

.esa-trust-item p {
    margin: 3px 0 0;
    color: var(--esa-muted);
    font-size: 12px;
}

.esa-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: 16px;
}

.esa-service-card {
    position: relative;
    min-height: 355px;
    display: flex;
    flex-direction: column;
    padding: 27px;
    border: 1px solid var(--esa-line);
    border-radius: var(--esa-radius-md);
    background: rgba(255, 255, 255, .46);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.esa-service-card:hover {
    transform: translateY(-7px);
    background: var(--esa-white);
    box-shadow: var(--esa-shadow);
}

.esa-service-card.is-featured {
    color: var(--esa-white);
    background: var(--esa-ink);
    border-color: var(--esa-ink);
}

.esa-service-card.is-featured:hover {
    background: #16181c;
}

.esa-service-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 7px 10px;
    border-radius: 99px;
    color: var(--esa-ink);
    background: var(--esa-yellow);
    text-transform: uppercase;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .12em;
}

.esa-service-icon {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    margin-bottom: 37px;
    border-radius: 15px;
    color: var(--esa-ink);
    background: var(--esa-yellow);
}

.esa-service-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.esa-service-title-row h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -.025em;
    font-weight: 850;
}

.esa-service-title-row > span {
    flex: 0 0 auto;
    color: #8b8b87;
    font-size: 10px;
    font-weight: 800;
}

.esa-service-card.is-featured .esa-service-title-row > span {
    color: rgba(255, 255, 255, .45);
}

.esa-service-card p {
    margin: 17px 0 0;
    color: var(--esa-muted);
    font-size: 14px;
}

.esa-service-card.is-featured p {
    color: rgba(255, 255, 255, .56);
}

.esa-service-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 30px;
}

.esa-service-footer strong {
    font-size: 15px;
}

.esa-text-link {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-weight: 850;
}

.esa-text-link span {
    margin-left: 3px;
    color: var(--esa-yellow);
}

.esa-process {
    position: relative;
    overflow: hidden;
}

.esa-process::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -330px;
    bottom: -310px;
    border: 1px solid rgba(245, 196, 0, .2);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(245, 196, 0, .04), 0 0 0 140px rgba(245, 196, 0, .025);
}

.esa-process-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(48px, 8vw, 100px);
    align-items: start;
}

.esa-process-intro {
    position: sticky;
    top: 130px;
}

.esa-process-intro p {
    max-width: 430px;
    margin: 26px 0 35px;
    color: rgba(255, 255, 255, .58);
    line-height: 1.75;
}

.esa-process-steps {
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.esa-process-step {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.esa-process-step > span {
    color: var(--esa-yellow);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .18em;
}

.esa-process-step h3 {
    margin: 0;
    font-size: 27px;
    letter-spacing: -.035em;
    font-weight: 850;
}

.esa-process-step p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .5);
}

.esa-products-section {
    background: #ede8de;
}

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

.esa-product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--esa-line);
    border-radius: var(--esa-radius-md);
    background: var(--esa-paper);
    transition: transform .25s ease, box-shadow .25s ease;
}

.esa-product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--esa-shadow);
}

.esa-product-visual {
    position: relative;
    min-height: 246px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 251, .32), rgba(11, 12, 14, .04)),
        #d9d4ca;
}

.esa-product-visual::before {
    content: "";
    position: absolute;
    width: 172px;
    height: 172px;
    border-radius: 50%;
    background: rgba(255, 255, 251, .3);
    box-shadow: 0 18px 42px rgba(11, 12, 14, .08);
}

.esa-product-visual picture,
.esa-product-visual img,
.esa-product-visual .esa-product-empty {
    position: relative;
    z-index: 2;
}

.esa-product-visual picture {
    width: min(72%, 188px);
    height: 166px;
    display: grid;
    place-items: center;
}

.esa-product-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
    border-radius: 18px;
    background: rgba(255, 255, 251, .92);
    box-shadow:
        0 18px 30px rgba(11, 12, 14, .16),
        0 0 0 1px rgba(255, 255, 251, .58);
    filter: none;
    transition: transform .35s ease;
}

.esa-product-visual > img {
    width: min(72%, 188px);
    height: 166px;
}

.esa-product-card:hover .esa-product-visual img {
    transform: scale(1.05);
}

.esa-product-chip {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 18px;
    padding: 7px 10px;
    border-radius: 99px;
    color: var(--esa-white);
    background: rgba(11, 12, 14, .82);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.esa-product-featured {
    color: var(--esa-ink);
    background: var(--esa-yellow);
}

.esa-product-brand {
    position: absolute;
    z-index: 3;
    left: 18px;
    top: 18px;
    max-width: calc(100% - 140px);
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(245, 241, 232, .78);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .18em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.esa-product-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 23px;
}

.esa-product-copy > a {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.esa-product-category {
    color: #85827b;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .14em;
}

.esa-product-copy h3 {
    min-height: 52px;
    margin: 8px 0 0;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -.025em;
    font-weight: 850;
}

.esa-product-copy p {
    min-height: 48px;
    margin: 12px 0 20px;
    color: var(--esa-muted);
    font-size: 13px;
}

.esa-product-card-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--esa-line);
}

.esa-product-card-foot strong {
    font-size: 17px;
}

.esa-product-buy {
    min-height: 38px;
    padding: 0 15px;
    border: 0;
    border-radius: 999px;
    color: var(--esa-ink);
    background: var(--esa-yellow);
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    transition: transform .2s ease, background .2s ease;
}

.esa-product-buy:hover {
    background: var(--esa-yellow-2);
    transform: translateY(-1px);
}

.esa-brands {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 48px;
    padding: 27px 0 0;
    border-top: 1px solid var(--esa-line);
}

.esa-brands > span {
    flex: 0 0 auto;
    color: var(--esa-muted);
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .13em;
}

.esa-brands > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.esa-brands b {
    font-size: 13px;
    letter-spacing: .03em;
    opacity: .5;
    text-transform: uppercase;
}

.esa-quote {
    background: var(--esa-yellow);
}

.esa-quote-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(40px, 7vw, 90px);
    align-items: center;
}

.esa-quote .esa-eyebrow-dark {
    color: rgba(11, 12, 14, .62);
}

.esa-quote .esa-eyebrow-dark::before {
    background: var(--esa-ink);
}

.esa-quote .esa-title em {
    color: rgba(11, 12, 14, .38);
}

.esa-quote-copy > p {
    max-width: 500px;
    margin: 27px 0;
    color: rgba(11, 12, 14, .62);
    font-size: 17px;
}

.esa-contact-card {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 12px;
}

.esa-contact-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--esa-yellow);
    background: var(--esa-ink);
}

.esa-contact-card > span:last-child {
    display: flex;
    flex-direction: column;
}

.esa-contact-card small {
    color: rgba(11, 12, 14, .55);
    font-size: 11px;
}

.esa-contact-card strong {
    font-size: 16px;
}

.esa-quote-form {
    padding: 31px;
    border-radius: 28px;
    background: var(--esa-paper);
    box-shadow: 0 30px 80px rgba(65, 49, 0, .2);
}

.esa-form-head {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--esa-line);
}

.esa-form-head span:first-child {
    font-weight: 900;
}

.esa-form-head span:last-child {
    color: var(--esa-muted);
    font-size: 11px;
}

.esa-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
    margin: 24px 0;
}

.esa-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.esa-field-full {
    grid-column: 1 / -1;
}

.esa-field > span {
    font-size: 11px;
    font-weight: 850;
}

.esa-field > span em {
    color: #9b9891;
    font-style: normal;
    font-weight: 500;
}

.esa-field input,
.esa-field select,
.esa-field textarea,
.esa-input {
    width: 100%;
    border: 1px solid #d8d3c8;
    border-radius: 12px;
    padding: 13px 14px;
    color: var(--esa-ink);
    background: rgba(255, 255, 255, .7);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.esa-field textarea {
    resize: vertical;
}

.esa-field input:focus,
.esa-field select:focus,
.esa-field textarea:focus,
.esa-input:focus {
    border-color: #a88400;
    box-shadow: 0 0 0 4px rgba(245, 196, 0, .18);
}

.esa-filter-form .esa-input.pl-9 {
    padding-left: 2.25rem;
}

.esa-form-note {
    margin: 13px 0 0;
    color: #8a867e;
    text-align: center;
    font-size: 10px;
}

.esa-faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(48px, 8vw, 100px);
}

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

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

.esa-faq-item summary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 27px 0;
    cursor: pointer;
    list-style: none;
    font-weight: 850;
    font-size: 17px;
}

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

.esa-faq-item summary i {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.esa-faq-item summary i::before,
.esa-faq-item summary i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15px;
    height: 2px;
    background: var(--esa-ink);
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.esa-faq-item summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

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

.esa-faq-answer {
    padding: 0 42px 26px 0;
}

.esa-faq-answer p {
    margin: 0;
    color: var(--esa-muted);
    line-height: 1.75;
}

.esa-final-cta {
    padding: 90px 0;
}

.esa-final-cta-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.esa-final-cta-inner > div > span {
    display: block;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
}

.esa-page-hero {
    padding: 142px 0 64px;
    color: var(--esa-white);
    background: var(--esa-ink);
    overflow: hidden;
}

.esa-page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr);
    gap: 48px;
    align-items: end;
}

.esa-page-hero p {
    color: rgba(255, 255, 255, .65);
    max-width: 650px;
}

.esa-page-top {
    padding-top: 126px;
}

.esa-filter-form {
    background: var(--esa-white);
    border: 1px solid var(--esa-line);
    border-radius: var(--esa-radius-md);
    box-shadow: var(--esa-shadow);
}

.esa-panel {
    border: 1px solid var(--esa-line);
    border-radius: var(--esa-radius-md);
    background: var(--esa-white);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .08);
}

.esa-panel-dark {
    color: var(--esa-white);
    background: #111317;
}

.esa-product-detail-visual {
    background: #d9d4ca;
}

.esa-footer {
    padding: 70px 0 96px;
    color: rgba(255, 255, 255, .66);
    background: #07080a;
}

.esa-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, .7fr);
    gap: 55px;
}

.esa-footer-brand p {
    max-width: 300px;
    margin: 20px 0 0;
    font-size: 13px;
}

.esa-footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
}

.esa-footer-column strong {
    margin-bottom: 8px;
    color: var(--esa-white);
    font-size: 12px;
}

.esa-footer-column a:hover {
    color: var(--esa-yellow);
}

.esa-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 56px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 10px;
}

.esa-reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: esa-reveal .65s ease forwards;
}

.esa-reveal-delay {
    animation-delay: .12s;
}

@keyframes esa-reveal {
    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1180px) {
    .esa-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1080px) {
    .esa-nav-cta {
        display: none;
    }

    .esa-hero-grid {
        gap: 38px;
    }

    .esa-visual-badge-top {
        left: -15px;
    }

    .esa-visual-badge-bottom {
        right: -8px;
    }

    .esa-footer-grid {
        grid-template-columns: 1.3fr repeat(3, .8fr);
        gap: 30px;
    }
}

@media (max-width: 820px) {
    .esa-container {
        width: min(calc(100% - 30px), var(--esa-container));
    }

    .esa-header {
        background: rgba(11, 12, 14, .9);
        backdrop-filter: blur(16px);
    }

    .esa-nav-wrap {
        min-height: 72px;
    }

    .esa-menu-toggle {
        display: block;
    }

    .esa-primary-nav {
        position: fixed;
        inset: 72px 0 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 35px 24px;
        color: var(--esa-ink);
        background: var(--esa-paper);
        transform: translateX(100%);
        transition: transform .28s ease;
    }

    .esa-primary-nav.is-open {
        transform: none;
    }

    .esa-primary-nav a {
        width: 100%;
        padding: 17px 0;
        border-bottom: 1px solid var(--esa-line);
        font-size: 22px;
    }

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

    .esa-hero {
        min-height: auto;
        padding-top: 120px;
        background:
            linear-gradient(90deg, rgba(11, 12, 14, .98) 0%, rgba(11, 12, 14, .9) 56%, rgba(11, 12, 14, .65) 100%),
            url('/images/hero-garage-background.png') left center / cover no-repeat,
            var(--esa-ink);
    }

    .esa-hero-grid,
    .esa-section-heading,
    .esa-process-grid,
    .esa-quote-grid,
    .esa-faq-grid,
    .esa-page-hero-grid {
        grid-template-columns: 1fr;
    }

    .esa-hero-copy {
        max-width: 670px;
    }

    .esa-hero-visual {
        max-width: 680px;
        margin: 35px auto 0;
    }

    .esa-marquee {
        margin-top: 90px;
    }

    .esa-trust-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .esa-trust-item,
    .esa-trust-item:first-child,
    .esa-trust-item:last-child {
        padding: 0 0 25px;
        border-right: 0;
        border-bottom: 1px solid var(--esa-line);
    }

    .esa-trust-item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .esa-process-intro {
        position: static;
    }

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

    .esa-brands {
        align-items: flex-start;
        flex-direction: column;
    }

    .esa-final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .esa-footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .esa-footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 580px) {
    .esa-brand-mark {
        width: 37px;
        height: 37px;
    }

    .esa-brand-copy strong {
        font-size: 13px;
    }

    .esa-brand-copy small {
        font-size: 8px;
    }

    .esa-hero {
        padding-top: 108px;
    }

    .esa-hero-title {
        font-size: clamp(45px, 14vw, 62px);
    }

    .esa-hero-lead {
        font-size: 16px;
    }

    .esa-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .esa-hero-actions .esa-button {
        width: 100%;
    }

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

    .esa-hero-proof div:last-child {
        grid-column: 1 / -1;
    }

    .esa-visual-badge {
        display: none;
    }

    .esa-garage-card {
        border-radius: 22px;
        transform: none;
    }

    .esa-garage-topline {
        height: 42px;
        padding-inline: 16px;
    }

    .esa-garage-caption {
        padding: 15px 16px 17px;
    }

    .esa-caption-index {
        width: 36px;
        height: 36px;
    }

    .esa-garage-caption small {
        font-size: 10px;
    }

    .esa-title {
        font-size: clamp(39px, 12vw, 54px);
    }

    .esa-process-step {
        grid-template-columns: 48px 1fr;
        gap: 15px;
    }

    .esa-products-grid {
        grid-template-columns: 1fr;
    }

    .esa-filter-form {
        display: grid !important;
        grid-template-columns: 1fr;
    }

    .esa-filter-form > * {
        width: 100%;
    }

    .esa-product-visual {
        min-height: 230px;
    }

    .esa-product-visual picture,
    .esa-product-visual > img {
        width: min(68%, 178px);
        height: 158px;
    }

    .esa-quote-form {
        padding: 23px 18px;
        border-radius: 22px;
    }

    .esa-form-head {
        flex-direction: column;
        gap: 3px;
    }

    .esa-form-grid {
        grid-template-columns: 1fr;
    }

    .esa-field-full {
        grid-column: auto;
    }

    .esa-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .esa-footer-brand {
        grid-column: span 2;
    }

    .esa-footer-grid .esa-footer-column:last-child {
        grid-column: span 2;
    }

    .esa-footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .esa-reveal {
        opacity: 1;
        transform: none;
    }
}
