/* ================================
   ABOUT PAGE STYLES
   Page-specific layout and structure only
   Rule: No inline styles, no embedded style blocks
   ================================ */

/* Page Layout */
.page-about {
    padding-top: 80px;
}

/* Hero Section */
.about-hero {
    text-align: center;
    padding: 180px 20px 60px;
    min-height: 50vh;
    background: var(--bg-section-charcoal);
    margin-top: -80px;
}

.about-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.about-hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections */
.about-section {
    padding: 60px 20px;
}

.about-section--why {
    background: var(--bg-section-black);
}

.about-section--believe {
    background: var(--bg-section-charcoal);
}

.about-section--different {
    background: var(--bg-section-black);
}

.about-section--bigger {
    background: var(--bg-section-charcoal);
}

.about-section--owner {
    background:
        linear-gradient(
            135deg,
            rgba(16, 172, 132, 0.08) 0%,
            rgba(3, 102, 102, 0.12) 50%,
            rgba(16, 172, 132, 0.06) 100%
        ),
        var(--bg-section-green-dark);
    padding: 80px 20px;
}

.about-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: var(--weight-bold);
    color: var(--accent-primary);
    margin-bottom: 32px;
}

.about-section p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: 24px;
}

.about-section p:last-of-type {
    margin-bottom: 0;
}

/* Lists */
.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.about-list li:last-child {
    margin-bottom: 0;
}

/* Owner Section - Magazine Layout */
.owner-content {
    overflow: hidden;
}

.owner-content p {
    margin-bottom: 24px;
}

/* Owner Photos - Varied Sizes and Positions */
.owner-photo {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}

.owner-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.owner-photo figcaption {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-top: 8px;
    text-align: center;
    font-style: italic;
}

/* Photo Size Variants */
.owner-photo--large {
    width: 220px;
}

.owner-photo--medium {
    width: 180px;
}

.owner-photo--small {
    width: 140px;
}

/* Photo Position Variants */
.owner-photo--left {
    float: left;
    margin: 0 32px 20px 0;
    shape-outside: margin-box;
}

.owner-photo--right {
    float: right;
    margin: 0 0 20px 32px;
    shape-outside: margin-box;
}

.owner-photo--center {
    float: none;
    clear: both;
    margin: 40px auto 0;
    display: block;
}

/* CTA Section */
.about-cta {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-section-charcoal);
}

.about-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.about-cta__text {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: var(--line-height-relaxed);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 20px;
    }

    .about-section--owner {
        padding: 60px 20px;
    }

    .about-section__title {
        margin-bottom: 24px;
    }

    .about-section p {
        font-size: var(--text-base);
    }

    .about-list li {
        font-size: var(--text-base);
        padding-left: 24px;
    }

    .about-list li::before {
        width: 6px;
        height: 6px;
        top: 9px;
    }

    /* Stack photos on mobile */
    .owner-photo--left,
    .owner-photo--right {
        float: none;
        margin: 0 auto 24px;
        display: block;
    }

    .owner-photo--large,
    .owner-photo--medium {
        width: 200px;
        max-width: 80%;
    }

    .owner-photo--small {
        width: 140px;
        max-width: 60%;
    }

    .owner-photo--center {
        margin-top: 24px;
    }

    .about-cta {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 16px;
    }

    .owner-photo--large,
    .owner-photo--medium,
    .owner-photo--small {
        width: 100%;
        max-width: 240px;
    }
}
