/* Section Base */

.linen-about {
    background: linear-gradient(180deg, #f7f6f3 0%, #ffffff 100%);
    position: relative;
}


/* Fabric Texture */

.fabric-overlay {
    position: absolute;
    inset: 0;
    background: url("../img/lc1.jpg");
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}


/* Radial Glows */

.radial-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    z-index: 0;
}

.glow-1 {
    background: #e6dfd3;
    top: -150px;
    left: -150px;
}

.glow-2 {
    background: #d9e2dc;
    bottom: -150px;
    right: -150px;
}


/* Typography */

.section-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8a8a8a;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 600;
    color: #1f1f1f;
    line-height: 1.3;
}

.section-title span {
    color: #6f6a5f;
    font-weight: 400;
}

.section-lead {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}


/* Luxury Cards */

.lux-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.lux-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #2a2a2a;
}

.lux-card p {
    color: #5a5a5a;
    line-height: 1.8;
    font-size: 0.95rem;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) scale(1.5);
        opacity: 0;
    }
}