/* =========================================================
   ABOUT.CSS
   ABOUT PAGE STYLES

   Breadcrumb
   About Hero
   About Visual
   Floating Card
   Stats
   Story Section
   Craft Section
   CTA
========================================================= */

/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb-wrap {
    padding: 28px 0 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

    .breadcrumb a {
        color: var(--purple-dark);
        font-weight: 600;
    }

/* =========================================================
   NAV DIVIDER
========================================================= */

.nav-divider {
    height: 58px;
    background: var(--purple-dark);
}

/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    padding: 42px 0 66px;
}

.about-hero-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 38px;
    align-items: center;
    padding: clamp(26px, 4vw, 52px);
    border-radius: 44px;
    background: radial-gradient(circle at 6% 8%, rgba(255,107,107,.13), transparent 320px), radial-gradient(circle at 92% 8%, rgba(121,74,250,.14), transparent 360px), rgba(255,255,255,.76);
    border: 1px solid rgba(229,232,236,.88);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    isolation: isolate;
}

    .about-hero-card::before {
        content: "";
        position: absolute;
        right: -120px;
        top: -150px;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        background: rgba(121,74,250,.08);
        z-index: -1;
    }

.about-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--purple);
    background: rgba(121,74,250,.11);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
}

    .about-kicker::before {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: linear-gradient( 135deg, var(--primary), var(--purple) );
        box-shadow: 0 0 0 7px rgba(255,107,107,.10);
    }

.about-hero h1 {
    color: var(--ink);
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: -.055em;
    font-weight: 900;
    max-width: 760px;
}

    .about-hero h1 span {
        color: var(--purple);
    }

.about-lead {
    margin-top: 20px;
    max-width: 690px;
    color: #493f5f;
    font-size: clamp(15px,1.25vw,18px);
    line-height: 1.75;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

/* =========================================================
   ABOUT VISUAL
========================================================= */

.about-visual {
    position: relative;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: end;
    gap: 16px;
}

    .about-visual img {
        width: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        border-radius: 30px;
        box-shadow: var(--shadow-md);
        background: #fff;
    }

        .about-visual img:first-child {
            height: 360px;
            margin-top: 58px;
        }

        .about-visual img:last-child {
            height: 500px;
        }

/* =========================================================
   FLOATING CARD
========================================================= */

.about-floating-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: auto;
    padding: 18px 20px;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient( 135deg, rgba(10,2,28,.86), rgba(69,60,92,.76) );
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 60px rgba(10,2,28,.20);
    border: 1px solid rgba(255,255,255,.10);
}

    .about-floating-card strong {
        display: block;
        font-size: 20px;
        line-height: 1.1;
        letter-spacing: -.04em;
    }

    .about-floating-card span {
        display: block;
        margin-top: 7px;
        color: rgba(255,255,255,.76);
        font-size: 13px;
        line-height: 1.45;
    }

/* =========================================================
   ABOUT STATS
========================================================= */

.about-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-top: 24px;
}

.about-stat {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(229,232,236,.88);
    box-shadow: 0 12px 30px rgba(10,2,28,.04);
}

    .about-stat strong {
        display: block;
        color: var(--ink);
        font-size: clamp(24px,2.35vw,34px);
        line-height: 1;
        letter-spacing: -.05em;
        font-weight: 900;
    }

    .about-stat span {
        display: block;
        margin-top: 8px;
        color: var(--muted);
        font-size: 13px;
        font-weight: 600;
    }

/* =========================================================
   SECTION HEAD
========================================================= */

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.eyebrow {
    color: var(--purple);
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-size: 11px;
}

.section-title {
    margin-top: 8px;
    color: var(--ink);
    font-size: clamp(30px,3.8vw,54px);
    line-height: 1.05;
    letter-spacing: -.055em;
    font-weight: 900;
}

    .section-title::before {
        content: "";
        width: 28px;
        height: 28px;
        display: inline-grid;
        place-items: center;
        border-radius: 50%;
        margin-right: 10px;
        background: linear-gradient( 135deg, #ffc1bb, var(--purple) );
        box-shadow: 0 0 0 10px rgba(255,107,107,.08);
        vertical-align: middle;
    }

/* =========================================================
   STORY SECTION
========================================================= */

.story-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.story-panel {
    position: sticky;
    top: 120px;
    padding: 28px;
    border-radius: 32px;
    background: linear-gradient( 135deg, rgba(10,2,28,.96), rgba(69,60,92,.92) );
    color: #fff;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

    .story-panel::after {
        content: "";
        position: absolute;
        width: 190px;
        height: 190px;
        right: -60px;
        top: -60px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
    }

    .story-panel h2 {
        position: relative;
        z-index: 1;
        font-size: clamp(28px,3vw,44px);
        line-height: 1.05;
        letter-spacing: -.055em;
    }

    .story-panel p {
        position: relative;
        z-index: 1;
        margin-top: 14px;
        color: rgba(255,255,255,.76);
        line-height: 1.7;
    }

.story-list {
    display: grid;
    gap: 16px;
}

.story-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: 26px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(229,232,236,.86);
    box-shadow: 0 14px 36px rgba(10,2,28,.045);
    transition: .28s var(--ease);
}

    .story-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-sm);
    }

.story-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient( 135deg, var(--primary), var(--purple) );
    font-size: 22px;
    box-shadow: 0 12px 26px rgba(121,74,250,.16);
}

.story-card h3 {
    color: var(--ink);
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -.03em;
    margin-bottom: 8px;
}

.story-card p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 15px;
}

/* =========================================================
   CRAFT SECTION
========================================================= */

.craft-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.craft-card {
    position: relative;
    min-height: 310px;
    padding: 28px;
    border-radius: 32px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(229,232,236,.88);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

    .craft-card::before {
        content: "";
        position: absolute;
        inset: auto -40px -70px auto;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(121,74,250,.08);
    }

    .craft-card i {
        width: 54px;
        height: 54px;
        display: grid;
        place-items: center;
        border-radius: 20px;
        color: #fff;
        background: linear-gradient( 135deg, var(--purple), var(--primary) );
        font-size: 26px;
        margin-bottom: 18px;
    }

    .craft-card h3 {
        color: var(--ink);
        font-size: clamp(24px,2.6vw,36px);
        line-height: 1.08;
        letter-spacing: -.05em;
        max-width: 500px;
    }

    .craft-card p {
        margin-top: 14px;
        color: var(--muted);
        line-height: 1.75;
        max-width: 620px;
    }

/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta {
    padding: 0 0 80px;
}

.about-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border-radius: 34px;
    color: #fff;
    background: radial-gradient(circle at 10% 0, rgba(255,255,255,.16), transparent 360px), linear-gradient( 135deg, var(--ink), var(--purple-dark) );
    box-shadow: var(--shadow-md);
}

    .about-cta-card h2 {
        font-size: clamp(28px,3.5vw,50px);
        line-height: 1.05;
        letter-spacing: -.055em;
        max-width: 800px;
    }

    .about-cta-card p {
        margin-top: 10px;
        color: rgba(255,255,255,.72);
        max-width: 720px;
    }

    .about-cta-card .btn {
        flex: 0 0 auto;
    }

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 980px) {

    .about-hero-card,
    .story-grid,
    .craft-box {
        grid-template-columns: 1fr;
    }

    .story-panel {
        position: relative;
        top: auto;
    }

    .about-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-visual {
        max-width: 620px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {

    .nav-divider {
        height: 44px;
    }

    .breadcrumb-wrap {
        padding-top: 20px;
    }

    .about-hero {
        padding: 24px 0 42px;
    }

    .about-hero-card {
        padding: 20px;
        border-radius: 28px;
    }

    .about-hero h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .about-lead {
        font-size: 14px;
    }

    .about-hero-actions {
        flex-direction: column;
    }

        .about-hero-actions .btn,
        .about-cta-card .btn {
            width: 100%;
        }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .about-stat {
        padding: 15px;
        border-radius: 18px;
    }

        .about-stat span {
            font-size: 12px;
        }

    .about-visual {
        grid-template-columns: .82fr 1.18fr;
        gap: 12px;
    }

        .about-visual img:first-child {
            height: 220px;
            margin-top: 48px;
            border-radius: 22px;
        }

        .about-visual img:last-child {
            height: 320px;
            border-radius: 22px;
        }

    .about-floating-card {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px;
        border-radius: 20px;
    }

        .about-floating-card strong {
            font-size: 17px;
        }

        .about-floating-card span {
            font-size: 12px;
            line-height: 1.5;
        }

    .section-head {
        display: block;
    }

    .section-title {
        font-size: 32px;
    }

    .story-card {
        grid-template-columns: 1fr;
    }

    .story-panel,
    .story-card,
    .craft-card,
    .about-cta-card {
        border-radius: 24px;
        padding: 22px;
    }

    .craft-card {
        min-height: auto;
    }

        .craft-card h3 {
            font-size: 28px;
        }

    .about-cta {
        padding-bottom: 54px;
    }
}
