body {
    font-family: 'Georgia', serif;
    background-color: #f6f0ea;
    color: #3a2e2a;
    margin: 0;
    padding: 0;
}
.locations-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.locations-intro,
.location-card {
    background: linear-gradient(to bottom, #fffdfb 0%, #ecdfd4 100%);
    border: 1px solid rgba(107, 76, 59, 0.25);
    border-top: 4px solid #a15c3e;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(58, 46, 42, 0.22),
                0 4px 12px rgba(58, 46, 42, 0.12);
    box-sizing: border-box;
}
.locations-intro {
    text-align: center;
    padding: 45px 30px;
}
.locations-intro h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 2.4em;
    letter-spacing: 1px;
    color: #3a2e2a;
    text-transform: uppercase;
    margin: 0 0 16px;
}
.locations-intro h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #a15c3e;
    margin: 16px auto 0;
}
.locations-intro p {
    font-size: 1.05em;
    color: #6b4c3b;
    margin: 0;
    font-style: italic;
}
.location-card {
    padding: 40px;
}
.location-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.location-header h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.8em;
    letter-spacing: 0.5px;
    color: #3a2e2a;
    margin: 0;
    text-transform: uppercase;
}
.location-card .hours {
    display: inline-block;
    font-family: 'Georgia', serif;
    font-weight: bold;
    font-size: 0.85em;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff8f2;
    background: linear-gradient(135deg, #a15c3e 0%, #6b4c3b 100%);
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 3px 8px rgba(107, 76, 59, 0.35);
    white-space: nowrap;
}
.location-card .address {
    font-size: 0.95em;
    color: #8a7468;
    margin: 0;
}
.location-card .notes {
    font-size: 0.95em;
    color: #5a4a42;
    line-height: 1.6;
    margin: 12px 0 0;
}
.location-card--pending {
    opacity: 0.85;
}

.hours--pending {
    background: none;
    background-color: #e4d3c6;
    color: #6b4c3b;
    box-shadow: none;
}

.address--pending {
    font-style: italic;
    color: #a1887a;
}
@media (max-width: 768px) {
    .locations-main {
        padding: 40px 20px 80px;
        gap: 30px;
    }
    .location-card {
        padding: 28px 22px;
    }
    .location-header h2 {
        font-size: 1.4em;
    }
    .locations-intro h1 {
        font-size: 1.8em;
    }
}