.about {
    background-color: var(--cream);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

/* Left Content */
.about-content {
    padding-right: 20px;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-label::before {
    content: '';
    width: 50px;
    height: 1px;
    background-color: var(--gold);
}

.about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--charcoal);
}

.about-title .highlight {
    color: var(--gold-dark);
    display: block;
    font-weight: 400;
    font-style: italic;
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.about-text strong {
    color: var(--charcoal);
    font-weight: 600;
}

.about-commitment {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 35px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-icon svg {
    width: 13px;
    height: 13px;
    stroke: var(--white);
    stroke-width: 3;
    fill: none;
}

.feature-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.feature-content p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* CTA Link */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.about-cta::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.about-cta:hover {
    color: var(--gold);
}

.about-cta:hover::after {
    transform: translateX(5px);
}

/* Right Image - Larger with Golden Corner Decorations */
.about-image {
    position: relative;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 650px;
}

/* Main border frame */
.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
}

/* Golden corner decorations - Top Left */
.image-frame::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    z-index: 1;
}

/* Additional corner decorations using pseudo-elements on wrapper */
.about-image::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 80px;
    height: 80px;
    border-bottom: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    z-index: 1;
}

/* Bottom right corner decoration - using a wrapper div would be ideal, 
   but we can create it with box-shadow trick */
.image-frame {
    filter: drop-shadow(0 0 0 transparent);
}

/* Create bottom-right corner decoration via positioned element simulation */
.about-image {
    background-image: 
        linear-gradient(to right, var(--gold) 3px, transparent 3px),
        linear-gradient(to bottom, var(--gold) 3px, transparent 3px);
    background-size: 80px 3px, 3px 80px;
    background-position: calc(100% - 50px) calc(100% - 50px), calc(100% - 50px) calc(100% - 50px);
    background-repeat: no-repeat;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Decorative Background Elements */
.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 165, 114, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 165, 114, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .about-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content {
        padding-right: 0;
        max-width: 700px;
        margin: 0 auto;
    }

    .about-image {
        max-width: 650px;
        margin: 0 auto;
    }

    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }

    .container {
        padding: 0 30px;
    }

    .about-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-image {
        padding: 30px;
    }

    .image-frame::before {
        top: -15px;
        left: -15px;
        right: 15px;
        bottom: 15px;
    }

    .image-frame::after,
    .about-image::before,
    .about-image::after {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }

    .image-frame::after {
        top: -25px;
        left: -25px;
    }

    .about-image::before {
        top: 5px;
        right: 5px;
    }

    .about-image::after {
        bottom: 5px;
        left: 5px;
    }

    .about-image {
        background-size: 60px 2px, 2px 60px;
        background-position: calc(100% - 35px) calc(100% - 35px), calc(100% - 35px) calc(100% - 35px);
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }

    .section-label {
        font-size: 0.7rem;
    }

    .about-text,
    .about-commitment {
        font-size: 0.9rem;
    }

    .about-image {
        padding: 20px;
    }

    .feature-content h3 {
        font-size: 0.9rem;
    }

    .feature-content p {
        font-size: 0.75rem;
    }
}