
:root {
    --navy: #1a2744;
    --blue: #2c5f8a;
    --light-blue: #4a90c4;
    --teal: #2a9d8f;
    --white: #ffffff;
    --off-white: #f4f6f8;
    --light-gray: #e8ecf0;
    --gray: #6b7d8e;
    --dark: #1a1f2e;
    --text: #2d3748;
    --text-light: #5a6577;
    --accent: #e07c3a;
    --shadow: 0 2px 12px rgba(26,39,68,0.08);
    --shadow-lg: 0 8px 30px rgba(26,39,68,0.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal); }
img { max-width: 100%; }

/* Header */
.site-header {
    background: var(--navy);
    color: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
}
.site-logo {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
}
.site-logo span { color: var(--teal); }
.header-phone {
    background: var(--teal);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: background 0.2s;
}
.header-phone:hover { background: #238b7e; color: var(--white); }

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 72px 24px 64px;
    text-align: center;
}
.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 18px;
    font-weight: 700;
}
.hero p {
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto 28px;
    opacity: 0.92;
    line-height: 1.7;
}

/* CTA buttons */
.cta-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--white) !important;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(224,124,58,0.35);
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(224,124,58,0.45);
    color: var(--white) !important;
}

/* Mid-page CTA */
.mid-cta {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: var(--white);
    padding: 36px 28px;
    border-radius: 12px;
    text-align: center;
    margin: 36px 0;
}
.mid-cta p {
    font-size: 1.2rem;
    margin-bottom: 18px;
    font-weight: 600;
    color: #ffffff !important;
}

/* Content */
.content-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px;
}
.content-wrap h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--navy);
    font-size: 1.7rem;
    margin: 36px 0 16px;
    line-height: 1.3;
}
.content-wrap h3 {
    color: var(--blue);
    font-size: 1.2rem;
    margin: 28px 0 12px;
}
.content-wrap p {
    margin-bottom: 16px;
    color: var(--text);
}

/* Facility cards */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin: 28px 0;
}
.facility-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 24px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.facility-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.facility-card h3 {
    color: var(--navy);
    font-size: 1.05rem;
    margin: 0 0 8px;
}
.facility-card .fac-address {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.facility-card .fac-phone {
    font-weight: 700;
    color: var(--teal);
    font-size: 1rem;
}
.claim-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    border: 1px solid var(--blue);
    border-radius: 5px;
    font-size: 0.85rem;
    color: var(--blue);
    transition: all 0.2s;
}
.claim-btn:hover {
    background: var(--blue);
    color: var(--white);
}

/* City grid */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
    margin: 24px 0;
}
.city-grid a {
    display: block;
    padding: 12px 16px;
    background: var(--off-white);
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.2s;
}
.city-grid a:hover { background: var(--light-gray); }

/* Footer */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 48px 24px;
    text-align: center;
}
.site-footer a { color: var(--teal); }
.footer-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
}
.footer-links { margin: 20px 0; }
.footer-links a { margin: 0 12px; font-size: 0.9rem; }

/* Breadcrumb */
.breadcrumb {
    max-width: 900px;
    margin: 0 auto;
    padding: 14px 24px;
    font-size: 0.85rem;
    color: var(--text-light);
}
.breadcrumb a { color: var(--blue); }

/* Mobile */
@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
    .hero { padding: 48px 20px 40px; }
    .header-inner { flex-direction: column; gap: 10px; }
    .facility-grid { grid-template-columns: 1fr; }
    .city-grid { grid-template-columns: repeat(2, 1fr); }
    .content-wrap { padding: 32px 18px; }
}

/* Article content */
.article-content h2 { font-family: 'Playfair Display', Georgia, serif; color: var(--navy); font-size: 1.5rem; margin: 32px 0 14px; line-height: 1.3; }
.article-content h3 { color: var(--blue); font-size: 1.15rem; margin: 24px 0 10px; }
.article-content p { margin-bottom: 14px; color: var(--text); line-height: 1.7; }
.article-content ol, .article-content ul { margin: 12px 0 16px 24px; color: var(--text); }
.article-content li { margin-bottom: 8px; line-height: 1.6; }
.article-content blockquote { border-left: 4px solid var(--teal); padding: 12px 20px; margin: 20px 0; background: var(--off-white); border-radius: 0 8px 8px 0; font-style: italic; color: var(--text-light); }
.article-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.article-content th, .article-content td { padding: 10px 14px; border: 1px solid var(--light-gray); text-align: left; }
.article-content th { background: var(--navy); color: var(--white); font-weight: 600; }
.article-content img.article-hero { width: 100%; max-height: 400px; object-fit: cover; border-radius: 10px; margin: 0 0 24px; }
