/* =========================================================
   ABOUT PAGE — intro, mission/vision/objectives, journey, cta
   ========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- INTRO ---------------- */
.about-intro {
    padding: 80px 0;
    background: #ece8df;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 70px;
}

.about-intro-content {
    max-width: 700px;
}

.about-intro-content h2 {
    margin: 14px 0 22px;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.2;
    font-weight: 700;
    color: #212529;
}

.about-intro-content h2 span {
    color: var(--ink);
}

.about-intro-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
    color: #3a3939;
}

.about-intro-card {
    padding: 35px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-intro-card .mantra {
    display: block;
    margin-bottom: 6px;
    font-size: 26px;
    font-weight: 700;
    color: #212529;
}

.about-intro-card .mantra-sub {
    display: block;
    margin-bottom: 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.legal-list {
    display: grid;
    gap: 0;
}

.legal-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
}

.legal-item:first-child {
    border-top: 1px solid #dee2e6;
}

.legal-item span {
    font-size: 14px;
    font-weight: 600;
    color: #3a3939;
}

.legal-item strong {
    font-size: 14px;
    line-height: 1.6;
    color: #212529;
}

/* ---------------- MISSION / VISION / OBJECTIVES ---------------- */
.mvo {
    padding: 80px 0;
    background: var(--paper);
}

.mvo-head {
    max-width: 60ch;
    margin: 0 auto 44px;
    text-align: center;
}

.mvo-head h2 {
    margin: 14px 0 0;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.2;
}

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

.mvo-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 28px;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mvo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.mvo-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #fff;
    margin-bottom: 20px;
}

.mvo-icon svg {
    width: 26px;
    height: 26px;
}

.mvo-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.mvo-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------------- JOURNEY ---------------- */
.journey {
    padding: 80px 0;
    background: var(--cream);
}

.journey-head {
    max-width: 60ch;
    margin-bottom: 44px;
}

.journey-head h2 {
    margin: 14px 0 0;
    font-size: clamp(28px, 3.2vw, 40px);
}

.journey-list {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding-left: 30px;
    border-left: 2px dashed var(--line);
}

.journey-item {
    position: relative;
    padding: 0 0 40px 26px;
}

.journey-item:last-child {
    padding-bottom: 0;
}

.journey-dot {
    position: absolute;
    left: -37px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 2px var(--gold);
}

.journey-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--ink);
}

.journey-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------------- CTA ---------------- */
.about-cta {
    padding: 60px 0 90px;
}

.about-cta-inner {
    background: var(--ink);
    border-radius: var(--radius);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    color: #fff;
}

.about-cta-inner .eyebrow {
    color: var(--gold-light);
}

.about-cta-inner .eyebrow::before {
    background: var(--gold-light);
}

.about-cta-inner h2 {
    color: #fff;
    font-size: clamp(24px, 2.6vw, 32px);
    margin: 12px 0 8px;
}

.about-cta-inner p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 48ch;
    font-size: 0.95rem;
}

.about-cta-inner .btn-primary {
    background: var(--gold);
    flex-shrink: 0;
}

.about-cta-inner .btn-primary:hover {
    background: var(--gold-light);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

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

@media (max-width: 576px) {
    .about-intro,
    .mvo,
    .journey {
        padding: 55px 18px;
    }

    .about-cta {
        padding: 40px 18px 60px;
    }

    .about-cta-inner {
        padding: 34px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .journey-list {
        padding-left: 20px;
    }

    .journey-dot {
        left: -27px;
    }
}
