/* ===== ABOUT PAGE STYLES ===== */

/* ===== HERO ===== */
.about-hero {
    text-align: center;
    padding: 120px 24px 60px;
}

.about-hero__label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #C9A76E, #E8D5A8, #C9A76E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.about-hero__title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 12px;
    text-transform: uppercase;
    color: var(--color-text);
}

/* ===== ABOUT BLOCKS ===== */
.about-block {
    max-width: 1100px;
    margin: 0 auto 120px;
    padding: 0 24px;
    position: relative;
    min-height: 480px;
}

/* --- Right image variant (text left, image right) --- */
.about-block--right-img {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
}

.about-block--right-img .about-block__content {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 48px 40px;
    position: relative;
    z-index: 2;
    margin-right: -80px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.about-block--right-img .about-block__image {
    position: relative;
    z-index: 1;
    height: 460px;
}

.about-block--right-img .about-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* --- Left image variant (image left, text right) --- */
.about-block--left-img {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
}

.about-block--left-img .about-block__content {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 48px 40px;
    position: relative;
    z-index: 2;
    margin-left: -80px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.about-block--left-img .about-block__image {
    position: relative;
    z-index: 1;
    height: 520px;
}

.about-block--left-img .about-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* ===== BLOCK CONTENT TYPOGRAPHY ===== */
.about-block__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C9A76E;
    margin-bottom: 8px;
}

.about-block__title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 20px;
}

.about-block__text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-muted);
    margin-bottom: 16px;
}

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

/* ===== FOOTER (shared with contact) ===== */
.about-footer {
    background: linear-gradient(180deg, var(--color-background) 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 60px 24px 32px;
    text-align: center;
}

.about-footer__inner {
    max-width: 600px;
    margin: 0 auto;
}

.about-footer__heading {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A76E;
    margin-bottom: 20px;
}

.about-footer__details {
    margin-bottom: 28px;
}

.about-footer__details p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
}

.about-footer__details a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.about-footer__details a:hover {
    color: #C9A76E;
}

.about-footer__social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.about-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.25s;
}

.about-footer__social a:hover {
    border-color: #C9A76E;
    color: #C9A76E;
    transform: translateY(-2px);
}

.about-footer__social svg {
    width: 18px;
    height: 18px;
}

.about-footer__copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-hero__title {
        font-size: 32px;
        letter-spacing: 6px;
    }

    .about-block {
        grid-template-columns: 1fr;
        margin-bottom: 60px;
    }

    .about-block--right-img .about-block__content,
    .about-block--left-img .about-block__content {
        margin-left: 0;
        margin-right: 0;
        padding: 32px 24px;
        border-radius: 0 0 16px 16px;
    }

    .about-block--left-img {
        display: flex;
        flex-direction: column;
    }

    .about-block--left-img .about-block__image {
        order: -1;
    }

    .about-block--right-img .about-block__image img,
    .about-block--left-img .about-block__image img {
        min-height: 240px;
        border-radius: 16px 16px 0 0;
    }

    .about-block__title {
        font-size: 22px;
    }
}