/* --- Global Architectural Variables --- */
:root {
    --primary-bg: #fdf3ef; 
    --accent-red: #d13e27;
    --text-main: #222222;
    --text-light: #555555;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --dark-charcoal: #1C1C1C;
    --primary-orange: #f0380a;
    --card-bg-grey: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a, button {
    text-decoration: none;
    color: inherit;
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    outline: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- FIXED NAVBAR DESIGN ENGINE --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1010; 
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 22px 5%;
    background-color: var(--white);
    position: relative;
    z-index: 1015;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-icon {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.logo-vertical-line {
    width: 2px;
    height: 28px;
    background-color: #1C1C1C;
    margin: 0 10px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 20px;
    font-weight: 700;
    color: #1C1C1C;
    text-transform: lowercase;
}

.logo-sub {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-orange);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, 
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary-orange);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-charcoal);
}

/* --- MAIN CONTAINER SETUP --- */
.about-page-container {
    width: 100%;
    margin-top: 80px;
}

/* SECTION 1: SPLIT HERO INTRO */
.about-hero-section {
    background-color: var(--primary-bg);
    width: 100%;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.about-hero-left-img img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.about-hero-right-content {
    padding: 60px 10% 60px 8%;
}

.brand-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 700;
    color: var(--dark-charcoal);
    line-height: 1.1;
    margin-bottom: 15px;
}

.brand-hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 25px;
}

.brand-hero-prose {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: justify;
}

.hero-work-btn {
    display: inline-block;
    border: 1px solid var(--dark-charcoal);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 16px 32px;
    transition: all 0.3s ease;
}

.hero-work-btn:hover {
    background-color: var(--dark-charcoal);
    color: var(--white);
}

/* SECTION 2: OUR STORY & TEAM LAYOUT */
.story-team-section {
    padding: 100px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.story-team-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8%;
}

.story-text-block {
    display: flex;
    flex-direction: column;
}

.editorial-section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 30px;
}

.story-paragraph {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 22px;
    text-align: justify;
}

.team-profiles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.profile-card {
    display: flex;
    flex-direction: column;
}

.profile-img-frame {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: var(--card-bg-grey);
    margin-bottom: 20px;
    overflow: hidden;
}

.profile-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    transition: filter 0.4s ease;
}

.profile-card:hover .profile-img-frame img {
    filter: grayscale(0%);
}

.member-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 4px;
}

.member-role {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-orange);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.6;
    text-align: justify;
}

/* SECTION 3: METRICS COUNTER BAR */
.metrics-counter-bar {
    background-color: var(--primary-bg);
    padding: 60px 5%;
}

.metrics-inner-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--dark-charcoal);
}

/* SECTION 4: STUDIO MISSION & VALUES GRID */
.studio-mission-section {
    padding: 120px 5%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.mission-header-block {
    margin-bottom: 80px;
}

.mission-tag {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-orange);
    margin-bottom: 25px;
}

.mission-display-statement {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.8vw, 42px);
    font-weight: 400;
    color: var(--dark-charcoal);
    line-height: 1.4;
    max-width: 950px;
    margin: 0 auto;
}

.mission-display-statement .italic-accent {
    font-style: italic;
    color: var(--primary-orange);
    font-weight: 400;
}

.value-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.value-pillar {
    display: flex;
    flex-direction: column;
}

.pillar-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.pillar-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--dark-charcoal);
    margin-bottom: 15px;
}

.pillar-text {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.6;
}

/* SECTION 5: HORIZONTAL SHOWCASE BANNER */
.horizontal-showcase-banner {
    width: 100%;
}

.banner-image-container img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 6;
    object-fit: cover;
}

/* SECTION 6: INTAKE CALL TO ACTION BANNER */
.about-intake-cta {
    padding: 90px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.cta-banner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 45px;
}

.cta-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--dark-charcoal);
    line-height: 1.2;
    margin-bottom: 6px;
}

.cta-banner-subtext {
    font-size: 13.5px;
    color: var(--text-light);
}

.btn-solid-dark-pill {
    background-color: #000000;
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 16px 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.3s;
}

.btn-solid-dark-pill:hover {
    background-color: var(--primary-orange);
}

.title-icon-inline {
    font-size: 10px;
}

/* --- GLOBAL FOOTER PARAMS --- */
.footer {
    background-color: var(--primary-bg);
    padding: 80px 20px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.logo-text-red {
    font-family: var(--font-heading);
    color: var(--accent-red);
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 0.9rem;
    max-width: 250px;
}

.footer-links {
    display: flex;
    gap: 100px;
}

.link-group h4 {
    font-size: 0.85rem;
    color: var(--accent-red);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.link-group a:hover {
    color: var(--text-main);
}

.footer-bottom {
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* --- MEDIA BREAKPOINT RESPONSIVENESS ENGINE --- */
@media screen and (max-width: 992px) {
    .about-hero-grid,
    .story-team-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-left-img img {
        min-height: 380px;
        aspect-ratio: 16 / 9;
    }

    .about-hero-right-content {
        padding: 50px 5%;
    }

    .value-pillars-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cta-banner-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block !important;
        font-size: 24px; 
        cursor: pointer;
        color: var(--dark-charcoal);
        background: transparent;
        border: none;
        padding: 0;
    }

    .nav-links {
        position: fixed;
        top: -100vh; 
        left: 0;
        width: 100%; 
        height: auto;
        min-height: 60vh;
        padding: 60px 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center; 
        align-items: center; 
        gap: 30px;
        
        background: rgba(255, 255, 255, 0.82); 
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
        
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        transform: translateY(0);
    }
    
    .nav-links.slide-active {
        top: 79px; 
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 18px; 
        display: inline-block;
        color: var(--dark-charcoal);
    }
    
    .nav-links a.active {
        color: var(--primary-orange);
    }

    .nav-links a::after {
        display: none !important;
    }

    .team-profiles-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .metrics-inner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .studio-mission-section {
        padding: 80px 5%;
    }

    .mission-header-block {
        margin-bottom: 50px;
    }

    /* Target fix for the last image from about page.jpg on mobile screen sizes */
    .banner-image-container img {
        aspect-ratio: 4 / 3 !important;
        min-height: 280px;
        object-position: center;
    }

    .footer-content, 
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .btn-solid-dark-pill {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .btn-solid-dark-pill {
        width: 100%;
        text-align: center;
    }
}