/* ══════════════════════════════════════════════════════════════
   areas-we-serve.css — Areas We Serve Hub (light theme)
   Hero + map reuse contact.css; town grid + HQ styled here.
   ══════════════════════════════════════════════════════════════ */

/* Map subtitle links */
body.light-theme .map-subtitle a {
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}
body.light-theme .map-subtitle a:hover {
    color: #000;
}
body.light-theme .map-caption a {
    color: var(--text-mid);
    font-style: normal;
    text-decoration: underline;
    text-underline-offset: 3px;
}
body.light-theme .map-caption a:hover {
    color: var(--text-dark);
}

/* ── Towns grid ── */
body.light-theme .areas-list-section {
    padding: 20px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

body.light-theme .areas-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

body.light-theme .areas-section-title .highlight {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

body.light-theme .areas-list-intro {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.02rem;
    max-width: 620px;
    margin: 0 auto 48px;
    line-height: 1.65;
}

body.light-theme .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

body.light-theme .area-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-card);
    padding: 24px;
    box-shadow: var(--shadow-card);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

body.light-theme .area-card:hover {
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

body.light-theme .area-card--coverage-only {
    border-style: dashed;
    background: var(--bg-main);
}

body.light-theme .area-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

body.light-theme .area-card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

body.light-theme .area-card-badge {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 10px;
    border-radius: 100px;
    background: #111;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
}

body.light-theme .area-card-badge--muted {
    background: var(--bg-soft);
    color: var(--text-gray);
    border: 1px solid var(--border-soft);
}

body.light-theme .area-card-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body.light-theme .area-card-links a {
    font-size: 0.88rem;
    color: var(--text-gray);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-soft);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

body.light-theme .area-card-links li:last-child a {
    border-bottom: none;
    padding-bottom: 0;
}

body.light-theme .area-card-links a:hover {
    color: var(--text-dark);
    padding-left: 4px;
}

body.light-theme .area-card-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 14px;
}

body.light-theme .area-card-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

body.light-theme .area-card-cta:hover {
    gap: 8px;
}

/* ── HQ card ── */
body.light-theme .areas-hq-section {
    padding: 0 24px 100px;
    max-width: 640px;
    margin: 0 auto;
}

body.light-theme .areas-hq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-card);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

body.light-theme .areas-hq-card h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

body.light-theme .areas-hq-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

body.light-theme .areas-hq-card address {
    font-style: normal;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 0.95rem;
}

body.light-theme .areas-hq-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius-btn);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

body.light-theme .areas-hq-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

@media (max-width: 600px) {
    body.light-theme .areas-hq-card {
        padding: 36px 24px;
    }
}
