/* ══════════════════════════════════════════════════════════
   ABOUT PAGE — FOLDED
   Extends index.css
   ══════════════════════════════════════════════════════════ */

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

.about-hero {
    padding-block: 100px;
}

.about-hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.about-hero-inner h1 {
    font-size: 72px;
    line-height: 80px;
    max-width: 640px;
    margin-bottom: 20px;
}

.about-hero-inner > div:first-child p {
    font-size: 20px;
    line-height: 30px;
    color: rgba(0, 0, 0, 0.6);
    max-width: 480px;
    margin-bottom: 30px;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 15px 26px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.about-cta:hover {
    background-color: #fff;
    color: #000;
}

.about-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-shrink: 0;
    border: 2px solid #000;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}

.about-stat {
    padding: 22px 28px;
    border-bottom: 2px solid #000;
}

.about-stat:last-child {
    border-bottom: none;
}

.about-stat-num {
    font-family: 'GulfDisplay', sans-serif;
    font-size: 38px;
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.45);
    font-weight: 500;
}

/* ── Story ──────────────────────────────────────────────── */

.about-story {
    padding-block: 100px;
    background-color: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-grid h2 {
    font-size: 50px;
    line-height: 58px;
    position: sticky;
    top: 40px;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-text p {
    font-size: 18px;
    line-height: 30px;
    color: rgba(0, 0, 0, 0.7);
}

/* ── Founder ────────────────────────────────────────────── */

.about-founder {
    padding-block: 100px;
    background-color: #FFDE59;
}

.founder-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 60px;
    align-items: center;
}

/* Photo */
.founder-photo-wrap {
    position: relative;
}

.founder-photo-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #000;
    border: 2px solid #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-photo-placeholder span {
    font-family: 'GulfDisplay', sans-serif;
    font-size: 16px;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.2);
}

/* Replace placeholder with a real photo like this:
   <img src="assets/founder.jpg" alt="Nikola R." class="founder-photo-img">
*/
.founder-photo-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 2px solid #000;
    border-radius: 12px;
    display: block;
}

/* Bio */
.founder-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 12px;
}

.founder-bio h2 {
    font-size: 64px;
    line-height: 70px;
    margin-bottom: 6px;
}

.founder-title {
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 28px;
}

.founder-bio p {
    font-size: 17px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 16px;
}

.founder-bio p:last-of-type {
    margin-bottom: 30px;
}

.founder-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 13px 22px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.founder-contact:hover {
    background-color: #fff;
    color: #000;
}

/* ── Values ─────────────────────────────────────────────── */

.about-values {
    padding-block: 100px;
    background-color: #fff;
}

.about-values h2 {
    font-size: 50px;
    line-height: 58px;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    background-color: #FFDE59;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 36px 30px;
}

.value-num {
    font-family: 'GulfDisplay', sans-serif;
    font-size: 48px;
    line-height: 1;
    opacity: 0.2;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 16px;
    line-height: 26px;
    color: rgba(0, 0, 0, 0.65);
}

/* ── CTA section ────────────────────────────────────────── */

.about-cta-section {
    padding-block: 0 100px;
    background-color: #fff;
}

.cta-card {
    background-color: #000;
    border-radius: 12px;
    padding: 60px;
    text-align: center;
}

.cta-card h2 {
    font-size: 50px;
    line-height: 58px;
    color: #fff;
    margin-bottom: 14px;
    max-width: 700px;
    margin-inline: auto;
}

.cta-card p {
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 34px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FFDE59;
    color: #000;
    border: 2px solid #FFDE59;
    border-radius: 8px;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-btn:hover {
    background-color: transparent;
    color: #FFDE59;
    border-color: #FFDE59;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

@media screen and (max-width: 1100px) {
    .founder-grid {
        grid-template-columns: 380px 1fr;
        gap: 44px;
    }
}

@media screen and (max-width: 900px) {
    .about-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .about-hero-stats {
        flex-direction: row;
        width: 100%;
        border-radius: 12px;
    }

    .about-stat {
        flex: 1;
        border-bottom: none;
        border-right: 2px solid #000;
    }

    .about-stat:last-child {
        border-right: none;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-grid h2 {
        position: static;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .founder-photo-wrap {
        max-width: 420px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 720px) {
    .about-hero {
        padding-block: 70px;
    }

    .about-hero-inner h1 {
        font-size: 52px;
        line-height: 60px;
    }

    .about-story,
    .about-founder,
    .about-values {
        padding-block: 65px;
    }

    .about-cta-section {
        padding-bottom: 65px;
    }

    .story-grid h2,
    .about-values h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .founder-bio h2 {
        font-size: 48px;
        line-height: 54px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 40px 28px;
    }

    .cta-card h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .about-hero-stats {
        flex-direction: column;
    }

    .about-stat {
        border-right: none;
        border-bottom: 2px solid #000;
    }

    .about-stat:last-child {
        border-bottom: none;
    }
}

@media screen and (max-width: 500px) {
    .about-hero-inner h1 {
        font-size: 42px;
        line-height: 50px;
    }
}
