/* --- SECTION RESET & LAYOUT --- */
.location-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', -apple-system, sans-serif;
}

.location-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.location-eyebrow {
    color: #d12c2c;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.location-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    letter-spacing: -2px;
    color: #111;
    line-height: 1.1;
}

.location-red { color: #d12c2c; }

.location-subtitle {
    font-size: 17px;
    color: #666;
    max-width: 550px;
    margin: 15px auto 0;
}

/* --- FILTER PILLS --- */
.location-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.location-pill {
    padding: 10px 24px;
    border-radius: 4px;
    border: 1px solid #eee;
    background: transparent;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #444;
}

.location-pill.active, .location-pill:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* --- IMAGE GALLERY (Initial 12) --- */
.location-gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.location-img-card {
    position: relative;
    height: 200px;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.location-img-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.location-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.location-label h3 {
    color: #fff; font-size: 14px; font-weight: 700; margin: 0;
}

.location-img-card:hover { transform: translateY(-5px); }
.location-img-card:hover img { transform: scale(1.1); }

/* --- DIRECTORY GRID (Minimal Rectangles) --- */
.location-directory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.location-txt-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 18px 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
    animation: locationSlideUp 0.5s ease backwards;
}

.location-txt-card:hover {
    border-color: #d12c2c;
    background: #fdfdfd;
}

.location-txt-card strong {
    font-size: 13px; color: #222; font-weight: 600;
}

/* --- MINIMAL LOAD BUTTON --- */
.location-action {
    margin-top: 60px;
    text-align: center;
}

.location-btn-minimal {
    background: transparent;
    border: 1px solid #111;
    color: #111;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
}

.location-btn-minimal:hover {
    background: #d12c2c;
    color: #fff;
    border-color: #d12c2c;
}

#location-btn-icon {
    transition: transform 0.4s ease;
}

.rotated {
    transform: rotate(180deg);
}

/* --- ANIMATIONS --- */
@keyframes locationSlideUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .location-gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .location-directory-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 650px) {
    .location-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .location-directory-grid { grid-template-columns: repeat(2, 1fr); }
    .location-title { font-size: 28px; }
}