/* ================================================
   about.css — About Us Page
   Append-only / section-specific styles
   Reuses base style.css variables and utilities
   ================================================ */


/* ── PAGE HERO (smaller than homepage hero) ── */
.page-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 180px 0 80px;
    overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%) brightness(.38);
    transform: scale(1.04);
}
.page-hero-ov {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.5) 40%, #000 100%);
    z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }

/* Breadcrumb */
.breadcrumb {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px; letter-spacing: .5px;
    margin-bottom: 32px;
}
.breadcrumb a {
    color: rgba(255,255,255,.55);
    transition: color .2s ease;
}
.breadcrumb a:hover { color: #C4EF17; }
.bc-sep {
    color: rgba(255,255,255,.25);
}
.bc-current {
    color: #C4EF17; font-weight: 500;
}

.page-hero-title {
    font-family: 'Marcellus', serif;
    color: #fff;
    font-size: clamp(48px, 7vw, 100px);
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-bottom: 48px;
}
.page-hero-title span {
    padding-bottom: 0.5rem;
}
.page-hero-title em {
    display: block;
    color: #C4EF17;
    padding-bottom: 0.5rem;
}

/* Hero key points */
.page-hero-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.12);
    max-width: 1000px;
}
.ph-point {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: rgba(255,255,255,.7);
    font-weight: 400;
}
.ph-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #C4EF17; flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(196,239,23,.15);
}

/* ── WHO WE ARE ── */
.who-we-are { padding: 80px 0; }
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: flex-start;
}
.who-left h2 { margin-top: 10px; }
.who-lead {
    font-size: 18px;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
    margin-bottom: 40px;
    font-weight: 300;
}
.who-list {
    display: flex; flex-direction: column; gap: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 28px;
}
.who-list li {
    display: flex; gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.who-list li:last-child { border-bottom: none; padding-bottom: 0; }
.who-ico {
    flex-shrink: 0;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(196,239,23,.1);
    border: 1px solid rgba(196,239,23,.25);
    display: flex; align-items: center; justify-content: center;
}
.who-list strong {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 18px; font-weight: 400; color: #fff;
    margin-bottom: 6px;
}
.who-list p {
    font-size: 14px;
    color: rgba(255,255,255,.45);
    line-height: 1.6;
}

/* ── MISSION + VISION (split) ── */
.mv-section { padding: 0; }
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}
.mv-block {
    padding: 80px 60px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.mv-mission {
    background: #0a0a0a;
    border-right: 1px solid rgba(255,255,255,.05);
}
.mv-vision {
    background: #050505;
}
.mv-icon { margin-bottom: 24px; }
.mv-block h2 {
    font-size: clamp(28px, 3vw, 44px);
    color: #fff;
    margin: 6px 0 20px;
    line-height: 1.15;
}
.mv-block > p {
    font-size: 15px;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 440px;
}
.mv-list {
    display: flex; flex-direction: column; gap: 0;
}
.mv-list li {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 0;
    font-size: 15px;
    color: rgba(255,255,255,.65);
    border-top: 1px solid rgba(255,255,255,.06);
}
.mv-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.06); }
.mv-list li span {
    font-family: 'Marcellus', serif;
    font-size: 14px; color: #C4EF17;
    flex-shrink: 0;
}

/* ── CORE VALUES ── */
.values-section { padding: 80px 0; }
.values-head { margin-bottom: 56px; }
.values-head h2 { margin-top: 10px; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.06);
}
.value-card {
    background: #000;
    padding: 44px 32px 40px;
    position: relative;
    overflow: hidden;
    transition: background .3s ease;
}
.value-card:hover { background: #0a0a0a; }
.value-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: #C4EF17;
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.value-card:hover::before { transform: scaleX(1); }

.value-num {
    position: absolute; top: 14px; right: 20px;
    font-family: 'Marcellus', serif;
    font-size: 52px;
    color: rgba(255,255,255,.03);
    transition: color .35s ease;
}
.value-card:hover .value-num { color: rgba(196,239,23,.06); }

.value-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(196,239,23,.08);
    border: 1px solid rgba(196,239,23,.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 18px; color: #fff;
    margin-bottom: 14px; position: relative;
}
.value-card p {
    font-size: 14px;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
    position: relative;
}

/* ── WHAT MAKES US DIFFERENT ── */
.diff-section { padding: 80px 0; background: #050505; }
.diff-head { margin-bottom: 56px; }
.diff-head h2 { margin-top: 10px; }

.diff-list {
    display: flex; flex-direction: column;
    border-top: 1px solid rgba(255,255,255,.08);
}
.diff-item {
    display: grid;
    grid-template-columns: 80px 1fr 280px;
    gap: 40px;
    align-items: center;
    padding: 44px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: background .3s ease;
    position: relative;
}
.diff-item:hover { background: rgba(196,239,23,.02); }

.diff-num {
    font-family: 'Marcellus', serif;
    font-size: 28px; color: #C4EF17;
    line-height: 1;
}
.diff-body h3 {
    font-size: clamp(22px, 2.4vw, 32px);
    color: #fff;
    margin-bottom: 12px;
    font-weight: 400;
    transition: color .3s ease;
}
.diff-item:hover .diff-body h3 { color: #C4EF17; }
.diff-body p {
    font-size: 15px;
    color: rgba(255,255,255,.5);
    line-height: 1.8;
    max-width: 720px;
}

.diff-hover-img {
    width: 280px; height: 160px;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(40px) scale(.95);
    transition:
        opacity   .45s cubic-bezier(.16,1,.3,1),
        transform .45s cubic-bezier(.16,1,.3,1);
}
.diff-hover-img img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(30%) brightness(.75);
    transform: scale(1.05);
    transition: transform .8s ease;
}
.diff-item:hover .diff-hover-img {
    opacity: 1;
    transform: translateX(0) scale(1);
}
.diff-item:hover .diff-hover-img img {
    transform: scale(1);
}

/* ── LEADERSHIP ── */
.leadership-section { padding: 120px 0; }
.leadership-head {
    text-align: center;
    margin-bottom: 64px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.leadership-head h2 { margin: 10px 0 18px; }
.leadership-head > p {
    font-size: 16px;
    color: rgba(255,255,255,.5);
    line-height: 1.8;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.leader-card {
    background: #0a0a0a;
    border-radius: 4px;
    overflow: hidden;
    transition: background .3s ease;
    border: 1px solid rgba(255,255,255,.06);
}
.leader-card:hover { border-color: rgba(196,239,23,.2); }

.leader-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
}
.leader-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(.85);
    transform: scale(1.04);
    transition: all .6s cubic-bezier(.16,1,.3,1);
}
.leader-card:hover .leader-img img {
    filter: grayscale(20%) brightness(.95);
    transform: scale(1);
}

.leader-socials {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 20px;
    display: flex; gap: 8px;
    background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .35s ease, transform .35s ease;
}
.leader-card:hover .leader-socials {
    opacity: 1;
    transform: translateY(0);
}
.leader-socials a {
    width: 32px; height: 32px; border-radius: 50%;
    background: #C4EF17; color: #000;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s ease;
}
.leader-socials a:hover { background: #fff; }

.leader-info {
    padding: 20px 24px 22px;
}
.leader-info h3 {
    font-family: 'Marcellus', serif;
    font-size: 19px; color: #fff;
    margin-bottom: 4px;
}
.leader-info span {
    font-size: 13px;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 500;
}

/* ── CORE SERVICES (list layout) ── */
.core-services { padding: 0 0 120px; }
.core-head { margin-bottom: 40px; }
.core-head h2 { margin-top: 10px; }

.core-services-list {
    display: flex; flex-direction: column;
    border-top: 1px solid rgba(255,255,255,.08);
}
.core-service {
    display: grid;
    grid-template-columns: 80px 1.5fr 2fr 40px;
    gap: 32px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-decoration: none;
    position: relative;
    transition: padding .3s ease, background .3s ease;
}
.core-service:hover {
    padding-left: 16px; padding-right: 16px;
    background: rgba(196,239,23,.02);
}

.core-num {
    font-family: 'Marcellus', serif;
    font-size: 20px; color: rgba(255,255,255,.35);
    transition: color .3s ease;
}
.core-service:hover .core-num { color: #C4EF17; }

.core-service h3 {
    font-family: 'Marcellus', serif;
    font-size: clamp(20px, 2vw, 26px);
    color: #fff;
    font-weight: 400;
    margin: 0;
    transition: color .3s ease;
}
.core-service:hover h3 { color: #C4EF17; }

.core-service p {
    font-size: 15px;
    color: rgba(255,255,255,.45);
    margin: 0;
}

.core-arrow {
    font-size: 20px;
    color: rgba(255,255,255,.3);
    transition: color .3s ease, transform .3s ease;
    line-height: 1;
}
.core-service:hover .core-arrow {
    color: #C4EF17;
    transform: translate(4px, -4px);
}

/* ── CULTURE / LIFE @ CC ── */
.culture-section {
    padding: 120px 0;
    background: #050505;
    position: relative;
}
.culture-section::before {
    content: '';
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%; max-width: 600px; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(196,239,23,.3) 50%, transparent 100%);
}

.culture-section .culture-head {
    text-align: center;
    margin-bottom: 64px;
}
.culture-section .culture-head h2 { margin-top: 10px; }

/* 2-col layout: cards grid left, big image right */
.culture-section .culture-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch;
}

/* 2x2 cards on the left — FORCED grid */
.culture-section .culture-points {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual card */
.culture-section .c-card {
    background: #0c0c0c !important;
    border: 1px solid rgba(255,255,255,.06) !important;
    border-radius: 4px;
    padding: 28px 26px !important;
    position: relative;
    overflow: hidden;
    display: block;
    transition: border-color .35s ease, background .35s ease, transform .35s ease;
}
.culture-section .c-card:hover {
    border-color: rgba(196,239,23,.25) !important;
    background: #0f0f0f !important;
    transform: translateY(-4px);
}

/* Top accent bar on hover */
.culture-section .c-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: #C4EF17;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.culture-section .c-card:hover::before { transform: scaleX(1); }

/* Number badge (top right, big & faint) */
.culture-section .c-card-num {
    position: absolute;
    top: 14px; right: 20px;
    font-family: 'Marcellus', serif;
    font-size: 46px;
    color: rgba(255,255,255,.035);
    transition: color .35s ease;
    line-height: 1;
    z-index: 1;
}
.culture-section .c-card:hover .c-card-num { color: rgba(196,239,23,.08); }

/* Icon circle */
.culture-section .c-card-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(196,239,23,.08);
    border: 1px solid rgba(196,239,23,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform .35s ease;
    position: relative;
    z-index: 2;
}
.culture-section .c-card:hover .c-card-icon {
    transform: rotate(6deg) scale(1.05);
}

.culture-section .c-card h3 {
    font-family: 'Marcellus', serif;
    font-size: 17px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.culture-section .c-card p {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Right feature image */
.culture-section .culture-feature {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 100%;
}
.culture-section .culture-img-lg {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.culture-section .culture-img-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(.7);
    transform: scale(1.05);
    transition: all .8s cubic-bezier(.16,1,.3,1);
}
.culture-section .culture-img-lg:hover img {
    filter: grayscale(0) brightness(.9);
    transform: scale(1.02);
}

/* Lime badge on image */
.culture-section .culture-img-badge {
    position: absolute;
    bottom: 28px; left: 28px;
    background: #C4EF17;
    color: #000;
    padding: 20px 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.culture-section .culture-img-badge strong {
    font-family: 'Marcellus', serif;
    font-size: 42px;
    line-height: 1;
    color: #000;
}
.culture-section .culture-img-badge span {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Bottom gallery */
.culture-section .culture-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.culture-section .c-gal-item {
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.culture-section .c-gal-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(80%) brightness(.7);
    transition: filter .5s ease, transform .6s cubic-bezier(.16,1,.3,1);
}
.culture-section .c-gal-item:hover img {
    filter: grayscale(0) brightness(.95);
    transform: scale(1.06);
}

/* Responsive */
@media (max-width: 1100px) {
    .culture-section .culture-grid { grid-template-columns: 1fr; }
    .culture-section .culture-img-lg { min-height: 380px; }
}
@media (max-width: 700px) {
    .culture-section .culture-points { grid-template-columns: 1fr !important; }
    .culture-section .culture-gallery { grid-template-columns: 1fr 1fr; }
    .culture-section .culture-img-badge { bottom: 20px; left: 20px; padding: 14px 18px; }
    .culture-section .culture-img-badge strong { font-size: 32px; }
}

/* ── FINAL CTA ── */
.about-cta {
    padding: 120px 0 140px;
    text-align: center;
    position: relative;
}
.about-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 80%; max-width: 800px; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(196,239,23,.4) 50%, transparent 100%);
}

.about-cta-inner {
    max-width: 720px;
    margin: 0 auto;
}
.about-cta h2 {
    font-size: clamp(36px, 5vw, 60px);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}
.about-cta h2 em { color: #C4EF17; font-style: normal; }
.about-cta p {
    font-size: 16px;
    color: rgba(255,255,255,.55);
    margin-bottom: 36px;
}

/* Style matches offcanvas-cta button */
.about-cta-btn {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 14px; font-weight: 600;
    letter-spacing: .05em;
    color: #000; background: #C4EF17;
    padding: 18px 42px;
    text-transform: uppercase;
    transition: background .2s ease, transform .2s ease;
    text-align: center;
    border-radius: 2px;
}
.about-cta-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .who-grid { grid-template-columns: 1fr; gap: 48px; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .leaders-grid { grid-template-columns: 1fr 1fr; }
    .mv-block { padding: 60px 40px; }
    .diff-item { grid-template-columns: 60px 1fr; gap: 28px; }
    .diff-hover-img { display: none; }
    .culture-grid { grid-template-columns: 1fr; }
    .culture-img-lg { min-height: 340px; }
}

@media (max-width: 700px) {
    .page-hero { padding: 140px 0 60px; min-height: auto; }
    .page-hero-points { grid-template-columns: 1fr; }

    .who-we-are,
    .values-section,
    .diff-section,
    .leadership-section,
    .culture-section { padding: 72px 0; }
    .about-cta { padding: 72px 0 100px; }

    .mv-grid { grid-template-columns: 1fr; }
    .mv-block { padding: 60px 24px; }
    .mv-mission { border-right: none; border-bottom: 1px solid rgba(255,255,255,.05); }

    .values-grid { grid-template-columns: 1fr; }
    .leaders-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .core-service {
        grid-template-columns: 40px 1fr 32px;
        gap: 16px;
    }
    .core-service p { display: none; }
    .core-service:hover { padding-left: 0; padding-right: 0; }

    .culture-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
    .leaders-grid { grid-template-columns: 1fr; }
}