.page-header {
    padding: 4rem 5%;
    border-bottom: 3px solid rgba(201,168,76,0.3);
}

.page-header-inner { max-width: 1200px; margin: 0 auto; }

.page-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3rem;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    letter-spacing: 0.1rem;
    line-height: 1;
}

.page-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
    margin: 0;
}

/* LOCATIONS */
.locations {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.location-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.location-item.visible { opacity: 1; transform: translateY(0); }
.location-item.reverse { direction: rtl; }
.location-item.reverse > * { direction: ltr; }

.location-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 3px solid rgba(201,168,76,0.25);
}

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

.location-img-wrap:hover img { transform: scale(1.04); }

.location-number {
    position: absolute;
    top: 1rem; left: 1rem;
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(255,255,255,0.25);
    line-height: 1;
    pointer-events: none;
}

.location-text { padding: 1rem 0; }

.location-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25rem;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.location-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    letter-spacing: 0.05rem;
    line-height: 1.1;
}

.location-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0 0 2rem 0;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: 2px solid var(--red);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.explore-btn:hover {
    background: transparent;
    color: var(--red);
    transform: translateX(4px);
}

.explore-btn svg { transition: transform 0.2s; }
.explore-btn:hover svg { transform: translateX(4px); }

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
    margin-bottom: 6rem;
}

@media (max-width: 900px) {
    .location-item, .location-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
}