@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;
}

/* About hero load animation */
body:not(.is-page-loaded) .about-hero .about-hero__kicker,
body:not(.is-page-loaded) .about-hero .about-hero__title,
body:not(.is-page-loaded) .about-hero .about-hero__media {
    opacity: 0;
    transform: translateY(18px);
}

.about-hero .about-hero__kicker,
.about-hero .about-hero__title,
.about-hero .about-hero__media {
    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 .about-hero .about-hero__kicker { transition-delay: 180ms; }
body.is-page-loaded .about-hero .about-hero__title { transition-delay: 420ms; }
body.is-page-loaded .about-hero .about-hero__media { transition-delay: 660ms; }

/* Scroll reveal animations (About page) */
.reveal-section .reveal-item {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
    transition:
        opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 1100ms 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) .about-hero .about-hero__kicker,
    body:not(.is-page-loaded) .about-hero .about-hero__title,
    body:not(.is-page-loaded) .about-hero .about-hero__media {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* About hero – split layout */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 70vh;
}

.about-hero__content {
    background: #ffffff;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 6rem;
}

.about-hero__kicker {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0a0a0a;
}

.about-hero__title {
    margin: 0;
    font-size: clamp(1.5rem, 2.8vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #0a0a0a;
    text-transform: uppercase;
    max-width: 1700px;
}

.about-hero__media {
    min-height: 320px;
    background: #1a1a1a;
}

.about-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
}

/* Tablet – stack, content on top */
@media (max-width: 992px) {
    .about-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-hero__content {
        padding: 2.5rem 2rem;
        text-align: center;
    }

    .about-hero__title {
        max-width: none;
        font-size: 2rem;
    }

    .about-hero__media {
        min-height: 280px;
    }

    .about-hero__media img {
        min-height: 280px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-hero__content {
        padding: 2rem 1.25rem;
        text-align: center;
    }

    .about-hero__kicker {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .about-hero__title {
        font-size: 1.35rem;
    }

    .about-hero__media {
        min-height: 240px;
    }

    .about-hero__media img {
        min-height: 240px;
    }
}

/* About intro – black block, white text */
.about-intro {
    background: #ffffff;
    color: #0a0a0a;
    padding: 4rem 2rem 5rem;
}

.about-intro__inner {
    max-width: 1700px;
    margin: 0 auto;
}

.about-intro__text {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    text-align: left;
}

/* About intro – tablet */
@media (max-width: 992px) {
    .about-intro {
        padding: 3rem 2rem 4rem;
    }

    .about-intro__text {
        font-size: 1.2rem;
    }
}

/* About intro – mobile */
@media (max-width: 576px) {
    .about-intro {
        padding: 2.5rem 1rem 3.5rem;
    }

    .about-intro__text {
        font-size: 0.9375rem;
        line-height: 1.58;
    }
}

/* About mission & philosophy – two equal columns */
.about-mission {
    background: #f1f1f1;
    color: #0a0a0a;
    padding: 4rem 2rem 5rem;
}

.about-mission__inner {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-mission__col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-mission__media {
    aspect-ratio: 16 / 10;
    background: #1a1a1a;
    overflow: hidden;
}

.about-mission__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-mission__heading {
    margin: 0;
    font-size: clamp(1.5rem, 1.8vw, 2rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.about-mission__text {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    text-align: left;
}

/* About mission – tablet */
@media (max-width: 992px) {
    .about-mission {
        padding: 3rem 1.5rem 4rem;
    }

    .about-mission__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-mission__text {
        font-size: 1rem;
    }
}

/* About mission – mobile */
@media (max-width: 576px) {
    .about-mission {
        padding: 2.5rem 1rem 3.5rem;
    }

    .about-mission__inner {
        gap: 2rem;
    }

    .about-mission__col {
        gap: 1rem;
    }

    .about-mission__text {
        font-size: 1rem;
       
        text-align: left;
    }
}

/* About strategy – two columns (image | text) */
.about-strategy {
    background: #ffffff;
    color: #0a0a0a;
    padding: 4rem 2rem 5rem;
}

.about-strategy__inner {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-strategy__media {
    min-height: 280px;
    background: #1a1a1a;
}

.about-strategy__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 280px;
}

.about-strategy__content {
    display: flex;
    align-items: center;
}

.about-strategy__text {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.65;
    text-align: left;
}

/* About strategy – tablet */
@media (max-width: 992px) {
    .about-strategy {
        padding: 3rem 1.5rem 4rem;
    }

    .about-strategy__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-strategy__media {
        min-height: 260px;
    }

    .about-strategy__media img {
        min-height: 260px;
    }

    .about-strategy__content {
        align-items: flex-start;
    }

    .about-strategy__text {
        font-size: 0.9875rem;
    }
}

/* About strategy – mobile */
@media (max-width: 576px) {
    .about-strategy {
        padding: 2.5rem 1rem 3.5rem;
    }

    .about-strategy__inner {
        gap: 1.5rem;
    }

    .about-strategy__media {
        min-height: 220px;
    }

    .about-strategy__media img {
        min-height: 220px;
    }

    .about-strategy__text {
        font-size: 0.9375rem;
        line-height: 1.6;
        text-align: center;
    }
}

/* Brands we represent */
.about-brands {
    padding: 4rem 2rem 4.5rem;
    color: #ffffff;
    background: radial-gradient(1200px 600px at 15% 30%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 60%),
        linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

.about-brands__inner {
    max-width: 1700px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.about-brands__title {
    margin: 0 0 2.25rem 0;
    font-size: clamp(1.35rem, 2.2vw, 3rem);
    font-weight: 500;
    padding-bottom: 40px;
    text-transform: uppercase;
}

.about-brands__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.25rem, 4vw, 4rem);
    flex-wrap: wrap;
}

.about-brands__logo img {
    width: 300px;
    object-fit: cover;
    display: block;
}

/* Brands – tablet */
@media (max-width: 992px) {
    .about-brands {
        padding: 3.25rem 1.5rem 3.75rem;
        text-align: center;
    }

    .about-brands__title {
        font-size: 2rem;
    }
}

/* Brands – mobile */
@media (max-width: 576px) {
    .about-brands {
        padding: 2.75rem 1rem 3.25rem;
    }

    .about-brands__logos {
        gap: 1rem;
    }

    .about-brands__logo img{
        width: 200px;
    }
}   