/* --- Global Container Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.h1-serif {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 20px 0;
}

.h2-serif {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #fff;
    margin: 0 0 10px 0;
}

/* --- About Hero Layout --- */
.about-hero-section {
    padding: 100px 0;
    background-color: #000;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Left Image Assembly */
.about-hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hero-main-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Glassmorphism Specification */
.glass-features-card {
    position: absolute;
    bottom: -40px;
    left: -30px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.glass-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.glass-icon {
    color: #d4a74a; /* Muted Brand Gold */
    font-size: 16px;
    width: 32px;
    height: 32px;
    background: rgba(212, 167, 74, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.glass-text h6 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.glass-text p {
    margin: 2px 0 0 0;
    font-size: 11px;
    color: #aaa;
}

/* Right Content Column */
.about-hero-content {
    display: flex;
    flex-direction: column;
}

.hero-description {
    font-size: 15px;
    line-height: 1.6;
    color: #aaa;
    margin: 0 0 40px 0;
}

.hero-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #ccc;
}

.badge-item i {
    color: #d4a74a;
}

/* --- Section 2: Journey Timeline Layout --- */
.about-journey-section {
    padding: 120px 0;
    background-color: #050505;
}

.journey-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-subtext {
    color: #777;
    font-size: 15px;
    margin: 0;
}

/* Timeline Core Framework */
.timeline-wrapper {
    position: relative;
    width: 100%;
    padding: 140px 0;
}

.timeline-axis-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(212, 167, 74, 0.3);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-items-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Nodes and Anchors */
.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 18%;
    position: relative;
}

.node-content-box {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    width: 100%;
    box-sizing: border-box;
}

.node-year {
    display: block;
    color: #d4a74a;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
}

.node-content-box h5 {
    margin: 0 0 8px 0;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}

.node-content-box p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: #888;
}

/* Alternating Up and Down Alignments */
.node-top {
    position: absolute;
    bottom: 50%;
    transform: translateY(1px);
    padding-bottom: 30px;
}

.node-bottom {
    position: absolute;
    top: 50%;
    transform: translateY(-1px);
    padding-top: 30px;
}

/* Timeline Intersecting Dots */
.node-indicator-dot {
    width: 10px;
    height: 10px;
    background: #d4a74a;
    border: 4px solid #050505;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #d4a74a;
}

/* Individual exact spacing multipliers across the horizontal row */
.timeline-node:nth-child(1) { left: 0%; }
.timeline-node:nth-child(2) { left: 20%; }
.timeline-node:nth-child(3) { left: 40%; }
.timeline-node:nth-child(4) { left: 60%; }
.timeline-node:nth-child(5) { left: 80%; }

/* --- Responsive Adaptations --- */
@media (max-width: 1100px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-image-wrapper {
        margin: 0 auto;
    }
    .about-hero-content {
        text-align: center;
        align-items: center;
    }
    .hero-badges-row {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    /* Safe Conversion to Vertical Timeline Array */
    .timeline-wrapper {
        padding: 0;
    }
    .timeline-axis-line {
        left: 20px;
        top: 0;
        width: 2px;
        height: 100%;
        transform: none;
    }
    .timeline-items-container {
        flex-direction: column;
        gap: 40px;
    }
    .timeline-node {
        width: 100%;
        flex-direction: row !important;
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        transform: none !important;
        padding: 0 0 0 50px !important;
        box-sizing: border-box;
    }
    .node-indicator-dot {
        position: absolute;
        left: 12px;
        top: 25px;
        z-index: 3;
    }
    .node-content-box {
        max-width: 100%;
    }
}

@media (max-width: 520px) {
    .h1-serif { font-size: 34px; }
    .glass-features-card {
        position: relative;
        left: 0; bottom: 0;
        margin-top: 20px;
        width: 100%;
        box-sizing: border-box;
    }
}
/* --- Section 1: Manufacturing Infrastructure --- */
.infra-section {
    background-color: #000;
    padding: 100px 0;
    overflow: hidden;
}

.infra-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.infra-content-side {
    display: flex;
    flex-direction: column;
}

.infra-description {
    font-size: 15px;
    line-height: 1.6;
    color: #aaa;
    margin: 20px 0 40px 0;
    max-width: 540px;
}

/* 2x2 Feature Specs Grid Layout */
.infra-features-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.spec-icon {
    color: #d4a74a; /* Brand Accent Yellow/Gold */
    font-size: 16px;
    width: 36px;
    height: 36px;
    background: rgba(212, 167, 74, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-text h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.spec-text p {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: #666;
}

/* Asymmetric Overlapping Visual Studio Box */
.asymmetric-frame-wrapper {
    position: relative;
    width: 100%;
    height: 520px; /* Locked box height constraints for structural preservation */
}

.frame {
    position: absolute;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Accurate Absolute Proportions from image_55dffb.png */
.frame-main-square {
    width: 65%;
    height: 60%;
    top: 0;
    left: 0;
    z-index: 1;
}

.frame-tall-rect {
    width: 46%;
    height: 75%;
    top: 10%;
    right: 0;
    z-index: 2;
}

.frame-bottom-landscape {
    width: 55%;
    height: 32%;
    bottom: 0;
    left: 0;
    z-index: 3;
}

/* --- Section 2: Featured Images Gallery --- */
.featured-gallery-section {
    background-color: #050505;
    padding: 100px 0;
    text-align: center;
}

.gallery-header {
    margin-bottom: 50px;
}

/* Pristine 5-Column Grid Matrix */
.featured-images-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

.gallery-card {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4; /* Maintains uniform portrait scaling across frames */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

/* Centered Gold Outline Button Design */
.gallery-action-row {
    display: flex;
    justify-content: center;
}

.btn-outline-gold {
    display: inline-block;
    background: transparent;
    color: #d4a74a;
    border: 1px solid rgba(212, 167, 74, 0.4);
    padding: 12px 36px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-outline-gold:hover {
    border-color: #d4a74a;
    background-color: #d4a74a;
    color: #fff;
    box-shadow: 0 0 20px rgba(212, 167, 74, 0.2);
}

/* --- Responsive Layout Breakdown Engine --- */
@media (max-width: 1024px) {
    .infra-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .infra-content-side {
        text-align: center;
        align-items: center;
    }
    
    .infra-features-specs {
        max-width: 600px;
    }
    
    .featured-images-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Destruct Absolute positioning on mobile to prevent overflow/clipping */
    .asymmetric-frame-wrapper {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .frame {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        aspect-ratio: 4 / 3;
    }
    
    .frame-tall-rect {
        grid-column: span 1;
        grid-row: span 2;
        aspect-ratio: 3 / 4;
    }
    
    .featured-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .infra-features-specs {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .asymmetric-frame-wrapper {
        grid-template-columns: 1fr;
    }
    
    .frame-tall-rect {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }
    
    .featured-images-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Section 3: Founder & Leadership Styling --- */
.leadership-section {
    background-color: #000;
    padding: 100px 0 120px 0; /* Extra bottom padding to anchor the page before the footer */
    color: #fff;
}

.leadership-header {
    margin-bottom: 50px;
    text-align: left;
}

/* Master Layout Grid Constraints */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: flex-start;
}

/* Elegant Framed Profile Component */
.founder-card-frame {
    width: 100%;
    aspect-ratio: 4 / 5; /* Pristine editorial portrait aspect configuration */
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.founder-card-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Frame Processing */
.founder-info-side {
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #d4a74a; /* Brand Accent Yellow/Gold */
    margin: 0 0 4px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.founder-title {
    font-size: 14px;
    color: #888;
    text-transform: capitalize;
    margin-bottom: 30px;
    display: inline-block;
}

.founder-bio p {
    font-size: 15px;
    line-height: 1.6;
    color: #aaa;
    margin: 0 0 20px 0;
}

.founder-bio p:last-child {
    margin-bottom: 35px;
}

/* Left-Border Accent Quote Frame */
.founder-quote {
    margin: 0 0 40px 0;
    padding: 5px 0 5px 25px;
    border-left: 2px solid #d4a74a; /* Brand Accent Line */
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    font-weight: 500;
}

/* Fine-Line Profile Social Elements */
.founder-socials {
    display: flex;
    gap: 15px;
}

.founder-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid #222; /* High-end subtle boundary mapping */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.founder-socials a:hover {
    border-color: #d4a74a;
    color: #d4a74a;
    background: rgba(212, 167, 74, 0.03);
    transform: translateY(-2px);
}

/* --- Responsive Layout Breakdown --- */
@media (max-width: 992px) {
    .leadership-grid {
        grid-template-columns: 1fr; /* Drop stack order execution */
        gap: 45px;
    }

    .founder-card-frame {
        max-width: 450px; /* Secure scaling engine containment on tablets */
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .leadership-header {
        text-align: center;
    }
    
    .founder-name {
        font-size: 24px;
    }

    .founder-quote {
        font-size: 15px;
        padding-left: 18px;
    }
    
    .founder-socials {
        justify-content: flex-start;
    }
}