:root {
    /* Requested Palette */
    --bg-color: #F9F9FA;
    /* Off-White */
    --accent-pink: #EDC8DD;
    /* Soft Pink */
    --accent-blue: #CFE8F8;
    /* Soft Blue */

    /* Text & UI Adaptations for Light Mode */
    --text-primary: #111111;
    /* Dark Charcoal for readability */
    --text-secondary: #666666;
    /* Medium Gray */
    --grid-line: rgba(0, 0, 0, 0.08);
    /* Faint dark grid lines */

    /* Fonts */
    --font-hero-title: 'Bodoni Moda', serif;
    --font-heading: 'Bodoni Moda', serif;
    --font-logo: 'Bodoni Moda', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-display: 'Bodoni Moda', serif;

    /* Preloader Variables */
    --preloader-radius: clamp(160px, 35vw, 360px);
    --preloader-img-size: clamp(55px, 10vw, 110px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* Removed scroll-behavior: smooth to prevent conflict with Lenis */
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body.locked {
    overflow: hidden;
}

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

/* Global Section Padding */
section {
    padding: 8rem 4rem;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4rem;
    letter-spacing: -1px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--grid-line);
    padding-bottom: 2rem;
    display: inline-block;
}

/* =========================================
    0. PRELOADER (Halo Image Arc)
    ========================================= */
#preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--bg-color) 50%, var(--accent-blue) 100%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.arc-container {
    position: absolute;
    top: 65%;
    left: 50%;
    animation: sway 8s ease-in-out infinite;
    transform: translateZ(0); /* Hardware Acceleration */
}

@keyframes sway {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

.arc-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    transform: rotate(var(--rot)) translateY(calc(-1 * var(--preloader-radius)));
    backface-visibility: hidden;
}

.arc-img {
    width: var(--preloader-img-size);
    height: var(--preloader-img-size);
    margin-top: calc(-0.5 * var(--preloader-img-size));
    margin-left: calc(-0.5 * var(--preloader-img-size));
    border-radius: clamp(14px, 2.5vw, 24px);
    overflow: hidden;
    opacity: 0;
    transform: scale(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: var(--delay);
    backface-visibility: hidden;
}

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

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.preloader-content {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, calc(-50% - (var(--preloader-radius) * 0.35)));
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    height: clamp(100px, 20vw, 200px);
    width: auto;
    object-fit: contain;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.5s;
}

.preloader-btn-wrapper {
    position: absolute;
    top: calc(65% + clamp(70px, 12vw, 130px) - (var(--preloader-radius) * 0.35));
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.preloader-btn {
    padding: 12px 30px;
    background: var(--text-primary);
    color: var(--bg-color);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.9s;
}

.preloader-btn:hover {
    background: var(--accent-pink);
    color: var(--text-primary);
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
    1. HERO SECTION
    ========================================= */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--bg-color) 50%, var(--accent-blue) 100%);
    display: grid;
    grid-template-columns: 1fr 1fr 2.8fr 1fr 1fr;
    overflow: hidden;
}


.hero-col {
    position: relative;
    border-right: 1px solid var(--grid-line);
    height: 100%;
}

.hero-col:first-child {
    border-left: 1px solid var(--grid-line);
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transition: filter 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Removed transform from transition to let GSAP handle it smoothly */
    will-change: transform; /* Hardware Acceleration for silky smooth JS animation */
}

.hero-col:hover .hero-img {
    filter: brightness(1.1);
}

.col-img-1 {
    height: 42%;
    bottom: 8%;
}

.col-img-2 {
    height: 42%;
    top: 15%;
}

.col-img-4 {
    height: 42%;
    top: 12%;
}

.col-img-5 {
    height: 42%;
    bottom: 10%;
}

.hero-center-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-align: center;
}

/* Animated Blob combining Pink & Blue - OPTIMIZED FOR PERFORMANCE */
.hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35vw;
    height: 35vw;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(237, 200, 221, 0.7) 0%, rgba(207, 232, 248, 0.5) 50%, rgba(249, 249, 250, 0) 80%);
    opacity: 0.6;
    z-index: -1;
    border-radius: 50%;
    animation: pulseBlob 6s infinite alternate ease-in-out;
    /* Hardware Acceleration */
}

@keyframes pulseBlob {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

/* Center Logo for Light background */
.hero-center-logo {
    width: 100%;
    max-width: 380px;
    margin-bottom: 20px;
    object-fit: contain;
}

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

.hero-title {
    font-family: var(--font-hero-title);
    font-size: 6.5vw;
    color: var(--text-primary);
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: var(--font-hero-title);
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 5px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-seo-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    max-width: 400px;
    margin-top: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.hero-btn {
    margin-top: 30px;
    padding: 12px 35px;
    background: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-btn:hover {
    border-color: var(--text-primary);
    color: var(--bg-color);
    background: var(--text-primary);
}


/* =========================================
    2. ABOUT US SECTION
    ========================================= */
.about-section {
    background: var(--bg-color);
    border-bottom: 1px solid var(--grid-line);
}

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

.about-large-text {
    font-family: var(--font-logo);
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text-primary);
    font-style: italic;
}

.about-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-desc strong {
    color: var(--text-primary);
    font-weight: 600;
}


/* =========================================
    3. SERVICES SECTION
    ========================================= */
.services-section {
    background: #ffffff;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    border: 1px solid var(--grid-line);
    padding: 3.5rem 2.5rem;
    background: #ffffff;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(237, 200, 221, 0.15) 0%, rgba(162, 199, 230, 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-pink);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover h3::after {
    width: 100%;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    color: var(--text-primary);
    line-height: 2.2;
    font-size: 0.95rem;
    font-weight: 500;
}

.service-card ul li {
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-size: 0.8rem;
    top: 2px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover ul li::before {
    color: var(--accent-pink);
    transform: scale(1.2);
}


/* =========================================
    4. "OUR WORKS" CAROUSEL SECTION
    ========================================= */
.works-section {
    background: radial-gradient(circle at 50% 100%, var(--accent-pink), var(--bg-color));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.works-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1400px;
    margin-bottom: 5rem;
}

.works-left-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 350px;
    line-height: 1.6;
}

.works-left-text strong {
    color: var(--text-primary);
}

.works-right-title {
    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.works-right-title span {
    text-transform: lowercase;
}

/* Carousel Layout */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 60vh;
    min-height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.carousel-card {
    position: absolute;
    width: 320px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    top: 50%;
    left: 50%;
    margin-top: -240px;
    margin-left: -160px;
    /* Hardware Acceleration */
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    /* Hardware Acceleration */
}

.carousel-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
}

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

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--bg-color);
    color: var(--text-primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.card-title {
    position: absolute;
    bottom: 30px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.pos-0 {
    transform: translateX(0) scale(0.5);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.pos-1 {
    transform: translateX(-120%) translateY(-30px) rotate(-12deg) scale(0.75);
    z-index: 1;
    filter: brightness(0.6);
}

.pos-2 {
    transform: translateX(-65%) translateY(-15px) rotate(-6deg) scale(0.85);
    z-index: 2;
    filter: brightness(0.8);
}

.pos-3 {
    transform: translateX(0) translateY(0) rotate(0deg) scale(1);
    z-index: 3;
    filter: brightness(1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pos-4 {
    transform: translateX(65%) translateY(-15px) rotate(6deg) scale(0.85);
    z-index: 2;
    filter: brightness(0.8);
}

.pos-5 {
    transform: translateX(120%) translateY(-30px) rotate(12deg) scale(0.75);
    z-index: 1;
    filter: brightness(0.6);
}

.carousel-nav {
    margin-top: 4rem;
    display: flex;
    gap: 15px;
}

.carousel-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--text-primary);
    color: var(--bg-color);
    transform: scale(1.1);
}


/* =========================================
    5. MORE BRANDS (MARQUEE / LIST)
    ========================================= */
.other-brands {
    background: #ffffff;
    text-align: center;
    border-top: 1px solid var(--grid-line);
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 4rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.brand-item {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 800;
    opacity: 0.4;
    transition: all 0.3s;
}

.brand-item:hover {
    opacity: 1;
    color: var(--text-primary);
    transform: translateY(-5px);
    cursor: default;
}


/* =========================================
    6. CONTACT & FOOTER
    ========================================= */
.contact {
    text-align: center;
    padding: 10rem 2rem;
    background: radial-gradient(circle at center, var(--accent-blue) 0%, var(--bg-color) 70%);
}

.contact h2 {
    font-family: var(--font-heading);
    font-size: 6rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -2px;
}

.contact-details {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 3rem 0;
    font-family: var(--font-logo);
    font-style: italic;
}

.contact-details a {
    display: block;
    margin-top: 10px;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--accent-pink);
}

.contact-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--text-primary);
    color: var(--bg-color);
    font-family: var(--font-hero-title);
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.contact-btn:hover {
    background: var(--accent-pink);
    color: var(--text-primary);
    box-shadow: 0 10px 20px rgba(237, 200, 221, 0.4);
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--grid-line);
    background: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================
    7. POPUP MODAL (STUDIO X CASCADING LAYOUT)
    ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(249, 249, 250, 0.96);
    /* Light transparent background */
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    overflow-y: auto;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.close-modal {
    position: fixed;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1010;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
    color: var(--accent-pink);
}

.modal-content-wrapper {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    padding: 8rem 2rem 5rem 2rem;
    min-height: 100vh;
}

.modal-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
}

.modal-headline {
    font-family: var(--font-body);
    font-size: 4.5vw;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -2px;
    max-width: 70%;
    color: var(--text-primary);
}

.modal-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 350px;
    line-height: 1.6;
}

.modal-subnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid var(--grid-line);
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.cascade-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem 2rem;
    margin-top: 4rem;
    padding: 0;
}

.cascade-card {
    position: relative;
    width: 100%;
    transition: transform 0.4s ease;
}

.cascade-card:hover {
    transform: translateY(-10px);
    z-index: 10;
}

.cascade-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cascade-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transition: filter 0.4s, transform 0.4s;
}

.cascade-card:hover .cascade-img-wrapper img {
    filter: brightness(1.05);
    transform: scale(1.03);
}


/* =========================================
    8. RESPONSIVE QUERIES
    ========================================= */
@media (max-width: 1200px) {
    section {
        padding: 6rem 2rem;
    }

    .about-grid {
        gap: 2rem;
    }

    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .works-right-title {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        display: flex;
        flex-direction: column;
    }


    .hero-col:not(.col-3) {
        display: none;
    }

    .hero-col.col-3 {
        border: none;
        flex-grow: 1;
    }

    .hero-blob {
        width: 80vw;
        height: 80vw;
    }

    .hero-title {
        font-size: 12vw;
    }

    .hero-subtitle {
        font-size: 4vw;
    }


    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-wrapper {
        grid-template-columns: 1fr;
    }

    .works-header-row {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .works-right-title {
        font-size: 4rem;
    }

    .carousel-container {
        height: 50vh;
        min-height: 400px;
    }

    .carousel-card {
        width: 240px;
        height: 360px;
        margin-left: -120px;
        margin-top: -180px;
    }

    .pos-1 {
        transform: translateX(-90%) scale(0.6);
    }

    .pos-2 {
        transform: translateX(-50%) scale(0.8);
    }

    .pos-4 {
        transform: translateX(50%) scale(0.8);
    }

    .pos-5 {
        transform: translateX(90%) scale(0.6);
    }

    .modal-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .modal-headline {
        font-size: 8vw;
        max-width: 100%;
    }

    .cascade-container {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 2rem;
        padding-right: 0;
        margin-top: 2rem;
    }

    .cascade-card {
        width: 100%;
    }

    .contact h2 {
        font-size: 3rem;
    }

    .brand-item {
        font-size: 1.5rem;
    }
}

/* =========================================================================
FOR THE GRAM (ftg) — CSS ADDITIONS
========================================================================= */

/* =========================================
A. MOBILE NAVIGATION OVERLAY
========================================= */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    z-index: 5000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-overlay a {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--text-primary);
    line-height: 1;
    transition: color 0.3s;
}

.mobile-nav-overlay a:hover {
    color: var(--accent-pink);
}

.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: transform 0.3s, color 0.3s;
}

.mobile-nav-close:hover {
    transform: rotate(90deg);
    color: var(--accent-pink);
}

.mobile-nav-overlay .mobile-nav-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 2rem;
    border-top: 1px solid var(--grid-line);
    padding-top: 2rem;
    width: 80%;
    text-align: center;
}

/* =========================================
B. INNER PAGE HEADER / NAVIGATION
========================================= */
.page-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 500;
    background: rgba(249, 249, 250, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--grid-line);
    padding: 0.75rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-header.home-header {
    position: absolute;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}

.page-header-logo {
    font-family: var(--font-logo);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.page-header-logo img {
    height: 32px;
    object-fit: contain;
    display: block;
}

.page-header-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.page-header-nav a {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.page-header-nav a:hover,
.page-header-nav a.active {
    color: var(--text-primary);
}

.page-header-cta {
    padding: 10px 24px;
    background: var(--text-primary);
    color: var(--bg-color) !important;
    border-radius: 30px;
    font-size: 0.7rem !important;
    letter-spacing: 1.5px !important;
    transition: background 0.3s, color 0.3s !important;
}

.page-header-cta:hover {
    background: var(--accent-pink) !important;
    color: var(--text-primary) !important;
}

.page-header-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* =========================================
C. INNER PAGE HERO
========================================= */
.page-hero {
    min-height: calc(100vh - 57px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 4rem 6rem;
    background: var(--bg-color);
    border-bottom: 1px solid var(--grid-line);
    position: relative;
    overflow: hidden;
}

/* OPTIMIZED INNER PAGE BACKGROUND BLOB */
.page-hero-bg-blob {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55vw;
    height: 55vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237, 200, 221, 0.4) 0%, rgba(207, 232, 248, 0.3) 40%, rgba(249, 249, 250, 0) 70%);
    z-index: 0;
}

.page-hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-hero-title em {
    font-style: italic;
    color: var(--text-secondary);
}

.page-hero-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

/* =========================================
D. STATS / ACHIEVEMENTS SECTION
========================================= */
.stats-section {
    background: var(--text-primary);
    padding: 7rem 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.stats-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 auto;
    display: none;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -2px;
    display: block;
}

.stat-number span {
    color: var(--accent-pink);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.75rem;
    display: block;
}

.stat-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 0.5rem;
    line-height: 1.4;
}

.stats-tagline {
    grid-column: 1 / -1;
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 2px;
    font-style: italic;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================================
E. PROCESS / WORKFLOW SECTION
========================================= */
.process-section {
    background: var(--bg-color);
    border-bottom: 1px solid var(--grid-line);
}

.process-section .section-title {
    display: block;
}

.process-intro {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--grid-line);
    z-index: 0;
}

.process-step {
    position: relative;
    padding: 0 1.5rem 0 0;
    z-index: 1;
}

.process-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--grid-line);
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.process-step:hover .process-step-number {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    color: var(--text-primary);
}

.process-step-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.process-step-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* =========================================
F. BRAND APPROACH / PHILOSOPHY SECTION
========================================= */
.approach-section {
    background: #ffffff;
    border-bottom: 1px solid var(--grid-line);
}

.approach-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-end;
    margin-bottom: 5rem;
    max-width: 1400px;
}

.approach-large-text {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.approach-large-text em {
    font-style: italic;
    color: var(--text-secondary);
    font-weight: 400;
}

.approach-intro-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 420px;
    align-self: flex-end;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1400px;
    border-top: 1px solid var(--grid-line);
}

.approach-card {
    padding: 3rem 3rem 3rem 0;
    border-right: 1px solid var(--grid-line);
    transition: background 0.3s;
}

.approach-card:last-child {
    border-right: none;
    padding-right: 0;
}

.approach-card:first-child {
    padding-left: 0;
}

.approach-card:not(:first-child) {
    padding-left: 3rem;
}

.approach-card-icon {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.5;
}

.approach-card-number {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.approach-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.approach-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.approach-card-accent {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent-pink);
    margin-top: 1.5rem;
    transition: width 0.4s ease;
}

.approach-card:hover .approach-card-accent {
    width: 60px;
}

/* =========================================
G. MID-PAGE CTA BANNER SECTION
========================================= */
.cta-banner-section {
    padding: 10rem 4rem;
    background: radial-gradient(ellipse at 30% 50%, var(--accent-pink) 0%, var(--accent-blue) 40%, var(--bg-color) 70%);
    text-align: center;
    border-bottom: 1px solid var(--grid-line);
    position: relative;
    overflow: hidden;
}

.cta-banner-section::before {
    content: 'ftg';
    position: absolute;
    font-family: var(--font-heading);
    font-size: 30vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    letter-spacing: -5px;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta-banner-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    display: block;
}

.cta-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}

.cta-banner-title em {
    font-style: italic;
    font-weight: 400;
}

.cta-banner-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 3rem;
}

.cta-banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--text-primary);
    color: var(--bg-color);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-block;
}

.btn-primary:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

/* =========================================
H. FAQ SECTION
========================================= */
.faq-section {
    background: var(--bg-color);
    border-bottom: 1px solid var(--grid-line);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.faq-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.faq-left p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    border-bottom: 1px solid var(--text-primary);
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
}

.faq-contact-link:hover {
    color: var(--accent-pink);
    border-color: var(--accent-pink);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--grid-line);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-pink);
}

.faq-question-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s;
}

.faq-question:hover .faq-question-text {
    color: var(--text-primary);
}

.faq-question-icon {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: transform 0.4s ease, color 0.3s;
    flex-shrink: 0;
    margin-left: 2rem;
}

.faq-item.open .faq-question-icon {
    transform: rotate(45deg);
    color: var(--accent-pink);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s ease;
    padding: 0 0;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 2rem;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 560px;
}

/* =========================================
I. FULL CONTACT SECTION (with form)
========================================= */
.contact-full-section {
    background: #ffffff;
    padding: 8rem 4rem;
    border-bottom: 1px solid var(--grid-line);
}

.contact-full-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 8rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.contact-info-col h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.contact-info-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.5;
}

.contact-detail-item {
    margin-bottom: 2rem;
}

.contact-detail-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    display: block;
}

.contact-detail-value {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s;
}

.contact-detail-value:hover {
    color: var(--accent-pink);
}

.contact-detail-value a {
    color: inherit;
}

.contact-social-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--grid-line);
}

.contact-social-link {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.contact-social-link:hover {
    color: var(--text-primary);
}

/* Contact Form */
.contact-form-col {}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-input,
.form-textarea,
.form-select {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--grid-line);
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: border-color 0.3s;
    outline: none;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(0, 0, 0, 0.2);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--text-primary);
}

.form-textarea {
    resize: none;
    height: 120px;
    line-height: 1.6;
}

.form-select option {
    background: var(--bg-color);
    color: var(--text-primary);
}

.form-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--text-primary);
    cursor: pointer;
}

.checkbox-item span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 1rem;
}

.form-privacy {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 250px;
}

.form-submit-btn {
    padding: 1.1rem 3rem;
    background: var(--text-primary);
    color: var(--bg-color);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    flex-shrink: 0;
}

.form-submit-btn:hover {
    background: var(--accent-pink);
    color: var(--text-primary);
    box-shadow: 0 10px 20px rgba(237, 200, 221, 0.4);
    transform: translateY(-2px);
}

/* =========================================
J. ABOUT PAGE — BRAND STORY SECTION
========================================= */
.brand-story-section {
    background: var(--bg-color);
    border-bottom: 1px solid var(--grid-line);
}

.brand-story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.brand-story-left {}

.brand-story-eyebrow {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    display: block;
}

.brand-story-quote {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.brand-story-body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.brand-story-body p+p {
    margin-top: 1.25rem;
}

.brand-story-right {
    position: relative;
}

.brand-story-img-stack {
    position: relative;
    height: 600px;
}

.brand-story-img-stack img {
    position: absolute;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.bsi-1 {
    width: 70%;
    height: 75%;
    top: 0;
    right: 0;
}

.bsi-2 {
    width: 55%;
    height: 55%;
    bottom: 0;
    left: 0;
    border: 6px solid var(--bg-color);
}

/* Values grid */
.values-section {
    background: #ffffff;
    border-bottom: 1px solid var(--grid-line);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    border-left: 1px solid var(--grid-line);
    border-top: 1px solid var(--grid-line);
}

.value-card {
    padding: 3.5rem 3rem;
    border-right: 1px solid var(--grid-line);
    border-bottom: 1px solid var(--grid-line);
    transition: background 0.3s;
}

.value-card:hover {
    background: var(--bg-color);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--accent-pink);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.25rem;
    display: block;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.value-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Industries We Serve */
.industries-section {
    background: var(--bg-color);
    border-bottom: 1px solid var(--grid-line);
}

.industries-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.industry-row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--grid-line);
    transition: background 0.2s;
    cursor: default;
}

.industry-row:hover {
    background: rgba(237, 200, 221, 0.06);
}

.industry-row:last-child {
    border-bottom: none;
}

.industry-num {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.industry-name {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.industry-clients {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-align: right;
}

/* =========================================
K. SERVICES PAGE — DETAILED CARDS
========================================= */
.services-detail-section {
    background: var(--bg-color);
    border-bottom: 1px solid var(--grid-line);
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 0;
    border-bottom: 1px solid var(--grid-line);
    align-items: start;
}

.service-detail-row:last-child {
    border-bottom: none;
}

.service-detail-left {}

.service-detail-num {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: block;
}

.service-detail-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--text-primary);
    line-height: 1;
}

.service-detail-right {}

.service-detail-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.service-detail-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
    list-style: none;
}

.service-detail-list li {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--grid-line);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-detail-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-pink);
    flex-shrink: 0;
}

/* What We Don't Do section */
.not-section {
    background: var(--text-primary);
    padding: 8rem 4rem;
}

.not-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.not-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #ffffff;
    line-height: 1;
}

.not-left p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-top: 1.5rem;
}

.not-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.not-item {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.not-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

/* =========================================
L. PORTFOLIO PAGE
========================================= */
.portfolio-page-section {
    background: var(--bg-color);
    padding: 6rem 4rem;
}

.portfolio-filter-bar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--grid-line);
}

.filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--grid-line);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--text-primary);
    color: var(--bg-color);
    border-color: var(--text-primary);
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
}

.portfolio-item:nth-child(2) {
    margin-top: 3rem;
}

.portfolio-item:nth-child(5) {
    margin-top: -3rem;
}

.portfolio-item-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.portfolio-item:hover .portfolio-item-img {
    transform: scale(1.05);
}

.portfolio-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item-category {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-pink);
    margin-bottom: 0.4rem;
}

.portfolio-item-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* always-visible badge on portfolio items */
.portfolio-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--bg-color);
    color: var(--text-primary);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

/* Hidden portfolio items for filter */
.portfolio-item.hidden {
    display: none;
}

/* =========================================
M. THANK YOU PAGE
========================================= */
.thankyou-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem;
    background: radial-gradient(ellipse at center, var(--accent-pink) 0%, var(--bg-color) 60%);
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--grid-line);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    font-size: 2rem;
}

.thankyou-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.thankyou-section p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 3rem;
}

.thankyou-section .btn-primary {
    display: inline-block;
}

/* =========================================
N. 404 PAGE
========================================= */
.error-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.error-section::before {
    content: '404';
    position: absolute;
    font-family: var(--font-heading);
    font-size: 40vw;
    font-weight: 900;
    color: var(--grid-line);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: -10px;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}

.error-inner {
    position: relative;
    z-index: 1;
}

.error-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: block;
}

.error-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.error-section p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 440px;
    margin: 0 auto 3rem;
}

.error-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
O. SCROLL REVEAL ANIMATION
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* =========================================
P. UPDATED FOOTER (multi-column)
========================================= */
.footer-full {
    background: var(--text-primary);
    padding: 6rem 4rem 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-col {}

.footer-brand-tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 260px;
}

.footer-logo-text {
    font-family: var(--font-logo);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.footer-logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0.25rem;
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s;
}

.footer-col-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-copy {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
}

.footer-insta-link {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s;
}

.footer-insta-link:hover {
    color: var(--accent-pink);
}

/* =========================================
Q. RESPONSIVE ADDITIONS (NEW)
========================================= */
@media (max-width: 1200px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .process-steps::before {
        display: none;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-card {
        padding: 2.5rem 0;
        border-right: none;
        border-bottom: 1px solid var(--grid-line);
    }

    .approach-card:not(:first-child) {
        padding-left: 0;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-full-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .brand-story-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .brand-story-img-stack {
        height: 400px;
    }

    .portfolio-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .values-grid {
        grid-template-columns: 1fr;
    }

    .not-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 0.75rem 2rem;
    }

    .page-header-nav {
        display: none;
    }

    .page-header-hamburger {
        display: block;
    }

    .page-hero {
        padding: 0 2rem 4rem;
        min-height: calc(100vh - 57px);
    }

    .page-hero-title {
        letter-spacing: -1px;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .stats-section {
        padding: 5rem 2rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 2rem 1rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-step {
        padding: 0;
        border-bottom: 1px solid var(--grid-line);
        padding-bottom: 2.5rem;
    }

    .cta-banner-section {
        padding: 6rem 2rem;
    }

    .cta-banner-title {
        letter-spacing: -1px;
    }

    .portfolio-masonry {
        grid-template-columns: 1fr;
    }

    .portfolio-item:nth-child(2),
    .portfolio-item:nth-child(5) {
        margin-top: 0;
    }

    .contact-full-section {
        padding: 5rem 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-submit-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .form-checkboxes {
        grid-template-columns: 1fr;
    }

    .footer-full {
        padding: 4rem 2rem 2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .brand-story-img-stack {
        height: 320px;
    }

    .approach-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-banner-buttons {
        flex-direction: column;
        align-items: center;
    }

    .industry-row {
        grid-template-columns: 40px 1fr;
    }

    .industry-clients {
        display: none;
    }
}

/* Styles extracted from 404.html */
/* Drifting images for 404 page visual personality */
.err-images {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.err-img {
    position: absolute;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0.18;
}

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

.err-img-1 {
    width: 160px;
    height: 210px;
    top: 8%;
    left: 4%;
    transform: rotate(-8deg);
}

.err-img-2 {
    width: 120px;
    height: 160px;
    top: 60%;
    left: 6%;
    transform: rotate(5deg);
}

.err-img-3 {
    width: 140px;
    height: 185px;
    top: 12%;
    right: 5%;
    transform: rotate(7deg);
}

.err-img-4 {
    width: 110px;
    height: 145px;
    top: 55%;
    right: 4%;
    transform: rotate(-5deg);
}

.err-img-5 {
    width: 100px;
    height: 130px;
    bottom: 10%;
    left: 25%;
    transform: rotate(3deg);
}

@media (max-width: 768px) {
    .err-img {
        display: none;
    }
}

/* Styles extracted from thankyou.html */
/* Arc-image row for the thank you page */
.ty-images {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 4rem auto 0;
    max-width: 700px;
    flex-wrap: wrap;
}

.ty-img {
    width: 100px;
    height: 130px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: rotate(var(--r));
    transition: transform 0.4s ease;
}

.ty-img:hover {
    transform: rotate(0deg) scale(1.05);
}

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

.ty-step-row {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 700px;
    margin: 5rem auto 0;
    border: 1px solid var(--grid-line);
    border-radius: 16px;
    overflow: hidden;
}

.ty-step {
    flex: 1;
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--grid-line);
    text-align: center;
}

.ty-step:last-child {
    border-right: none;
}

.ty-step-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-pink);
    display: block;
    margin-bottom: 0.5rem;
}

.ty-step-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 600px) {
    .ty-images {
        display: none;
    }

    .ty-step-row {
        flex-direction: column;
    }

    .ty-step {
        border-right: none;
        border-bottom: 1px solid var(--grid-line);
    }

    .ty-step:last-child {
        border-bottom: none;
    }
}