/* LocalLead — Design System v2
   Fonts: Bricolage Grotesque (display) + Figtree (body)
   Theme: warm light, forest green primary, amber accent
*/

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
    /* Spacing — 4pt scale */
    --sp-1:  4px;
    --sp-2:  8px;
    --sp-3:  12px;
    --sp-4:  16px;
    --sp-6:  24px;
    --sp-8:  32px;
    --sp-12: 48px;
    --sp-16: 64px;
    --sp-24: 96px;

    /* Colors — OKLCH */
    --clr-bg:         oklch(98.5% 0.008 90);
    --clr-surface:    oklch(96.5% 0.007 90);
    --clr-surface-2:  oklch(93%   0.010 90);
    --clr-border:     oklch(88%   0.010 90);
    --clr-text:       oklch(23%   0.012 250);
    --clr-muted:      oklch(52%   0.012 250);
    --clr-faint:      oklch(68%   0.008 250);

    --clr-primary:    oklch(40%   0.13  155);
    --clr-primary-h:  oklch(34%   0.13  155);
    --clr-primary-lt: oklch(94%   0.04  155);

    --clr-accent:     oklch(72%   0.16   75);
    --clr-accent-lt:  oklch(95%   0.04   75);

    --clr-success:    oklch(55%   0.14  155);
    --clr-danger:     oklch(52%   0.20   25);

    /* Typography */
    --font-display: 'Bricolage Grotesque', 'Helvetica Neue', system-ui, sans-serif;
    --font-body:    'Figtree', 'Helvetica Neue', system-ui, sans-serif;

    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-lg:   1.25rem;
    --text-xl:   1.5rem;
    --text-2xl:  2rem;
    --text-3xl:  clamp(1.6rem, 3.5vw + 0.4rem, 2.5rem);
    --text-4xl:  clamp(2rem,   5vw  + 0.5rem, 3.25rem);

    /* Shape */
    --radius-sm: 4px;
    --radius:    8px;
    --radius-lg: 14px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 2px oklch(0% 0 0 / 0.06);
    --shadow:    0 2px 8px oklch(0% 0 0 / 0.07), 0 1px 2px oklch(0% 0 0 / 0.04);
    --shadow-lg: 0 8px 24px oklch(0% 0 0 / 0.08), 0 2px 6px oklch(0% 0 0 / 0.04);

    --max-w: 1160px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background: var(--clr-bg);
    line-height: 1.65;
    font-kerning: normal;
}

p { max-width: 70ch; }

/* ── Layout ──────────────────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-4);
}
@media (min-width: 640px)  { .container { padding: 0 var(--sp-6); } }
@media (min-width: 1024px) { .container { padding: 0 var(--sp-8); } }

.section { padding: var(--sp-12) 0; }

/* ── Header ──────────────────────────────────────────────────── */
.site-header {
    background: var(--clr-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 var(--clr-border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-4) 0;
}

.logo { text-decoration: none; }

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-primary);
    letter-spacing: -0.025em;
    line-height: 1;
}

.main-nav { flex: 1; }

.nav-menu { list-style: none; display: flex; gap: var(--sp-1); }

.nav-menu a {
    color: var(--clr-muted);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--sp-2) var(--sp-3);
    border-radius: var(--radius-sm);
    transition: color 0.15s, background 0.15s;
}
.nav-menu a:hover { color: var(--clr-text); background: var(--clr-surface-2); }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: var(--sp-2) var(--sp-3);
    cursor: pointer;
    font-size: 1rem;
    color: var(--clr-text);
    line-height: 1;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    color: var(--clr-primary);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    white-space: nowrap;
    padding: var(--sp-2) var(--sp-4);
    background: var(--clr-primary-lt);
    border-radius: var(--radius);
    transition: background 0.15s;
}
.header-phone:hover { background: oklch(90% 0.06 155); }

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb {
    padding: var(--sp-4) 0 0;
    font-size: var(--text-xs);
}
.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-1);
    align-items: center;
}
.breadcrumb li + li::before {
    content: "›";
    margin-right: var(--sp-1);
    color: var(--clr-faint);
}
.breadcrumb a { color: var(--clr-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--clr-primary); }
.breadcrumb [aria-current="page"] { color: var(--clr-muted); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero { padding: var(--sp-8) 0 var(--sp-6); }

.hero-img {
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    margin-bottom: var(--sp-6);
}

.img-credit {
    font-size: var(--text-xs);
    color: var(--clr-faint);
    margin-top: calc(-1 * var(--sp-4));
    margin-bottom: var(--sp-6);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--sp-4);
    max-width: 24ch;
}

.hero-intro {
    font-size: var(--text-lg);
    color: var(--clr-muted);
    margin-bottom: var(--sp-3);
    line-height: 1.55;
    max-width: 58ch;
}

.update-date {
    font-size: var(--text-xs);
    color: var(--clr-faint);
}

/* ── Section headings ────────────────────────────────────────── */
.section > h2,
.section > .container > h2,
h2 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: var(--sp-6);
}

h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: var(--sp-3);
}

/* ── Tables ──────────────────────────────────────────────────── */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-sm);
    font-variant-numeric: tabular-nums;
    background: white;
}

.data-table caption {
    text-align: left;
    font-size: var(--text-xs);
    color: var(--clr-muted);
    margin-bottom: var(--sp-2);
    caption-side: top;
    padding: 0 0 var(--sp-2);
}

.data-table th {
    background: var(--clr-text);
    color: var(--clr-bg);
    padding: var(--sp-3) var(--sp-4);
    text-align: left;
    font-weight: 600;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.data-table td {
    padding: var(--sp-3) var(--sp-4);
    border-bottom: 1px solid var(--clr-border);
    vertical-align: middle;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--clr-surface); }
.data-table tr:hover td {
    background: var(--clr-primary-lt);
    transition: background 0.1s;
}

.table-disclaimer {
    font-size: var(--text-xs);
    color: var(--clr-faint);
    margin-top: var(--sp-2);
}

/* ── Stars ───────────────────────────────────────────────────── */
.stars { color: var(--clr-accent); letter-spacing: 0.05em; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-awin {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: var(--clr-primary);
    color: oklch(98% 0.01 90);
    padding: var(--sp-3) var(--sp-6);
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
    border: none;
    font-size: var(--text-sm);
    font-family: var(--font-body);
    line-height: 1;
}
.btn-awin:hover { background: var(--clr-primary-h); transform: translateY(-1px); }
.btn-awin:active { transform: translateY(0); }
.btn-primary { padding: var(--sp-4) var(--sp-8); font-size: var(--text-base); }

.awin-link {
    color: var(--clr-primary);
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: var(--clr-primary-lt);
    text-underline-offset: 2px;
}
.awin-link:hover { color: var(--clr-primary-h); text-decoration-color: var(--clr-primary); }

/* ── CTA block ───────────────────────────────────────────────── */
.cta-block {
    background: var(--clr-primary);
    border-radius: var(--radius-xl);
    padding: var(--sp-8);
    margin-top: var(--sp-8);
    text-align: center;
    color: oklch(95% 0.02 155);
}
.cta-block .btn-awin {
    background: oklch(98% 0.01 90);
    color: var(--clr-primary);
    margin-bottom: var(--sp-3);
}
.cta-block .btn-awin:hover { background: white; }
.cta-disclaimer {
    font-size: var(--text-xs);
    color: oklch(78% 0.04 155);
    margin-top: var(--sp-2);
}
.cta-block-inline { display: inline-block; text-align: left; margin-top: var(--sp-6); }

.section-more { margin-top: var(--sp-6); }

/* ── Pros & Cons ─────────────────────────────────────────────── */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    margin: var(--sp-6) 0;
}

.pros {
    padding: var(--sp-6);
    border-radius: var(--radius-lg);
    background: oklch(95% 0.04 155);
}
.cons {
    padding: var(--sp-6);
    border-radius: var(--radius-lg);
    background: oklch(96.5% 0.025 25);
}

.pros h3 { color: var(--clr-success); font-size: var(--text-base); margin-bottom: var(--sp-3); }
.cons h3 { color: var(--clr-danger); font-size: var(--text-base); margin-bottom: var(--sp-3); }
.pros ul, .cons ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.pros li, .cons li {
    font-size: var(--text-sm);
    display: flex;
    gap: var(--sp-2);
    align-items: flex-start;
    line-height: 1.5;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-2); }

.faq-item {
    background: white;
    padding: var(--sp-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
}
.faq-item h3 {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--sp-2);
    line-height: 1.4;
}
.faq-item p {
    font-size: var(--text-sm);
    color: var(--clr-muted);
    line-height: 1.6;
    max-width: none;
}

/* ── Price tool ──────────────────────────────────────────────── */
.price-tool {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--sp-8);
    box-shadow: var(--shadow-sm);
}

.price-tool-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3) var(--sp-6);
    margin: var(--sp-4) 0;
}

.price-tool-inputs label {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--clr-muted);
}

.pt-input {
    width: 100%;
    padding: var(--sp-3) var(--sp-4);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    font-family: var(--font-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.pt-input:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px var(--clr-primary-lt);
}

.price-tool-result {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--clr-primary);
    margin: var(--sp-4) 0 var(--sp-2);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
.price-note { font-size: var(--text-xs); color: var(--clr-faint); }

/* ── Criteria list ───────────────────────────────────────────── */
.criteria-list {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin: var(--sp-4) 0;
    list-style: none;
}
.criteria-list li {
    font-size: var(--text-sm);
    display: flex;
    gap: var(--sp-3);
    align-items: flex-start;
    padding: var(--sp-4);
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    line-height: 1.5;
}
.criteria-list li::before {
    content: "✓";
    color: var(--clr-primary);
    font-weight: 700;
    flex-shrink: 0;
    font-size: var(--text-base);
    margin-top: -0.1em;
}

/* ── Nearby cities ───────────────────────────────────────────── */
.nearby-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-top: var(--sp-4);
}
.nearby-list li a {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--sp-2) var(--sp-4);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--clr-text);
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.nearby-list li a:hover {
    background: var(--clr-primary-lt);
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

/* ── Recommendation ──────────────────────────────────────────── */
.recommendation {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--sp-8);
    box-shadow: var(--shadow);
}

/* ── City grid (homepage) ────────────────────────────────────── */
.city-grid, .cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--sp-4);
    margin-top: var(--sp-6);
}

.city-card {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-6);
    background: white;
    transition: box-shadow 0.2s, transform 0.2s;
}
.city-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.city-card h2,
.city-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: var(--sp-3);
}

.city-card ul {
    list-style: none;
    margin-bottom: var(--sp-4);
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
}
.city-card ul li { font-size: var(--text-sm); }
.city-card ul li a,
.city-link {
    color: var(--clr-primary);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
}
.city-card ul li a:hover,
.city-link:hover { text-decoration: underline; }

/* ── Services grid ───────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--sp-4);
    margin-top: var(--sp-6);
}

.service-card {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-6);
    background: white;
    transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.service-card h2 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: var(--sp-3);
}

.city-links { list-style: none; margin-top: var(--sp-3); display: flex; flex-direction: column; gap: var(--sp-1); }
.city-links li { font-size: var(--text-sm); }
.city-links li a { color: var(--clr-primary); text-decoration: none; }
.city-links li a:hover { text-decoration: underline; }

/* ── Crosslinks ──────────────────────────────────────────────── */
.crosslinks ul { list-style: none; display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }
.crosslinks ul li a {
    color: var(--clr-primary);
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--sp-2) var(--sp-4);
    background: var(--clr-primary-lt);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: background 0.15s;
}
.crosslinks ul li a:hover { background: oklch(90% 0.06 155); }

/* ── OSM map ─────────────────────────────────────────────────── */
.osm-map { margin-top: var(--sp-4); border-radius: var(--radius-lg); overflow: hidden; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
    background: var(--clr-text);
    margin-top: var(--sp-16);
    color: oklch(72% 0.010 250);
}

.footer-inner {
    padding: var(--sp-12) 0;
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--sp-6);
    align-items: flex-start;
}

.footer-brand .logo-text { color: white; }
.footer-tagline {
    font-size: var(--text-sm);
    color: oklch(60% 0.010 250);
    margin-top: var(--sp-2);
}

.footer-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--clr-accent);
}

.footer-nav { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); }
.footer-nav a {
    color: oklch(60% 0.010 250);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color 0.15s;
}
.footer-nav a:hover { color: white; }

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    padding-top: var(--sp-6);
    border-top: 1px solid oklch(32% 0.005 250);
}

.footer-address { font-size: var(--text-sm); color: oklch(52% 0.008 250); font-style: normal; }
.footer-disclaimer { font-size: var(--text-xs); color: oklch(46% 0.008 250); max-width: 65ch; line-height: 1.7; }
.footer-copy { font-size: var(--text-xs); color: oklch(40% 0.008 250); }

/* ── Blog hub & article ──────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--sp-4);
}
.blog-card {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-6);
    text-decoration: none;
    color: var(--clr-text);
    transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.blog-card-img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: calc(-1 * var(--sp-6)) calc(-1 * var(--sp-6)) var(--sp-2);
    width: calc(100% + var(--sp-12));
}
.blog-card-date { font-size: var(--text-xs); color: var(--clr-faint); }
.blog-card h2, .blog-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 0;
    line-height: 1.3;
}
.blog-card p { font-size: var(--text-sm); color: var(--clr-muted); max-width: none; }
.blog-card-link { font-size: var(--text-sm); font-weight: 600; color: var(--clr-primary); margin-top: auto; }

.article-body h2 { margin-top: var(--sp-8); }
.article-body h2:first-child { margin-top: 0; }
.article-body p { color: var(--clr-muted); font-size: var(--text-base); }

/* ── Blog carousel (homepage) ───────────────────────────────────*/
.blog-carousel { position: relative; margin-top: var(--sp-6); }
.blog-track {
    display: flex;
    gap: var(--sp-4);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: var(--sp-2);
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.blog-track::-webkit-scrollbar { display: none; }
.blog-track .blog-card {
    flex: 0 0 auto;
    width: min(320px, 80vw);
    scroll-snap-align: start;
}
.carousel-nav {
    display: flex;
    gap: var(--sp-2);
    justify-content: flex-end;
    margin-bottom: var(--sp-3);
}
.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    background: white;
    color: var(--clr-text);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-btn:hover { background: var(--clr-primary-lt); border-color: var(--clr-primary); color: var(--clr-primary); }

/* ── Homepage SEO content blocks ─────────────────────────────── */
.section-eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-primary);
    margin-bottom: var(--sp-2);
}
.section-head { max-width: 65ch; margin-bottom: var(--sp-6); }
.section-head h2 { margin-bottom: var(--sp-3); }
.section-head p { color: var(--clr-muted); font-size: var(--text-base); }

.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--sp-6);
    margin-top: var(--sp-8);
}
.stat-item { display: flex; flex-direction: column; gap: var(--sp-1); }
.stat-num {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--clr-primary);
    letter-spacing: -0.02em;
}
.stat-label { font-size: var(--text-sm); color: var(--clr-muted); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sp-4);
    margin-top: var(--sp-6);
}
.benefit-card {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-6);
}
.benefit-card h3 { font-size: var(--text-base); margin-bottom: var(--sp-2); }
.benefit-card p { font-size: var(--text-sm); color: var(--clr-muted); }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sp-4);
}
.contact-card {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-6);
}
.contact-card h3 { margin-bottom: var(--sp-2); }
.contact-card p { font-size: var(--text-sm); color: var(--clr-muted); margin-bottom: var(--sp-3); }
.contact-card address { font-size: var(--text-sm); font-style: normal; color: var(--clr-text); }

/* ── Mega menu ───────────────────────────────────────────────── */
.nav-item { position: relative; }
.nav-item > a[aria-haspopup] { display: inline-flex; align-items: center; gap: var(--sp-1); }
.nav-caret { font-size: 0.65em; transition: transform 0.15s; }
.nav-item.open .nav-caret { transform: rotate(180deg); }

.mega-menu {
    display: none;
    position: absolute;
    top: calc(100% + var(--sp-2));
    left: 0;
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--sp-6);
    min-width: 560px;
    z-index: 110;
}
.nav-item.open .mega-menu,
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu { display: block; }

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--sp-6);
}
.mega-menu-col h4 {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clr-faint);
    margin-bottom: var(--sp-3);
}
.mega-menu-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-1); }
.mega-menu-col a {
    display: block;
    color: var(--clr-text);
    text-decoration: none;
    font-size: var(--text-sm);
    padding: var(--sp-1) 0;
    transition: color 0.15s;
}
.mega-menu-col a:hover { color: var(--clr-primary); }

@media (max-width: 768px) {
    .mega-menu {
        position: static;
        display: none;
        min-width: 0;
        box-shadow: none;
        border: none;
        padding: var(--sp-3) 0 var(--sp-3) var(--sp-4);
    }
    .nav-item.open .mega-menu { display: block; }
    .mega-menu-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
}

/* ── Legal pages ─────────────────────────────────────────────── */
.legal h2 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    margin: var(--sp-8) 0 var(--sp-3);
}
.legal p {
    margin-bottom: var(--sp-4);
    font-size: var(--text-sm);
    color: var(--clr-muted);
    max-width: 70ch;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .main-nav { position: relative; }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: calc(100% + var(--sp-4));
        left: calc(-1 * var(--sp-4));
        right: calc(-1 * var(--sp-4));
        background: var(--clr-bg);
        padding: var(--sp-4);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--clr-border);
        border-radius: var(--radius-lg);
    }
    .nav-menu.open { display: flex; }
    .header-inner { flex-wrap: wrap; }
    .pros-cons { grid-template-columns: 1fr; }
    .price-tool-inputs { grid-template-columns: 1fr; }
    .data-table { font-size: var(--text-xs); }
    .data-table th, .data-table td { padding: var(--sp-2) var(--sp-3); }
    .section { padding: var(--sp-8) 0; }
    .hero { padding: var(--sp-6) 0 var(--sp-4); }
    .recommendation { padding: var(--sp-6); }
    .cta-block { padding: var(--sp-6); }
    .price-tool { padding: var(--sp-6); }
}

@media (max-width: 480px) {
    .city-grid, .cities-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; }
}
