/* ==========================================================================
   about.css — About Us page styles
   ========================================================================== */

/* ── Hero ───────────────────────────────────────────────────────────────── */


.about-hero {
    min-height: 100vh;
    padding: calc(var(--nav-height) + 40px) 5% 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    overflow: hidden;
    background: var(--black);
}
.about-hero-left {
    padding: 60px 60px 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.about-hero-right {
    position: relative;
    overflow: hidden;
}
.about-hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--black) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}
.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    filter: grayscale(30%);
}

.factory-illustration {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.factory-illustration::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(255,106,0,0.04) 40px,
            rgba(255,106,0,0.04) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(255,106,0,0.04) 40px,
            rgba(255,106,0,0.04) 41px
        );
}

.about-page-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s ease forwards;
}
.about-page-tag::before {
    content: '';
    width: 32px; height: 2px;
    background: var(--accent);
    border-radius: 1px;
    flex-shrink: 0;
}

.about-hero h1 {
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.7s 0.35s ease forwards;
}
.about-hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.about-hero-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    max-width: 460px;
    font-weight: 300;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.7s 0.5s ease forwards;
}

.hero-stats-row {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    animation: fadeUp 0.7s 0.65s ease forwards;
}
.hero-stat-item .val {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 6px;
}
.hero-stat-item .val span { color: var(--accent); }
.hero-stat-item .lbl {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.04em;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px; left: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.3);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.7s 0.9s ease forwards;
}
.scroll-line {
    width: 40px; height: 1px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--accent);
    animation: scrollSlide 2s ease-in-out infinite;
}
@keyframes scrollSlide {
    0%   { left: -100%; }
    50%  { left: 0%; }
    100% { left: 100%; }
}


/* home shortcut */
.tap-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 32px;
    list-style: none;
	pointer-events: auto;
    position: relative;
    z-index: 5;
}

.tap-breadcrumb a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tap-breadcrumb a:hover {
    color: #FF6A00;
}

/* ── Who We Are ─────────────────────────────────────────────────────────── */
.who-we-are {
    background: var(--white);
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
}
.who-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.who-image-stack { position: relative; height: 560px; }
.who-img-main {
    position: absolute;
    right: 0; top: 0;
    width: 75%; height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.who-img-secondary {
    position: absolute;
    left: 0; bottom: 0;
    width: 52%; height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}
.img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.img-placeholder-main   { background: linear-gradient(135deg, #1a1a1a, #2d2d2d); }
.img-placeholder-second { background: linear-gradient(135deg, #FFF0E6, #FFE4CC); }
.img-placeholder svg { opacity: 0.3; }

.exp-badge {
    position: absolute;
    top: 32px; left: 0;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    z-index: 3;
    box-shadow: 0 16px 40px rgba(255,106,0,0.3);
}
.exp-badge .num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    display: block;
}
.exp-badge .txt {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.04em;
}

.who-right p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 20px;
}
.who-right p strong { color: var(--black); font-weight: 500; }

.capabilities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 36px;
}
.cap-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black);
}
.cap-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* ── Mission & Vision ───────────────────────────────────────────────────── */
.mission-vision {
    background: var(--black);
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
}
.mission-vision::before {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,106,0,0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.mission-vision::after {
    content: '';
    position: absolute;
    bottom: -200px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,106,0,0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    position: relative;
    z-index: 1;
}
.mv-card {
    padding: 64px 56px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: background 0.4s ease;
}
.mv-card:hover { background: rgba(255,255,255,0.03); }
.mv-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.mv-card:hover::before { transform: scaleX(1); }
.mv-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mv-label::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--accent);
    border-radius: 1px;
    flex-shrink: 0;
}
.mv-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.mv-card h3 em { font-style: normal; color: var(--accent); }
.mv-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    max-width: 400px;
}
.mv-bg-text {
    position: absolute;
    bottom: -20px; right: -10px;
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255,255,255,0.02);
    line-height: 1;
    letter-spacing: -0.05em;
    user-select: none;
    pointer-events: none;
}

/* ── Strength Pillars ───────────────────────────────────────────────────── */
.strength { background: var(--light); padding: var(--section-pad); }
.strength-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 70px;
}
.strength-header .section-intro { margin-bottom: 0; }
.strength-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

.strength-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
}
.strength-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.strength-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(255,106,0,0.15); }
.strength-card:hover::after { transform: scaleX(1); }
.strength-num {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: var(--light);
    line-height: 1;
    margin-bottom: -10px;
    letter-spacing: -0.05em;
    transition: color 0.3s;
}
.strength-card:hover .strength-num { color: var(--accent-glow); }
.strength-icon {
    width: 52px; height: 52px;
    background: var(--accent-glow);
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    transition: background 0.3s;
}
.strength-card:hover .strength-icon { background: var(--accent); }
.strength-icon svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.8; transition: stroke 0.3s; }
.strength-card:hover .strength-icon svg { stroke: var(--white); }
.strength-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; }
.strength-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }

/* ── Journey / Timeline ─────────────────────────────────────────────────── */
.journey { background: var(--white); padding: var(--section-pad); overflow: hidden; }
.journey-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.journey-left { position: sticky; top: 120px; }
.journey-left p { font-size: 0.95rem; line-height: 1.8; color: var(--gray); font-weight: 300; margin-top: 20px; }

.timeline { position: relative; padding-left: 40px; }
.timeline::before {
    content: '';
    position: absolute;
    left: 8px; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), transparent);
    border-radius: 1px;
}
.timeline-item {
    position: relative;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
}
.timeline-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px; top: 6px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--gray-light);
    transition: border-color 0.3s, background 0.3s;
    z-index: 1;
}
.timeline-item:hover::before { border-color: var(--accent); background: var(--accent); }
.timeline-year { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 8px; }
.timeline-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
.timeline-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }

/* ── Factory Gallery ────────────────────────────────────────────────────── */
.gallery { background: var(--black); padding: var(--section-pad); }
.gallery .section-tag { color: var(--accent); }
.gallery .section-title { color: var(--white); }
.gallery-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 280px;
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: #1e1e1e;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-item:hover { transform: scale(1.02); z-index: 2; }
.gallery-item:nth-child(1) { grid-column: span 5; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 5; }
.gallery-item:nth-child(6) { grid-column: span 4; }

.gallery-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.gallery-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,106,0,0.05), transparent 60%);
}
.gp-1 { background: linear-gradient(135deg, #1e1e1e, #2a2218); }
.gp-2 { background: linear-gradient(135deg, #1a1f2e, #1e1e1e); }
.gp-3 { background: linear-gradient(135deg, #1e2418, #1e1e1e); }
.gp-4 { background: linear-gradient(135deg, #2a1818, #1e1e1e); }
.gp-5 { background: linear-gradient(135deg, #1e1e2a, #1e2418); }
.gp-6 { background: linear-gradient(135deg, #221e18, #1e1e1e); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--white); }
.gallery-icon { color: rgba(255,255,255,0.15); font-size: 2.5rem; position: relative; z-index: 1; }
.gallery-label { font-size: 0.72rem; color: rgba(255,255,255,0.25); letter-spacing: 0.08em; text-transform: uppercase; position: relative; z-index: 1; }
.upload-hint { text-align: center; margin-top: 28px; color: rgba(255,255,255,0.2); font-size: 0.8rem; letter-spacing: 0.06em; }
.upload-hint span { color: var(--accent); opacity: 0.7; }

/* ── Values ─────────────────────────────────────────────────────────────── */
.values { background: var(--light); padding: var(--section-pad); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
/* 5 values: first row 3 cols, second row 2 cols centred */
.values-grid .value-card:nth-child(4) { grid-column: 1; }
.values-grid .value-card:nth-child(5) { grid-column: 2; }

.value-card {
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
/* Highlight the middle card of each row 
.value-card:nth-child(2) { background: var(--black); }
.value-card:nth-child(2) .value-name { color: var(--white); }
.value-card:nth-child(2) .value-desc { color: rgba(255,255,255,0.4); }
.value-card:nth-child(5) { background: var(--black); }
.value-card:nth-child(5) .value-name { color: var(--white); }
.value-card:nth-child(5) .value-desc { color: rgba(255,255,255,0.4); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.value-num { font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 20px; }
.value-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px; }
.value-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.75; }*/

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .strength-grid { grid-template-columns: repeat(3, 1fr); }
    .values-grid .value-card:nth-child(4) { grid-column: auto; }
    .values-grid .value-card:nth-child(5) { grid-column: auto; }
    .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-template-rows: 240px 240px; }
    .gallery-item:nth-child(1) { grid-column: span 3; }
    .gallery-item:nth-child(2) { grid-column: span 3; }
    .gallery-item:nth-child(3) { grid-column: span 2; }
    .gallery-item:nth-child(4) { grid-column: span 2; }
    .gallery-item:nth-child(5) { grid-column: span 2; }
    .gallery-item:nth-child(6) { grid-column: span 6; }
}
@media (max-width: 900px) {
    .about-hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 60px; }
    .about-hero-right { height: 300px; }
    .about-hero-left { padding: 40px 0 40px; }
    .who-inner { grid-template-columns: 1fr; gap: 60px; }
    .who-image-stack { height: 380px; }
    .mv-grid { grid-template-columns: 1fr; }
    .strength-header { grid-template-columns: 1fr; gap: 24px; }
    .strength-grid { grid-template-columns: repeat(2, 1fr); }
    .journey-inner { grid-template-columns: 1fr; gap: 40px; }
    .journey-left { position: static; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats-row { gap: 24px; flex-wrap: wrap; }
}
@media (max-width: 640px) {
    .about-hero h1 { font-size: 2.8rem; }
    .strength-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item { grid-column: span 1 !important; height: 180px; }
    .values-grid { grid-template-columns: 1fr; }
    .values-grid .value-card:nth-child(4),
    .values-grid .value-card:nth-child(5) { grid-column: auto; }
    .mv-card { padding: 40px 28px; }
    .who-image-stack { height: 300px; }
}
