/* ================================================================
   about.css — Styles specific to about.html
   ================================================================ */

/* ── Breadcrumb ── */
.breadcrumb {
    padding: 1rem 5%;
    font-size: 0.85rem;
    color: #666;
    background: #f9f7f4;
    border-bottom: 1px solid #e8dcc8;
}

.breadcrumb a {
    color: #4a7c6f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #8b7355;
}

/* ── About Hero ── */
.about-hero {
    background-color: #fff;
    padding: 80px 50px 24px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-hero-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #c9b5a0 0%, #e0c9a8 100%);
}

.about-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-hero-text .lead {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* ── Photo collage (Spotlight-style) ── */
.about-photos {
    margin: 40px 0 24px;
}

.about-photos-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
    padding: 16px 0;
    margin: -16px 0;
}

.about-photo {
    position: relative;
    aspect-ratio: 9 / 10;
    width: 176px;
    flex: none;
    overflow: hidden;
    border-radius: 12px;
    background: #f4f0ea;
}

.about-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.about-photo:nth-child(1) { transform: rotate(2deg); }
.about-photo:nth-child(2) { transform: rotate(-2deg); }
.about-photo:nth-child(3) { transform: rotate(2deg); }
.about-photo:nth-child(4) { transform: rotate(2deg); }
.about-photo:nth-child(5) { transform: rotate(-2deg); }

@media (min-width: 640px) {
    .about-photos {
        margin: 64px 0 32px;
    }

    .about-photos-row {
        gap: 32px;
    }

    .about-photo {
        width: 288px;
        border-radius: 16px;
    }
}

/* ── About Body ── */
.about-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 50px 16px;
}

.about-block {
    padding: 48px 0;
    border-top: 1px solid #e8dcc8;
}

.about-block:first-child {
    border-top: none;
    padding-top: 0;
}

.about-block h2 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a7c6f;
    margin-bottom: 20px;
}

.about-block p {
    font-size: 16px;
    color: #666;
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-block p:last-child {
    margin-bottom: 0;
}

.about-block.closing p {
    font-size: 18px;
    color: #555;
    font-style: italic;
    line-height: 1.8;
}

.clients-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 8px;
}

.clients-list li {
    font-size: 16px;
    color: #666;
    font-weight: normal;
    line-height: 1.85;
    position: relative;
    padding-left: 16px;
}

.clients-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #d97757;
}

.create-list {
    list-style: none;
    margin: 8px 0 24px;
}

.create-list li {
    font-size: 16px;
    color: #666;
    line-height: 1.85;
    padding: 6px 0 6px 20px;
    position: relative;
}

.create-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: #4a7c6f;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        padding: 48px 20px 16px;
        gap: 32px;
        text-align: center;
        justify-items: center;
    }

    .about-hero-photo {
        width: 200px;
        height: 200px;
    }

    .about-hero-text h1 {
        font-size: 32px;
    }

    .about-hero-text .lead {
        font-size: 16px;
    }

    .about-body {
        padding: 24px 20px 12px;
    }

    .about-block {
        padding: 36px 0;
    }

    .clients-list {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

}
