/* =========================================
   About Page - Exclusive Styles
   Target: /about/index.html only
   ========================================= */

/* --- Scoped Variables for About Page --- */
:root {
    --about-text-color: #333;
    --about-heading-color: #1a1a1a;
    --about-gold: #b89b5e;
    --about-bg-highlight: #faf9f6;
    /* Very light beige/off-white */
}

/* Hero Section Override Removed to match Home/Collection consistency */

/* --- Content Container --- */
.about-container {
    padding: 0;
    max-width: 100%;
    /* Full width sections */
    background-color: #fff;
    overflow: hidden;
    /* Prevent horizontal scroll */
}

.about-section-block {
    padding: 6rem 0;
    /* Balanced spacing */
    position: relative;
}

.about-section-block.bg-warm {
    background-color: var(--about-bg-highlight);
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* --- Typography & Text Styling --- */
.about-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--about-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--about-heading-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    /* Softer reading text */
    margin-bottom: 1.5rem;
    font-weight: 300;
}

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

/* --- Images --- */
.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    /* Clean, no sharp shadow, maybe subtle border radius or just sharp for luxury */
    border-radius: 2px;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
    /* Slow sleek zoom */
}

/* --- Image / Text Alternation --- */

/* For Text Left / Image Right */
.about-wrapper.reverse .about-text-content {
    order: -1;
}


/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero-about .page-hero-content h1 {
        font-size: 3.5rem;
    }

    .about-wrapper {
        gap: 4rem;
    }

    .about-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {

    /* Hero about mobile overrides removed */
    .about-section-block {
        padding: 4rem 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Ensure image is always on top on mobile for visual consistency */
    .about-wrapper.reverse .about-text-content {
        order: 1;
    }

    .about-image-wrapper {
        min-height: 300px;
        order: 0;
    }

    .about-heading {
        font-size: 1.8rem;
    }
}