@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-primary: #b1afa6;
    --bg-secondary: #a19f96;
    --text-dark: #000000;
    --text-deep: #1A1A1A;
    --text-muted: #666666;
    --charcoal: #111111;
    --black: #000000;
    --accent: #8B6B4A;
    --white: #FFFFFF;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Avenir', sans-serif;
    --font-thin: 100;
    --font-light: 200;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 1.2s var(--ease-premium);
    --container-padding: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-dark);
    font-family: var(--font-main);
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

h1 {
    text-transform: inherit;
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: var(--bg-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 1.2s var(--ease-premium), visibility 1.2s var(--ease-premium);
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .intro-video {
        object-fit: contain;
    }
}

.loader-percentage {
    position: absolute;
    bottom: 50px;
    right: var(--container-padding);
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.loader-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--black);
    transition: width 0.1s linear;
}

/* --- Navigation --- */
header {
    position: fixed;
    top: 40px;
    left: var(--container-padding);
    right: var(--container-padding);
    width: auto;
    z-index: 1000;
    pointer-events: none;
}

.header-content-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    pointer-events: auto;
}

.footer-border-line {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-bottom: 40px;
}

.home-page .footer-border-line {
    position: absolute;
    bottom: 10px;
    left: var(--container-padding);
    right: var(--container-padding);
    width: auto;
    margin-bottom: 0;
    z-index: 15;
    pointer-events: none;
}

.footer-border-line .border-left {
    flex-grow: 1;
    height: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.footer-border-line .border-right {
    width: 80px;
    height: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.footer-border-line svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.organic-path {
    stroke: rgba(0, 0, 0, 0.15);
    stroke-width: 1px;
    stroke-linecap: round;
    transition: stroke 0.8s var(--ease-premium);
}

.home-page .organic-path {
    stroke: rgba(210, 220, 95, 0.50);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    pointer-events: auto;
    text-decoration: none;
    transition: opacity 0.4s var(--ease-premium);
    margin-top: -38px;
}

.footer-logo:hover {
    opacity: 0.7;
}

.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Light background state: scrolled home, about, not-home */
.home-page.scrolled .footer-border-line .organic-path,
.about-page .footer-border-line .organic-path,
.not-home .footer-border-line .organic-path {
    stroke: rgba(0, 0, 0, 0.15);
}

.logo-fixed {
    display: none !important;
    position: fixed;
    bottom: 40px;
    right: var(--container-padding);
    z-index: 1000;
    width: 115px;
    transition: var(--transition-slow);
}

.logo-fixed img {
    display: none !important;
    width: 100%;
}

.menu-toggle {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--white);
    transition: var(--transition-slow);
}

.home-page.scrolled .menu-toggle span,
.about-page .menu-toggle span,
.not-home .menu-toggle span {
    background-color: var(--text-dark);
}

.menu-toggle.active span {
    background-color: var(--white) !important;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.nav-overlay ul li {
    margin: 30px 0;
    position: relative;
    width: fit-content;
}

.nav-overlay ul li a {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav-overlay ul li a:hover,
.nav-overlay ul li a.active,
.nav-overlay ul li a.has-submenu.active {
    color: var(--white);
}

.nav-overlay.submenu-open ul li a.active:not(#projectToggle) {
    color: rgba(255, 255, 255, 0.5);
}

.sub-menu-overlay {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    margin-left: 120px;
    padding-left: 50px;
    padding-top: 150px;
    padding-bottom: 150px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
    white-space: nowrap;
}

.sub-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sub-menu-overlay a {
    font-size: 18px !important;
    font-weight: 300 !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
    color: rgba(255, 255, 255, 0.5) !important;
    display: block;
    transition: color 0.3s ease;
}

.sub-menu-overlay a:hover {
    color: var(--white) !important;
}

.mobile-back-btn {
    display: none;
}

/* --- Luxury Label --- */
.luxury-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

/* --- Hero (Homepage) --- */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 16px;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 450px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), filter 1.5s ease;
}

.slide.cinematic-zoom img {
    transform: scale(1.08);
    filter: brightness(0.4);
}

.hero-content {
    position: absolute;
    bottom: 40px;
    left: var(--container-padding);
    z-index: 10;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: 0;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.8;
}

.hero-bottom-line {
    display: none !important;
    position: absolute;
    bottom: 30px;
    left: var(--container-padding);
    right: var(--container-padding);
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    z-index: 15;
    pointer-events: none;
}

.home-page .hero-content {
    bottom: 70px;
}

.home-page .hero-content p {
    margin-bottom: 0;
}

.home-page .hero-content.first-slide-content {
    top: 120px;
    bottom: auto !important;
    transition: opacity 0.8s ease-in-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.first-slide-content h1 {
    font-size: clamp(32px, 5vw, 48px) !important;
    line-height: 1.25 !important;
    margin-bottom: 25px !important;
    letter-spacing: 0 !important;
}

.first-slide-content .slide-divider {
    width: 40px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.35);
    margin-bottom: 25px;
}

.first-slide-content .slide-begin {
    font-size: 14px;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    width: fit-content;
    padding-bottom: 3px;
    margin-bottom: 0 !important;
    opacity: 0.85;
    cursor: pointer;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

.first-slide-content .slide-begin:hover {
    opacity: 1;
    border-bottom-color: rgba(255, 255, 255, 0.85);
}

/* Cinematic transition for first slide content when 'Begin' is clicked */
.hero-slider.started-animation .first-slide-content {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.home-page .logo-fixed {
    bottom: 10px;
    margin-right: 50px;
}

/* Slider Click Areas */
.slider-nav-area {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: 20;
    cursor: none;
    pointer-events: none;
    /* Block clicks initially to let user click "begin" */
    opacity: 0;
    transition: opacity 0.3s ease;
    /* Let the custom cursor handle it */
}

.slider-nav-area.active {
    pointer-events: auto;
    /* Enable clicks once slider starts */
    opacity: 1;
}

.slider-nav-area.prev {
    left: 0;
}

.slider-nav-area.next {
    right: 0;
}

.cursor.arrow-next::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: none;
}

.cursor.arrow-prev::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='19' y1='12' x2='5' y2='12'%3E%3C/line%3E%3Cpolyline points='12 19 5 12 12 5'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: none;
}

.cursor.arrow-next::after,
.cursor.arrow-prev::after {
    display: block;
}

.cursor.arrow-next,
.cursor.arrow-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent !important;
    backdrop-filter: none !important;
    width: 20px !important;
    height: 20px !important;
}

/* --- About Page --- */
.about-hero-ref {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 100vh;
    padding: 120px var(--container-padding);
    gap: 80px;
    align-items: center;
}

.about-hero-ref h1 {
    font-size: clamp(48px, 6vw, 90px);
    font-weight: 200;
    line-height: 1.05;
    margin-bottom: 30px;
}

.about-hero-ref .sub-narrative {
    font-size: 16px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0.6;
}

.about-hero-ref .description {
    font-size: 15px;
    line-height: 1.8;
    max-width: 550px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.about-hero-ref-image {
    position: relative;
    height: 80vh;
}

.about-hero-ref-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-tag {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: var(--white);
    text-align: right;
}

.founder-tag h3 {
    font-size: 24px;
    font-weight: 300;
}

.founder-tag span {
    font-size: 10px;
    letter-spacing: 0.3em;
    opacity: 0.8;
}

/* Philosophy with Sticky Headings */
.philosophy-ref {
    padding: 160px var(--container-padding);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}

.philosophy-ref-title {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.philosophy-ref-title h2 {
    font-size: 48px;
    font-weight: 200;
    line-height: 1.2;
}

.philosophy-ref-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 120px;
}

.phil-col {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.phil-col .num {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--accent);
}

.phil-col h4 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
}

.phil-col p {
    font-size: 15px;
    opacity: 0.7;
    max-width: 600px;
}

/* Experience */
.experience-ref {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 var(--container-padding);
}

.experience-ref-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.experience-ref-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.experience-ref h2 {
    font-size: clamp(32px, 5vw, 64px);
    color: var(--white);
    max-width: 800px;
    font-weight: 100;
}

/* Partners */
.partners-ref {
    padding: 160px var(--container-padding);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.partner-ref-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 30px;
    filter: grayscale(100%);
    transition: filter 0.8s ease;
}

.partner-ref-card:hover img {
    filter: grayscale(0%);
}

.partner-ref-card h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.partner-ref-card span {
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 20px;
}

.partner-ref-card p {
    font-size: 14px;
    opacity: 0.6;
}

/* Design Process */
.process-ref {
    padding: 160px var(--container-padding);
    background-color: var(--white);
}

.process-timeline-ref {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    position: relative;
}

.process-timeline-ref::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.process-step-ref {
    flex: 1;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.process-icon-box {
    width: 60px;
    height: 60px;
    background: var(--white);
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.process-step-ref h5 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-step-ref p {
    font-size: 12px;
    opacity: 0.6;
}

/* CTA */
.closing-ref {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.closing-ref h2 {
    font-size: 64px;
    font-weight: 100;
    color: var(--white);
    margin-bottom: 40px;
}

.closing-ref-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.closing-ref-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

/* Buttons */
.cta-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-solid-black {
    background: var(--black);
    color: var(--white);
    padding: 20px 45px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-decoration: none;
    transition: var(--transition-slow);
}

.btn-solid-black:hover {
    background: var(--accent);
}

.btn-outline-black {
    border: 1px solid var(--black);
    padding: 20px 45px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-decoration: none;
    transition: var(--transition-slow);
}

.btn-outline-black:hover {
    background: var(--black);
    color: var(--white);
}

.btn-solid-white {
    background: var(--white);
    color: var(--black);
    padding: 20px 45px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-decoration: none;
    transition: var(--transition-slow);
}

.btn-solid-white:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-outline-white {
    border: 1px solid var(--white);
    color: var(--white);
    padding: 20px 45px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-decoration: none;
    transition: var(--transition-slow);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--black);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

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

/* Cursor */
.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
}

@media (max-width: 1024px) {
    :root {
        --container-padding: 50px;
    }

    .logo-fixed {
        width: 86px;
    }

    .nav-overlay ul li a {
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .about-hero-ref,
    .philosophy-ref,
    .partners-ref,
    .process-timeline-ref {
        grid-template-columns: 1fr;
        padding: 60px var(--container-padding);
    }

    .philosophy-ref-title {
        position: relative;
        top: 0;
        margin-bottom: 60px;
    }

    .process-timeline-ref::after {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 30px;
    }

    .home-page .logo-fixed {
        bottom: 15px;
        margin-right: 20px;
    }

    .logo-fixed {
        width: 72px;
        bottom: 50px;
        margin-right: 20px;
    }

    .nav-overlay ul li a {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .about-hero-ref,
    .philosophy-ref,
    .partners-ref,
    .process-timeline-ref {
        padding: 40px var(--container-padding);
    }

    .nav-overlay ul {
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .nav-overlay.submenu-active ul {
        transform: translateX(-30px);
    }

    .nav-overlay.submenu-active ul>li>a {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .mobile-back-btn {
        display: flex !important;
        align-items: center;
        gap: 10px;
        background: none;
        border: none;
        color: var(--white);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.1em;
        cursor: pointer;
        margin-bottom: 40px;
        padding: 0;
        font-family: inherit;
    }

    .sub-menu-overlay {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%) translateX(20px);
        margin-top: 0;
        margin-left: 20px;
        padding-left: 30px;
        padding-top: 150px;
        padding-bottom: 150px;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-slow);
        white-space: nowrap;
    }

    .sub-menu-overlay.active {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .sub-menu-overlay a {
        font-size: 16px !important;
    }

    .footer-logo img {
        height: 40px;
        width: auto;
        display: block;
    }

    .footer-border-line {
        gap: 10px;
    }

    .footer-border-line .border-left {
        height: 2px;
        width: 90%;
    }

    .footer-border-line .border-right {
        height: 2px;
        width: 10%;
    }

    .organic-path {
        stroke: rgba(255, 255, 255, 0.50);
        stroke-width: 10px;
        stroke-linecap: round;
        transition: stroke 0.8s var(--ease-premium);
    }
}

/* --- New About Page Redesign --- */
.about-page-new {
    background-color: #eae6df !important;
    /* Beautiful warm off-white */
    color: #111111;
}

.about-page-new #mainHeader {
    background: transparent;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 40px var(--container-padding) 0 var(--container-padding);
}

.about-page-new .header-content-row-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.about-page-new .header-logo-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-page-new .studio-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #111111;
    text-transform: uppercase;
}

.about-page-new .studio-label-line {
    width: 50px;
    height: 1px;
    background-color: #111111;
    margin-top: 8px;
}

.about-page-new .header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-page-new .header-nav a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #111111;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: opacity 0.3s ease;
}

.about-page-new .header-nav a:hover {
    opacity: 0.7;
}

.about-page-new .header-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #111111;
}

.about-page-new .menu-wrapper-about {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-page-new .menu-label-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #111111;
    text-transform: uppercase;
}

.about-page-new .menu-toggle span {
    background-color: #111111 !important;
}

.about-page-new .menu-toggle.active span {
    background-color: var(--white) !important;
}

/* Studio Hero Section */
.studio-hero-section {
    padding: 160px var(--container-padding) 60px var(--container-padding);
}

.studio-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: flex-end;
}

.studio-headline-col h1.studio-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.2vw, 62px);
    font-weight: 300;
    line-height: 1.15;
    text-transform: none;
    letter-spacing: -0.01em;
    color: #111111;
}

.studio-subtext-col {
    padding-bottom: 15px;
}

.studio-subtext {
    font-family: var(--font-main);
    font-size: 14.5px;
    line-height: 1.7;
    color: #444444;
    font-weight: 400;
}

/* 4-Column Grid Section */
.studio-grid-section {
    padding: 20px var(--container-padding) 120px var(--container-padding);
}

.studio-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 50px;
}

.grid-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.grid-column .column-title {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #111111;
    text-transform: uppercase;
    position: relative;
    padding-top: 15px;
}

.grid-column .column-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: #111111;
}

.grid-column .column-content {
    font-size: 13.5px;
    line-height: 1.75;
    color: #333333;
}

.paragraph-gap p {
    margin-bottom: 25px;
}

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

/* Partners Column */
.partners-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.partner-bio {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.partner-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    color: #111111;
}

.partner-role {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #8B6B4A;
    /* Brand accent gold */
    text-transform: uppercase;
}

.partner-desc {
    font-size: 13px;
    color: #555555;
    line-height: 1.6;
}

.partner-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.partner-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
    background-color: #eae6df;
}

.partner-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.partner-img-wrapper:hover img {
    filter: grayscale(0%);
}

/* Selected Publications Column */
.publications-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.publications-table {
    width: 100%;
    border-collapse: collapse;
}

.publications-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.publications-table tr:last-child {
    border-bottom: none;
}

.publications-table td {
    padding: 14px 0;
    font-size: 12.5px;
    color: #333333;
    vertical-align: middle;
}

.publications-table td.pub-name {
    font-weight: 600;
    color: #111111;
    width: 45%;
}

.publications-table td.pub-detail {
    color: #555555;
    font-style: italic;
    width: 40%;
}

.publications-table td.pub-year {
    text-align: right;
    color: #777777;
    width: 15%;
}

.and-more {
    font-size: 12.5px;
    color: #777777;
    font-style: italic;
    margin-top: 20px;
}

/* Design + Build Solution Column */
.design-build-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.macrocosm-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #111111;
    margin-bottom: 0;
}

.macrocosm-subtitle {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #8B6B4A;
    text-transform: uppercase;
    margin-top: -10px;
}

.macrocosm-p {
    font-size: 13.5px;
    line-height: 1.75;
    color: #333333;
}

.explore-macrocosm-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #111111;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    transition: gap 0.3s ease;
}

.explore-macrocosm-link:hover {
    gap: 12px;
}

.explore-macrocosm-link .arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .studio-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .about-page-new #mainHeader {
        padding: 30px 24px 0 24px;
    }

    .about-page-new .header-nav {
        display: none;
        /* Hide static header navigation on mobile, rely on full-screen menu overlay */
    }

    .studio-hero-section {
        padding: 120px 24px 40px 24px;
    }

    .studio-hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .studio-headline-col h1.studio-hero-title {
        font-size: 32px;
        line-height: 1.25;
    }

    .studio-grid-section {
        padding: 20px 24px 80px 24px;
    }

    .studio-grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: 30px;
    }

    .publications-table td {
        padding: 10px 0;
        font-size: 12px;
    }
}