/* ========================================
   CSS VARIABLES
   ======================================== */

:root {
    --font-heading: 'Overused Grotesk', sans-serif;
    --font-special: 'Pixelify Sans', cursive;
    --black: #060503;
    --white: #FFFFFF;
    --brand: #FE3E00;
    --white-80: rgba(255, 255, 255, 0.8);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);
    --section-padding: clamp(32px, 5vw, 96px);
}

/* ========================================
   GRAVITY CURSOR
   ======================================== */

.gravity-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.gravity-cursor__inner {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 1;
    transition: border-color 0.3s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #060503;
    font-family: var(--font-special);
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .gravity-cursor {
        display: none !important;
    }
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html,
body {
    margin: 0;
    padding: 0;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-heading);
    background: var(--black);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

.special-text {
    font-family: var(--font-special);
}

/* ========================================
   DESIGN SYSTEM COMPONENTS
   ======================================== */

/* ---------- BUTTONS ---------- */

/* Primary Button (Solid White) */
/* Standard Button Style (Applied to all) */
.btn-primary,
.btn-outline,
.apply-button,
.sitdown-button,
.hero__cta,
.portfolio__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 26px;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    font-family: var(--font-special);
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 0.94;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary:hover,
.btn-outline:hover,
.apply-button:hover,
.sitdown-button:hover,
.hero__cta:hover,
.portfolio__card-btn:hover {
    background: var(--white);
    color: var(--black);
}

.btn-primary img,
.btn-outline img,
.apply-button img,
.sitdown-button img,
.hero__cta img,
.portfolio__card-btn img {
    width: 29px;
    height: auto;
    transition: filter 0.3s ease;
}

.btn-primary:hover img,
.btn-outline:hover img,
.apply-button:hover img,
.sitdown-button:hover img,
.hero__cta:hover img,
.portfolio__card-btn:hover img {
    filter: brightness(0);
}

/* ---------- TYPOGRAPHY ---------- */

/* Section Label (Small uppercase) */
.section-label {
    font-family: var(--font-special);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white-50);
}

/* Section Title (Large heading) */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 96px);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.03;
    letter-spacing: -0.04em;
    color: var(--white);
    margin: 0;
}

/* Section Title Small */
.section-title--sm {
    font-size: clamp(2rem, 4vw, 48px);
}

/* Body Text */
.body-text {
    font-family: var(--font-special);
    font-size: 14px;
    line-height: 1.6;
    color: var(--white-80);
}

/* Body Text Muted */
.body-text--muted {
    color: #b3b3b3;
}

/* ========================================
   LOADER
   ======================================== */

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
}

/* ========================================
   HEADER
   ======================================== */

.header {
    position: relative;
    z-index: 10;
    padding: var(--section-padding) var(--section-padding) 0;
}

.hero > .header {
    padding: var(--section-padding) 0 0 0;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: block;
}

.header__logo img {
    width: clamp(1.75rem, 2.8vw, 2.625rem);
    height: auto;
}

.header__menu {
    position: relative;
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.header__menu img {
    width: clamp(1.5rem, 2.5vw, 2.5rem);
    height: auto;
    display: block;
}

/* ========================================
   SIDE MENU
   ======================================== */

.side-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    visibility: hidden;
}

.side-menu.is-active {
    pointer-events: auto;
    visibility: visible;
}

.side-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 5, 3, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-menu.is-active .side-menu__overlay {
    opacity: 1;
}

.side-menu__content {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 100vh;
    background: var(--black);
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--white-10);
}

.side-menu.is-active .side-menu__content {
    transform: translateX(0);
}

.side-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(3rem, 8vh, 6rem);
}

.side-menu__logo img {
    width: clamp(1.75rem, 2.8vw, 2.625rem);
    height: auto;
}

.side-menu__close {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-menu__close span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease, background 0.3s ease;
}

.side-menu__close span:first-child {
    transform: rotate(45deg);
}

.side-menu__close span:last-child {
    transform: rotate(-45deg);
}

.side-menu__close:hover span {
    background: var(--brand);
}

.side-menu__close:hover span:first-child {
    transform: rotate(135deg);
}

.side-menu__close:hover span:last-child {
    transform: rotate(45deg);
}

.side-menu__body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.side-menu__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vh, 2rem);
}

.side-menu__links li {
    overflow: hidden;
}

.side-menu__link {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
    letter-spacing: -0.02em;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.3s ease, padding-left 0.4s ease;
}

.side-menu.is-active .side-menu__link {
    transform: translateY(0);
    opacity: 1;
}

.side-menu.is-active .side-menu__links li:nth-child(1) .side-menu__link {
    transition-delay: 0.1s;
}

.side-menu.is-active .side-menu__links li:nth-child(2) .side-menu__link {
    transition-delay: 0.15s;
}

.side-menu.is-active .side-menu__links li:nth-child(3) .side-menu__link {
    transition-delay: 0.2s;
}

.side-menu.is-active .side-menu__links li:nth-child(4) .side-menu__link {
    transition-delay: 0.25s;
}

.side-menu.is-active .side-menu__links li:nth-child(5) .side-menu__link {
    transition-delay: 0.3s;
}

.side-menu__link:hover {
    color: var(--brand);
    padding-left: 20px;
}

.side-menu__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.side-menu.is-active .side-menu__info {
    opacity: 1;
    transform: translateY(0);
}

.side-menu__email,
.side-menu__phone {
    font-family: var(--font-special);
    font-size: 1rem;
    color: var(--white-50);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.side-menu__email:hover,
.side-menu__phone:hover {
    color: var(--brand);
}

/* ========================================
   HERO
   ======================================== */

.hero {
    min-height: 100vh;
    padding: var(--section-padding);
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.hero__backdrop {
    position: absolute;
    width: clamp(300px, 63vw, 1212px);
    top: clamp(-100px, -17vw, -328px);
    right: clamp(-50px, -5vw, 0px);
    pointer-events: none;
    z-index: 0;
}

.hero__backdrop img {
    width: 100%;
    height: auto;
}

.hero__image {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
}

/* Interference bands effect */
.hero__interference {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(0deg,
            transparent 0px,
            transparent 2px,
            rgba(255, 255, 255, 0.015) 2px,
            rgba(255, 255, 255, 0.015) 4px,
            transparent 4px,
            transparent 8px,
            rgba(0, 0, 0, 0.02) 8px,
            rgba(0, 0, 0, 0.02) 10px);
    background-size: 100% 100%;
    animation: interference 25s linear infinite;
    mix-blend-mode: overlay;
    opacity: 0.8;
}

@keyframes interference {
    0% {
        transform: translateX(0) translateY(0);
    }

    25% {
        transform: translateX(3px) translateY(-2px);
    }

    50% {
        transform: translateX(-2px) translateY(1px);
    }

    75% {
        transform: translateX(4px) translateY(-1px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

.hero__Content {
    padding-top: 15vh;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: clamp(2rem, 7vw, 8.875rem);
    font-weight: 700;
    line-height: 0.725;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.desktop-only { display: inline; }
.mobile-only { display: none; }

.hero__subtitle {
    font-size: clamp(1rem, 4.27vw, 5.125rem);
    font-weight: 450;
    line-height: 1.25;
    text-transform: uppercase;
    margin-top: clamp(0.5rem, 2vw, 1.5rem);
}

.hero__Scroll {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero__Scroll-icon {
    display: flex;
    align-items: flex-end;
    gap: clamp(0.75rem, 1.5vw, 1.5rem);
}

.hero__Scroll-icon img {
    display: none;
    /* remove old rule safety */
}

.hero__scroll-arrow-box {
    width: clamp(2.5rem, 4vw, 4rem);
    background: var(--brand);
    padding: clamp(0.5rem, 1vw, 0.75rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__scroll-arrow-box img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    transform: rotate(90deg);
}

.hero__Scroll-text {
    font-family: var(--font-special);
    font-size: clamp(0.625rem, 1vw, 1rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.plus__Icon img {
    width: clamp(0.75rem, 1.5vw, 1.25rem);
    height: auto;
    opacity: 0.5;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    padding: 192px var(--section-padding) 48px;
    /* Reduced bottom padding */
    overflow: hidden;
    background: transparent;
}

.about__title-graphic {
    padding-top: 2rem;
    padding-bottom: 12rem;
    width: 100%;
    opacity: 0.3;
}

.about__title-graphic svg {
    width: 100%;
    height: auto;
}

.about__content {
    width: 100%;
}

.about__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 96px);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin: 0 0 clamp(2rem, 5vw, 5rem);
}

.about__divider {
    width: 100%;
    height: 1px;
    background: var(--white-10);
    margin-bottom: clamp(2rem, 5vw, 5rem);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(2rem, 5vw, 5rem);
}

.about__label {
    display: flex;
    align-items: flex-start;
    /* Align to top */
    gap: 1.5rem;
}

.about__label img {
    width: 32px;
    height: auto;
    margin-top: 0;
}

.about__label span {
    font-family: var(--font-special);
    font-size: clamp(14px, 1.25vw, 24px);
    font-weight: 400;
    line-height: 1;
    /* Tighter line height for better top alignment */
    text-transform: uppercase;
    color: var(--white);
    margin-top: 5px;
    /* Visual optical alignment with arrow */
}

.about__description {
    max-width: 600px;
}

.about__description p {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.5vw, 28px);
    font-weight: 400;
    line-height: 1.64;
    letter-spacing: -0.02em;
    color: var(--white-80);
    margin: 0 0 2rem;
}

.about__description p:last-child {
    margin-bottom: 0;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

/* ========================================
   PORTFOLIO SECTION
   ======================================== */

.portfolio {
    padding: 192px var(--section-padding);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align to bottom as requested */
    background: transparent;
}

.portfolio__title {
    font-family: var(--font-special);
    font-size: clamp(4rem, 16vw, 240.56px);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.07em;
    text-transform: uppercase;
    color: var(--white-30);
    margin: 0 0 100px;
    /* Spacing below title */
    white-space: nowrap;
    text-align: left;
    /* Align left */
}

.portfolio__card {
    width: clamp(300px, 90vw, 681px);
    min-height: 367px;
    border: 5px solid var(--white-10);
    background: var(--black);
    position: relative;
    z-index: 1;
    margin-left: auto;
    /* Keep card on right */
    display: flex;
    align-items: center;
    padding: 3rem;
    margin-top: -150px;
    /* Overlap with title or position near bottom */
}

.portfolio__card-content {
    width: 100%;
}

.portfolio__card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 42px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 2rem;
    color: var(--white);
}

.portfolio__card-subtitle {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white-50);
    margin: 0 0 3rem;
    letter-spacing: 0.05em;
}

.portfolio__card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.portfolio__card-text {
    font-family: var(--font-heading);
    font-size: 18px;
    /* Updated size */
    font-weight: 400;
    line-height: 1.31;
    /* Updated line-height */
    color: var(--white-50);
    text-transform: uppercase;
    max-width: 300px;
    /* Manage responsive width */
}

/* Inherits from standard button style now */
.portfolio__card-btn span {
    font-family: inherit;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (max-width: 1024px) {
    .hero__Content {
        padding-top: 5vh;
    }

    .hero__backdrop {
        width: 80vw;
        top: -5vw;
        right: -10vw;
    }

    /* Portfolio Tablet */
    .portfolio {
        justify-content: center;
        padding-top: 48px;
        padding-bottom: 96px;
    }

    .portfolio__title {
        margin-bottom: 50px;
        font-size: 15vw;
        text-align: center;
        position: relative;
    }

    .portfolio__card {
        margin: 0 auto;
        width: 100%;
        border-width: 2px;
        padding: 2rem;
        margin-top: 0;
    }

    .portfolio__card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .portfolio__card-text {
        max-width: 100%;
    }
}

/* ========================================
   IDENTITY SECTION
   ======================================== */

.identity {
    padding: 0 var(--section-padding) 144px;
    /* More breathing room between service cards */
    color: var(--white);
}

.identity__container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
}

.identity__visual {
    order: 2;
}

.identity__left {
    order: 1;
}

/* Flipped overrides (Desktop) */
.identity--flipped .identity__container {
    grid-template-columns: 0.8fr 1.2fr;
}

.identity--flipped .identity__left {
    order: 2;
    padding-left: 0;
}

.identity--flipped .identity__visual {
    order: 1;
    margin-right: 5rem;
    padding-left: 0;
}

.identity__cell {
    /* Border removed */
    padding: clamp(1.5rem, 3vw, 3rem);
    position: relative;
    padding-left: 0;
    /* Align with layout preference */
}

/* Layout adjustments */
.identity__container {
    gap: 0;
}

.identity__left {
    display: flex;
    flex-direction: column;
}

.identity__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 2rem;
}

/* Borders removed from structural elements */

/* Graphic Styles */
.identity__graphic {
    padding: 0 var(--section-padding) 40px;
    width: 100%;
    opacity: 0.3;
    margin-top: 12rem;
    margin-bottom: 14rem;
}

.identity__graphic svg {
    width: 100%;
    height: auto;
}

.identity__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 95.86px);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.identity__subtitle {
    display: block;
    font-family: var(--font-special);
    font-size: clamp(14px, 1.5vw, 20.63px);
    font-weight: 400;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    /* margin-bottom: 2rem; */
    padding-bottom: 2rem;
    /* padding-top: 1rem; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.identity__text-box p {
    font-family: var(--font-heading);
    font-size: 18px;
    /* Updated */
    font-weight: 400;
    line-height: 1.31;
    /* Updated */
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.identity__text-box p:last-child {
    margin-bottom: 0;
    opacity: 0.7;
}

.identity__list-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 2rem;
    /* Add separation from text box */
}

.identity__list {
    list-style: none;
    margin-bottom: 2rem;
}

.identity__list:last-child {
    margin-bottom: 0;
}

.identity__list li {
    font-family: var(--font-special);
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.25;
    color: var(--white-80);
    text-transform: uppercase;
}

.identity__footer {
    padding-top: 2rem;
}

.identity__btn {
    width: 56px;
    /* Slightly larger container to fit 28px icon comfortably */
    height: 56px;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.identity__btn:hover {
    transform: scale(1.05);
}

.identity__btn img {
    width: 28px;
    /* Updated to 28px */
    height: auto;
    filter: brightness(0) invert(1);
    /* Make white */
    transform: rotate(90deg);
}

.identity__visual {
    background: var(--black);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 0;
    overflow: hidden;
    /* Mask parallax overflow */
}

.identity__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 3/4;
    transform: scale(1.15);
    /* Room for parallax */
    transform-origin: center;
    will-change: transform;
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {

    /* ---- Header ---- */
    .header__menu img {
        width: 32px;
    }

    /* ---- Hero ---- */
    .hero {
        min-height: 100svh;
    }

    .hero__Content {
        padding-top: 3vh;
    }

    .hero__title {
        line-height: 0.85;
    }

    .hero__backdrop {
        width: 120vw;
        top: 5vw;
        right: -30vw;
        opacity: 0.4;
    }

    .hero__Scroll-text {
        display: none;
    }

    .hero__title {
        font-size: 60px;
        line-height: 0.95;
    }

    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }

    .hero__image img {
        object-position: 70% center;
    }

    /* ---- About Section ---- */
    .about {
        padding-top: 2.5rem;
    }

    .about__title-graphic {
        padding-bottom: 4rem;
        margin-left: calc(-1 * var(--section-padding));
        margin-right: calc(-1 * var(--section-padding));
        width: calc(100% + (2 * var(--section-padding)));
    }

    .about__heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    /* ---- Identity Sections ---- */
    .identity {
        padding-bottom: 90px;
    }

    .identity__container {
        grid-template-columns: 1fr !important;
    }

    .identity__graphic {
        margin-top: 5rem;
        margin-bottom: 5rem;
        padding-left: 0;
        padding-right: 0;
    }

    .identity--flipped .identity__left {
        order: 1;
    }

    .identity--flipped .identity__visual {
        order: -1;
        margin-right: 0;
    }

    /* Image comes FIRST on mobile */
    .identity__visual {
        order: -1;
        padding: 0;
        margin-bottom: 1.5rem;
        margin-left: calc(-1 * var(--section-padding));
        margin-right: calc(-1 * var(--section-padding));
        width: calc(100% + (2 * var(--section-padding)));
    }

    .identity__visual img {
        transform: none;
    }

    .identity__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .identity__list-box {
        padding-left: 0;
    }

    .identity__cell {
        padding: 0.75rem 0;
    }

    .identity__footer {
        margin-bottom: 4rem;
    }

    /* ---- Capabilities ---- */
    .capabilities__heading {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    /* ---- FAQ Section ---- */
    .faq__heading {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    /* ---- Careers Section ---- */
    .careers-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .careers-visual {
        margin-left: calc(-1 * var(--section-padding));
        margin-right: calc(-1 * var(--section-padding));
        width: calc(100% + (2 * var(--section-padding)));
    }

    .careers-title {
        font-size: clamp(24px, 6vw, 36px);
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE
   ======================================== */

@media (max-width: 480px) {
    .header__menu img {
        width: 32px;
    }

    .hero__Content {
        padding-top: 2vh;
    }

    .plus__Icon {
        display: none;
    }
}

/* ========================================
   EXTENDED CAPABILITIES SECTION
   ======================================== */

.capabilities {
    padding: 96px var(--section-padding);
    /* border-top: 1px solid var(--white-10); Optional if desired */
}

.capabilities__heading {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 84px);
    /* Matched to identity__title */
    line-height: 0.9;
    letter-spacing: -0.02em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    /* border-bottom: 1px solid var(--white-10); Optional if desired */
}

.capabilities__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--white-10);
    align-items: start;
    /* Prevent stretching when one item expands */
}

.capabilities__item {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    overflow: hidden;
    flex-wrap: wrap;
    /* Allow description to wrap */
}

.capabilities__icon {
    width: 80px;
    min-width: 80px;
    height: 80px;
    background: transparent;
    aspect-ratio: 1;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.capabilities__icon svg {
    width: 60px;
    height: 60px;
}

.capabilities__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.capabilities__title {
    font-family: var(--font-special);
    font-size: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.4;
    color: var(--white);
}

.capabilities__plus {
    font-family: var(--font-special);
    font-size: 24px;
    color: var(--white-50);
    margin-top: auto;
    transition: transform 0.3s ease, color 0.3s ease;
}

.capabilities__description {
    height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    padding: 0;
    width: 100%;
    flex-basis: 100%;
    background: transparent;
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.6;
}


/* ========================================
   CAPABILITIES POPUP MODAL
   ======================================== */

.capabilities-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.capabilities-popup.active {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

.capabilities-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.capabilities-popup__content {
    position: relative;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem;
    max-width: 600px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
}

.capabilities-popup.active .capabilities-popup__content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.capabilities-popup__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white-50);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
}

.capabilities-popup__close:hover {
    color: #FF4D00;
    transform: rotate(90deg);
}

.capabilities-popup__icon {
    width: 80px;
    height: 80px;
    background: transparent;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.capabilities-popup__icon svg {
    width: 80px;
    height: 80px;
}

.capabilities-popup__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.capabilities-popup__description {
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    color: var(--white-80);
    line-height: 1.6;
    margin: 0;
}


/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    padding: clamp(80px, 10vw, 144px) var(--section-padding);
    background: var(--black);
}

.faq__container {
    width: 100%;
}

.faq__heading {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 84px);
    line-height: 0.9;
    letter-spacing: -0.02em;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
}

.faq__list {
    border-top: 1px solid var(--white-10);
}

.faq-category-title {
    text-align: center;
}

.faq__item {
    border-bottom: 1px solid var(--white-10);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-family: var(--font-heading);
    /* Match homepage section headings instead of special pixel font for bigger look */
    font-size: clamp(20px, 2.5vw, 36px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-align: left;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.faq__question:hover {
    color: var(--brand);
}

.faq__icon {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 300;
    color: var(--white-50);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    flex-shrink: 0;
    margin-left: 2rem;
}

.faq__item.is-open .faq__icon {
    transform: rotate(45deg);
    color: var(--brand);
}

.faq__answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.faq__answer p {
    font-family: var(--font-heading);
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--white-80);
    text-transform: uppercase;
    padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

/* Specific overrides for faq.html page */
.faq-page__section {
    padding-top: 96px;
}

.faq-page__container {
    width: 100%;
}

.faq-page__heading {
    font-size: clamp(3rem, 6vw, 96px);
    margin-bottom: 48px;
    text-align: left;
}

.faq-page__list {
    width: 100%;
    margin: 0 auto;
}

.faq-page__category-title {
    text-align: left;
    margin: 64px 0 32px;
    color: var(--brand);
}

/* ========================================
   CAREERS SECTION
   ======================================== */

.careers-section {
    padding: clamp(140px, 16vw, 200px) var(--section-padding) clamp(80px, 10vw, 144px) var(--section-padding);
}

/* Careers Container */
.careers-container {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: center;
    gap: clamp(4rem, 8vw, 8rem);
    width: 100%;
}

/* Left: Image */
.careers-visual {
    overflow: hidden;
    width: 100%;
}

.careers-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.5s ease, transform 0.6s ease;
}

.careers-visual img:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
}

/* Right: Content */
.careers-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.careers-label {
    display: block;
    margin-bottom: 2rem;
    font-family: var(--font-special);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white-50);
}

.careers-title {
    line-height: 1.03;
    margin-bottom: 0;
    letter-spacing: -0.04em;
}

.careers-divider {
    width: 60px;
    height: 1px;
    background: var(--brand);
    margin: clamp(2rem, 4vw, 3rem) 0;
}

.careers-description {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    color: var(--white-80);
    text-transform: uppercase;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.careers-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-special);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    text-decoration: none;
    padding: 14px 28px;
    border: 1px solid var(--white-20);
    transition: border-color 0.3s ease, color 0.3s ease;
    width: fit-content;
}

.careers-cta:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.careers-cta img {
    width: 16px;
    height: auto;
}

/* Mobile Stacking */
@media (max-width: 768px) {
    .careers-card {
        grid-template-columns: 1fr;
    }

    .careers-visual {
        min-height: 280px;
        order: 2;
    }

    .careers-content {
        order: 1;
        border-left: none;
    }
}

/* ========================================
   NEW SECTIONS RESPONSIVE
   ======================================== */

.capabilities__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--white-10);
    border-bottom: 1px solid var(--white-10);
    align-items: start;
    /* Prevent items from stretching to row height */
}

/* ... existing item styles ... */

/* ========================================
   NEW SECTIONS RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .capabilities {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    .capabilities__heading {
        padding-left: var(--section-padding);
    }

    .capabilities__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: var(--section-padding);
        gap: 16px;
        border: none;
        padding: 0 var(--section-padding) 2rem var(--section-padding);
        scrollbar-width: none;
    }

    .capabilities__grid::-webkit-scrollbar {
        display: none;
    }

    .capabilities__item {
        width: 80vw;
        min-width: 80vw;
        max-width: 80vw;
        scroll-snap-align: start;
        border: 1px solid var(--white-10);
        flex-shrink: 0;
        padding: 2rem;
        box-sizing: border-box;
    }

    /* Careers - must be here (after base styles) to override */
    .careers-container {
        grid-template-columns: 1fr;
        gap: 4rem; /* Added more space on top of the image */
    }

    .careers-visual {
        width: 100%;
    }

    .careers-title {
        font-size: clamp(24px, 6vw, 36px);
    }
}

@media (max-width: 480px) {

    /* Styles handled by 768px media query mostly */
    .capabilities__item {
        min-width: 85vw;
    }
}


/* ========================================
   SITDOWN SECTION
   ======================================== */

.sitdown-section {
    background: #060503;
    padding: clamp(80px, 10vw, 140px) 0 0 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sitdown-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--section-padding);
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* SITDOWN SVG Logo - Full Width */
.sitdown-logo {
    margin-bottom: clamp(60px, 8vw, 100px);
}

.sitdown-logo svg {
    width: 100%;
    height: auto;
}

/* Main Content Area - Stacked Layout */
.sitdown-main {
    display: flex;
    flex-direction: column;
    gap: clamp(80px, 10vw, 120px);
    flex: 1;
    padding-bottom: clamp(80px, 10vw, 120px);
}

/* CTA Content - Left Side */
.sitdown-content {
    align-self: start;
}

.sitdown-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.03;
    letter-spacing: -0.04em;
    margin: 0 0 32px 0;
}

.sitdown-cta {
    margin-top: 24px;
}

/* sitdown-button styles are now handled by the standard button block */

/* Contact Info - Below CTA, Right Aligned */
.sitdown-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 8px;
    padding-top: clamp(40px, 6vw, 80px);
}

.sitdown-email,
.sitdown-phone {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 129px);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    line-height: 1.01;
    letter-spacing: -0.04em;
    transition: color 0.3s ease;
}

.sitdown-email:hover,
.sitdown-phone:hover {
    color: #FF4D00;
}

.sitdown-arrow {
    width: 0.75em;
    height: auto;
    margin-right: 0;
    vertical-align: middle;
    opacity: 0;
    max-width: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sitdown-email:hover .sitdown-arrow,
.sitdown-phone:hover .sitdown-arrow {
    opacity: 1;
    max-width: 1em;
    margin-right: 24px;
}

/* Footer */
.sitdown-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 24px var(--section-padding);
    border-top: 1px solid var(--white-10);
    font-family: var(--font-special);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white-50);
}

.footer-copyright,
.footer-coords,
.footer-dev,
.footer-link {
    opacity: 0.6;
}

.footer-link {
    color: var(--white-50);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

.footer-dev {
    text-align: left;
}

/* ========================================
   COMPREHENSIVE RESPONSIVE STYLES
   ======================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    :root {
        --section-padding: 40px;
    }

    .sitdown-container {
        padding: 0 40px;
    }

    .sitdown-footer {
        padding: 24px var(--section-padding);
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 24px;
    }

    /* Sitdown Section */
    .sitdown-container {
        padding: 0 var(--section-padding);
    }

    .sitdown-logo {
        margin-left: calc(-1 * var(--section-padding));
        margin-right: calc(-1 * var(--section-padding));
        width: calc(100% + (2 * var(--section-padding)));
    }

    .sitdown-logo svg {
        max-width: 100%;
        width: 100%;
        display: block;
    }

    .sitdown-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .sitdown-content {
        align-self: auto;
    }

    .sitdown-contact {
        align-items: flex-start;
        text-align: left;
    }

    .sitdown-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .sitdown-email,
    .sitdown-phone {
        font-size: clamp(28px, 6vw, 40px);
    }

    .sitdown-footer {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 20px var(--section-padding);
    }

    .footer-dev {
        text-align: left;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .sitdown-footer {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 16px;
    }

    .footer-copyright,
    .footer-link,
    .footer-coords,
    .footer-dev {
        text-align: left;
    }

    .sitdown-email,
    .sitdown-phone {
        font-size: clamp(24px, 7vw, 32px);
    }

    .sitdown-button {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   STUDIO PAGE STYLES
   ======================================== */

.studio-page {
    position: relative;
    z-index: 10;
    background: var(--black);
}

/* Override pixel font for descriptions — use readable heading font on studio */
.studio-page .body-text {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 20px !important;
    line-height: 1.5;
    text-transform: uppercase !important;
}

/* ---------- 1. HERO SECTION ---------- */
.studio-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    background: var(--black);
}

.studio-hero__backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('../Images/noise.png');
    /* Assumes a noise.png exists, as requested "grain" */
    background-repeat: repeat;
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.studio-hero__content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--section-padding);
    width: 100%;
}

.studio-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 120px);
    font-weight: 600;
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 2rem 0;
    letter-spacing: -0.03em;
}

.studio-hero__subtitle {
    font-family: var(--font-special);
    font-size: clamp(1rem, 1.5vw, 24px);
    line-height: 1.6;
    color: var(--white-80);
    margin: 0 0 4rem 0;
    max-width: 800px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.studio-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border: 1px solid var(--white-50);
    color: var(--white);
    font-family: var(--font-special);
    text-transform: uppercase;
    font-size: clamp(0.875rem, 1.2vw, 1.125rem);
    text-decoration: none;
    transition: all 0.3s ease;
}

.studio-hero__cta img {
    width: 20px;
    transition: transform 0.3s ease;
}

.studio-hero__cta:hover {
    border-color: var(--brand);
    color: var(--brand);
    box-shadow: 0 0 20px rgba(254, 62, 0, 0.2);
}

.studio-hero__cta:hover img {
    transform: translateX(5px);
}

/* ---------- 2. PHILOSOPHY SECTION ---------- */
.studio-philosophy {
    padding: clamp(6rem, 15vw, 12rem) var(--section-padding);
    background: var(--black);
}

.studio-philosophy__container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.studio-philosophy__label {
    margin-bottom: clamp(3rem, 6vw, 5rem);
    color: var(--brand);
    justify-content: center;
    display: flex;
}

.studio-philosophy__text p {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 56px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--white-50);
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
    text-transform: none;
}

.studio-philosophy__text p:last-child {
    margin-bottom: 0;
}

.studio-philosophy__text .highlight {
    color: var(--white);
}

/* ---------- 3. WHAT WE BUILD SECTION ---------- */
.studio-build {
    padding: clamp(5rem, 10vw, 8rem) var(--section-padding);
    border-top: 1px solid var(--white-10);
}

.studio-build__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(4rem, 8vw, 8rem);
}

.studio-build__left {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.studio-build__desc {
    margin-top: 2rem;
    font-size: clamp(1rem, 1.5vw, 28px);
    max-width: 500px;
    text-transform: uppercase;
}

.studio-build__list {
    list-style: none;
    padding: 0;
    margin: 0 0 4rem 0;
}

.studio-build__item {
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
    border-bottom: 1px solid var(--white-10);
    position: relative;
    cursor: default;
    /* Hover effect handled by GSAP quickTo in main.js */
}

.studio-build__item:first-child {
    border-top: 1px solid var(--white-10);
}

.studio-build__item-text {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 64px);
    font-weight: 500;
    color: var(--white);
    display: block;
    will-change: transform;
    transition: color 0.3s ease;
}

.studio-build__item:hover .studio-build__item-text {
    color: var(--brand);
}

.studio-build__footer {
    font-family: var(--font-special);
    font-size: clamp(1rem, 1.5vw, 24px);
    line-height: 1.6;
    color: var(--white-80);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.studio-build__footer .highlight {
    color: var(--white);
}

/* ---------- 4. CLIENT SECTION ---------- */
.studio-clients {
    padding: clamp(5rem, 10vw, 8rem) var(--section-padding);
}

.studio-clients__container {
    width: 100%;
}

.studio-clients__grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    align-items: center;
    gap: clamp(4rem, 8vw, 8rem);
}

.studio-clients__intro {
    margin-bottom: 0;
}

.studio-clients__desc {
    margin-top: 2rem;
    font-size: clamp(1rem, 1.5vw, 28px);
    max-width: 600px;
    text-transform: uppercase;
}

.studio-clients__desc .highlight {
    color: var(--white);
}

.studio-clients__visual {
    overflow: hidden;
    width: 100%;
}

.studio-clients__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.5s ease, transform 0.6s ease;
}

.studio-clients__visual img:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.studio-clients__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    border-top: 1px solid var(--white-10);
    border-left: 1px solid var(--white-10);
}

.studio-client__logo {
    aspect-ratio: 3/2;
    border-right: 1px solid var(--white-10);
    border-bottom: 1px solid var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-special);
    font-size: 1.25rem;
    color: var(--white-50);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    cursor: pointer;
}

.studio-client__logo:hover {
    filter: grayscale(0%);
    color: var(--white);
    transform: scale(1.05);
    /* Slight scale */
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.05);
    /* Subtle glow */
    z-index: 2;
    position: relative;
    border-color: rgba(255, 255, 255, 0.2);
}

/* ---------- 5. PROCESS SECTION ---------- */
.studio-process {
    padding: clamp(5rem, 10vw, 8rem) var(--section-padding);
    background: var(--black);
}

.studio-process__container {
    width: 100%;
}

.studio-process__timeline {
    margin-top: clamp(4rem, 8vw, 6rem);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2vw, 2rem);
    border-left: 1px solid var(--white-10);
    position: relative;
}

.process-step:first-child {
    border-left: none;
    padding-left: 0;
}

/* Horizontal connecting line on desktop */
.process-step::before {
    content: '';
    position: absolute;
    top: calc(clamp(2rem, 3vw, 3rem) + 20px);
    left: 0;
    right: 0;
    height: 1px;
    width: auto;
    bottom: auto;
    background: var(--white-10);
    z-index: 1;
}

.process-step:first-child::before {
    left: 20px;
}

.process-step:last-child::before {
    right: auto;
    width: 50%;
}

.process-step__number {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: var(--black);
    color: var(--brand);
    font-family: var(--font-special);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-20);
    border-radius: 50%;
    margin-bottom: 2rem;
}

.process-step__content {
    max-width: 100%;
}

.process-step__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 56px);
    font-weight: 500;
    color: var(--white);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.process-step__desc {
    font-size: clamp(1rem, 1.5vw, 28px);
    text-transform: uppercase;
}

/* ---------- 6. TEAM SECTION ---------- */
.studio-team {
    padding: clamp(5rem, 10vw, 8rem) var(--section-padding);
}

.studio-team__container {
    width: 100%;
}

.studio-team__intro {
    margin-bottom: clamp(4rem, 8vw, 6rem);
}

.studio-team__desc {
    margin-top: 2rem;
    font-size: clamp(1rem, 1.5vw, 28px);
    max-width: 600px;
    text-transform: uppercase;
}

.studio-team__desc .highlight {
    color: var(--white);
}

.studio-team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 4vw, 4rem);
}

.team-member {
    cursor: pointer;
}

.team-member__image-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    background: var(--white-5);
}

.team-member__image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--white-10);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-member:hover .team-member__image-placeholder {
    transform: scale(1.05);
}

.team-member__name {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2vw, 32px);
    font-weight: 500;
    color: var(--white);
    margin: 0;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

/* Orange accent underline on hover */
.team-member__name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-member:hover .team-member__name::after {
    width: 100%;
}

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
@media (max-width: 1024px) {
    .studio-build__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .studio-build__left {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    /* ---- Global Typography Fix ---- */
    .section-title,
    .section-title--sm {
        font-size: clamp(24px, 6vw, 32px) !important;
        margin-bottom: 2rem;
    }

    /* ---- Studio Hero ---- */
    .studio-hero__subtitle {
        max-width: 100%;
    }

    /* ---- Global Button Override ---- */
    .btn-primary,
    .btn-outline,
    .apply-button,
    .sitdown-button,
    .hero__cta,
    .portfolio__card-btn,
    .careers-cta,
    .studio-hero__cta {
        font-size: 15px !important;
    }

    /* ---- Studio Typography Override ---- */
    .studio-page .body-text {
        font-size: 16px !important;
    }

    /* ---- Studio Philosophy ---- */
    .studio-philosophy__container {
        text-align: left;
    }

    .studio-philosophy__text p {
        font-size: 24px;
        line-height: 1.4;
    }

    /* ---- Studio Clients ---- */
    .studio-clients__grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .studio-clients__visual img {
        aspect-ratio: 16/9;
    }

    .studio-clients__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .studio-clients__desc {
        max-width: 100%;
    }

    /* ---- Studio Process ---- */
    .studio-process__timeline {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        padding: 2rem 0;
        border-left: none;
        border-top: 1px solid var(--white-10);
    }

    .process-step:first-child {
        border-top: none;
        padding-left: 0;
    }

    .process-step::before {
        top: 0;
        bottom: -1px;
        left: 20px;
        right: auto;
        width: 1px;
        height: auto;
    }

    .process-step:first-child::before {
        left: 20px;
    }

    .process-step:last-child::before {
        bottom: 50%;
        right: auto;
        width: 1px;
        height: auto;
    }

    .process-step__number {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .process-step__desc {
        max-width: 100%;
        font-size: 16px !important;
    }

    /* ---- Studio Team ---- */
    .studio-team__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .studio-team__desc {
        max-width: 100%;
    }
}