/* =========================================
   DNA SECTION (Light Theme / Editorial)
========================================= */
.dnaSection {
    width: 100%;
    padding: 120px 0;
    background-color: #ffffff;
    color: #111;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dna-Wrapper {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Header */
.dna-Intro {
    border-bottom: 2px solid #111;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.dna-Label {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #555;
    font-weight: 600;
}

.dna-Intro h2 {
    font-size: 5rem;
    line-height: 0.9;
    font-weight: 800;
    color: #111;
    letter-spacing: -2px;
    margin: 0;
}

/* The Strip */
.dna-Strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.dna-Item {
    padding: 40px;
    background: #f8f8f8;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.dna-Item:hover {
    background: #111;
    color: #fff !important;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

    h3 {
        color: #fff;
    }

    p {
        color: rgba(255, 255, 255, 0.8);
    }
}

.dna-Num {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.4;
    margin-bottom: auto;
}

.dna-Item h3 {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #111;
}

.dna-Item p {
    font-size: 1.1rem;
    opacity: 0.7;
    line-height: 1.5;
    max-width: 90%;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .dna-Intro h2 {
        font-size: 3.5rem;
    }

    .dna-Strip {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dna-Item {
        min-height: 250px;
        padding: 30px;
    }

    .dna-Item h3 {
        font-size: 2rem;
    }
}