/* 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: #000825;
    color: white;
    line-height: 1.6;
}

/* Font Classes */
.font-heading {
    font-family: 'SVN-Moneta', 'Mulish', sans-serif;
}

.font-amana {
    font-family: 'Mulish', 'SVN-Moneta', sans-serif;
}

.font-svn-moneta {
    font-family: 'SVN-Moneta', sans-serif;
}

/* Header */
#header {
    transition: transform 0.35s ease, background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 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;
}

/* Desktop: menu Sản phẩm có panel con — giữ mở khi di chuyển chuột xuống panel */
.nav-dropdown-panel {
    transition-delay: 0ms, 0ms;
}

.group:hover .nav-dropdown-panel {
    transition-delay: 75ms, 75ms;
}

.nav-dropdown-category-link {
    text-decoration: none;
}

.san-pham-detail-list {
    list-style: none;
    margin: 0 auto 2.5rem;
    max-width: 720px;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.san-pham-detail-link {
    display: block;
    padding: 0.65rem 0;
    font-size: 1.0625rem;
    line-height: 1.5;
    color: #b8b8b8;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease;
}

.san-pham-detail-link:hover {
    color: #fff;
}

/* 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: #000825;
}

.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(0, 8, 37, 0.9) 0%, rgba(0, 8, 37, 0.6) 50%, transparent 100%);
}

.hero-overlay-secondary {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 8, 37, 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: 'SVN-Moneta', '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;
}

/* Trang chủ — tiêu đề hero: đủ lớn trên mobile, scale mượt tới desktop */
#home-hero-section .hero-home-title {
    font-size: clamp(1.625rem, 4vw + 1rem, 3.5rem);
    line-height: 1.1;
}

/* 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: #00092a;
    padding: 4rem 1.25rem;
}

.quote-bg {
    position: absolute;
    inset: 0;
    background-color: #00092a;
    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;
}

/* Trang chủ — đoạn quote (section 2): chữ lớn hơn trên mobile */
.quote-text--home {
    font-family: 'SVN-Moneta', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    font-size: clamp(1.24rem, 4.5vw + 0.3rem, 1.58rem);
}

@media (min-width: 768px) {
    .quote-text--home {
        font-size: clamp(1.1rem, 2.5vw, 1.7rem);
    }
}

.quote-cta {
    margin-top: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 48px;
    background-color: #0C2674;
    border: 1px solid #0C2674;
    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: #081A4F;
    border-color: #081A4F;
    color: white;
}

/* Section Headings */
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 30px;
    font-family: 'Mulish', 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: 'SVN-Moneta', serif;
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.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: #000825;
}

.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: 'SVN-Moneta', serif;
    font-size: clamp(1.6rem, 3vw + 0.5rem, 3rem);
    font-weight: 700;
    line-height: 1.15;
    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;
    color: #b8b8b8;
}

.section-intro h1,
.section-intro h2,
.section-intro h3,
.section-intro h4 {
    font-family: 'SVN-Moneta', serif !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    display: block !important;
}

.section-intro h1 { font-size: 2.25rem !important; margin-top: 2rem !important; margin-bottom: 1rem !important; line-height: 1.3 !important; }
.section-intro h2 { font-size: 1.875rem !important; margin-top: 1.75rem !important; margin-bottom: 1rem !important; line-height: 1.35 !important; }
.section-intro h3 { font-size: 1.5rem !important; margin-top: 1.5rem !important; margin-bottom: 0.875rem !important; line-height: 1.4 !important; }
.section-intro h4 { font-size: 1.25rem !important; margin-top: 1.5rem !important; margin-bottom: 0.875rem !important; line-height: 1.4 !important; }

.section-intro hr {
    border-color: rgba(255, 255, 255, 0.2) !important;
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
}

.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;
    height: 100vh;
    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: #00092a;
    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(0, 8, 37, 0.94) 0%,
            rgba(0, 8, 37, 0.78) 32%,
            rgba(0, 8, 37, 0.35) 55%,
            rgba(0, 8, 37, 0.08) 100%);
}

@media (max-width: 767px) {
    .home-about-hero-gradient {
        background: linear-gradient(180deg,
                rgba(0, 8, 37, 0.9) 0%,
                rgba(0, 8, 37, 0.62) 42%,
                rgba(0, 8, 37, 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: 'SVN-Moneta', serif;
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.75rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #fff;
}

.about-hero-body.about-text {
    margin: 0 0 0.25rem;
    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: #0C2674;
    border: 1px solid #0C2674;
    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: #081A4F;
        border-color: #081A4F;
        color: #fff;
    }
}

/* Home video — cover viewport + scale to crop YouTube title/footer chrome (embed API cannot remove it entirely) */
#home-video .video-container {
    overflow: hidden;
}

#home-video .video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    border: 0;
    transform: translate(-50%, -50%) scale(1.16);
    transform-origin: center center;
    pointer-events: none;
}

/* 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, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .images-grid {
        padding: 0 1.75rem;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.images-grid>div {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    min-height: 0;
}

.images-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Projects Grid */
.projects-section {
    background-color: #00092a;
}

.projects-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
}

@media (min-width: 640px) {
    .projects-container {
        padding-left: max(1.75rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.75rem, env(safe-area-inset-right, 0px));
    }
}

@media (min-width: 768px) {
    .projects-container {
        padding-left: max(2rem, env(safe-area-inset-left, 0px));
        padding-right: max(2rem, env(safe-area-inset-right, 0px));
    }
}

.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);
    }

    .projects-grid .project-card:nth-child(3n+1),
    .projects-grid .project-card:nth-child(3n+3) {
        margin-top: 5rem;
    }

    .projects-grid .project-card:nth-child(3n+2) {
        margin-top: 0;
    }
}

.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;
}

/* Swiper Slider Handles Layout */

.project-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    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-family: 'SVN-Moneta', 'Mulish', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    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;
}

.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;
    text-decoration: none;
    box-sizing: border-box;
}

a.pagination-btn:hover:not(.pointer-events-none) {
    background-color: rgba(255, 255, 255, 0.1);
}

.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: #0C2674;
    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: #000825;
    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: 'SVN-Moneta', serif;
    font-size: clamp(1.75rem, 4vw, 4rem);
    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: 'SVN-Moneta', serif;
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.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: #000825;
        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: #000825;
        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 0;
    background-color: #000825;
}

.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(0, 8, 37, 1) 0%, rgba(0, 8, 37, 0.8) 30%, rgba(0, 8, 37, 0.4) 60%, rgba(0, 8, 37, 0.2) 100%);
}

.project-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.project-hero-title {
    font-family: 'SVN-Moneta', serif;
    font-size: clamp(1.5rem, 3.5vw, 4rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.project-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 2rem;
    width: 100%;
    max-width: 100%;
}

.project-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

@media (max-width: 639px) {
    .project-meta {
        grid-template-columns: 1fr;
    }
}

.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: #00092a;
    padding: 10rem 1.25rem 4rem;
}

.about-hero-title {
    font-family: 'SVN-Moneta', serif;
    font-size: clamp(1.75rem, 4vw, 4rem);
    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: #00092a;
    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: 'SVN-Moneta', serif;
    font-size: clamp(1.35rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.mv-item p {
    font-size: 1rem;
    color: #B8B8B8;
    line-height: 1.8;
}

/* About — editorial 2 cột (sứ mệnh / giá trị), input: không; output: layout giống mẫu dark luxury */
.about-editorial {
    background-color: #000825;
    padding-top: clamp(4rem, 9vw, 7rem);
    padding-bottom: clamp(4rem, 9vw, 7rem);
    padding-left: 0;
    padding-right: 0;
}

/* Cùng nhịp lề ngang với .about-split-inner & section px-5 sm:px-7 md:px-8 */
.about-editorial-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .about-editorial-inner {
        padding-left: max(1.75rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.75rem, env(safe-area-inset-right, 0px));
    }
}

@media (min-width: 768px) {
    .about-editorial-inner {
        padding-left: max(2rem, env(safe-area-inset-left, 0px));
        padding-right: max(2rem, env(safe-area-inset-right, 0px));
    }
}

@media (min-width: 1024px) {
    .about-editorial-inner {
        padding-left: max(env(safe-area-inset-left, 0px), clamp(2rem, 4vw, 3.5rem));
        padding-right: max(env(safe-area-inset-right, 0px), clamp(2rem, 4vw, 3.5rem));
    }
}

.about-editorial-row {
    display: grid;
    gap: 2rem 2.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .about-editorial-row {
        grid-template-columns: minmax(0, 0.34fr) minmax(0, 1fr);
        gap: 2rem 3.5rem;
    }
}

.about-editorial-row--values {
    margin-top: clamp(4rem, 12vw, 8rem);
}

.about-editorial-title {
    font-family: 'SVN-Moneta', serif;
    font-size: clamp(1.65rem, 3.2vw, 2.65rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    margin: 0;
}

.about-editorial-link {
    display: inline-flex;
    align-items: baseline;
    gap: 0.2em;
    margin-top: 2rem;
    font-family: 'Mulish', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.about-editorial-link:hover {
    opacity: 0.72;
}

.about-editorial-ext {
    font-size: 0.88em;
    line-height: 1;
    translate: 0 0.05em;
}

.about-editorial-body {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.68);
}

.about-editorial-body p {
    margin: 0 0 1.2em;
}

.about-editorial-body p:last-child {
    margin-bottom: 0;
}

.core-values {
    background-color: #00092a;
    padding: 6rem 1.25rem;
}

.cv-container {
    margin: 0 auto;
    max-width: 1440px;
}

.cv-title {
    font-family: 'SVN-Moneta', serif;
    font-size: clamp(1.5rem, 3.5vw, 4rem);
    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: 'SVN-Moneta', 'Mulish', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    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: #000825;
    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: 'SVN-Moneta', serif;
    font-size: clamp(1.25rem, 2.5vw, 3rem);
    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: #000825;
    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: #000825;
    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;
}

/* =====================
   Mobile Menu Overlay
   ===================== */
#mobile-menu {
    visibility: hidden;
    opacity: 0;
}

#mobile-menu:not(.hidden) {
    visibility: visible;
    opacity: 1;
}

/* Logo + nút đóng: chừa khoảng phía trên (có notch / status bar) */
.mobile-menu-top-bar {
    padding-top: max(1.5rem, calc(env(safe-area-inset-top, 0px) + 1.25rem));
    padding-bottom: 1rem;
}

/* Smooth scrollbar hide for mobile nav */
#mobile-menu nav::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* Active state for mobile nav items */
.mobile-nav-item:active {
    opacity: 0.7;
}

.mobile-nav-submenu-chevron {
    transition: transform 0.2s ease;
}

.mobile-nav-submenu-toggle[aria-expanded="true"] .mobile-nav-submenu-chevron {
    transform: rotate(180deg);
}

@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: #000825;
    color: #ffffff;
    padding-top: 0;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .footer-container {
        padding-left: max(1.75rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.75rem, env(safe-area-inset-right, 0px));
    }
}

@media (min-width: 768px) {
    .footer-container {
        padding-left: max(2rem, env(safe-area-inset-left, 0px));
        padding-right: max(2rem, env(safe-area-inset-right, 0px));
    }
}

/* Luxury dark footer (reference layout) */
.footer-lux {
    background: #000825;
    color: #ffffff;
}

.footer-lux-main {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.footer-lux-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: start;
}

@media (min-width: 900px) {
    .footer-lux-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 1.1fr);
        gap: 4rem 3rem;
    }
}

.footer-lux-label {
    font-family: 'Mulish', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
}

.footer-lux-headline {
    margin: 0 0 1.5rem;
    font-weight: 400;
    line-height: 0.95;
    color: #ffffff;
}

.footer-lux-headline-line {
    display: block;
}

.footer-lux-headline-line--sm {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

.footer-lux-headline-line--lg {
    font-size: clamp(3.25rem, 9vw, 6.5rem);
    letter-spacing: -0.03em;
    margin-top: 0.1em;
}

.footer-lux-tagline {
    font-family: 'Mulish', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.55;
    max-width: 22rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-lux-col--meta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-lux-contact {
    font-family: 'Mulish', sans-serif;
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.footer-lux-contact a {
    color: inherit;
    text-decoration: none;
}

.footer-lux-contact a:hover {
    text-decoration: underline;
}

.footer-lux-email {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Mulish', sans-serif;
    font-size: 0.875rem;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    width: fit-content;
}

.footer-lux-email:hover {
    color: rgba(255, 255, 255, 0.85);
}

.footer-lux-email-icon {
    flex-shrink: 0;
    opacity: 0.9;
}

.footer-lux-brand {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    margin-top: 0.5rem;
    color: #ffffff;
}

.footer-lux-copyright {
    font-family: 'Mulish', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
}

.footer-lux-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-lux-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    padding-top: 1.35rem;
    padding-bottom: 2.25rem;
}

.footer-lux-nav,
.footer-lux-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    font-family: 'Mulish', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
}

.footer-lux-nav a,
.footer-lux-social a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-lux-nav a:hover,
.footer-lux-social a:hover {
    color: #ffffff;
}

.to-top {
    position: absolute;
    right: 1.25rem;
    top: 2.5rem;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Mulish', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    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: 52px;
    background: currentColor;
    transition: transform 0.25s ease;
}

@media (min-width: 640px) {
    .to-top {
        right: 1.75rem;
    }
}

@media (min-width: 768px) {
    .to-top {
        right: 2rem;
        top: 3rem;
    }
}

@media (hover: hover) {
    .to-top:hover {
        color: rgba(255, 255, 255, 0.75);
    }

    .to-top:hover::before {
        transform: translateY(-4px);
    }

    .to-top:hover .to-top-text {
        transform: translateY(2px);
    }
}

@media (max-width: 767px) {
    .footer-container {
        padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
    }

    .footer-lux-main {
        padding-top: 4rem;
        padding-bottom: 2.5rem;
    }

    /* Thêm lề phải cho khối chính để không đè chữ lên nút TO TOP */
    .footer-lux-main.footer-container {
        padding-right: max(2.75rem, env(safe-area-inset-right, 0px));
    }

    .footer-lux-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 2rem;
    }

    .footer-lux-social {
        width: 100%;
    }

    .to-top {
        right: 0.75rem;
        top: 1.75rem;
        gap: 0.65rem;
    }

    .to-top::before {
        height: 36px;
    }
}

/* --------------------------------------------------------------------------
   Why Choose Us — nền tối, copy + gallery 2 cột parallax (JS)
   -------------------------------------------------------------------------- */
.why-choose-section {
    background-color: #00092a;
    color: #fff;
}

.why-choose-grid--parallax {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: stretch;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 640px) {
    .why-choose-grid--parallax {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
}

@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);
        align-items: start;
    }
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-width: 0;
}

@media (max-width: 1023px) {
    .why-choose-grid--parallax {
        padding-bottom: max(4.25rem, calc(1.25rem + env(safe-area-inset-bottom, 0px)));
    }

    .why-choose-content {
        padding-bottom: 0;
    }
}

.why-choose-reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 3rem;
    margin-top: 1.75rem;
    margin-bottom: 1.5rem;
}

.why-choose-reason-box {
    border: none;
    padding: 0;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.why-choose-reason-box::before {
    content: "";
    position: absolute;
    inset: -1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
    pointer-events: none;
}

.why-choose-reason-box:hover {
    transform: translateY(-5px);
}

.why-choose-reason-box:hover::before {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.why-choose-reason-box--offset {
    margin-top: 40px;
}

.why-choose-reason-title {
    font-family: 'SVN-Moneta', 'Mulish', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.625rem;
    line-height: 1.3;
    transition: color 0.4s ease;
}

.why-choose-reason-box:hover .why-choose-reason-title {
    color: #d4c4a8;
}

.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;
    transition: color 0.4s ease;
}

.why-choose-reason-box:hover .why-choose-reason-desc {
    color: rgba(255, 255, 255, 0.95);
}

.why-choose-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
    font-family: 'Mulish', 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: 'SVN-Moneta', serif;
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    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: 'SVN-Moneta', serif;
    font-size: clamp(1.125rem, 2vw, 2.5rem);
    font-weight: 700;
    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 {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    align-self: flex-start;
    margin-top: 2.5rem;
    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: #0C2674;
    border: 1px solid #0C2674;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
    .why-choose-cta:hover {
        background-color: #081A4F;
        border-color: #081A4F;
    }
}

.why-choose-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 8px;
    min-height: 280px;
    max-height: min(85vh, 820px);
    overflow: hidden;
    background: #000825;
}

@media (max-width: 1023px) {
    .why-choose-gallery {
        max-height: min(52vh, 420px);
        min-height: 220px;
    }
}

@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;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    will-change: transform;
}

.why-choose-col-inner {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 8px;
    min-height: 0;
    padding-top: 0;
}

@media (min-width: 1024px) {
    .why-choose-col-inner {
        gap: 10px;
    }
}

.why-choose-figure {
    margin: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.why-choose-figure--tall {
    aspect-ratio: 3 / 4;
    height: 400px;
}

.why-choose-figure--mid {
    aspect-ratio: 4 / 3;
    height: 300px;
}

.why-choose-gallery-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 639px) {
    .why-choose-figure--tall {
        height: 200px;
    }

    .why-choose-figure--mid {
        height: 150px;
    }

    .why-choose-reason-box--offset {
        margin-top: 1.25rem;
    }

    .why-choose-reasons-grid {
        gap: 1rem 1.25rem;
        margin-top: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .why-choose-figure--tall {
        height: 480px;
    }

    .why-choose-figure--mid {
        height: 360px;
    }
}

/* Utility Classes */

/* About collage: ~60% | ~20% | ~20%, cột phải 2 ô bằng nhau; ảnh crop theo đáy */
.about-collage {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: stretch;
    gap: 3px;
    width: 100%;
    height: clamp(300px, 56vw, 640px);
    background-color: #00092a;
}

@media (max-width: 900px) {
    .about-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        min-height: unset;
        gap: 3px;
    }

    .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-frame {
        min-height: 100px;
    }
}

.about-collage-item {
    margin: 0;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    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: 0;
    overflow: hidden;
    background: #00092a;
    display: block;
}

.about-collage-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    will-change: transform;
}

.about-workplace-viewport {
    width: 100%;
    overflow: hidden;
    background: #000825;
}

.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;
}

/* Trang Giới thiệu — Parallax Showcase Section */
.about-parallax-section {
    position: relative;
    overflow: hidden;
    height: clamp(320px, 70vh, 860px);
}

.about-parallax-viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.about-parallax-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-parallax-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-parallax-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trang Giới thiệu — hero luxury (full-bleed, brand trái + intro phải) */
.about-lux-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    box-sizing: border-box;
}

.about-lux-hero-media {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 1;
    background-color: #00092a;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.about-lux-hero-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

.about-lux-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(105deg,
            rgba(8, 8, 10, 0.28) 0%,
            rgba(8, 8, 10, 0.16) 38%,
            rgba(8, 8, 10, 0.08) 100%);
    pointer-events: none;
}

.about-lux-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(6.5rem, 18vh, 9.5rem) 0 clamp(1.75rem, 5vw, 3.25rem);
}

.about-lux-hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: clamp(1.75rem, 4vw, 2.5rem);
    align-items: stretch;
}

@media (min-width: 1024px) {
    .about-lux-hero-inner {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 22rem);
        gap: clamp(2rem, 5vw, 4.5rem);
        align-items: end;
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
}

@media (min-width: 1280px) {
    .about-lux-hero-inner {
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 26rem);
    }
}

.about-lux-hero-mega {
    order: 2;
    margin: 0;
    font-weight: 700;
    font-size: clamp(3.25rem, 14vw, 9.5rem);
    line-height: 0.88;
    letter-spacing: -0.03em;
    color: #fff;
    text-transform: uppercase;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .about-lux-hero-mega {
        order: 0;
    }
}

.about-lux-hero-aside {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 32rem;
}

@media (min-width: 1024px) {
    .about-lux-hero-aside {
        order: 1;
        justify-self: end;
        max-width: 26rem;
    }
}

.about-lux-hero-kicker {
    margin: 0 0 0.75rem;
    font-family: 'Mulish', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.about-lux-hero-tagline {
    margin: 0 0 1.25rem;
    font-family: 'EB Garamond', 'SVN-Moneta', serif;
    font-size: clamp(1.15rem, 2.2vw, 1.65rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}

.about-lux-hero-lead {
    margin: 0 0 1.75rem;
    font-family: 'Mulish', sans-serif;
    font-size: clamp(0.875rem, 1.35vw, 1rem);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
}

.about-lux-hero-scroll {
    font-family: 'EB Garamond', 'SVN-Moneta', serif;
    font-size: 0.8125rem;
    font-style: italic;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-lux-hero-scroll:hover,
.about-lux-hero-scroll:focus-visible {
    color: #fff;
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}

/* Trang Giới thiệu — 3 cột sau hero (label + headline | ảnh portrait | copy + CTA) */
.about-split-showcase {
    background-color: #000825;
    color: #fff;
    padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.about-split-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 640px) {
    .about-split-inner {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
}

.about-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        'media'
        'left'
        'right';
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
}

@media (min-width: 1024px) {
    .about-split-grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 520px) minmax(0, 1fr);
        grid-template-areas: 'left media right';
        gap: clamp(1.75rem, 3.5vw, 3rem);
        align-items: stretch;
        min-height: min(82vh, 880px);
    }
}

.about-split-col--left {
    grid-area: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 1024px) {
    .about-split-col--left {
        justify-content: space-between;
        min-height: 100%;
        gap: 2rem;
    }
}

.about-split-label {
    margin: 0;
    font-family: 'EB Garamond', 'SVN-Moneta', serif;
    font-size: 0.8125rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.about-split-headline {
    margin: 0;
    max-width: min(20ch, 100%);
    font-family: 'EB Garamond', 'SVN-Moneta', serif;
    font-size: clamp(1.35rem, 2.4vw, 2.125rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
}

.about-split-col--media {
    grid-area: media;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.about-split-figure {
    margin: 0;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #00092a;
}

@media (min-width: 1024px) {
    .about-split-figure {
        max-width: none;
        flex: 1;
        min-height: min(72vh, 760px);
        height: 100%;
        aspect-ratio: auto;
    }
}

.about-split-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-split-uncover {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

.about-split-uncover-slice {
    height: 100%;
    flex-grow: 1;
    background: #000825;
    transform-origin: bottom center;
}

.about-split-col--right {
    grid-area: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(1.75rem, 3vw, 2.5rem);
}

@media (min-width: 1024px) {
    .about-split-col--right {
        justify-content: space-between;
        min-height: 100%;
    }
}

.about-split-copy {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-split-copy p {
    margin: 0;
    font-family: 'Mulish', sans-serif;
    font-size: clamp(0.8125rem, 1.15vw, 0.9375rem);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    max-width: 36rem;
}

@media (min-width: 1024px) {
    .about-split-copy p {
        max-width: none;
    }
}

.about-split-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    background: #fff;
    color: #000825;
    font-family: 'Mulish', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.about-split-cta:hover {
    background: rgba(255, 255, 255, 0.92);
    color: #000;
}

.about-split-cta:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

/* Parallax Section — Trang giới thiệu */
.about-parallax-section {
    position: relative;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
}

.about-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
}

.about-parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Giá trị doanh nghiệp — trang giới thiệu (cùng lề & tiêu đề như Năng lực hoạt động) */
.about-values-section {
    background-color: #00092a;
    color: #fff;
}

.about-values-inner {
    max-width: 1440px;
    margin: 0 auto;
}

.about-values-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.25rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.about-values-title.about-values-title--inline {
    margin: 0;
    text-align: left;
    flex: 1 1 auto;
    min-width: min(100%, 12rem);
    margin-bottom: 0;
}

.about-values-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, #000 0%, #000 calc(100% - 4.5rem), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 calc(100% - 4.5rem), transparent 100%);
}

.about-values-track {
    display: flex;
    gap: clamp(0.875rem, 2vw, 1.25rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    outline: none;
}

@media (prefers-reduced-motion: no-preference) {
    .about-values-track {
        scroll-behavior: smooth;
    }
}

.about-values-track::-webkit-scrollbar {
    display: none;
}

.about-values-card {
    flex: 0 0 clamp(260px, 72vw, 320px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    min-height: 22rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 2px;
    box-sizing: border-box;
    background-color: #000825;
}

@media (min-width: 1024px) {
    .about-values-card {
        flex: 0 0 clamp(280px, 28vw, 340px);
        min-height: 24rem;
    }
}

.about-values-card__icon {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.25rem;
}

.about-values-card__icon svg {
    display: block;
}

.about-values-card__title {
    margin: 0 0 1rem;
    font-family: 'Mulish', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.8125rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.35;
    color: #fff;
}

.about-values-card__text {
    margin: 0 0 auto;
    padding-bottom: 1.5rem;
    font-family: 'Mulish', sans-serif;
    font-size: clamp(0.8125rem, 1.05vw, 0.875rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.62);
}

.about-values-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    margin-top: 0.5rem;
    padding: 0.65rem 1.15rem;
    border-radius: 9999px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Mulish', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.about-values-card__cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.about-values-card__cta:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 3px;
}

.about-values-nav {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 0.625rem;
}

.about-values-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.about-values-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.48);
    color: #fff;
}

.about-values-nav-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .about-values-track {
        scroll-behavior: auto !important;
    }
}

/* Năng lực hoạt động — 4 cột so le, hover overlay từ dưới */
.cap-stagger-wrap {
    max-width: 1440px;
}

.cap-stagger-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 2.25rem);
    align-items: flex-start;
}

@media (min-width: 640px) {
    .cap-stagger-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cap-stagger-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: clamp(1rem, 2vw, 1.75rem);
    }
}

.cap-stagger-card {
    position: relative;
    margin: 0;
}

@media (min-width: 1024px) {
    .cap-stagger-card--lower {
        margin-top: clamp(2.75rem, 7vw, 5rem);
    }
}

.cap-stagger-sr-desc {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.cap-stagger-card__visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #00092a;
}

.cap-stagger-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cap-stagger-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: clamp(1rem, 3vw, 1.5rem);
    background: rgba(0, 0, 0, 0.92);
    transform: translateY(101%);
    transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: transform;
}

.cap-stagger-card:hover .cap-stagger-card__overlay,
.cap-stagger-card:focus-within .cap-stagger-card__overlay {
    transform: translateY(0);
}

.cap-stagger-card__desc {
    margin: 0;
    font-family: 'Mulish', sans-serif;
    font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.cap-stagger-card__footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-top: clamp(0.875rem, 2vw, 1.25rem);
    padding-right: 0.125rem;
}

.cap-stagger-card__index {
    font-family: 'Mulish', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1;
}

.cap-stagger-card__title {
    margin: 0;
    max-width: min(12rem, 55%);
    font-family: 'SVN-Moneta', 'EB Garamond', serif;
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: #fff;
    text-align: right;
}

.cap-stagger-card:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 6px;
}

@media (prefers-reduced-motion: reduce) {
    .cap-stagger-card__overlay {
        transition: opacity 0.25s ease;
        transform: none;
        opacity: 0;
    }

    .cap-stagger-card:hover .cap-stagger-card__overlay,
    .cap-stagger-card:focus-within .cap-stagger-card__overlay {
        opacity: 1;
    }
}

.about-page-team-heading {
    font-family: 'SVN-Moneta', serif;
    font-size: clamp(1.5rem, 3.5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 22ch;
}

.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, #001a4d 0%, #000825 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: 'SVN-Moneta', '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: 'SVN-Moneta', serif;
}

.about-page-cta-title .scroll-char {
    color: inherit;
}

/* --------------------------------------------------------------------------
   Partners Section — một hàng logo monochrome trên nền tối (trusted strip)
   -------------------------------------------------------------------------- */
.partners-section {
    background-color: #00092a;
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.partners-container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
}

@media (min-width: 640px) {
    .partners-container {
        padding-left: max(1.75rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.75rem, env(safe-area-inset-right, 0px));
    }
}

@media (min-width: 768px) {
    .partners-container {
        padding-left: max(2rem, env(safe-area-inset-left, 0px));
        padding-right: max(2rem, env(safe-area-inset-right, 0px));
    }
}

.partners-header {
    text-align: center;
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.partners-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1rem;
    font-family: 'Mulish', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1;
}

.partners-kicker::before {
    content: '';
    display: block;
    width: 2.25rem;
    height: 1px;
    background-color: currentColor;
    flex-shrink: 0;
}

.partners-heading {
    font-family: 'SVN-Moneta', serif;
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: #f5f5f5;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.partners-heading .scroll-char {
    display: inline-block;
}

.partners-subheading {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.partners-logo-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 2.5vw, 2.5rem);
    padding-top: clamp(0.5rem, 1.5vw, 1rem);
    padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
    padding-left: clamp(1.25rem, 3vw, 2.5rem);
    padding-right: clamp(1.25rem, 3vw, 2.5rem);
}

@media (max-width: 767px) {
    .partners-logo-row {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scroll-snap-type: x proximity;
        -webkit-mask-image: linear-gradient(to right, transparent, #000 0.75rem, #000 calc(100% - 0.75rem), transparent);
        mask-image: linear-gradient(to right, transparent, #000 0.75rem, #000 calc(100% - 0.75rem), transparent);
    }

    .partners-logo-row::-webkit-scrollbar {
        height: 4px;
    }

    .partners-logo-row::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 2px;
    }
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
    padding: 0.35rem 0.5rem;
}

@media (max-width: 767px) {
    .partner-item {
        flex: 0 0 auto;
        scroll-snap-align: center;
        min-width: 5.5rem;
    }
}

.partner-logo {
    display: block;
    width: auto;
    max-width: min(20rem, 40vw);
    height: clamp(5rem, 10vw, 7.5rem);
    max-height: 7.5rem;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

@media (hover: hover) {
    .partner-item:hover .partner-logo {
        transform: scale(1.05);
    }
}

/* =========================================================
   Timeline Section — Amana Workplace
   ========================================================= */
.timeline-section {
    --line-w: 1px;
    --line-muted: color-mix(in srgb, currentColor 26%, #00092a 74%);
    --line-live: currentColor;
    --dot-sz: 10px;
    --dot-muted: color-mix(in srgb, currentColor 30%, #00092a 70%);
    --dot-live: currentColor;
    --media-bg: color-mix(in srgb, currentColor 10%, #00092a 90%);
    --radius: 18px;
    --year: clamp(2.6rem, 4.6vw, 4.2rem);
    --text: clamp(1rem, 1.2vw, 1.125rem);
    --gap: clamp(1.25rem, 2.6vw, 2.25rem);
    --line-top: 0px;
    --line-h: 100%;
    background-color: #00092a;
    padding: clamp(4rem, 8vw, 7rem) 0;
    overflow: hidden;
}

.timeline-section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    padding: 0 1.25rem;
}

.timeline-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1rem;
    font-family: 'Mulish', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1;
}

.timeline-section-kicker::before {
    content: '';
    display: block;
    width: 2.25rem;
    height: 1px;
    background-color: currentColor;
    flex-shrink: 0;
}

.timeline-section-title {
    font-family: 'SVN-Moneta', serif;
    font-size: clamp(2rem, 5vw + 0.5rem, 4rem);
    font-weight: 700;
    color: #f5f5f5;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Timeline core layout */
.timeline {
    width: min(1200px, calc(100% - (clamp(1.25rem, 3vw, 2rem) * 2)));
    margin: 0 auto;
    padding: calc(clamp(1.25rem, 3vw, 2rem) * 1.5) 0 calc(clamp(1.25rem, 3vw, 2rem) * 2.5);
}

.timeline__inner {
    position: relative;
}

/* Center line */
.timeline__lines {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: var(--line-w, 1px);
    transform: translateX(-50%);
    pointer-events: none;
}

@media (max-width: 960px) {
    .timeline__lines {
        left: 22px;
        transform: none;
    }
}

.timeline__line {
    position: absolute;
    left: 0;
    width: var(--line-w, 1px);
    border-radius: 999px;
}

.timeline__line--base {
    background: var(--line-muted, color-mix(in srgb, currentColor 26%, #000825 74%));
    top: var(--line-top, 0px);
    height: var(--line-h, 100%);
    transform-origin: top;
    transform: scaleY(1);
    opacity: 1;
    will-change: transform;
}

.timeline__line--fill {
    background: var(--line-live, currentColor);
    top: var(--line-top, 0px);
    height: var(--line-h, 100%);
    transform-origin: top;
    transform: scaleY(0);
    will-change: transform;
}

/* Timeline items */
.timeline__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
    align-items: center;
    padding: calc(clamp(1.25rem, 3vw, 2rem) * 1.25) 0;
}

@media (max-width: 960px) {
    .timeline__item {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 1rem;
        align-items: start;
        padding: calc(clamp(1.25rem, 3vw, 2rem) * 1.15) 0;
    }
}

.timeline__col {
    min-width: 0;
}

.timeline__col--marker {
    position: relative;
    width: 44px;
    display: grid;
    place-items: center;
}

@media (max-width: 960px) {
    .timeline__col--marker {
        width: 44px;
        align-self: start;
        justify-items: center;
        align-items: start;
        padding-top: 0;
    }
}

.timeline__dot {
    width: var(--dot-sz, 10px);
    height: var(--dot-sz, 10px);
    position: relative;
    display: block;
}

@media (max-width: 960px) {
    .timeline__dot {
        margin-top: 0.15rem;
    }
}

.timeline__dotBase,
.timeline__dotFill {
    position: absolute;
    inset: 0;
    border-radius: 999px;
}

.timeline__dotBase {
    background: var(--dot-muted, color-mix(in srgb, currentColor 30%, #000825 70%));
}

.timeline__dotFill {
    background: var(--dot-live, currentColor);
    transform: scale(0);
    transform-origin: center;
    will-change: transform;
}

.timeline__col--content {
    text-align: left;
}

@media (min-width: 1200px) {
    .timeline__item[data-side="left"] .timeline__col--content {
        text-align: right;
    }

    .timeline__item[data-side="right"] .timeline__col--content {
        text-align: left;
    }
}

.timeline__year {
    margin: 0 0 0.25rem;
    font-family: 'SVN-Moneta', serif;
    font-size: clamp(2.6rem, 4.6vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #fff;
}

.timeline__text {
    margin: 0;
    font-family: 'Mulish', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.timeline__col--media {
    display: grid;
    justify-items: center;
}

@media (max-width: 960px) {
    .timeline__col--media {
        justify-items: start;
        margin-top: 1rem;
    }
}

.timeline__mediaBox {
    width: min(420px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: var(--radius, 18px);
    background: var(--media-bg, color-mix(in srgb, currentColor 10%, #000825 90%));
    overflow: hidden;
}

.timeline__mediaBox picture,
.timeline__mediaBox img {
    width: 100%;
    height: 100%;
    display: block;
}

.timeline__mediaBox img {
    object-fit: cover;
    object-position: center;
}

/* Desktop column ordering */
.timeline__item[data-side="left"] .timeline__col--content {
    grid-column: 1;
}

.timeline__item[data-side="left"] .timeline__col--marker {
    grid-column: 2;
}

.timeline__item[data-side="left"] .timeline__col--media {
    grid-column: 3;
}

.timeline__item[data-side="right"] .timeline__col--media {
    grid-column: 1;
}

.timeline__item[data-side="right"] .timeline__col--marker {
    grid-column: 2;
}

.timeline__item[data-side="right"] .timeline__col--content {
    grid-column: 3;
}

/* Mobile/Tablet: marker left, content top, media below */
@media (max-width: 960px) {

    .timeline__item[data-side="left"] .timeline__col--marker,
    .timeline__item[data-side="right"] .timeline__col--marker {
        grid-column: 1;
        grid-row: 1;
    }

    .timeline__item[data-side="left"] .timeline__col--content,
    .timeline__item[data-side="right"] .timeline__col--content {
        grid-column: 2;
        grid-row: 1;
    }

    .timeline__item[data-side="left"] .timeline__col--media,
    .timeline__item[data-side="right"] .timeline__col--media {
        grid-column: 2;
        grid-row: 2;
    }
}

/* No-flash guard */
.timeline:not(.is-ready) .timeline__line--base,
.timeline:not(.is-ready) .timeline__line--fill {
    opacity: 0;
    transform: scaleY(0);
}

.timeline:not(.is-ready) .timeline__dotBase,
.timeline:not(.is-ready) .timeline__dotFill {
    opacity: 0;
    transform: scale(0);
}

.timeline:not(.is-ready) .timeline__col--content,
.timeline:not(.is-ready) .timeline__col--media {
    opacity: 0;
    transform: translateY(14px);
}

/* ========== News listing & detail ========== */
.news-page-title {
    font-family: 'EB Garamond', 'SVN-Moneta', serif;
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.05;
    max-width: 14ch;
    text-wrap: balance;
}

.news-page-section {
    padding-top: 0;
}

.news-page-hero {
    position: relative;
    overflow: hidden;
    border-bottom: none;
}

.news-page-hero::before,
.news-page-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.news-page-hero::before {
    width: min(48vw, 620px);
    aspect-ratio: 1 / 1;
    right: -10%;
    top: -30%;
    border-radius: 999px;
    background:
        radial-gradient(circle at center,
            rgba(119, 181, 255, 0.14) 0%,
            rgba(119, 181, 255, 0.05) 32%,
            rgba(119, 181, 255, 0) 70%);
}

.news-page-hero::after {
    display: none;
}

.news-page-hero .max-w-\[1440px\] {
    position: relative;
    z-index: 1;
}

.news-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Mulish', sans-serif;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1rem;
}

.news-page-eyebrow::before {
    content: "";
    width: 1.5rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}

.news-page-hero p {
    line-height: 1.7;
    max-width: 64ch;
    text-wrap: pretty;
}

.news-page-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
}

@media (min-width: 640px) {
    .news-page-container {
        padding-left: max(1.75rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.75rem, env(safe-area-inset-right, 0px));
    }
}

@media (min-width: 768px) {
    .news-page-container {
        padding-left: max(2rem, env(safe-area-inset-left, 0px));
        padding-right: max(2rem, env(safe-area-inset-right, 0px));
    }
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

@media (min-width: 640px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

.news-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border-radius: 0.95rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 14px 36px rgba(1, 7, 32, 0.34);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    isolation: isolate;
}

.news-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 22px 42px rgba(0, 6, 30, 0.5);
}

.news-card:hover::after {
    opacity: 1;
}

.news-card:hover .news-card-title {
    color: rgba(255, 255, 255, 0.96);
}

.news-card-image {
    position: relative;
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 0;
    background: #010a2e;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.04);
}

.news-card-meta,
.news-card-title,
.news-card-excerpt {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
}

.news-card-meta {
    flex-shrink: 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.58);
    margin-top: 0.95rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}

.news-card-meta-dot {
    margin: 0 0.42rem;
}

.news-card-title {
    flex-shrink: 0;
    font-family: 'Mulish', sans-serif;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.32;
    color: #fff;
    margin-bottom: 0.65rem;
    overflow: visible;
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: color 0.2s ease;
    text-wrap: balance;
}

.news-card-excerpt {
    flex: 0 0 auto;
    min-height: 0;
    margin-top: auto;
    margin-bottom: 1.2rem;
    font-size: 0.96rem;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.62);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pagination {
    margin-top: 3rem;
    padding-bottom: 1.5rem;
}

.pagination .page-numbers,
.pagination .pagination-btn {
    min-width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.03);
    font-family: 'Mulish', sans-serif;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.25s ease;
}

.pagination .page-numbers.current,
.pagination .pagination-btn.active {
    color: #02143e;
    background: #d5e5ff;
    border-color: #d5e5ff;
    font-weight: 700;
}

.pagination .page-numbers:hover,
.pagination .pagination-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
    .news-page-title {
        font-size: clamp(2.3rem, 9.5vw, 3rem);
        line-height: 1.1;
    }

    .news-page-eyebrow {
        margin-bottom: 0.75rem;
    }

    .news-card-title {
        font-size: 1.12rem;
    }

    .news-card-meta,
    .news-card-title,
    .news-card-excerpt {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.news-detail-breadcrumb {
    text-align: left;
}

.news-detail-title {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.news-detail-hero-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.news-detail-p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.25rem;
}

.news-detail-h2 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.news-detail-ul {
    margin: 0 0 1.5rem 1.25rem;
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.0625rem;
    line-height: 1.65;
}

.news-detail-ul li {
    margin-bottom: 0.5rem;
}

.news-detail-figure {
    margin: 2rem 0;
}

.news-detail-figure-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    object-fit: cover;
}

.news-detail-caption {
    font-size: 0.8125rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.65rem;
    line-height: 1.5;
}

.news-related-title {
    letter-spacing: -0.02em;
}

/* Floating share — desktop right rail */
.news-detail-share {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right, 0px));
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.65rem;
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.news-detail-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.75);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.news-detail-share-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1023px) {
    .news-detail-share {
        top: auto;
        bottom: max(1rem, env(safe-area-inset-bottom, 0px));
        right: max(1rem, env(safe-area-inset-right, 0px));
        left: auto;
        transform: none;
        flex-direction: row;
        border-radius: 999px;
    }
}

/* =========================================================
   Custom Fluent Form - Contact Form (Dark Theme)
   ========================================================= */
.dark-contact-form .fluentform {
    background-color: transparent;
    font-family: inherit;
}

.dark-contact-form .fluentform .ff-el-form-control {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0 !important;
    color: #fff !important;
    padding: 10px 0 !important;
    font-size: 16px;
    box-shadow: none !important;
    transition: border-color 0.3s ease;
}

.dark-contact-form .fluentform .ff-el-form-control:focus {
    border-bottom-color: #fff !important;
}

.dark-contact-form .fluentform .ff-el-form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.dark-contact-form .fluentform .ff-el-input--label {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.dark-contact-form .fluentform .ff-el-is-required {
    color: #ff3b30;
}

.dark-contact-form .fluentform .ff-btn-submit {
    background-color: #fff !important;
    color: #00092a !important;
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 18px 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.dark-contact-form .fluentform .ff_submit_btn_wrapper_custom {
    display: block;
    width: 100%;
}

.dark-contact-form .fluentform .ff-btn-submit::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 1px;
    background-color: #00092a;
}

.dark-contact-form .fluentform .ff-btn-submit:hover {
    background-color: #e0e0e0 !important;
}

.dark-contact-form .fluentform .ff-el-group {
    margin-bottom: 30px;
}

/* Flex layout thay cho Container (Mới thêm) */
@media (min-width: 640px) {
    .dark-contact-form .fluentform form {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .dark-contact-form .fluentform form > .ff-el-group {
        width: 100%;
    }
    
    .dark-contact-form .fluentform form > .ff-el-group.ff-half-field {
        width: calc(50% - 15px);
    }
}

/* ==========================================================================
   TranslatePress Language Switcher (Header & Mobile)
   ========================================================================== */
.custom-lang-switcher {
    position: relative;
    display: inline-block;
}

.custom-lang-switcher ul.tp-lang-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-lang-switcher ul.tp-lang-menu > li {
    position: relative;
}

.custom-lang-switcher ul.tp-lang-menu > li::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 12px;
}

.custom-lang-switcher ul.tp-lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.custom-lang-switcher ul.tp-lang-menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.custom-lang-switcher ul.tp-lang-menu img.trp-flag-image {
    width: 22px;
    height: auto;
    border-radius: 2px;
    object-fit: contain;
    margin: 0 !important;
    border: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.custom-lang-switcher ul.tp-lang-menu span.trp-ls-language-name {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

/* Dropdown */
.custom-lang-switcher ul.tp-lang-menu ul.sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    list-style: none;
    margin: 0;
    padding: 4px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    min-width: unset;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(4px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.custom-lang-switcher ul.tp-lang-menu li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(4px);
}

.custom-lang-switcher ul.tp-lang-menu ul.sub-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 6px 10px;
    color: #ffffff;
    transition: all 0.2s ease;
}

.custom-lang-switcher ul.tp-lang-menu ul.sub-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile adjustments */
.mobile-lang-switcher ul.tp-lang-menu ul.sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    margin-top: 10px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 15px;
}

.mobile-lang-switcher ul.tp-lang-menu a {
    font-size: 16px;
    padding: 8px 16px;
}

.mobile-lang-switcher ul.tp-lang-menu img.trp-flag-image {
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   FLUENT FORMS CONTACT OVERRIDES (GLASSMORPHISM)
   ========================================================================== */
.amana-fluent-contact-wrapper .fluentform {
    margin: 0;
}

.amana-fluent-contact-wrapper .ff-el-group {
    margin-bottom: 1.75rem;
}

.amana-fluent-contact-wrapper .ff-el-input--label {
    display: block !important;
    font-family: 'Mulish', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #f0f0f0 !important;
    margin-bottom: 0.5rem !important;
}

.amana-fluent-contact-wrapper .ff-el-input--label.ff-el-is-required::after {
    content: '*';
    color: #e85d5d;
    text-decoration: none;
    font-weight: 700;
    margin-left: 0.15em;
}

.amana-fluent-contact-wrapper .ff-el-form-control {
    display: block !important;
    width: 100% !important;
    padding: 0.6rem 0 0.75rem !important;
    font-family: 'Mulish', sans-serif !important;
    font-size: 0.9375rem !important;
    color: #fafafa !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 0 !important;
    outline: none !important;
    transition: border-color 0.2s ease !important;
    box-shadow: none !important;
}

.amana-fluent-contact-wrapper .ff-el-form-control:focus {
    border-bottom-color: rgba(255, 255, 255, 0.55) !important;
    background: transparent !important;
}

.amana-fluent-contact-wrapper .ff-el-form-control::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}

.amana-fluent-contact-wrapper textarea.ff-el-form-control {
    min-height: 8rem !important;
    resize: vertical !important;
    line-height: 1.55 !important;
}

.amana-fluent-contact-wrapper .ff-btn-submit {
    display: block !important;
    width: 100% !important;
    padding: 16px 38px !important;
    font-family: 'Mulish', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #000825 !important;
    background-color: #fff !important;
    border: 1px solid transparent !important;
    cursor: pointer !important;
    text-align: center !important;
    transition: all 0.25s ease !important;
    border-radius: 4px !important; /* Slightly rounded to fit the theme */
}

.amana-fluent-contact-wrapper .ff-btn-submit:hover {
    background-color: #f0f0f0 !important;
}/ * 

 / *   B r e a d c r u m b   S t y l e s   * / 
 . b r e a d c r u m b   { 
         f o n t - s i z e :   0 . 8 7 5 r e m ; 
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 6 ) ; 
 } 
 
 . b r e a d c r u m b   a   { 
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 ) ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         t r a n s i t i o n :   c o l o r   0 . 2 s   e a s e ; 
 } 
 
 . b r e a d c r u m b   a : h o v e r   { 
         c o l o r :   # f f f ; 
 } 
 
 . b r e a d c r u m b   . b r e a d c r u m b _ l a s t   { 
         c o l o r :   # f f f ; 
 } 
 
 
 