/* Amana Workplace - Tailwind-inspired CSS */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Mulish', sans-serif;
    background-color: #141414;
    color: white;
    line-height: 1.6;
}

/* Font Classes */
.font-heading {
    font-family: 'Mulish', sans-serif;
}

/* Header */
#header {
    transition: all 0.3s ease;
}

/* Glass tối khi cuộn (kiểu frosted / glassmorphism) */
#header.scrolled {
    background-color: rgba(15, 15, 15, 0.55);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 32px rgba(0, 0, 0, 0.35);
}

#header.scrolled #header-inner {
    height: 100px !important;
}

/* Hero scroll cue */
.hero-scroll-cue {
    font-family: 'Mulish', sans-serif;
}

.hero-scroll-cue .hero-scroll-line {
    position: relative;
    display: block;
    width: 2px;
    height: 3rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-cue .hero-scroll-line::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    border-radius: 9999px;
    background: white;
    transform-origin: top center;
    animation: scrollCueGrow 1.8s ease-in-out infinite;
}

@keyframes scrollCueGrow {
    0%, 100% {
        transform: translateX(-50%) scaleY(0.15);
    }
    50% {
        transform: translateX(-50%) scaleY(1);
    }
}

@media (min-width: 768px) {
    .hero-scroll-cue .hero-scroll-line {
        height: 3.25rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #1a1714;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 23, 20, 0.9) 0%, rgba(26, 23, 20, 0.6) 50%, transparent 100%);
}

.hero-overlay-secondary {
    position: absolute;
    inset: 0;
    background-color: rgba(26, 23, 20, 0.2);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 1.5rem md:px-10 lg:px-14 xl:px-20;
}

.hero-title {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    text-align: center;
    color: white;
    max-width: 100%;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title .hero-char {
    display: inline-block;
}

/* Pagination Nav */
.pagination-nav {
    position: absolute;
    left: 1.5rem md:left-10 lg:left-14;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 0.75rem md:gap-4;
    align-items: center;
}

.pagination-nav button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.pagination-nav button:not(.active) {
    opacity: 0.4;
}

.pagination-nav button:not(.active):hover {
    opacity: 0.7;
}

.pagination-nav .page-num {
    font-size: 0.75rem md:text-sm;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: white;
}

.pagination-nav button.active .page-num {
    color: #d4c4a8;
}

.pagination-nav .page-line {
    width: 1px;
    height: 1.5rem md:h-8;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.pagination-nav button.active .page-line {
    height: 2.5rem md:h-12;
    background-color: #d4c4a8;
}

/* Slide Navigation */
.slide-nav {
    position: absolute;
    bottom: 2rem;
    right: 1.5rem md:right-10 lg:right-14;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.slide-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem md:w-12;
    height: 2.5rem md:h-12;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s;
}

.slide-nav button:hover:not(:disabled) {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.slide-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    bottom: 2rem;
    left: 1.5rem md:left-10 lg:left-14;
    z-index: 50;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.slide-counter .current {
    font-size: 1.5rem md:text-3xl;
    font-weight: 300;
    color: white;
}

.slide-counter .separator {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.slide-counter .total {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Progress Bar */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

.progress-bar-fill {
    height: 100%;
    background-color: #d4c4a8;
    transition: all 0.7s ease-out;
}

/* Quote Section */
.quote-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #141414;
    padding: 4rem 1.25rem;
}

.quote-bg {
    position: absolute;
    inset: 0;
    background-color: #141414;
    transform-origin: center;
    will-change: transform;
}

.quote-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 850px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quote-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 0.4em;
    color: white;
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: clamp(1.1rem, 2.8vw, 1.9rem);
    line-height: 1.5;
}

.quote-text .scroll-word {
    display: inline-block;
    color: rgba(255, 255, 255, 0.15);
    transition: color 0.1s;
}

.quote-cta {
    margin-top: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 48px;
    border: 1px solid #DE5D38;
    background-color: #DE5D38;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
    font-family: 'Mulish', sans-serif;
}

.quote-cta:hover {
    background-color: #c94f31;
    border-color: #c94f31;
    color: white;
}

/* Section Headings */
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 30px;
    font-family: 'SVN-Moneta', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
}

.section-kicker::before {
    content: '';
    display: block;
    width: 2.25rem;
    height: 1px;
    background-color: currentColor;
    flex-shrink: 0;
}

.text-center .section-kicker,
.projects-showcase-header .section-kicker {
    display: flex;
    justify-content: center;
    width: 100%;
}

.section-title {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.section-title .scroll-word {
    display: inline-block;
    color: rgba(255, 255, 255, 0.15);
    transition: color 0.1s;
}

.scroll-char {
    display: inline-block;
}

/* Content Section */
.content-section {
    background-color: #141414;
}

.content-inner {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.section-number {
    font-family: 'Mulish', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6rem;
    color: rgba(255, 255, 255, 0.2);
}

.section-header {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.25rem;
}

.section-title-main {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.section-title-main .scroll-word {
    display: inline-block;
    color: rgba(255, 255, 255, 0.15);
}

.section-intro {
    max-width: 900px;
}

.section-intro p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.75;
}

.section-intro .scroll-word {
    color: rgba(255, 255, 255, 0.15);
}

/* Trang chủ — Về Amana: full-bleed ảnh, overlay trái, serif headline + CTA cam */
/* Grid 1fr / auto / 1fr: phần trống trên & dưới luôn bằng nhau → căn giữa thị giác (tránh lệch do padding-top > padding-bottom) */
.home-about-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(28rem, 88vh, 56rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(clamp(5.25rem, 11vw, 7.5rem), 1fr) auto minmax(clamp(5.25rem, 11vw, 7.5rem), 1fr);
    overflow: hidden;
    background-color: #1a1f1c;
    box-sizing: border-box;
}

.home-about-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    grid-column: 1;
    grid-row: 1 / -1;
}

.home-about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-about-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    grid-column: 1;
    grid-row: 1 / -1;
    pointer-events: none;
    /* Ảnh sáng (văn phòng trắng): tăng độ đậm bên trái để chữ trắng vẫn đọc được */
    background: linear-gradient(
        90deg,
        rgba(18, 20, 22, 0.94) 0%,
        rgba(18, 20, 22, 0.78) 32%,
        rgba(18, 20, 22, 0.35) 55%,
        rgba(18, 20, 22, 0.08) 100%
    );
}

@media (max-width: 767px) {
    .home-about-hero-gradient {
        background: linear-gradient(
            180deg,
            rgba(18, 20, 22, 0.9) 0%,
            rgba(18, 20, 22, 0.62) 42%,
            rgba(18, 20, 22, 0.28) 100%
        );
    }
}

.home-about-hero-inner {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .home-about-hero-inner {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .home-about-hero-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.home-about-hero-inner .about-hero-kicker,
.home-about-hero-inner .about-hero-heading,
.home-about-hero-inner .about-hero-body,
.home-about-hero-inner .about-hero-cta {
    max-width: min(36rem, 100%);
}

.about-hero-kicker {
    margin: 0 0 1rem;
    font-family: 'Mulish', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
}

.about-hero-heading {
    margin: 0 0 1.35rem;
    font-family: 'EB Garamond', 'Times New Roman', serif;
    font-size: clamp(1.85rem, 4.2vw, 3.35rem);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #fff;
}

.about-hero-body.about-text {
    margin: 0 0 1.75rem;
    font-family: 'Mulish', sans-serif;
    font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    max-width: 32rem;
}

.about-hero-cta.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.65rem;
    border-radius: 9999px;
    font-family: 'Mulish', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: #fff;
    background-color: #ee6b4d;
    border: 1px solid #ee6b4d;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
    .about-hero-cta.about-link:hover {
        background-color: #e55a3a;
        border-color: #e55a3a;
        color: #fff;
    }
}

/* Images Grid */
.images-grid {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1.25rem;
}

@media (min-width: 640px) {
    .images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .images-grid {
        padding: 0 1.75rem;
        grid-template-columns: repeat(3, 1fr);
    }
}

.images-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    overflow: hidden;
}

.images-grid > div:first-child img {
    aspect-ratio: 16/9;
}

.images-grid > div:not(:first-child) img {
    aspect-ratio: 4/3;
}

/* Bullet Points */
.bullet-section {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.25rem;
}

.bullet-section .scroll-word {
    color: rgba(255, 255, 255, 0.15);
}

.bullet-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.75;
    color: #B8B8B8;
}

/* Projects Grid */
.projects-section {
    background-color: #141414;
}

.projects-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
    padding: 0 1.25rem sm:px-7 md:px-8;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem 1.5rem;
}

@media (min-width: 640px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    display: block;
    text-decoration: none;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-card:hover h4 {
    color: #B8B8B8;
}

.project-image {
    position: relative;
    margin-bottom: 1.5rem;
    aspect-ratio: 437/480;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

/* Projects Horizontal Scroll Showcase */
.projects-showcase {
    position: relative;
    overflow: hidden;
}

.projects-showcase-wrapper {
    padding: 6rem 1.25rem;
}

@media (min-width: 768px) {
    .projects-showcase-wrapper {
        padding: 6rem 2.5rem;
    }
}

@media (min-width: 1024px) {
    .projects-showcase-wrapper {
        padding: 6rem 3.5rem;
    }
}

.projects-showcase-header {
    margin-bottom: 4rem;
    text-align: center;
}

.projects-showcase-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    will-change: transform;
}

.projects-showcase .project-card {
    flex-shrink: 0;
    width: 320px;
}

@media (min-width: 768px) {
    .projects-showcase .project-card {
        width: 400px;
    }
}

@media (min-width: 1024px) {
    .projects-showcase .project-card {
        width: 450px;
    }
}

.project-card-image {
    position: relative;
    width: 100%;
    height: 60vh;
    max-height: 600px;
    min-height: 400px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.project-card-image img {
    transition: transform 0.5s;
}

.projects-showcase .project-card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-card-content {
    padding: 0 0.25rem;
}

.projects-showcase-footer {
    margin-top: 4rem;
    text-align: center;
}

.project-category {
    font-size: 0.875rem;
    color: #B8B8B8;
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    transition: color 0.2s;
}

/* Pagination */
.pagination {
    margin-top: 4rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.25rem md:gap-6;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    background: transparent;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.1);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn.active {
    background-color: #DE5D38;
    color: white;
}

/* Hero slide vertical nav: không dùng kiểu nút tròn / nền hover của .pagination-btn */
#home-hero-section .pagination-btn {
    min-width: unset;
    padding: 0;
    border-radius: 0;
}

#home-hero-section .pagination-btn:hover:not(:disabled) {
    background-color: transparent;
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    color: #B8B8B8;
}

/* CTA Section */
.cta-section {
    background-color: #141414;
    padding: 6rem 1.25rem;
    text-align: center;
}

/* Trang chủ: CTA cuối trang — layout mẫu (nền tối, căn trái, 3 cột + slash) */
.cta-section--home-footer {
    text-align: left;
    padding-top: clamp(4rem, 10vw, 6.5rem);
    padding-bottom: clamp(4rem, 10vw, 6.5rem);
    padding-left: 0;
    padding-right: 0;
}

.cta-footer-heading {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(2rem, 5.5vw, 3.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
    max-width: 22ch;
    letter-spacing: -0.02em;
}

.cta-footer-heading em {
    font-style: italic;
    font-weight: inherit;
}

.cta-footer-wave {
    font-style: normal;
    display: inline-block;
}

/* Tất cả nằm 1 hàng, space-between đều đều */
.cta-footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem;
}

.cta-footer-sep {
    display: none;
    flex-shrink: 0;
    width: 1px;
    height: 3.25rem;
    margin-top: 0.35rem;
    background: rgba(255, 255, 255, 0.28);
    transform: rotate(-18deg);
    transform-origin: center center;
    user-select: none;
    align-self: center;
}

@media (min-width: 900px) {
    .cta-footer-row {
        flex-wrap: nowrap;
    }

    .cta-footer-sep {
        display: block;
    }
}

.cta-footer-label {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.52);
    margin: 0 0 0.65rem;
    max-width: 17rem;
}

.cta-footer-main {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    gap: 0.3em;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.cta-footer-main--external {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35em;
}

.cta-footer-main--external svg {
    flex-shrink: 0;
    transform: translateY(0.05em);
    transition: transform 0.2s ease;
}

@media (hover: hover) {
    .cta-footer-main:hover {
        color: rgba(255, 255, 255, 0.88);
    }

    .cta-footer-main--external:hover svg {
        transform: translate(2px, -2px);
    }
}

.cta-title {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 16px 60px 16px 38px;
    font-family: 'Mulish', sans-serif;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    position: relative;
    color: white;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.cta-btn::after {
    content: "";
    width: 20px;
    height: 0.5px;
    background: currentColor;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(1);
    transform-origin: right center;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

@media (hover: hover) {
    .cta-btn:hover {
        background: white;
        color: #141414;
        border-color: white;
    }

    .cta-btn:hover::after {
        transform: translateY(-50%) scaleX(1.2);
    }
}

/* Corporate Button (giống dự án tham khảo) */
.corporate-btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 56px 12px 34px;
    font-family: 'Mulish', sans-serif;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    position: relative;
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.corporate-btn::after {
    content: "";
    width: 20px;
    height: 0.5px;
    background: currentColor;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(1);
    transform-origin: right center;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

@media (hover: hover) {
    .corporate-btn:hover {
        background: white;
        color: #141414;
        border-color: white;
    }

    .corporate-btn:hover::after {
        transform: translateY(-50%) scaleX(1.2);
    }
}

/* Project Detail Hero */
.project-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    padding: 2rem 1.25rem;
    background-color: #1a1714;
}

.project-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.project-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    will-change: transform;
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 20, 20, 1) 0%, rgba(20, 20, 20, 0.8) 30%, rgba(20, 20, 20, 0.4) 60%, rgba(20, 20, 20, 0.2) 100%);
}

.project-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.project-hero-title {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.project-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.project-meta-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-meta-value {
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    opacity: 0.4;
}

/* About Page */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1a1714;
    padding: 8rem 1.25rem 4rem;
}

.about-hero-title {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.1;
}

.about-hero-desc {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(0.875rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    max-width: 800px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

.mission-vision {
    background-color: #141414;
    padding: 6rem 1.25rem;
}

.mv-container {
    margin: 0 auto;
    max-width: 1440px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 768px) {
    .mv-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mv-item h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.mv-item p {
    font-size: 1rem;
    color: #B8B8B8;
    line-height: 1.8;
}

.core-values {
    background-color: #141414;
    padding: 6rem 1.25rem;
}

.cv-container {
    margin: 0 auto;
    max-width: 1440px;
}

.cv-title {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 4rem;
}

.cv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 640px) {
    .cv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cv-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cv-item {
    text-align: center;
}

.cv-item h4 {
    font-family: 'Mulish', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.cv-item p {
    font-size: 0.875rem;
    color: #B8B8B8;
    line-height: 1.6;
}

/* Contact Page — split layout (dark) */
.contact-split-page {
    background-color: #0a0a0a;
    padding: 9rem 0 0;
}

.contact-split-inner {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 9rem);
    max-width: 1440px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-split-inner {
        flex-direction: row;
        min-height: calc(100vh - 9rem);
    }
}

/* Sidebar ~1/3 */
.contact-split-sidebar {
    flex: 0 0 auto;
    padding: 2rem 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .contact-split-sidebar {
        flex: 0 0 34%;
        max-width: 420px;
        padding: 3rem 2.5rem 3rem 2rem;
    }
}

.contact-split-logo {
    display: inline-block;
    margin-bottom: 2rem;
    opacity: 1;
    transition: opacity 0.2s ease;
}

@media (hover: hover) {
    .contact-split-logo:hover {
        opacity: 0.85;
    }
}

.contact-split-logo-img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.contact-split-title {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #f5f5f5;
    line-height: 1.15;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.contact-split-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-family: 'Mulish', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.contact-split-map-section {
    width: 100%;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-split-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-split-info-block {
    margin: 0;
}

.contact-split-info-label {
    margin: 0 0 0.35rem;
    font-family: 'Mulish', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.contact-split-info-value {
    margin: 0;
    font-family: 'Mulish', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.55;
    color: #f5f5f5;
}

.contact-split-info-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

@media (hover: hover) {
    .contact-split-info-value a:hover {
        color: #fff;
        opacity: 0.9;
    }
}

.contact-split-map {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.9;
}

.contact-split-map iframe {
    display: block;
}

.contact-split-nav-link {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

@media (hover: hover) {
    .contact-split-nav-link:hover {
        color: rgba(255, 255, 255, 0.9);
    }
}

.contact-split-nav-current {
    color: #fff;
    font-weight: 700;
}

.contact-split-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: rgba(120, 200, 255, 0.55);
    flex-shrink: 0;
}

.contact-split-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.contact-split-back-arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.contact-split-back-text {
    font-family: 'Mulish', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@media (hover: hover) {
    .contact-split-back:hover {
        color: rgba(255, 255, 255, 0.85);
        gap: 0.7rem;
    }

    .contact-split-back:hover .contact-split-back-arrow {
        transform: translateX(-3px);
    }
}

/* Main ~2/3 */
.contact-split-main {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 2rem 1.25rem 3.5rem;
}

@media (min-width: 1024px) {
    .contact-split-main {
        align-items: center;
        padding: 3rem 2.5rem 3rem 2rem;
    }
}

.contact-split-card {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.contact-split-form {
    margin: 0;
}

.contact-split-field {
    margin-bottom: 1.75rem;
}

.contact-split-field:last-of-type {
    margin-bottom: 2rem;
}

.contact-split-label {
    display: block;
    font-family: 'Mulish', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f0f0f0;
    margin-bottom: 0.5rem;
}

.contact-split-req {
    color: #e85d5d;
    text-decoration: none;
    font-weight: 700;
    margin-left: 0.15em;
}

.contact-split-hint {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    margin: -0.15rem 0 0.65rem;
}

.contact-split-input--line {
    display: block;
    width: 100%;
    padding: 0.6rem 0 0.75rem;
    font-family: 'Mulish', sans-serif;
    font-size: 0.9375rem;
    color: #fafafa;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-split-input--line::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-split-input--line:focus {
    border-bottom-color: rgba(255, 255, 255, 0.55);
}

.contact-split-row2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem 2rem;
}

@media (min-width: 640px) {
    .contact-split-row2 {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-split-textarea {
    display: block;
    width: 100%;
    min-height: 8rem;
    padding: 0.6rem 0 0.75rem;
    font-family: 'Mulish', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #fafafa;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    outline: none;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.contact-split-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-split-textarea:focus {
    border-bottom-color: rgba(255, 255, 255, 0.55);
}

.contact-split-submit {
    width: 100%;
    padding: 16px 60px 16px 38px;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0a0a0a;
    background-color: #fff;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background-color 0.25s ease;
}

.contact-split-submit::after {
    content: "";
    width: 20px;
    height: 1px;
    background: #0a0a0a;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) scaleX(1);
    transform-origin: right center;
    transition: transform 0.25s ease;
}

@media (hover: hover) {
    .contact-split-submit:hover {
        background-color: #e5e5e5;
    }

    .contact-split-submit:hover::after {
        transform: translateY(-50%) scaleX(1.2);
    }
}

/* Utility Classes */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.text-center {
    text-align: center;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== FOOTER ===== */

.site-footer {
    position: relative;
    background: transparent;
    color: white;
    padding-top: 40px;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.footer-top-wrapper {
    position: relative;
    padding: 76px 0;
    margin-bottom: -60px;
    z-index: 10;
}

.footer-top-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: calc(100% - 122px);
    background: #1f1f1f;
    z-index: -1;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 100px;
}

.footer-nav {
    display: flex;
    gap: 76px;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a {
    position: relative;
    display: inline-block;
    color: white;
}

.footer-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.footer-bottom-wrapper {
    background: #333333;
    padding-top: 68px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 70px;
    padding: 24px 0;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 22px 140px 22px 80px;
    font-size: 13px;
    letter-spacing: 0.08em;
    position: relative;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
}

.footer-cta::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 26px;
    height: 1px;
    background: currentColor;
    transform: translateY(-50%) scaleX(1);
    transform-origin: right center;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.footer-cta-mobile {
    display: none;
}

.to-top {
    position: absolute;
    right: 50px;
    top: 40px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #888;
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 700;
    writing-mode: vertical-rl;
    text-decoration: none;
    transition: color 0.25s ease;
}

.to-top-text {
    display: inline-block;
    transition: transform 0.25s ease;
}

.to-top::before {
    content: "";
    width: 1px;
    height: 60px;
    background: currentColor;
    transition: transform 0.25s ease;
}

.footer-brand {
    color: white;
}

.footer-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.socials {
    display: flex;
    gap: 16px;
    justify-self: start;
    align-items: center;
}

.socials a {
    color: white;
    opacity: 0.9;
    display: flex;
    align-items: center;
    transition: opacity 0.25s ease, color 0.25s ease;
}

.socials a:hover {
    opacity: 1;
    color: #d4c4a8;
}

.footer-bottom small {
    justify-self: end;
    opacity: 0.6;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

/* Footer Hover States */
@media (hover: hover) {
    .footer-nav a:hover::after {
        transform: scaleX(1);
    }

    .footer-cta:hover,
    .footer-cta-mobile:hover {
        background: white;
        color: #141414;
        border-color: white;
    }

    .footer-cta:hover::after,
    .footer-cta-mobile:hover::after {
        transform: translateY(-50%) scaleX(1.2);
    }

    .to-top:hover::before {
        transform: translateY(-4px);
    }

    .to-top:hover .to-top-text {
        transform: translateY(2px);
    }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 40px;
        gap: 32px;
    }

    .footer-top-wrapper {
        padding: 56px 0;
        margin-bottom: -48px;
    }

    .footer-bottom-wrapper {
        padding-top: 56px;
    }

    .footer-bottom {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 100px;
    }

    .footer-bottom-wrapper {
        padding-top: 70px;
    }

    .footer-top-wrapper {
        padding: 28px 20px;
        margin-bottom: -38px;
    }

    .footer-top-wrapper::before {
        width: calc(100% - 46px);
    }

    .footer-top {
        padding-right: 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        column-gap: 14px;
        row-gap: 10px;
    }

    .footer-nav-col {
        width: 45%;
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 16px;
        padding: 36px 0;
    }

    .footer-cta {
        width: 100%;
    }

    .footer-top .footer-cta {
        display: none;
    }

    .footer-cta-mobile {
        display: flex;
        width: calc(100% - 40px);
        margin: 0 auto;
        padding: 14px 70px 14px 50px;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-align: center;
    }

    .to-top {
        display: flex;
        right: 14px;
        top: 100px;
        gap: 14px;
    }

    .to-top::before {
        height: 36px;
    }

    .socials {
        justify-self: center;
    }

    .footer-bottom small {
        justify-self: center;
    }
}

/* --------------------------------------------------------------------------
   Why Choose Us — nền tối, copy + gallery 2 cột parallax (JS)
   -------------------------------------------------------------------------- */
.why-choose-section {
    color: #fff;
}

.why-choose-grid--parallax {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 1.25rem 3.5rem;
}

@media (min-width: 640px) {
    .why-choose-grid--parallax {
        padding: 3.5rem 1.75rem 4rem;
    }
}

@media (min-width: 1024px) {
    .why-choose-grid--parallax {
        grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
        gap: clamp(2rem, 4vw, 4rem);
        min-height: clamp(560px, 88vh, 920px);
        padding: clamp(3.25rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3.5rem);
    }
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.why-choose-reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 3rem;
    margin-top: 1.75rem;
}

.why-choose-reason-box {
    border: none;
    padding: 0;
}

.why-choose-reason-box--offset {
    margin-top: 40px;
}

.why-choose-reason-title {
    font-family: 'Mulish', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.625rem;
    line-height: 1.3;
}

.why-choose-reason-desc {
    font-family: 'Mulish', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.why-choose-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
    font-family: 'SVN-Moneta', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1;
}

.why-choose-kicker::before {
    content: '';
    display: block;
    width: 2.25rem;
    height: 1px;
    background-color: currentColor;
    flex-shrink: 0;
}

.why-choose-kicker--on-dark {
    color: rgba(255, 255, 255, 0.55);
}

.why-choose-heading {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(1.65rem, 3.8vw, 2.65rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
    max-width: 34rem;
}

.why-choose-heading--on-dark {
    color: #f5f5f5;
}

.why-choose-heading--on-dark .scroll-char {
    color: #f5f5f5;
}

.why-choose-lead {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(1rem, 1.35vw, 1.125rem);
    font-weight: 400;
    line-height: 1.65;
    margin: 0 0 1.75rem;
    max-width: 36rem;
}

.why-choose-lead--on-dark {
    color: rgba(255, 255, 255, 0.72);
}

.why-choose-subheading {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.75rem;
    max-width: 34rem;
}

.why-choose-subheading--on-dark {
    color: #fff;
}

.why-choose-body {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
    font-weight: 400;
    line-height: 1.7;
    margin: 0 0 2rem;
    max-width: 36rem;
}

.why-choose-body--on-dark {
    color: rgba(255, 255, 255, 0.65);
}

.why-choose-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    align-self: flex-start;
    padding: 0.85rem 1.65rem;
    border-radius: 9999px;
    font-family: 'Mulish', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background-color: #de5d38;
    border: 1px solid #de5d38;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
    .why-choose-cta:hover {
        background-color: #c94f31;
        border-color: #c94f31;
    }
}

.why-choose-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    min-height: 280px;
    max-height: min(85vh, 820px);
    overflow: hidden;
    background: #0a0a0a;
}

@media (min-width: 1024px) {
    .why-choose-gallery {
        min-height: clamp(420px, 72vh, 780px);
        max-height: min(88vh, 860px);
        gap: 10px;
    }
}

.why-choose-col {
    overflow: hidden;
    position: relative;
    min-height: 0;
    will-change: transform;
}

.why-choose-col-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 1024px) {
    .why-choose-col-inner {
        gap: 10px;
    }
}

.why-choose-col--down .why-choose-col-inner {
    padding-top: clamp(2rem, 8vw, 4.5rem);
}

.why-choose-figure {
    margin: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.why-choose-figure--tall {
    aspect-ratio: 3 / 4;
}

.why-choose-figure--mid {
    aspect-ratio: 4 / 3;
}

.why-choose-gallery-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Utility Classes */

.about-collage {
    display: grid;
    grid-template-columns: 1.35fr 0.42fr 0.42fr;
    grid-template-rows: minmax(0, 1fr) minmax(0, 0.55fr);
    gap: 10px;
    min-height: clamp(280px, 62vw, 520px);
}

@media (max-width: 900px) {
    .about-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        min-height: unset;
    }

    .about-collage-item--main {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .about-collage-item--tall-a {
        grid-column: 1;
        grid-row: 2;
    }

    .about-collage-item--tall-b {
        grid-column: 2;
        grid-row: 2;
    }

    .about-collage-item--wide {
        grid-column: 1 / -1;
        grid-row: 3;
    }
}

.about-collage-item {
    margin: 0;
    min-height: 0;
    will-change: transform;
}

.about-collage-item--main {
    grid-column: 1;
    grid-row: 1 / 3;
}

.about-collage-item--tall-a {
    grid-column: 2;
    grid-row: 1 / 3;
}

.about-collage-item--tall-b {
    grid-column: 3;
    grid-row: 1;
}

.about-collage-item--wide {
    grid-column: 3;
    grid-row: 2;
}

.about-collage-frame {
    width: 100%;
    height: 100%;
    min-height: 120px;
    overflow: hidden;
    background: #1f1f1f;
}

.about-collage-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}


.about-workplace-viewport {
    width: 100%;
    overflow: hidden;
    background: #0a0a0a;
}

.about-workplace-inner {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    aspect-ratio: 21 / 9;
    min-height: 200px;
    max-height: min(72vh, 820px);
    overflow: hidden;
}

@media (max-width: 768px) {
    .about-workplace-inner {
        aspect-ratio: 16 / 10;
        max-height: none;
    }
}

.about-workplace-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.about-page-team-heading {
    font-family: 'Mulish', sans-serif;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.25rem;
}

@media (min-width: 640px) {
    .about-team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem 1.5rem;
    }
}

.about-team-card {
    text-align: center;
}

.about-team-photo {
    margin: 0 auto 1rem;
    max-width: 280px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(160deg, #2a2a2e 0%, #1f1f23 100%);
    border-radius: 2px;
}

.about-team-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-team-name {
    font-family: 'Mulish', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.25rem;
}

.about-team-role {
    font-family: 'Mulish', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.about-page-cta-title {
    font-family: 'Mulish', sans-serif;
}

.about-page-cta-title .scroll-char {
    color: inherit;
}

