/* ─────────────────────────────────────────────
   About Us Page — CATKing
   Design based on provided reference
───────────────────────────────────────────── */

:root {
    --orange:    #FEA525;
    --orange-dk: #E8931A;
    --ink:       #0F1021;
    --white:     #ffffff;
    --line:      #E8E8E8;
    --muted:     #BFBAB2;
    --bg:        #F7F6F3;
    --text-main: #333333;
}

.about-page {
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.about-hero {
    background: var(--ink);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.about-hero::before {
    content: '';
    position: absolute;
    left: -100px; top: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, #4B3621 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
}

.about-hero::after {
    content: '';
    position: absolute;
    right: -100px; bottom: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, #0D3D2F 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
}

.about-hero .section-inner {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 650px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text h1 em {
    font-family: 'Playfair Display', serif;
    color: var(--orange);
    font-style: italic;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
}

.hero-image {
    flex: 0 0 400px;
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    border: 1px dashed rgba(255,255,255,0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.02);
}

.image-placeholder span {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding: 20px;
    font-style: italic;
}

/* ══════════════════════════════════════════
   WHO WE ARE
══════════════════════════════════════════ */
.about-intro {
    padding: 50px 0;
}

.about-intro h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--ink);
}

.about-intro h2 em {
    font-family: 'Playfair Display', serif;
    color: var(--orange);
    font-style: italic;
    font-weight: 700;
}

.intro-content {
    max-width: 900px;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #444;
}

.intro-content p strong {
    font-weight: 700;
    color: var(--ink);
}

.btn-toppers {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: #fff;
    border: 1px solid var(--orange);
    color: var(--orange-dk);
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-toppers:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 165, 37, 0.2);
}

/* ══════════════════════════════════════════
   PARTNER & CAREERS
══════════════════════════════════════════ */
.about-blocks {
    padding: 0 0 50px;
}

.about-blocks .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.block-item h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
}

.block-item h3 em {
    font-family: 'Playfair Display', serif;
    color: var(--orange);
    font-style: italic;
    font-weight: 700;
}

.block-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.link-more {
    color: var(--orange-dk);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.link-more:hover {
    border-bottom-color: var(--orange);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .about-hero .section-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-text { max-width: 100%; }
    .hero-image { flex: 0 0 auto; width: 300px; margin-top: 40px; }
    .about-blocks .section-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 36px; }
    .about-intro h2 { font-size: 32px; }
    .about-intro, .about-hero { padding: 60px 0; }
}
