@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Kanit", sans-serif;
    background-color: #ffffff;
    scroll-behavior: smooth;
}

/* Hero load animation */
body:not(.is-page-loaded) .hero .hero-title,
body:not(.is-page-loaded) .hero .hero-subtitle,
body:not(.is-page-loaded) .hero .hero-actions,
body:not(.is-page-loaded) .hero .hero-actions .hero-btn {
    opacity: 0;
    transform: translateY(18px);
}

.hero .hero-title,
.hero .hero-subtitle,
.hero .hero-actions,
.hero .hero-actions .hero-btn {
    transition:
        opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

body.is-page-loaded .hero .hero-title {
    transition-delay: 180ms;
}

body.is-page-loaded .hero .hero-subtitle {
    transition-delay: 420ms;
}

body.is-page-loaded .hero .hero-actions {
    transition-delay: 660ms;
}

body.is-page-loaded .hero .hero-actions .hero-btn:nth-child(1) {
    transition-delay: 760ms;
}

body.is-page-loaded .hero .hero-actions .hero-btn:nth-child(2) {
    transition-delay: 860ms;
}

/* Scroll reveal animations */
.reveal-section .reveal-item {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
    transition:
        opacity 1500ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 1500ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
    .reveal-section .reveal-item,
    body:not(.is-page-loaded) .hero .hero-title,
    body:not(.is-page-loaded) .hero .hero-subtitle,
    body:not(.is-page-loaded) .hero .hero-actions,
    body:not(.is-page-loaded) .hero .hero-actions .hero-btn {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Hero */
.hero {
    background-color: #ffffff;
    color: #fff;
    text-align: center;
    padding: 6rem 2rem 6.5rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 1.3rem;
    color: #0a0a0a;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
    font-weight: 300;
    line-height: 1.6;
    color: #0a0a0a;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero-btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
    white-space: nowrap;
}

.hero-btn:hover {
    transform: translateY(-1px);
}

.hero-btn-secondary {
    background-color: #333;
    color: #fff;
}

.hero-btn-secondary:hover {
    background-color: #444;
}

.hero-btn-primary {
    background-color: #e2e2e2;
    color: #0a0a0a;
}

.hero-btn-primary:hover {
    background-color: #e5e5e5;
}

/* Tablet */
@media (max-width: 992px) {
    .hero {
        padding: 4.5rem 1.5rem 5rem;
        min-height: 60vh;
    }

    .hero-title {
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        margin-bottom: 2rem;
    }

    .hero-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero {
        padding: 3rem 2rem 4rem;
        min-height: 60vh;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        margin-bottom: 1.75rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.25rem;
    }
}

/* Video section */
.video-section {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.video-section__video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: cover;
}

@media (max-width: 576px) {
    .video-section__video {
        max-height: 60vh;
    }
}

/* About section */
.about-section {
    background-color: #ffffff;
    color: #fff;
    padding: 5rem 2rem 5.5rem;
}

.about-section__inner {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-section__col--left .about-section__label {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

.about-section__title {
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #0a0a0a;
}

.about-section__heading {
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
}

.about-section__text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #0a0a0a;
    font-weight: 300;
}

.about-section__cta {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.6rem 1.2rem;
    background: #0a0a0a;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: background-color 0.2s ease;
}

.about-section__cta:hover {
    background: #f1f1f1;
    color: #0a0a0a;
}

/* About – tablet */
@media (max-width: 992px) {
    .about-section {
        padding: 4rem 1.5rem 4.5rem;
    }

    .about-section__inner {
        gap: 3rem;
    }

    .about-section__title,
    .about-section__heading {
        font-size: clamp(1.5rem, 4vw, 2.25rem);
    }
}

/* About – mobile: stack columns */
@media (max-width: 768px) {
    .about-section {
        padding: 3rem 2rem 4rem;
    }

    .about-section__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-section__col--left {
        order: 1;
    }

    .about-section__col--right {
        order: 2;
    }

    .about-section__label {
        margin-bottom: 0.75rem;
    }

    .about-section__heading {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 2.5rem 1rem 3.5rem;
    }

    .about-section__title,
    .about-section__heading {
        font-size: 1.5rem;
    }

    .about-section__text {
        font-size: 0.9375rem;
    }

    .about-section__cta {
        margin-top: 1rem;
        font-size: 0.875rem;
        min-height: 38px;
    }
}

/* Core sectors section */
.core-sectors-section {
    background: #ffffff;
    color: #0a0a0a;
    padding: 3rem 2rem 3.5rem;
}

.core-sectors-section__head {
    max-width: 1700px;
    margin: 0 auto 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.core-sectors-section__title {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 3rem);
    line-height: 1.1;
    font-weight: 500;
    text-transform: uppercase;
}

.core-sectors-section__nav {
    display: flex;
    gap: 0.5rem;
}

.core-sectors-section__btn {
    width: 48px;
    height: 48px;
    border: 0;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.core-sectors-section__btn:hover {
    background: #000000;
}

.core-sectors-section__track-wrap {
    max-width: 1700px;
    margin: 0 auto;
}

.core-sectors-section__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.core-sectors-section__track::-webkit-scrollbar {
    display: none;
}

.core-sectors-card {
    position: relative;
    flex: 0 0 calc((100% - 40px) / 4);
    min-height: 320px;
    overflow: hidden;
    background: #d9d9d9;
}

.core-sectors-card__media,
.core-sectors-card__media img {
    width: 100%;
    height: 100%;
}

.core-sectors-card__media img {
    object-fit: cover;
}

.core-sectors-card__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 16px 16px 18px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.788) 58%, rgba(0, 0, 0, 0.95) 100%);
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    align-items: end;
}

.core-sectors-card__title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.1;
    font-weight: 500;
    text-transform: uppercase;
    transition: opacity 0.25s ease;
}

.core-sectors-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0.35rem 0.8rem;
    background: #f0f0f0;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.core-sectors-card__info {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .core-sectors-card:hover .core-sectors-card__cta,
    .core-sectors-card:focus-within .core-sectors-card__cta {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.core-sectors-section__empty {
    margin: 0;
    padding: 1rem;
    border: 1px solid #d9d9d9;
    background: #ffffff;
    color: #444444;
}

/* Core sectors – tablet */
@media (max-width: 992px) {
    .core-sectors-section {
        padding: 2.75rem 1.5rem 3rem;
    }

    .core-sectors-card {
        flex-basis: calc((100% - 20px) / 2);
        min-height: 300px;
    }

    .core-sectors-card__title {
        font-size: 1.5rem;
    }
}

/* Core sectors – mobile */
@media (max-width: 576px) {
    .core-sectors-section {
        padding: 2.5rem 1rem 3rem;
    }

    .core-sectors-section__head {
        margin-bottom: 1rem;
        align-items: flex-start;
        flex-direction: column;
    }

    .core-sectors-section__title {
        font-size: 1.75rem;
    }

    .core-sectors-section__btn {
        width: 42px;
        height: 42px;
        font-size: 1.35rem;
    }

    .core-sectors-card {
        flex-basis: 84vw;
        min-height: 280px;
    }

    /* Keep CTA visible on touch devices where hover is not reliable. */
    .core-sectors-card__cta {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Explore Our Brands */
.brands-section {
    background-color: #ffffff;
    color: #0a0a0a;
    padding: 3.5rem 2rem 4rem;
}

.brands-section__head {
    max-width: 1700px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brands-section__title {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0;
}

.brands-section__nav {
    display: flex;
    gap: 0.5rem;
}

.brands-section__btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    transition: background-color 0.2s, color 0.2s;
}

.brands-section__btn:hover {
    background-color: #2a2a2a;
}

.brands-section__track-wrap {
    max-width: 1700px;
    margin: 0 auto;
    overflow: hidden;
}

.brands-section__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.brands-section__track::-webkit-scrollbar {
    height: 6px;
}

.brands-section__track::-webkit-scrollbar-track {
    background: #f7f7f7;
    border-radius: 3px;
}

.brands-section__track::-webkit-scrollbar-thumb {
    background: #cfcfcf;
    border-radius: 3px;
}

/* Brand card – image only by default; overlay details on hover */
.brand-card {
    flex: 0 0 min(440px, 85vw);
    scroll-snap-align: start;
    position: relative;
    display: block;
    text-decoration: none;
    color: #fff;
    background: #1a1a1a;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 480px;
}

.brand-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.brand-card__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #4a4a4a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.brand-card__placeholder {
    display: none;
    width: 100%;
    height: 100%;
    min-height: 180px;
    background: linear-gradient(180deg, #5a5a5a 0%, #333 100%);
}

.brand-card__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1.25rem 1.5rem;
    background: #000000;
background: linear-gradient(359deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-card:hover .brand-card__bottom {
    opacity: 1;
}

/* Touch devices: show overlay by default (no hover) */
@media (hover: none) {
    .brand-card__top,
    .brand-card__bottom {
        opacity: 1;
    }
}

.brand-card__title {
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
}

/* Hover state: CTA highlight */
.brand-card:hover .brand-card__image {
    background: linear-gradient(180deg, #5a5a5a 0%, #333 50%, #1a1a1a 100%);
}

.brand-card__cta {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease;
}

.brand-card__arrow {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 700;
}

.brand-card:hover .brand-card__cta {
    background: #fff;
    transform: scale(1.08);
}

.brand-card:hover .brand-card__arrow {
    animation: arrowMove 0.4s ease;
}

@keyframes arrowMove {
    0% { transform: translate(0, 0); }
    50% { transform: translate(2px, -2px); }
    100% { transform: translate(0, 0); }
}

/* Brands – tablet */
@media (max-width: 992px) {
    .brands-section {
        padding: 3rem 2rem 3.5rem;
    }

    .brands-section__head {
        margin-bottom: 1.5rem;
    }

    .brand-card {
        flex: 0 0 min(300px, 75vw);
        min-height: 360px;
    }
    .brands-section__title {
        font-size: 2rem;
    }
}

/* Brands – mobile */
@media (max-width: 576px) {
    .brands-section {
        padding: 2.5rem 1rem 3rem;
    }

    .brands-section__head {
        flex-wrap: wrap;
        margin-bottom: 1.25rem;
    }

    .brands-section__title {
        font-size: 1.25rem;
    }

    .brands-section__btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .brand-card {
        flex: 0 0 min(280px, 88vw);
        min-height: 340px;
    }

    .brand-card__top {
        padding: 1rem 1rem 0.5rem;
    }

    .brand-card__bottom {
        padding: 1rem 1rem 1.25rem;
    }

    .brand-card__title {
        font-size: 1.1rem;
    }

    .brand-card__cta {
        width: 44px;
        height: 44px;
    }
}

/* Why Choose section */
.why-section {
    background-color: #ffffff;
    color: #fff;
    padding: 4rem 2rem 5rem;
}

.why-section__inner {
    max-width: 1700px;
    margin: 0 auto;
}

.why-section__head {
    margin-bottom: 2rem;
}

.why-section__kicker {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0a0a0a;
}

.why-section__title {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 500;
    color: #0a0a0a;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.why-section__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
}

.why-card {
    background-color: #f1f1f1;
    padding: 1.75rem 1.75rem 2rem;
}

.why-card__icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #0a0a0a;
    margin-bottom: 1.25rem;
}

.why-card__icon i {
    font-size: 1.5rem;
}

.why-card__title {
    margin: 0 0 0.75rem 0;
    font-size: 1.5rem;
    color: #0a0a0a;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.why-card__text {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.5;
    color: #0a0a0a;
}

/* Why – tablet */
@media (max-width: 992px) {
    .why-section {
        padding: 3.5rem 2rem 4.5rem;
    }

    .why-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

/* Why – mobile */
@media (max-width: 576px) {
    .why-section {
        padding: 3rem 1rem 4rem;
    }

    .why-section__head {
        margin-bottom: 1.5rem;
    }

    .why-section__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .why-card {
        padding: 1.5rem 1.25rem 1.75rem;
    }
}

/* Car carousel section */
.carousel-section {
    background-color: #ffffff;
    padding: 3rem 0 4rem;
}

.carousel-section__wrap {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.carousel-section__track-wrap {
    overflow: hidden;
}

.carousel-section__track {
    display: flex;
    transition: transform 0.4s ease;
}

.carousel-section__slide {
    flex: 0 0 100%;
    min-width: 0;
}

.carousel-section__stage {
    background: #ffffff;
    min-height: auto;
    padding: 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.carousel-section__car {
    flex: 1;
    max-width: 780px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-section__car img {
    width: 100%;
    height: auto;
    max-height: auto;
    object-fit: cover;
    display: block;
}

.carousel-section__car.is-placeholder {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.carousel-section__car.is-placeholder img {
    display: none;
}

.carousel-section__car.is-placeholder::after {
    content: '';
    display: block;
    width: 80px;
    height: 60px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}

/* Arrows – semi-transparent white, black chevron */
.carousel-section__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: #f1f1f1;
    color: #0a0a0a;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s;
}

.carousel-section__arrow:hover {
    background: rgba(255, 255, 255, 0.95);
}

.carousel-section__arrow--prev {
    left: 1rem;
}

.carousel-section__arrow--next {
    right: 1rem;
}

/* Pagination dots – bottom center */
.carousel-section__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: #eeeeee;
    margin-top: 1.5rem;
}

.carousel-section__dot {
    width: 32px;
    height: 6px;
    border-radius: 3px;
    background: #333;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.carousel-section__dot.is-active {
    background: #e9e9e9;
}

.carousel-section__dot:hover:not(.is-active) {
    background: #555;
}

/* Carousel – tablet */
@media (max-width: 992px) {
    .carousel-section {
        padding: 2.5rem 0 3.5rem;
    }

    .carousel-section__stage {
        padding: 0rem 3rem;
        min-height: 280px;
        gap: 0;
        justify-content: center;
    }

    .carousel-section__car {
        flex: 0 0 100%;
        max-width: 620px;
        min-height: auto;
    }

    .carousel-section__stage .carousel-section__car:nth-child(n + 2) {
        display: none;
    }

    .carousel-section__car img {
        max-height: auto;
    }

    .carousel-section__arrow {
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
    }

    .carousel-section__arrow--prev {
        left: 0.5rem;
    }

    .carousel-section__arrow--next {
        right: 0.5rem;
    }
}

/* Carousel – mobile */
@media (max-width: 576px) {
    .carousel-section {
        padding: 0rem 0 3rem;
    }

    .carousel-section__wrap {
        padding: 0 0.5rem;
    }

    .carousel-section__stage {
        flex-direction: row;
        padding: 1.5rem 3rem;
        min-height: auto;
        gap: 1rem;
    }

    .carousel-section__car {
        max-width: 100%;
        min-height: auto;
    }

    .carousel-section__car img {
        max-height: auto;
    }

    .carousel-section__arrow {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .carousel-section__arrow--prev {
        left: 0.25rem;
    }

    .carousel-section__arrow--next {
        right: 0.25rem;
    }

    .carousel-section__dots {
        margin-top: 1.25rem;
    }

    .carousel-section__dot {
        width: 24px;
        height: 5px;
    }
}

/* Locations section */
.locations-section {
    background-color: #ffffff;
    color: #fff;
    padding: 4rem 2rem 4.5rem;
}

.locations-section__inner {
    max-width: 1700px;
    margin: 0 auto;
}

.locations-section__head {
    margin-bottom: 1.75rem;
}

.locations-section__kicker {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0a0a0a;
}

.locations-section__title {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 500;
    color: #0a0a0a;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.locations-section__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
}

.location-card {
    background: #f1f1f1;
    overflow: hidden;
    flex: 0 0 calc((100% - 4.5rem) / 4);
    min-width: 0;
}

.location-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.02) 55%, rgba(255,255,255,0.10) 100%);
}

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

.location-card__media.is-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 55%, rgba(255,255,255,0.10) 100%),
        linear-gradient(90deg, transparent 0 40%, rgba(255,255,255,0.85) 40% 60%, transparent 60% 100%);
    mix-blend-mode: screen;
    opacity: 0.5;
}

.location-card__body {
    padding: 1rem 1rem 1.25rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1rem;
    align-items: center;
}

.location-card__brand {
    font-size: 1.2rem;
    font-weight: 500;
    color: #0a0a0a;
    text-transform: uppercase;
    margin: 0;
}

.location-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0a0a0a;
    font-size: 1rem;
    letter-spacing: 0.02em;
    font-weight: 300;
}

.location-card__pin {
    width: 15px;
    height: 15px;
    display: inline-block;
}

.location-card__pin svg {
    width: 14px;
    height: 14px;
    display: block;
    fill: currentColor;
}

.location-card__countries {
    display: inline-flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.location-card__sep {
    opacity: 0.5;
}

.location-card__cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.9rem;
    background: #2a2a2a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 400;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.location-card__cta:hover {
    background: #3a3a3a;
}

.location-card__cta svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.locations-section__footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.locations-section__seeall {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    background: #0a0a0a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.2s;
}

.locations-section__seeall:hover {
    background: #272727;
}

/* Locations – tablet */
@media (max-width: 992px) {
    .locations-section {
        padding: 3.5rem 1.5rem 4rem;
    }

    .locations-section__track {
        gap: 1.25rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.35rem;
    }

    .location-card{
        flex: 0 0 min(420px, 80vw);
        min-width: 0;
        scroll-snap-align: start;
    }
}

/* Locations – mobile */
@media (max-width: 576px) {
    .locations-section {
        padding: 3rem 1rem 3.5rem;
    }

    .locations-section__track {
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.3rem;
    }

    .location-card{
        flex: 0 0 86vw;
        min-width: 0;
        scroll-snap-align: start;
    }

    .location-card__body {
        grid-template-columns: 1fr;
    }

    .location-card__cta {
        justify-self: start;
    }
}
