/* ===================================
   LOCATION PAGE STYLES
   Extends style.css for city-specific landing pages
   =================================== */

/* Location hero eyebrow label */
.location-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
}

/* Override hero background for kitchen page */
.location-hero--kitchen {
    background-image: url('../images/kitchen-modern.jpg');
}

/* ===================================
   WHY NEST SECTION
   =================================== */
.location-why {
    padding: 100px 40px;
    background: #f9f9f7;
}

.location-why-content {
    max-width: 1100px;
    margin: 0 auto;
}

.location-why-content h2 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 0.02em;
}

.location-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 700px) {
    .location-why-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .location-why {
        padding: 70px 24px;
    }
}

.why-item {
    background: #fff;
    padding: 32px 28px;
    border-top: 2px solid #1a1a1a;
}

.why-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.why-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
}

/* ===================================
   FOOTER
   =================================== */
.location-footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.65);
    padding: 40px;
    text-align: center;
}

.location-footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-footer-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

.location-footer-content a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

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

/* ===================================
   FOOTER AREA LINKS
   =================================== */
.footer .footer-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.footer-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    justify-content: center;
}

.footer-areas a {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 300;
    color: #999;
    letter-spacing: 0.03em;
    transition: color 0.2s ease;
}

.footer-areas a:hover {
    color: #333;
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */
@media (max-width: 480px) {
    .location-footer {
        padding: 32px 20px;
    }
}
