/* =========================
   ABOUT PAGE
========================= */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

/* faded logo watermark */
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../assets/images/logo.png") no-repeat center;
    background-size: 520px;
    opacity: 0.04;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    max-width: 760px;
}


.about-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.about-hero p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.75;
}


/* MAIN CONTENT */
.about-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 5.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}


.about-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}


.about-section p {
    color: #444;
    line-height: 1.75;
}

.about-lead {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* LIST */
.about-list {
    margin-top: 1.6rem;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 2.5rem;
}

.about-list li {
    list-style: none;
    padding-left: 1.4rem;
    position: relative;
    color: #333;
    font-weight: 500;
}

.about-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}


/* VALUES */
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.value-box {
    background: linear-gradient(180deg, #ffffff, #f7f8fb);
    padding: 2.8rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.value-box h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
}


.value-box p {
    color: #444;
    line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .about-hero {
        padding: 3.5rem 1.5rem;
        min-height: 45vh;
    }

    .about-hero h1 {
        font-size: 2.4rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

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