/* ===== Fonts & Tokens ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --c-white: #ffffff;
    --c-soft: #E9F5EC;
    /* pastel green 1 */
    --c-accent: #8FBC8F;
    /* primary green */
    --c-deep: #2F6F52;
    /* deep green (teks penting) */
    --c-muted: #5a7a6a;
    /* teks sekunder hijau-keabuan */

    --radius-lg: 16px;
    --radius-md: 12px;
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, .06);
    --shadow-lg: 0 20px 60px rgba(143, 188, 143, .20);
    --speed: .35s;
}

* {
    box-sizing: border-box
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ===== Containers ===== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem
}

/* ===== HERO ===== */
.about-hero {
    background:
        radial-gradient(900px 340px at 10% -20%, var(--c-soft) 0%, transparent 60%),
        radial-gradient(1000px 360px at 90% -15%, rgba(143, 188, 143, .15) 0%, transparent 60%),
        var(--c-white);
    border-bottom: 1px solid var(--c-soft);
    padding: clamp(48px, 7vw, 84px) 0;
    text-align: center;
}

.hero-kicker {
    display: inline-block;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-accent);
    font-size: .8rem;
    margin-bottom: .5rem;
}

.hero-title {
    margin: 0;
    font-weight: 800;
    color: var(--c-deep);
    font-size: clamp(28px, 3.5vw, 40px);
    letter-spacing: .02em;
}

.hero-sub {
    max-width: 700px;
    margin: .6rem auto 0;
    color: var(--c-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== Sections ===== */
.about-section {
    background: #fff;
    padding: clamp(48px, 6vw, 80px) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 56px);
    align-items: center;
}

/* Media frame (gambar) */
.about-media {}

.media-frame {
    --tiltX: 0deg;
    --tiltY: 0deg;
    perspective: 800px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--speed) ease, box-shadow var(--speed) ease;
    transform: rotateX(var(--tiltX)) rotateY(var(--tiltY));
    overflow: hidden;
    background: #fff;
    position: relative;
}

.media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(143, 188, 143, .08), transparent 50%);
    pointer-events: none;
}

.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform var(--speed) ease;
}

.media-frame:hover {
    box-shadow: var(--shadow-lg);
}

.media-frame:hover img {
    transform: scale(1.05);
}

/* Content */
.about-content {
    max-width: 560px
}

.about-chip {
    display: inline-block;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: var(--c-soft);
    color: var(--c-deep);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .08em;
}

.about-title {
    margin: .6rem 0 .4rem;
    color: var(--c-deep);
    font-weight: 800;
    letter-spacing: .02em;
    font-size: clamp(22px, 2.6vw, 30px);
    text-transform: none;
}

.about-desc {
    color: var(--c-muted);
    line-height: 1.8;
    font-size: 1.02rem;
    margin-bottom: .85rem;
}

.about-bullets {
    list-style: none;
    padding: 0;
    margin: .2rem 0 0;
    display: grid;
    gap: .35rem;
}

.about-bullets li {
    position: relative;
    padding-left: 1.2rem;
    color: #3c6552;
    font-weight: 600;
}

.about-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .58rem;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background: var(--c-accent);
}

/* Alternate layout */
.about-section.alt .about-grid {
    grid-template-columns: 1fr 1fr;
}

.about-section.alt .about-content {
    order: 1;
}

.about-section.alt .about-media {
    order: 2;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: .6rem;
}

.stat {
    min-width: 150px;
    padding: .8rem 1rem;
    border: 1px solid var(--c-soft);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.stat-num {
    display: block;
    color: var(--c-accent);
    font-weight: 800;
    font-size: 1.25rem;
}

.stat-label {
    color: #3a6a55;
    font-weight: 600;
    font-size: .9rem;
}

/* ===== Mission Section ===== */
.mission-section {
    background: linear-gradient(180deg, #fff 0%, var(--c-soft) 100%);
    border-top: 1px solid var(--c-soft);
    padding: clamp(48px, 6vw, 84px) 0;
    text-align: center;
}

.mission-inner {
    background: #fff;
    border: 1px solid var(--c-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: clamp(24px, 4vw, 40px);
    max-width: 760px;
    margin: 0 auto;
}

.mission-kicker {
    font-weight: 700;
    color: var(--c-accent);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .8rem;
    margin: 0 0 .4rem;
}

.mission-title {
    margin: .2rem 0 .6rem;
    color: var(--c-deep);
    font-weight: 800;
    font-size: clamp(22px, 2.6vw, 30px);
}

.mission-text {
    color: var(--c-muted);
    line-height: 1.85;
    font-size: 1.02rem;
}

/* ===== Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal[data-reveal="left"] {
    transform: translateX(-16px);
}

.reveal[data-reveal="right"] {
    transform: translateX(16px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-section.alt .about-content,
    .about-section.alt .about-media {
        order: unset;
    }

    .about-content {
        max-width: 100%;
    }

    .about-stats {
        justify-content: space-between;
    }
}

@media (max-width: 520px) {
    .stat {
        min-width: 46%;
    }

    .hero-sub {
        padding: 0 6px;
    }
}

/* ===== Fonts & Tokens ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --c-white: #ffffff;
    --c-soft: #E9F5EC;
    /* pastel green 1 */
    --c-accent: #8FBC8F;
    /* primary green */
    --c-deep: #2F6F52;
    /* deep green (title) */
    --c-muted: #5a7a6a;
    /* text secondary */

    --radius-lg: 16px;
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, .06);
    --shadow-lg: 0 20px 60px rgba(143, 188, 143, .20);
    --speed: .35s;
}

* {
    box-sizing: border-box
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem
}

/* ===== HERO ===== */
.about-hero {
    background:
        radial-gradient(900px 340px at 10% -20%, var(--c-soft) 0%, transparent 60%),
        radial-gradient(1000px 360px at 90% -15%, rgba(143, 188, 143, .12) 0%, transparent 60%),
        var(--c-white);
    border-bottom: 1px solid var(--c-soft);
    text-align: center;
    padding: clamp(44px, 7vw, 84px) 0;
}

.hero-kicker {
    display: inline-block;
    margin: 0 0 .4rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-accent);
    font-size: .8rem;
}

.hero-title {
    margin: 0;
    color: var(--c-deep);
    font-weight: 800;
    font-size: clamp(28px, 3.4vw, 40px);
    letter-spacing: .02em;
}

/* ===== Sections ===== */
.about-section {
    background: #fff;
    padding: clamp(44px, 6vw, 80px) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 56px);
    align-items: center;
}

/* Media */
.media-frame {
    --tiltX: 0deg;
    --tiltY: 0deg;
    perspective: 800px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    background: #fff;
    position: relative;
    transform: rotateX(var(--tiltX)) rotateY(var(--tiltY));
    transition: transform var(--speed) ease, box-shadow var(--speed) ease;
}

.media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(143, 188, 143, .08), transparent 55%);
    pointer-events: none;
}

.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform var(--speed) ease;
}

.media-frame:hover {
    box-shadow: var(--shadow-lg);
}

.media-frame:hover img {
    transform: scale(1.05);
}

/* Texts */
.about-content {
    max-width: 620px;
}

.about-title {
    margin: 0 0 .5rem;
    color: var(--c-deep);
    font-weight: 800;
    letter-spacing: .01em;
    font-size: clamp(22px, 2.5vw, 30px);
}

.about-desc {
    color: var(--c-muted);
    line-height: 1.85;
    font-size: 1.02rem;
}

/* Alternate layout */
.about-section.alt .about-grid {
    grid-template-columns: 1fr 1fr;
}

.about-section.alt .about-content {
    order: 1;
}

.about-section.alt .about-media {
    order: 2;
}

/* ===== Mission ===== */
.mission-section {
    background: linear-gradient(180deg, #fff 0%, var(--c-soft) 100%);
    border-top: 1px solid var(--c-soft);
    padding: clamp(44px, 6vw, 84px) 0;
    text-align: center;
}

.mission-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(22px, 4vw, 40px);
}

.mission-kicker {
    margin: 0 0 .3rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-accent);
}

.mission-title {
    margin: .2rem 0 .5rem;
    color: var(--c-deep);
    font-weight: 800;
    font-size: clamp(22px, 2.5vw, 30px);
}

.mission-text {
    color: var(--c-muted);
    line-height: 1.85;
    font-size: 1.02rem;
}

/* ===== Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal[data-reveal="left"] {
    transform: translateX(-16px);
}

.reveal[data-reveal="right"] {
    transform: translateX(16px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-section.alt .about-content,
    .about-section.alt .about-media {
        order: unset;
    }

    .about-content {
        max-width: 100%;
    }
}

@media (max-width: 520px) {
    .hero-title {
        font-size: clamp(26px, 6vw, 32px);
    }
}