/* ===== AREA LOCATION PAGES ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
    padding: 0;
}

/* ===== HEADER ===== */

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
}

.page-header img {
    width: 160px;
    height: auto;
}

.page-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.page-nav a {
    color: #767676;
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
    text-decoration: none;
    padding: 4px 8px;
    transition: color 0.3s ease;
}

.page-nav a:hover {
    color: #fff;
}

/* ===== CONTENT ===== */

.areas-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 140px);
    padding: 0 20px 40px;
}

.areas-layout {
    max-width: 620px;
    width: 100%;
}

.areas-content h1 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: lowercase;
    margin-bottom: 24px;
}

.areas-content h2 {
    color: #bbb;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: lowercase;
    margin-top: 32px;
    margin-bottom: 16px;
}

.areas-content p {
    color: #999;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 16px;
}

.areas-content strong {
    color: #ccc;
    font-weight: 400;
}

.areas-content a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.areas-content a:hover {
    color: #fff;
}

/* ===== CTA ===== */

.area-cta {
    margin-top: 40px;
    text-align: center;
}

.area-cta p {
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.area-cta .cta-button {
    display: inline-block;
    border: 1px solid #333;
    color: #888;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: lowercase;
    text-decoration: none;
    padding: 12px 36px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.area-cta .cta-button:hover {
    color: #fff;
    border-color: #777;
}

.area-cta .cta-links {
    margin-top: 16px;
}

.area-cta .cta-links a {
    color: #767676;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: lowercase;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin: 4px 10px;
}

.area-cta .cta-links a:hover {
    color: #fff;
}

/* ===== FOOTER ===== */

.site-footer {
    text-align: center;
    padding: 30px;
}

.site-footer span {
    color: #767676;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: lowercase;
}

.site-footer a {
    color: #767676;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: lowercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #fff;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 640px) {
    .page-header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }

    .page-nav {
        justify-content: center;
    }
}
