.section.dark-location {
    background: #000;
    color: #fff;
    padding: 100px 0;
}

.location-header {
    text-align: center;
    margin-bottom: 60px;
}

.eyebrow-light {
    color: var(--logo-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
}

.cadastre {
    color: #555;
    font-size: 0.9rem;
    margin-top: 10px;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid #222;
    padding-top: 40px;
}

.loc-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #eee;
}

.loc-list {
    list-style: none;
    padding: 0;
}

.loc-list li {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.loc-list li::before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--logo-green);
    position: absolute;
    left: 0;
    top: 10px;
}

.investment-bar {
    margin-top: 60px;
    padding: 30px;
    background: #111;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #222;
}

.investment-bar p {
    color: #ccc;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile Tweak */
@media (max-width: 900px) {
    .location-grid { grid-template-columns: 1fr; }
}
