.damirica-about-heritage {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background-color: #F5F2EA; /* Canvas-Cream from DESIGN.md */
    overflow: hidden;
}

.damirica-about-heritage__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: calc(var(--bg-opacity, 100) / 100);
    z-index: 0;
}

.damirica-heritage__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 30, 54, 0.7);
    z-index: 1;
}

/* Container */
.damirica-heritage__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Introduction Section */
.damirica-heritage__intro {
    margin-bottom: 120px;
    text-align: center;
}

.damirica-about-heritage__text-center {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* History Rows */
.damirica-heritage__row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.damirica-heritage__row:last-child {
    margin-bottom: 0;
}

.damirica-heritage__col-img,
.damirica-heritage__col-text {
    flex: 1;
}

.damirica-heritage__image-box {
    position: relative;
    border-radius: 32px; /* DESIGN.md xl radius */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.damirica-heritage__image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.damirica-heritage__image-box:hover img {
    transform: scale(1.05);
}

.damirica-heritage__col-text {
    text-align: left;
}

.damirica-heritage__row--img-right .damirica-heritage__col-text {
    text-align: left;
}

/* Typography */
.damirica-about-heritage__heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 64px);
    color: #FFFFFF;
    margin: 0;
    line-height: 1.1;
}

.damirica-heritage__row-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.3;
}

.damirica-about-heritage__body,
.damirica-heritage__row-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Reveal Animation */
.damirica-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.damirica-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .damirica-heritage__row {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .damirica-heritage__row {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px;
    }

    .damirica-heritage__row--img-right {
        flex-direction: column-reverse !important;
    }

    .damirica-heritage__col-text {
        text-align: center !important;
    }

    .damirica-about-heritage__heading {
        font-size: 36px;
    }

    .damirica-heritage__fg-image img {
        max-width: 150px;
    }
}
