/* Door-to-Door Steps section */
.dtd-steps {
    background: #fff;
    padding: 80px 0;
}
.dtd-steps-head {
    text-align: center;
    margin-bottom: 60px;
}
.dtd-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #91765a;
    display: block;
    margin-bottom: 12px;
}
.dtd-steps-head h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: #141824;
    margin: 0 0 12px;
}
.dtd-steps-head p { font-size: 15px; color: #888; margin: 0; }

.dtd-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}
.dtd-steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: linear-gradient(to right, #91765a, rgba(145,118,90,.2), #91765a);
    z-index: 0;
}

.dtd-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.dtd-step-num {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #91765a;
    margin-bottom: 10px;
}
.dtd-step-icon {
    width: 64px;
    height: 64px;
    background: #141824;
    border-radius: 50%;
    color: #91765a;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid #91765a;
}
.dtd-step h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.05rem;
    color: #141824;
    margin: 0 0 10px;
}
.dtd-step p {
    font-size: 13.5px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .dtd-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .dtd-steps-grid::before { display: none; }
}
@media (max-width: 540px) {
    .dtd-steps-grid { grid-template-columns: 1fr; }
    .dtd-steps { padding: 50px 0; }
}
