@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');



:root {
    --red: #f90000;
    --ink: #111;
    --muted: #898989;
    --line: #d6d6d6;
    --paper: #fafafa;
    --gray: #f5f5f5;
    --max: 1920px;
}

/* Stable single-row review carousel. The previous two-row grid caused
   clipped slides when Swiper recalculated its dimensions on mobile. */
.reviews {
    height: 1080px;
}

.reviews-swiper {
    top: 360px;
    left: 50%;
    width: min(1180px, calc(100% - 160px));
    height: 520px;
    transform: translateX(-50%);
}

.review-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    background: #fff;
    border: 1px solid #e4e4e4;
}

.review-visual {
    height: 225px;
    flex: 0 0 225px;
    overflow: hidden;
    background: #e9eaed;
}

.review-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.review-rating {
    color: var(--red);
    font-size: 18px;
    letter-spacing: 2px;
}

.review-quote {
    flex: 1;
    margin: 18px 0 22px;
    color: #333;
    font-size: 18px;
    line-height: 1.65;
    letter-spacing: -.8px;
}

.review-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: #777;
    font-size: 14px;
}

.review-meta strong {
    color: #111;
}

.review-meta em {
    margin-left: auto;
    color: var(--red);
    font-style: normal;
    font-weight: 600;
}

#reviews .review-pagination {
    bottom: 82px;
}

.car-card {
    cursor: pointer;
}

.car-card:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .reviews {
        height: auto;
        padding: 46px 11px 45px;
    }

    .reviews-swiper {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: calc((100vw - 24px) * 2.22);
        transform: none;
    }

    .reviews-swiper .swiper-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: auto !important;
        height: 100% !important;
    }

    .reviews-swiper .swiper-slide {
        width: auto !important;
        height: 100% !important;
        margin: 0 !important;
    }

    .review-card {
        min-height: 0;
    }

    .review-visual {
        height: 205px;
        flex-basis: 205px;
    }

    .review-content {
        padding: 22px 20px 20px;
    }

    .review-rating {
        font-size: 16px;
    }

    .review-quote {
        margin: 14px 0 18px;
        font-size: 16px;
        line-height: 1.55;
    }

    .review-meta {
        font-size: 13px;
    }

    #reviews .review-pagination {
        position: relative;
        left: auto;
        bottom: auto;
        margin: 22px auto 0;
        transform: none;
    }
}

/* Review reference layout: 2x2 cards on PC, 1x4 cards on mobile. */
.reviews {
    height: 1080px;
}

.reviews-swiper {
    top: 360px;
    left: 50%;
    width: min(1180px, calc(100% - 160px));
    height: 520px;
    transform: translateX(-50%);
}

.review-page {
    display: block;
    width: 100%;
    height: 100%;
}

.review-grid {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.review-card {
    display: flex;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    flex-direction: row;
    overflow: hidden;
    background: #fff;
    border: 0;
}

.review-visual {
    width: 40%;
    height: 100%;
    flex: 0 0 40%;
    overflow: hidden;
    background: #e9eaed;
}

.review-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    padding: 28px 34px 24px;
}

.review-rating {
    flex: 0 0 auto;
    color: var(--red);
    font-size: 16px;
    letter-spacing: 1px;
}

.review-quote {
    display: -webkit-box;
    flex: 1;
    margin: 20px 0 14px;
    overflow: hidden;
    color: #222;
    font-size: 18px;
    line-height: 1.42;
    letter-spacing: -.8px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.review-meta {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 7px;
    color: #777;
    font-size: 13px;
    white-space: nowrap;
}

.review-meta strong {
    color: #111;
    font-weight: 700;
}

.review-meta em {
    margin-left: 3px;
    color: #111;
    font-style: normal;
    font-weight: 700;
}

#reviews .review-pagination {
    left: 50%;
    bottom: 82px;
    width: auto;
    height: 5px;
    transform: translateX(-50%);
}

#reviews .review-pagination .swiper-pagination-bullet {
    width: 70px;
    height: 4px;
    margin: 0 5px !important;
    border-radius: 0;
    background: #d5d5d5;
    opacity: 1;
}

#reviews .review-pagination .swiper-pagination-bullet-active {
    background: var(--red);
}

@media (max-width: 767px) {
    .reviews {
        height: auto;
        padding: 70px 12px 45px;
    }

    .reviews-heading {
        margin: 0 7px 23px;
    }

    .reviews-swiper {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: calc((100vw - 24px) * 2.22);
        transform: none;
    }

    .review-page {
        height: 100%;
    }

    .review-grid {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: repeat(4, minmax(0, 1fr));
        gap: 5px;
    }

    .review-card {
        height: 100%;
    }

    .review-visual {
        width: 32%;
        flex-basis: 32%;
    }

    .review-content {
        padding: 14px 12px 12px;
    }

    .review-rating {
        font-size: 11px;
        letter-spacing: .5px;
    }

    .review-quote {
        margin: 8px 0 7px;
        font-size: 12px;
        line-height: 1.35;
        letter-spacing: -.55px;
        -webkit-line-clamp: 4;
    }

    .review-meta {
        gap: 5px;
        font-size: 10px;
    }

    #reviews .review-pagination {
        position: relative;
        left: auto;
        bottom: auto;
        margin: 22px auto 0;
        transform: none;
    }

    #reviews .review-pagination .swiper-pagination-bullet {
        width: 52px;
        height: 3px;
        margin: 0 3px !important;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: 'Pretendard', 'Noto Sans KR', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

strong,
b {
    font-family: inherit;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    height: 100px;
    background: var(--red);
    color: #fff;
    position: fixed;
    inset: 0 0 auto;
    z-index: 10;
}

main {
    padding-top: 100px;
}

.header-inner {
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: auto;
    display: flex;
    align-items: center;
    padding: 0 192px;
}

.brand {
    width: 97px;
    height: 72px;
    display: flex;
    align-items: center;
    flex: none;
}

.brand img {
    display: block;
    width: 97px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 29px;
    margin-left: auto;
}

.main-nav a {
    min-width: 77px;
    padding: 5px 10px;
    font-size: 15px;
    letter-spacing: -.75px;
    text-align: center;
    white-space: nowrap;
    transition: opacity .2s;
}

.main-nav a:hover {
    opacity: .65;
}

.header-cta {
    margin-left: 30px;
    padding: 10px 50px;
    background: #fff;
    color: var(--red);
    font-size: 20px;
    font-weight: 600;
    box-shadow: 5px 5px 2.5px rgba(140, 1, 1, .65);
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    color: #fff;
    padding: 6px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}

.section-dark {
    color: #fff;
    background: #010101;
}

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

.section-white {
    background: #fff;
}

.section-gray {
    background: var(--gray);
}

.hero {
    height: min(945px, calc(100vh - 100px));
    position: relative;
    isolation: isolate;
}

.hero-swiper {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: #010101;
}

.hero-slide {
    background-color: #010101;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-slide-01 {
    background-image: url('../img/tagona/main-banner-1.png');
}

.hero-slide-02 {
    background-image: url('../img/tagona/main-banner-2.png');
    background-position: center center;
}

.hero-slide-03 {
    background-image: url('../img/tagona/main-banner-3.png');
    background-position: center center;
}

.hero-slide-04 {
    background-image: url('../img/tagona/main-banner-4.png');
    background-position: center center;
}

.hero-slide-05 {
    background-image: url('../img/tagona/main-banner-5.png');
    background-position: center center;
}

.hero-slide-06 {
    background-image: url('../img/tagona/main-banner-6.png');
    background-position: center center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .38), transparent 64%);
}

.hero-copy {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 19.27%;
    width: 771px;
    isolation: isolate;
    z-index: 1;
}

.hero-copy.is-reveal-ready {
    opacity: 0;
    translate: 0 32px;
    transition: opacity .9s ease, translate .9s cubic-bezier(.22, 1, .36, 1);
}

.hero-copy.is-reveal-ready.is-visible {
    opacity: 1;
    translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {

    .hero-copy.is-reveal-ready,
    .hero-copy.is-reveal-ready.is-visible {
        opacity: 1;
        translate: none;
        transition: none;
    }
}

.hero-copy::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -28px;
    right: -42px;
    bottom: -28px;
    left: -30px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .28) 72%, rgba(0, 0, 0, 0));
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    pointer-events: none;
}

.hero-title {
    font-family: inherit;
    font-weight: 600;
    font-size: 70px;
    line-height: 1.4;
    letter-spacing: -3.5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .42);
}

.hero-title p {
    margin: 0;
    white-space: nowrap;
}

.hero-title em {
    color: var(--red);
    font-style: normal;
    font-weight: 700;
}

.hero-subtitle {
    margin-top: 50px;
    color: #bbb;
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: -1.5px;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .55);
}

.hero-subtitle p {
    margin: 0;
}

.hero.hero-light .hero-copy::before {
    display: none;
}

.hero.hero-light .hero-title,
.hero.hero-light .hero-subtitle {
    filter: invert(1);
    text-shadow: none;
}

.hero.hero-light .hero-title em {
    filter: invert(1);
}

.mobile-only {
    display: none;
}

.pc-only {
    display: inline;
}

.hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    padding: 15px 55px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -1px;
    box-shadow: 5px 5px 2.5px rgba(0, 0, 0, .2);
}

.button-red {
    background: var(--red);
    color: #fff;
}

.button-light {
    background: rgba(255, 255, 255, .9);
    color: var(--red);
    border: 1px solid var(--red);
}

.scroll-hint {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 30px;
    letter-spacing: -1.5px;
    white-space: nowrap;
    animation: scroll-float 2s ease-in-out infinite;
}

.scroll-arrows {
    display: inline-flex;
    gap: 2px;
    color: #fff;
}

.scroll-arrows i {
    display: inline-block;
    font-style: normal;
    animation: scroll-arrow 1.35s ease-in-out infinite;
}

.scroll-arrows i:nth-child(2) {
    animation-delay: .13s;
}

.scroll-arrows i:nth-child(3) {
    animation-delay: .26s;
}

@keyframes scroll-arrow {

    0%,
    100% {
        opacity: .25;
        transform: translateY(-2px);
    }

    45%,
    65% {
        opacity: 1;
        transform: translateY(3px);
    }
}

@keyframes scroll-float {

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

    50% {
        transform: translate(-50%, 7px);
    }
}

@keyframes visitor-pin-float {

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

    50% {
        transform: translate(-50%, -68%);
    }
}

.content-column {
    position: relative;
}

.eyebrow {
    margin: 0;
    color: #b0b0b0;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 10px;
    text-transform: uppercase;
}

h2,
h3,
p {
    margin-top: 0;
}

h2 {
    font-family: 'Pretendard', 'Noto Serif KR', serif;
    font-weight: 700;
    letter-spacing: -2.5px;
}

h2 strong {
    color: var(--red);
    font-weight: 700;
}

.about {
    height: 1458px;
    position: relative;
}

.about-visual {
    position: absolute;
    left: calc(29.17% + 17px);
    top: 191px;
    width: 556px;
    height: 1028px;
    background: rgba(255, 255, 255, .8);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(255, 255, 255, .8);
}

.about-visual img {
    position: absolute;
    top: 235px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 300px;
    height: auto;
}

.about-points {
    position: absolute;
    left: 75px;
    bottom: 55px;
    z-index: 2;
    width: 405px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-points li {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 85px;
    font-family: inherit;
    font-size: 30px;
    letter-spacing: -1.5px;
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity .55s ease, transform .55s ease;
}

.about-points.is-revealed li {
    opacity: 1;
    transform: translateX(0);
}

.about-points.is-revealed li:nth-child(2) {
    transition-delay: .16s;
}

.about-points.is-revealed li:nth-child(3) {
    transition-delay: .32s;
}

.about-points li:not(:last-child) {
    border-bottom: 1px solid #d8d8d8;
}

.about-points span {
    width: 58px;
    color: var(--red);
    font-family: inherit;
}

.about-points b {
    color: #111;
    font-weight: 600;
    font-family: 'Pretendard', 'Noto Serif KR', serif;
}

.visual-line {
    display: none;
}

.about-content {
    position: absolute;
    top: 260px;
    left: calc(41.67% + 120px);
    width: 730px;
}

.about-content h2 {
    margin: 60px 0 40px;
    font-size: 50px;
    line-height: 1.4;
}

.about-content h2 span {
    color: #000;
}

.about-content h2 strong {
    color: var(--red);
}

.body-copy {
    color: #606060;
    font-size: 23px;
    line-height: 1.5;
    letter-spacing: -1.15px;
}

.body-copy p {
    margin: 0 0 40px;
}

.body-copy b {
    color: var(--red);
    font-weight: 700;
}

.body-copy strong {
    color: #111;
    font-weight: 600;
}

.thin-rule {
    height: 1px;
    background: #d0d0d0;
    width: 100%;
    margin: 0 0 40px;
}

.about-content h3 {
    font: 700 40px/1.4 'Pretendard', serif;
    letter-spacing: -2px;
    margin: 0 0 40px;
}

.promise-copy p {
    margin-bottom: 0;
}

.why {
    height: 1008px;
    position: relative;
}

.why-heading {
    position: absolute;
    top: 162px;
    left: calc(16.67% + 50px);
}

.why-heading h2 {
    margin: 78px 0 0;
    font-size: 50px;
    line-height: 1.4;
    white-space: nowrap;
}

.why-heading h2 strong {
    color: var(--red);
}

.reason-grid {
    position: absolute;
    left: calc(16.67% + 50px);
    top: 414px;
    display: grid;
    grid-template-columns: repeat(4, 273px);
    gap: 30px;
}

.reason-card {
    height: 432px;
    background: #fff;
    border: 2px solid var(--red);
    padding: 51px 43px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}

.reason-grid.is-revealed .reason-card {
    opacity: 1;
    transform: translateY(0);
}

.reason-grid.is-revealed .reason-card:nth-child(2) {
    transition-delay: .14s;
}

.reason-grid.is-revealed .reason-card:nth-child(3) {
    transition-delay: .28s;
}

.reason-grid.is-revealed .reason-card:nth-child(4) {
    transition-delay: .42s;
}

.card-number {
    color: var(--red);
    font: 600 50px/1 'MaruBuri', 'Noto Serif KR', serif;
}

.reason-card h3 {
    color: #1a1d23;
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: -1.5px;
    margin: 0 0 26px;
    font-weight: 600;
}

.reason-card p {
    color: #898989;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -1px;
    margin: 0;
    white-space: nowrap;
}

.process {
    height: 1328px;
    position: relative;
}

.process-copy {
    position: absolute;
    top: 156px;
    left: calc(16.67% + 50px);
}

.process-copy h2 {
    margin: 60px 0 62px;
    font-size: 50px;
    line-height: 1.4;
}

.process-list {
    position: absolute;
    top: 450px;
    left: 46.666667%;
    width: 653px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: flex;
    align-items: center;
    width: 100%;
    height: 154px;
    padding: 0 20px;
    margin-left: -20px;
    width: calc(100% + 20px);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color .25s ease, transform .25s ease;
}

.process-list li+li {
    border-top: 1px solid #d4d4d4;
}

.process-list li.is-active {
    background: rgba(255, 255, 255, .72);
    transform: translateX(5px);
}


.step-label {
    flex: 0 0 160px;
    color: var(--red);
    font: 400 30px 'MaruBuri', 'Noto Serif KR', serif;
    white-space: nowrap;
}

.step-icon {
    flex: 0 0 78px;
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.process-list li.is-active .step-icon {
    background: rgba(249, 0, 0, .05);
    box-shadow: 0 0 0 1px rgba(249, 0, 0, .18);
    transform: scale(1.06);
}


.step-copy {
    display: flex;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 42px;
    min-width: 0;
}

.step-copy strong {
    color: #111;
    font-size: 25px;
    letter-spacing: -1px;
}

.process-list li.is-active .step-copy strong {
    font-weight: 700;
}

.process-list li.is-active .step-label,
.process-list li.is-active .step-copy {
    transform: scale(1.06);
    transform-origin: left center;
}

.process-list li .step-label,
.process-list li .step-copy {
    transition: transform .35s ease;
}

.step-copy small {
    color: #858585;
    font-size: 17px;
    letter-spacing: -.7px;
    white-space: nowrap;
}

.process-image-wrap {
    position: absolute;
    top: 459px;
    left: calc(16.67% + 50px);
    width: 480px;
    height: 711px;
    overflow: hidden;
}

.process-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 47% center;
    filter: grayscale(.15);
    transition: opacity .28s ease;
}

.process-image-wrap.is-switching img {
    opacity: 0;
}

.image-caption {
    position: absolute;
    z-index: 1;
    bottom: 42px;
    left: 40px;
    color: #fff;
    font: 400 30px Georgia, 'Noto Serif KR', serif;
    letter-spacing: -1px;
    line-height: 1.5;
    display: none;
}

.image-caption b {
    color: var(--red);
}

.lineup {
    height: 1415px;
    position: relative;
    padding-top: 165px;
}

.lineup-panel {
    position: relative;
    width: 1405px;
    height: 1084px;
    margin: 0 auto;
    padding: 68px 112px 0;
    background: #f8f8f8;
}

.lineup-heading {
    margin: 0;
}

.lineup-heading .eyebrow {
    color: #b0b0b0;
}

.lineup-heading h2 {
    margin: 60px 0 0;
    font-size: 50px;
    line-height: 1.4;
}

.lineup-tabs {
    position: absolute;
    top: 169px;
    right: 112px;
    display: flex;
    gap: 10px;
}

.lineup-tabs button {
    width: 126px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--red);
    background: #fff;
    color: var(--red);
    font-size: 20px;
    font-weight: 600;
}

.lineup-tabs button.active {
    background: var(--red);
    color: #fff;
}

.lineup-swiper {
    position: absolute;
    top: 270px;
    left: 112px;
    width: 1180px;
    overflow: hidden;
}

.car-card {
    height: auto;
    min-width: 0;
    background: #fff;
    overflow: hidden;
}

.car-card.is-hidden {
    display: none !important;
}

.car-card>img {
    display: block;
    width: 100%;
    height: auto;
}

.car-image {
    position: relative;
    height: auto;
    aspect-ratio: 764 / 667;
    overflow: hidden;
    background: #ededed;
}

.car-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.car-badge {
    position: absolute;
    z-index: 1;
    top: 7.8%;
    left: 6%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40.2%;
    height: 13.7%;
    padding: 0;
    background: var(--red);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.car-badge.is-best {
    width: 26.7%;
}

.car-info {
    min-height: 254px;
    padding: 35px 33px 28px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.car-info h3 {
    margin: 0 0 6px;
    color: var(--red);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -1px;
    text-align: left;
}

.car-info p {
    margin: 0 0 15px;
    color: #656565;
    font-size: 16px;
    letter-spacing: -.8px;
    text-align: left;
}

.car-info p i {
    margin: 0 7px;
    font-style: normal;
}

.car-info strong {
    display: flex;
    align-items: baseline;
    justify-content: end;
    gap: 0;
    margin: 0 0 8px;
    color: #111;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -.8px;
    height: 40px;
}

.car-info strong em {
    margin: 0 7px;
    font-style: normal;
}

.car-info strong span {
    font-size: 14px;
    font-weight: 500;
}

.car-info strong b {
    font-size: 28px;
    font-weight: 600;
}

.car-info a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    margin-top: auto;
    border: 1px solid var(--red);
    color: var(--red);
    font-size: 20px;
    filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.2));
    background: #fff;
}

.lineup-progress {
    position: absolute;
    left: 112px;
    bottom: 90px;
    width: 953px;
    height: 4px;
    background: #fff;
}

.lineup-progress span {
    display: block;
    width: 33.333%;
    height: 100%;
    background: var(--red);
    transition: width .35s ease, transform .35s ease;
}

.lineup-arrow {
    position: absolute;
    bottom: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;

}

.lineup-arrow img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lineup-prev {
    right: 182px;
}

.lineup-next {
    right: 112px;
}

.lineup-arrow.swiper-button-disabled {
    opacity: 1;
}

.reviews {
    height: 1215px;
    position: relative;
    overflow: hidden;
    background: #f4f5f8;
    color: #111;
}

.reviews-backdrop {
    position: absolute;
    inset: 0;
    background: url('../img/tagona/review-bg.png') center / cover no-repeat;
    opacity: .18;
}

.reviews-heading {
    position: absolute;
    top: 162px;
    left: calc(16.67% + 50px);
}

.reviews-heading h2 {
    margin: 60px 0 0;
    font-size: 50px;
    line-height: 1.4;
}

.reviews-swiper {
    position: absolute;
    top: 450px;
    left: calc(16.67% + 50px);
    width: 1180px;
    height: 600px;
    overflow: hidden;
}

.review-card {
    width: auto;
    height: auto;
    min-height: 0;
    background: transparent;
    overflow: hidden;
}

.review-card img {
    display: block;
    width: 100%;
    height: auto;
}

#reviews .review-pagination {
    position: absolute;
    left: 50%;
    bottom: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    height: 5px;
    transform: translateX(-50%);
}

#reviews .review-pagination-bar {
    display: block;
    width: 70px;
    height: 4px;
    background: #d5d5d5;
    cursor: pointer;
}

#reviews .review-pagination-bar.is-active {
    background: var(--red);
}

.consultation {
    height: 1247px;
    position: relative;
    padding-top: 64px;
}

.consultation-panel {
    width: 1405px;
    height: 923px;
    margin: 0 auto;
    border: 4px solid #f8f8f8;
    background: #f7f7f7;
    position: relative;
    z-index: 1;
}

.consultation-intro {
    position: absolute;
    top: 90px;
    left: 112px;
    width: 536px;
}

.consultation-intro h2 {
    margin: 60px 0;
    font-size: 50px;
    line-height: 1.4;
}

.consultation-intro .intro-note {
    color: rgba(0, 0, 0, .7);
    font-size: 25px;
    line-height: 1.5;
    letter-spacing: -1.25px;
}

.quote-form {
    position: absolute;
    top: 80px;
    right: 0;
    width: 713px;
    height: 745px;
    padding: 87px 56px;
    background: #fff;
    z-index: 2;
    pointer-events: auto;
}

.form-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.form-row>label {
    flex: 0 0 120px;
    font-size: 20px;
    letter-spacing: -1px;
}

.form-row input:not([type=radio]),
.form-row textarea {
    flex: 1;
    height: 60px;
    border: 1px solid #e1e1e1;
    background: #f5f5f5;
    padding: 0 18px;
    outline: none;
}

.form-row textarea {
    height: 112px;
    resize: none;
    padding: 15px;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--red);
}

.quote-form input,
.quote-form textarea,
.quote-form button,
.quote-form label {
    pointer-events: auto;
    user-select: text;
    font-size: 18px;
}

.choice-row {
    display: flex;
    gap: 10px;
    flex: 1;
}

.choice-row label {
    flex: 1;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--red);
    color: var(--red);
    font-size: 20px;
    cursor: pointer;
}

.choice-row label.is-selected,
.choice-row label:has(input:checked) {
    background: var(--red);
    color: #fff;
}

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

.choice-row label:focus-within {
    outline: 1px solid var(--red);
    outline-offset: 2px;
}

.form-message {
    align-items: flex-start;
}

.form-message>label {
    padding-top: 18px;
}

.form-message small {
    font-size: 13px;
}

.agree {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 28px 0 24px 130px;
    font-size: 16px;
    letter-spacing: -.8px;
}

.agree input {
    width: 22px;
    height: 22px;
    accent-color: var(--red);
}

.form-submit {
    width: 100%;
    height: 60px;
    border: 0;
    background: var(--red);
    color: #fff;
    box-shadow: 5px 5px 2.5px rgba(0, 0, 0, .3);
    font-weight: 600;
    font-size: 20px;
}

.form-feedback {
    min-height: 23px;
    margin: 14px 0 0;
    color: var(--red);
    text-align: center;
    font-size: 15px;
}

.visitor {
    height: 941px;
    position: relative;
    background: #fff;
}

.visitor-copy {
    position: absolute;
    top: 162px;
    left: calc(16.67% + 50px);
}

.visitor-copy h2 {
    margin: 60px 0 0;
    font-size: 50px;
    white-space: nowrap;
}

.visitor-map {
    position: absolute;
    top: 278px;
    left: calc(50% + 48px);
    width: 641px;
    height: 525px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 2;
    overflow: visible;
}

.visitor-map::before {
    content: "";
    position: absolute;
    z-index: 3;
    left: 62.4%;
    top: 56.5%;
    width: 2.34375vw;
    aspect-ratio: .78;
    background: url('../img/tagona/icon-map.png') center / cover no-repeat;
    transform-origin: center;
    animation: visitor-pin-float 2.2s ease-in-out infinite;
    pointer-events: none;
}

.visitor-map img {
    display: block;
    width: 641px;
    height: auto;
}

.map-grid {
    position: absolute;
    inset: -40%;
    background: linear-gradient(25deg, transparent 49%, #fff 50%, transparent 51%), linear-gradient(120deg, transparent 49%, #fff 50%, transparent 51%);
    background-size: 90px 110px;
    opacity: .75;
    transform: rotate(15deg);
}

.visitor-details {
    position: absolute;
    top: 418px;
    left: calc(16.67% + 48px);
    width: 700px;
}

.visitor-details>div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 0;
    padding: 20px 50px;

    font-size: 23px;
    line-height: 1.4;
    letter-spacing: -1.15px;
}

.visitor-details>div+div {
    border-top: 1px solid #d3d3d3;
}

.visitor-details b {
    color: var(--red);
}

.visitor-details p {
    margin: 0;
    color: rgba(0, 0, 0, .7);
}

.site-footer {
    height: 472px;
    background: #262626;
    color: #8b8b8b;
}

.footer-inner {
    position: relative;
    height: 100%;
    max-width: 1200px;
    margin: auto;
    padding-top: 145px;
}

.footer-inner>img {
    width: 120px;
    height: auto;
}

.footer-meta {
    position: absolute;
    top: 145px;
    left: 770px;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -1px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
    height: 29px;
    margin-bottom: 18px;
}

.footer-social img {
    display: block;
    width: auto;
    height: 29px;
    object-fit: contain;
}

.footer-social img:first-child {
    width: 27px;
}

.footer-social img:last-child {
    width: 29px;
}

.footer-meta p {
    margin: 0;
}

.footer-meta p+p {
    margin-top: 10px;
}


.copyright {
    position: absolute;
    left: 0;
    bottom: 126px;
    font-size: 18px;
    letter-spacing: -.9px;
}

/* Desktop/tablet PC layout: scale from the 1920px design frame. */
@media (min-width: 768px) and (max-width: 1920px) {
    .hero {
        height: min(49.21875vw, calc(100vh - 100px));
    }

    .hero-copy {
        top: 7.291667vw;
        left: 19.270833vw;
        width: 40.15625vw;
        transform: none;
    }

    .hero-title {
        font-size: 3.645833vw;
        letter-spacing: -.182292vw;
    }

    .hero-subtitle {
        margin-top: 2.604167vw;
        font-size: 1.5625vw;
        letter-spacing: -.078125vw;
        color: #fff;
    }

    .hero-actions {
        gap: .520833vw;
        margin-top: 2.083333vw;
    }

    .button {
        min-width: 13.020833vw;
        padding: .78125vw 2.864583vw;
        font-size: 1.041667vw;
        letter-spacing: -.052083vw;
        box-shadow: .260417vw .260417vw .130208vw rgba(0, 0, 0, .2);
    }

    .scroll-hint {
        bottom: 2.5vw;
        gap: .364583vw;
        font-size: 1.5625vw;
        letter-spacing: -.078125vw;
    }

    .scroll-arrows {
        gap: .104167vw;
    }

    .about {
        height: 70.9375vw;
    }

    .about-visual {
        left: 30.052083vw;
        top: 9.947917vw;
        width: 28.958333vw;
        height: 53.541667vw;
    }

    .about-visual img {
        top: 12.239583vw;
        width: 15.625vw;
    }

    .about-points {
        left: 3.90625vw;
        bottom: 2.864583vw;
        width: 21.09375vw;
    }

    .about-points li {
        gap: 1.041667vw;
        height: 4.427083vw;
        font-size: 1.5625vw;
        letter-spacing: -.078125vw;
    }

    .about-points span {
        width: 3.020833vw;
    }

    .about-content {
        top: 11.541667vw;
        left: 47.854167vw;
        width: 38.020833vw;
    }

    .about-content .eyebrow {
        font-size: 1.041667vw;
        letter-spacing: .520833vw;
    }

    .about-content h2 {
        margin: 3.125vw 0 2.083333vw;
        font-size: 2.604167vw;
        letter-spacing: -.130208vw;
    }

    .about-content .body-copy {
        font-size: 1.197917vw;
        letter-spacing: -.059896vw;
    }

    .about-content .body-copy p {
        margin-bottom: 2.083333vw;
    }

    .about-content .thin-rule {
        margin-bottom: 2.083333vw;
    }

    .about-content h3 {
        margin-bottom: 2.083333vw;
        font-size: 2.083333vw;
        letter-spacing: -.104167vw;
    }

    .process {
        height: 69.166667vw;
    }

    .process-copy {
        top: 8.125vw;
        left: 19.270833vw;
    }

    .process-copy .eyebrow {
        font-size: 1.041667vw;
        letter-spacing: .520833vw;
    }

    .process-copy h2 {
        margin: 3.125vw 0 0;
        font-size: 2.604167vw;
        letter-spacing: -.130208vw;
    }

    .process-image-wrap {
        top: 23.90625vw;
        left: 19.270833vw;
        width: 25vw;
        height: 37.03125vw;
    }

    .process-list {
        top: 23.4375vw;
        left: 46.666667%;
        width: 34.010417vw;
    }

    .process-list li {
        height: 7.520833vw;
        padding: 0 1.041667vw;
        margin-left: -1.041667vw;
        width: calc(100% + 1.041667vw);
        border-radius: .416667vw;
    }

    .process-list li.is-active {
        transform: translateX(.260417vw);
    }

    .step-label {
        flex-basis: 8.333333vw;
        font-size: 1.5625vw;
    }

    .step-icon {
        flex-basis: 4.0625vw;
        width: 4.0625vw;
        height: 4.0625vw;
    }


    .step-copy {
        gap: .416667vw;
        margin-left: 2.1875vw;
    }

    .step-copy strong {
        font-size: 1.302083vw;
        letter-spacing: -.052083vw;
    }

    .step-copy small {
        font-size: .885417vw;
        letter-spacing: -.036458vw;
    }

    .consultation {
        height: 55.947917vw;
        padding-top: 3.333333vw;
    }

    .consultation-panel {
        width: 73.177083vw;
        height: 48.072917vw;
        border-width: .208333vw;
    }

    .consultation-intro {
        top: 4.6875vw;
        left: 5.833333vw;
        width: 27.916667vw;
    }

    .consultation-intro h2 {
        margin: 3.125vw 0;
        font-size: 2.604167vw;
    }

    .consultation-intro .intro-note {
        font-size: 1.302083vw;
        letter-spacing: -.065104vw;
    }

    .quote-form {
        top: 4.166667vw;
        right: 0;
        width: 37.135417vw;
        height: 38.802083vw;
        padding: 4.53125vw 2.916667vw;
    }

    .form-row {
        gap: .520833vw;
        margin-bottom: .78125vw;
    }

    .form-row>label {
        flex-basis: 6.25vw;
        font-size: 1.041667vw;
        letter-spacing: -.052083vw;
    }

    .form-row input:not([type=radio]),
    .form-row textarea {
        height: 3.125vw;
        padding: 0 .9375vw;
    }

    .form-row textarea {
        height: 5.833333vw;
        padding: .78125vw;
    }

    .choice-row {
        gap: .520833vw;
    }

    .choice-row label {
        height: 3.125vw;
        font-size: 1.041667vw;
    }

    .form-message>label {
        padding-top: .9375vw;
    }

    .form-message small {
        font-size: .677083vw;
    }

    .agree {
        gap: .520833vw;
        margin: 1.458333vw 0 1.25vw 6.770833vw;
        font-size: .833333vw;
        letter-spacing: -.041667vw;
    }

    .agree input {
        width: 1.145833vw;
        height: 1.145833vw;
    }

    .form-submit {
        height: 3.125vw;
        font-size: 1.041667vw;
    }

    .form-feedback {
        min-height: 1.197917vw;
        margin-top: .729167vw;
        font-size: .78125vw;
    }

    .image-caption {
        bottom: 2.1875vw;
        left: 2.083333vw;
        font-size: 1.5625vw;
        letter-spacing: -.052083vw;
    }

    .lineup {
        height: 68.697917vw;
        padding-top: 5.59375vw;
    }

    .lineup-panel {
        width: 73.177083vw;
        height: 56.458333vw;
        padding: 3.541667vw 5.833333vw 0;
    }

    .lineup-heading h2 {
        margin-top: 3.125vw;
        font-size: 2.604167vw;
        letter-spacing: -.130208vw;
    }

    .lineup-heading .eyebrow {
        font-size: 1.041667vw;
        letter-spacing: .520833vw;
    }

    .lineup-tabs {
        top: 8.802083vw;
        right: 5.833333vw;
        gap: .520833vw;
    }

    .lineup-tabs button {
        width: 6.5625vw;
        height: 2.395833vw;
        font-size: 1.041667vw;
    }

    .lineup-swiper {
        top: 14.0625vw;
        left: 5.833333vw;
        width: 61.458333vw;
    }

    .car-card {
        height: auto;
    }

    .car-image {
        height: auto;
        aspect-ratio: 764 / 667;
    }

    .car-badge {
        top: 7.8%;
        left: 6%;
        width: 40.2%;
        height: 13.7%;
        padding: 0;
        font-size: 1.041667vw;
    }

    .car-badge.is-best {
        width: 26.7%;
    }

    .car-info {
        min-height: 254px;
        height: auto;
        padding: 1.822917vw 1.71875vw 1.5625vw;
    }

    .car-info h3 {
        margin-bottom: .3125vw;
        font-size: 1.041667vw;
        letter-spacing: -.052083vw;
    }

    .car-info p {
        margin-bottom: .78125vw;
        font-size: .833333vw;
        letter-spacing: -.041667vw;
    }

    .car-info p i,
    .car-info strong em {
        margin: 0.564583vw;
    }

    .car-info strong {
        margin-bottom: .416667vw;
        font-size: .9375vw;
        letter-spacing: -.041667vw;
    }

    .car-info strong b {
        font-size: 1.458333vw;
    }

    .car-info strong span {
        font-size: .999167vw;
    }

    .car-info a {
        height: 2.8125vw;
        margin-top: 1.40625vw;
        font-size: 1.041667vw;
    }

    .lineup-progress {
        left: 5.833333vw;
        bottom: 4.6875vw;
        width: 49.635417vw;
        height: .208333vw;
    }

    .lineup-arrow {
        bottom: 2.96875vw;
        width: 3.645833vw;
        height: 3.645833vw;
        font-size: 2.8125vw;
    }

    .lineup-prev {
        right: calc(9.479167vw + 15px);
    }

    .lineup-next {
        right: 5.833333vw;
    }

    .reviews {
        height: 74.6875vw;
    }

    .reviews-heading {
        top: 8.4375vw;
        left: 19.270833vw;
    }

    .reviews-heading .eyebrow {
        font-size: 1.041667vw;
        letter-spacing: .520833vw;
    }

    .reviews-heading h2 {
        margin-top: 3.125vw;
        font-size: 2.604167vw;
        letter-spacing: -.130208vw;
    }

    .reviews-swiper {
        top: 23.4375vw;
        left: 19.270833vw;
        width: 61.458333vw;
        height: 41.041667vw;
    }

    #reviews .review-pagination {
        bottom: 8.854167vw;
        gap: .520833vw;
        height: .260417vw;
    }

    #reviews .review-pagination-bar {
        width: 3.645833vw;
        height: .208333vw;
    }

    .visitor {
        height: 49.010417vw;
    }

    .visitor-copy {
        top: 8.4375vw;
        left: 19.270833vw;
    }

    .visitor-copy h2 {
        margin-top: 3.125vw;
        font-size: 2.604167vw;
    }

    .visitor-map {
        top: 14.479167vw;
        left: calc(50% + 2.5vw);
        width: 33.385417vw;
        height: 27.34375vw;
    }

    .visitor-map img {
        width: 33.385417vw;
    }

    .visitor-details {
        top: 21.770833vw;
        left: calc(16.666667% + 2.5vw);
        width: 37.458333vw;
    }

    .visitor-details>div {
        grid-template-columns: 7.8125vw 1fr;
        padding: 1.041667vw 2.604167vw;
        font-size: 1.197917vw;
        letter-spacing: -.059896vw;
    }

    .site-footer {
        height: 24.583333vw;
    }

    .footer-inner {
        width: 62.5vw;
        max-width: none;
        padding-top: 7.552083vw;
    }

    .footer-inner>img {
        width: 6.25vw;
    }

    .footer-meta {
        top: 7.552083vw;
        left: 40.104167vw;
        font-size: 1.041667vw;
        letter-spacing: -.052083vw;
    }

    .footer-social {
        gap: .9375vw;
        height: 1.510417vw;
        margin-bottom: .9375vw;
    }

    .footer-social img {
        height: 1.510417vw;
    }

    .footer-social img:first-child {
        width: 1.40625vw;
    }

    .footer-social img:last-child {
        width: 1.510417vw;
    }

    .copyright {
        bottom: 6.5625vw;
        font-size: .9375vw;
        letter-spacing: -.046875vw;
    }
}

@media (min-width: 768px) and (max-width: 1239px) {

    html,
    body {
        min-width: 1240px;
        overflow-x: auto;
    }

    .site-shell,
    .site-header {
        width: 1240px;
        min-width: 1240px;
    }

    .site-header {
        right: auto;
    }
}

@media (max-width: 767px) {
    main {
        padding-top: 80px;
    }

    .site-header {
        height: 80px;
    }

    .header-inner {
        padding: 0 20px;
        justify-content: space-between;
    }

    .brand,
    .brand img {
        width: 74px;
        height: auto;
    }

    .menu-toggle {
        display: none;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        padding: 16px 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--red);
        box-shadow: 0 12px 20px rgba(0, 0, 0, .14);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        text-align: left;
        padding: 13px 0;
    }

    .header-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 126px;
        height: 38px;
        margin-left: auto;
        padding: 0;
        font-size: 14px;
        box-shadow: 3px 3px 2px rgba(140, 1, 1, .65);
    }

    .hero {
        height: calc(100svh - 80px);
        min-height: 0;
    }

    .hero-swiper {
        background-size: cover;
        background-position: center bottom;
    }

    .hero-slide {
        background-size: cover;
        background-position: center top;
    }

    .hero-slide-01 {
        background-image: url('../img/tagona/m-main-banner-1.png');
    }

    .hero-slide-02 {
        background-image: url('../img/tagona/m-main-banner-2.png');
    }

    .hero-slide-03 {
        background-image: url('../img/tagona/m-main-banner-3.png');
    }

    .hero-slide-04 {
        background-image: url('../img/tagona/m-main-banner-4.png');
    }

    .hero-slide-05 {
        background-image: url('../img/tagona/m-main-banner-5.png');
    }

    .hero-slide-06 {
        background-image: url('../img/tagona/m-main-banner-6.png');
    }

    .hero-copy {
        top: clamp(70px, 21vw, 90px);
        left: 20px;
        width: calc(100% - 40px);
        transform: none;
    }

    .hero-copy::before {
        top: -18px;
        right: -14px;
        bottom: -18px;
        left: -14px;
        background: rgba(0, 0, 0, .34);
        border-radius: 8px;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 34px);
        line-height: 1.35;
        letter-spacing: -1.7px;
        text-align: center;
    }

    .hero-title p {
        white-space: normal;
    }

    .hero-subtitle {
        margin-top: 30px;
        font-size: clamp(14px, 3.5vw, 15px);
        line-height: 1.6;
        letter-spacing: -.6px;
        text-align: center;
        white-space: normal;
    }

    .mobile-only {
        display: inline;
    }

    .pc-only {
        display: none;
    }

    .hero-actions {
        flex-direction: row;
        gap: 6px;
        margin-top: 30px;
        width: calc(100% - 50px);
        margin-right: auto;
        margin-left: auto;
    }

    .button {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        height: 42px;
        padding: 0 8px;
        font-size: 15px;
        white-space: nowrap;
    }

    .hero-actions .button-red {
        flex: 1.25 1 0;
    }

    .hero-actions .button-light {
        flex: 1 1 0;
    }

    .scroll-hint {
        font-size: 14px;
        bottom: 22px;
    }

    .about,
    .why,
    .process,
    .lineup,
    .reviews,
    .consultation,
    .visitor {
        height: auto;
        min-height: 0;
        padding: 90px 24px;
    }

    .about {
        padding: 82px 29px 90px;
    }

    .why {
        padding: 62px 18px 58px;
    }

    .process {
        padding: 70px 24px 68px;
    }

    .consultation {
        padding: clamp(70px, 21.875vw, 91px) clamp(20px, 7.2115vw, 30px) clamp(62px, 21.1538vw, 88px);
    }

    .visitor {
        display: flex;
        flex-direction: column;
        padding: clamp(70px, 21.875vw, 91px) clamp(20px, 7.2115vw, 30px) clamp(62px, 21.1538vw, 88px);
        background: #fff;
    }

    .about-visual {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: 164px;
        margin-bottom: 55px;
        transform: none;
    }

    .about-visual img {
        top: 37px;
        left: 20px;
        width: 110px;
        transform: none;
    }

    .about-points {
        top: 30px;
        right: auto;
        bottom: auto;
        left: 165px;
        width: 140px;
    }

    .about-points li {
        height: 32px;
        gap: 10px;
        font-size: 16px;
        letter-spacing: -.6px;
    }

    .about-points span {
        width: 24px;
    }

    .about-content .body-copy {
        font-size: 14px;
        line-height: 1.7;
        letter-spacing: -.4px;
    }

    .about-content .body-copy p {
        margin-bottom: 15px;
    }

    .about-content .body-copy p+p {
        font-size: 16px;
    }

    .about-content .thin-rule {
        margin-bottom: 28px;
    }

    .about-content h3 {
        margin-bottom: 28px;
        font-size: 24px;
        letter-spacing: -1.2px;
    }

    .about-content,
    .process-copy,
    .why-heading,
    .reviews-heading,
    .visitor-copy {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
    }

    .eyebrow {
        font-size: 13px;
        letter-spacing: 4px;
    }

    .about-content h2,
    .why-heading h2,
    .process-copy h2,
    .lineup-heading h2,
    .reviews-heading h2,
    .consultation-intro h2,
    .visitor-copy h2 {
        margin: 28px 0 32px;
        font-size: 31px;
        letter-spacing: -1.5px;
    }

    .body-copy {
        font-size: 16px;
        letter-spacing: -.7px;
    }

    .body-copy p {
        margin-bottom: 28px;
    }

    .about-content h3 {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .why-heading {
        margin-bottom: 22px;
    }

    .why-heading .eyebrow {
        letter-spacing: 4px;
    }

    .why-heading h2 {
        margin: 26px 0 0;
        line-height: 1.4;
        letter-spacing: -1px;
    }

    .reason-grid {
        position: relative;
        left: auto;
        top: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .reason-card {
        height: 220px;
        padding: 15px 16px 14px;
        border-width: 1px;
    }

    .card-number {
        font-size: 20px;
    }

    .reason-card h3 {
        font-size: 20px;
        line-height: 1.35;
        letter-spacing: -.8px;
        margin-bottom: 10px;
    }

    .reason-card p {
        font-size: 13px;
        line-height: 1.45;
        letter-spacing: -.45px;
        white-space: normal;
    }

    .process-copy {
        margin-bottom: 32px;
    }

    .process-copy h2 {
        margin: 28px 0 0;
        font-size: 22px;
        line-height: 1.4;
        letter-spacing: -1px;
    }

    .process-list {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
    }

    .process-list li {
        height: auto;
        height: 77px;
        padding: 0;
        margin-left: 0;
        width: 100%;
        border-radius: 6px;
        padding-left: 10px;
    }

    .process-list li.is-active {
        transform: translateX(0px);
    }

    .process-list li>b {
        flex-basis: 68px;
        font-size: 14px;
        font-weight: 600;
    }

    .process-list li strong {
        font-size: 20px;
        letter-spacing: -.7px;
    }

    .process-list li small {
        font-size: 12px;
        line-height: 1.45;
        color: #000;
        opacity: .7;
    }

    .step-label {
        flex-basis: 68px;
    }

    .step-icon {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .step-icon img {
        width: 100%;
    }

    .step-icon img[src*="process-icon-03"],
    .step-icon img[src*="process-icon-05"] {
        width: 36px;
        height: 36px;
    }

    .step-copy {
        gap: 4px;
        margin-left: 14px;
    }

    .step-copy small {
        white-space: normal;
    }

    .process-image-wrap {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 1620 / 1024;
        margin-bottom: 26px;
    }

    .process-image-wrap img {
        height: 100%;
        object-fit: cover;
    }

    .image-caption {
        bottom: 18px;
        left: 19px;
        font-size: 16px;
        letter-spacing: -.5px;
    }

    .lineup {
        padding: 75px 0 0;
    }

    .lineup-panel {
        width: 100%;
        height: auto;
        min-height: 775px;
        padding: 0 24px;
        padding-bottom: 35%;
        background: transparent;
    }

    .lineup-panel::before {
        content: "";
        position: absolute;
        z-index: 0;
        top: 178px;
        right: 0;
        bottom: 0;
        left: 0;
        background: #f8f8f8;
        pointer-events: none;
    }

    .lineup-heading {
        margin-left: 0;
        margin-right: 0;
        z-index: 1;
    }

    .lineup-heading .eyebrow {
        font-size: 13px;
        letter-spacing: 4px;
    }

    .lineup-heading h2 {
        margin-top: 28px;
        font-size: 22px;
        line-height: 1.4;
        letter-spacing: -1px;
    }

    .lineup-tabs {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin: 30px 0 34px;
        gap: 5px;
        z-index: 1;
    }

    .lineup-tabs button {
        flex: 1 1 0;
        width: auto;
        height: 32px;
        padding: 0;
        font-size: 14px;
        white-space: nowrap;
    }

    .lineup-swiper {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        overflow: hidden;
        z-index: 1;
        padding-top: 40px;
    }

    .car-card {
        height: auto;
    }

    .car-card>img {
        width: 100%;
        height: auto;
    }

    .car-image {
        height: auto;
        aspect-ratio: 764 / 667;
    }

    .car-badge {
        top: 7.8%;
        left: 6%;
        width: 40.2%;
        height: 13.7%;
        padding: 0;
        font-size: 14px;
    }

    .car-badge.is-best {
        width: 26.7%;
    }

    .car-info {
        min-height: 151px;
        height: auto;
        padding: 22px 18px 18px;
    }

    .car-info h3 {
        font-size: 18px;
    }

    .car-info p {
        font-size: 16px;
    }

    .car-info strong {
        font-size: 16px;
        height: 25px;
    }

    .car-info strong em {
        font-size: 14px;
    }

    .car-info strong b {
        font-size: 22px;
    }

    .car-info strong span {
        font-size: 16px;
    }

    .car-info a {
        height: 42px;
        margin-top: 18px;
        font-size: 15px;
    }

    .lineup-progress {
        position: absolute;
        left: 24px;
        bottom: 108px;
        width: calc(100% - 48px);
        height: 3px;
        z-index: 2;
    }

    .lineup-arrow {
        bottom: 35px;
        width: 34px;
        height: 34px;
        z-index: 2;
    }

    .lineup-prev {
        right: auto;
        left: calc(50% - 37px);
        transform: translateX(-50%);
    }

    .lineup-next {
        right: auto;
        left: calc(50% + 10px);
        transform: translateX(-50%);
    }

    .reviews {
        padding: 46px 11px 45px;
    }

    .reviews-swiper {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: calc((100vw - 22px) * 362 / 581 * 4 + 12px);
        overflow: hidden;
    }

    .reviews-heading {
        margin: 0 7px 23px;
    }

    .reviews-heading .eyebrow {
        letter-spacing: 3px;
    }

    .reviews-heading h2 {
        margin: 19px 0 0;
        line-height: 1.35;
        letter-spacing: -.7px;
    }

    .reviews-swiper .swiper-wrapper {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: flex-start;
        row-gap: 4px;
        column-gap: 0;
        width: 200% !important;
        height: 100% !important;
    }

    .reviews-swiper .swiper-slide {
        flex: none;
        width: 50% !important;
        height: calc((100% - 12px) / 4) !important;
        margin: 0 !important;
    }

    .review-grid {
        position: relative;
        left: auto;
        top: auto;
        display: flex;
        overflow: auto;
        margin-left: 0;
        padding-bottom: 10px;
    }

    .review-card {
        width: 100%;
        min-width: 0;
        min-height: 0;
        height: auto;
        padding: 0;
    }

    .review-card img {
        display: block;
        width: 100%;
        height: auto;
    }

    #reviews .review-pagination {
        position: relative;
        left: auto;
        bottom: auto;
        width: auto;
        height: 3px;
        gap: 6px;
        margin: 22px auto 0;
        transform: none;
    }

    #reviews .review-pagination-bar {
        width: 28px;
        height: 3px;
    }

    .consultation-panel {
        width: 100%;
        height: auto;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .consultation-intro,
    .quote-form {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: auto;
    }

    .consultation-intro .intro-note {
        margin: 0;
        font-size: clamp(11px, 3.3654vw, 14px);
        line-height: 1.6;
        letter-spacing: -.55px;
    }

    .consultation-intro .eyebrow {
        font-size: clamp(8px, 2.6442vw, 11px);
        letter-spacing: clamp(3px, 1.2019vw, 5px);
    }

    .consultation-intro h2 {
        margin: clamp(31px, 10.5769vw, 44px) 0 clamp(24px, 7.9327vw, 33px);
        font-size: clamp(24px, 7.4519vw, 31px);
        line-height: 1.25;
        letter-spacing: -1.5px;
    }

    .quote-form {
        margin-top: clamp(27px, 9.6154vw, 40px);
        height: auto;
        padding: clamp(27px, 9.375vw, 39px) clamp(12px, 4.0865vw, 17px) clamp(27px, 8.4135vw, 35px);
        background: #fff;
        box-shadow: none;
    }

    .form-row {
        display: grid;
        grid-template-columns: clamp(45px, 13.7019vw, 57px) minmax(0, 1fr);
        align-items: start;
        gap: clamp(12px, 4.0865vw, 17px);
        margin-bottom: clamp(8px, 2.4038vw, 10px);
    }

    .form-row>label {
        min-width: 0;
        font-size: clamp(13px, 3.8462vw, 16px);
        line-height: clamp(28px, 8.4135vw, 35px);
        letter-spacing: -1px;
    }

    .form-row input:not([type=radio]),
    .form-row textarea {
        width: 100%;
        flex: auto;
        height: clamp(28px, 8.4135vw, 35px);
        padding: 0 clamp(7px, 2.4038vw, 10px);
        font-size: clamp(11px, 3.3654vw, 14px);
    }

    .form-row input::placeholder {
        color: transparent;
    }

    .form-row textarea {
        height: clamp(76px, 22.8365vw, 95px);
        padding: clamp(4px, 1.2019vw, 5px) clamp(7px, 2.4038vw, 10px);
    }

    .choice-row {
        width: 100%;
        gap: clamp(4px, 1.4423vw, 6px);
    }

    .choice-row label {
        height: clamp(28px, 8.4135vw, 35px);
        font-size: clamp(13px, 3.8462vw, 16px);
    }


    .form-message>label {
        padding-top: clamp(2px, .4808vw, 2px);
        line-height: clamp(14px, 3.3654vw, 14px);
    }

    .form-message small {
        font-size: clamp(10px, 2.6442vw, 11px);
    }

    .agree {
        gap: clamp(6px, 1.6827vw, 7px);
        margin: clamp(13px, 4.0865vw, 17px) 0 clamp(25px, 7.6923vw, 32px);
        font-size: clamp(13px, 3.8462vw, 16px);
        line-height: 1.2;
        letter-spacing: -1px;
    }

    .agree input {
        width: clamp(11px, 3.125vw, 13px);
        height: clamp(11px, 3.125vw, 13px);
        flex: 0 0 clamp(11px, 3.125vw, 13px);
        margin: 0;
    }

    .form-submit {
        height: clamp(34px, 10.0962vw, 42px);
        font-size: clamp(13px, 4.0865vw, 17px);
    }

    .form-feedback {
        display: none;
    }

    .visitor-copy {
        order: 1;
        margin-bottom: 0;
    }

    .visitor-copy .eyebrow {
        font-size: clamp(8px, 2.6442vw, 11px);
        letter-spacing: clamp(3px, 1.2019vw, 5px);
    }

    .visitor-copy h2 {
        margin: clamp(31px, 10.5769vw, 44px) 0 0;
        font-size: clamp(24px, 7.4519vw, 31px);
        line-height: 1.25;
        letter-spacing: -1.5px;
    }

    .visitor-map {
        order: 3;
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        margin: clamp(8px, 2.4038vw, 10px) 0 0;
    }

    .visitor-map img {
        width: 100%;
        height: auto;
    }

    .visitor-map::before {
        width: clamp(17px, 5.7692vw, 24px);
    }

    .visitor-details {
        order: 2;
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin-top: clamp(24px, 8.1731vw, 34px);
    }

    .visitor-details>div {
        grid-template-columns: clamp(40px, 11.5385vw, 48px) minmax(0, 1fr);
        gap: clamp(15px, 4.5673vw, 19px);
        padding: 0 0 clamp(12px, 3.3654vw, 14px);
        font-size: clamp(11px, 3.3654vw, 14px);
        line-height: 1.55;
        letter-spacing: -.7px;
    }

    .visitor-details>div+div {
        padding-top: clamp(12px, 3.3654vw, 14px);
    }

    .site-footer {
        height: auto;
        min-height: 0;
    }

    .footer-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: auto;
        padding: clamp(39px, 12.5vw, 52px) 24px clamp(39px, 12.0192vw, 50px);
        text-align: center;
    }

    .footer-inner>img {
        order: 1;
        width: clamp(50px, 14.4231vw, 60px);
    }

    .footer-meta {
        order: 3;
        position: relative;
        top: auto;
        left: auto;
        margin-top: clamp(25px, 6.7308vw, 28px);
        font-size: clamp(10px, 2.6442vw, 11px);
        line-height: 1.55;
        letter-spacing: -.5px;
    }

    .footer-social {
        justify-content: center;
        gap: 10px;
        height: 18px;
        margin-bottom: 18px;
    }

    .footer-social img:first-child {
        width: 16px;
        height: 17px;
    }

    .footer-social img:last-child {
        width: 18px;
        height: 17px;
    }

    .copyright {
        order: 2;
        position: relative;
        left: auto;
        bottom: auto;
        margin: clamp(21px, 6.9712vw, 29px) 0 0;
        font-size: clamp(9px, 2.4038vw, 10px);
        letter-spacing: -.5px;
    }

    .footer-meta p+p {
        margin-top: 0;
    }
}

/* Final review carousel overrides */
.reviews {
    height: 1215px;
}

.reviews-swiper {
    top: 450px;
    left: 50%;
    width: min(1180px, calc(100% - 160px));
    height: 600px;
    transform: translateX(-50%);
}

.review-page {
    display: block;
    width: 100%;
    height: 100%;
}

.review-grid {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.review-card {
    display: flex;
    flex-direction: row;
    height: 100%;
    min-height: 0;
    background: #fff;
    border: 0;
}

.review-visual {
    width: 45%;
    height: 100%;
    flex: 0 0 45%;
    overflow: hidden;
    background: #e9eaed;
}

.review-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.review-content {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    padding: 28px 34px 24px;
}

.review-rating {
    color: var(--red);
    font-size: 16px;
    letter-spacing: 1px;
}

.review-quote {
    display: -webkit-box;
    flex: 1;
    margin: 20px 0 14px;
    overflow: hidden;
    color: #222;
    font-size: 18px;
    line-height: 1.42;
    letter-spacing: -.8px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.review-meta {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 7px;
    color: #777;
    font-size: 13px;
    white-space: nowrap;
}

.review-meta strong {
    color: #111;
}

.review-meta em {
    margin-left: 3px;
    color: #111;
    font-style: normal;
    font-weight: 700;
}

#reviews .review-pagination {
    bottom: 120px;
}

.car-card {
    cursor: pointer;
}

.car-card:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .reviews {
        height: auto;
        padding: 46px 11px 45px;
    }

    .reviews-swiper {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: calc((100vw - 24px) * 2.22);
        transform: none;
    }

    .reviews-swiper .swiper-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: auto !important;
        height: 100% !important;
    }

    .reviews-swiper .swiper-slide {
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
    }

    .review-grid {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: repeat(4, minmax(0, 1fr));
        gap: 5px;
    }

    .review-card {
        min-height: 0;
    }

    .review-visual {
        width: 40%;
        height: 100%;
        flex-basis: 40%;
    }

    .review-content {
        padding: 14px 12px 12px;
    }

    .review-rating {
        font-size: 16px;
    }

    .review-quote {
        margin: 8px 0 7px;
        font-size: 14px;
        line-height: 1.35;
        letter-spacing: -.55px;
        -webkit-line-clamp: 4;
    }

    .review-meta {
        gap: 5px;
        font-size: 14px;
    }

    #reviews .review-pagination {
        position: relative;
        left: auto;
        bottom: auto;
        margin: 22px auto 0;
        transform: none;
    }
}