:root {
            --bg: #0c0c0d;
            --surface: #141416;
            --surface-2: #1c1c1f;
            --border: #272729;
            --border-hi: #3a3a3d;
            --blue: #1b5a97;
            --blue-light: #2572c0;
            --blue-glow: rgba(27, 90, 151, 0.18);
            --orange: #f38b20;
            --orange-dim: rgba(243, 139, 32, 0.12);
            --text: #f0f0f0;
            --text-dim: #7a7a80;
            --text-mid: #b0b0b8;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
        html { scroll-behavior: smooth; background: #0c0c0d; color-scheme: dark; }

        .skip-link {
            position: absolute;
            top: -100%;
            left: 16px;
            z-index: 10000;
            padding: 12px 24px;
            background: var(--blue);
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            border-radius: 0 0 8px 8px;
            text-decoration: none;
            transition: top 0.15s ease;
        }
        .skip-link:focus { top: 0; }

        body {
            font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.55;
            min-height: 100vh;
            padding: 20px;
        }

        body::before {
            content: '';
            position: fixed; inset: 0; z-index: -1;
            background-image:
                radial-gradient(ellipse 50% 40% at 75% 5%, rgba(27, 90, 151, 0.1) 0%, transparent 60%),
                radial-gradient(ellipse 35% 30% at 5% 90%, rgba(243, 139, 32, 0.06) 0%, transparent 60%);
            pointer-events: none;
        }

        .container { max-width: 1200px; margin: 0 auto; }

        /* Header */
        .site-header {
            display: flex; justify-content: space-between; align-items: center;
            padding: 16px 0 30px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 40px;
        }

        .logo-link {
            display: flex; align-items: center; gap: 12px;
            text-decoration: none; color: var(--text);
            font-family: 'Archivo Black', sans-serif;
            text-transform: uppercase;
        }

        .logo-mark {
            width: 36px; height: 36px;
            background: var(--orange); color: var(--bg);
            display: grid; place-items: center;
            font-size: 0.85rem; border-radius: 8px;
            transform: rotate(-6deg);
        }

        .back-link {
            color: var(--text-mid); text-decoration: none;
            font-size: 0.85rem; font-weight: 500;
            padding: 8px 16px; border: 1px solid var(--border-hi);
            border-radius: 100px;
            transition: all 0.2s;
        }
        .back-link:hover { color: var(--text); border-color: var(--orange); }

        /* Hero */
        .hero-city {
            padding: 40px 0 60px;
        }

        .hero-label {
            display: inline-flex; align-items: center; gap: 10px;
            font-size: 0.72rem; font-weight: 500;
            letter-spacing: 2px; text-transform: uppercase;
            color: var(--orange); margin-bottom: 20px;
        }
        .hero-label::before {
            content: ''; width: 20px; height: 2px;
            background: var(--orange);
        }

        h1 {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(2.4rem, 6vw, 4.5rem);
            line-height: 0.95;
            letter-spacing: -2px;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        h1 .outline { -webkit-text-stroke: 2px var(--text); color: transparent; }
        h1 .accent { color: var(--orange); font-style: italic; }

        .hero-sub {
            font-size: 1.1rem;
            color: var(--text-mid);
            max-width: 700px;
            margin-bottom: 32px;
        }

        .hero-sub strong { color: var(--text); }

        .btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 26px;
            border-radius: 100px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            transition: all 0.25s;
        }

        .btn-orange {
            background: var(--orange); color: var(--bg);
            box-shadow: 0 10px 30px rgba(243, 139, 32, 0.25);
        }
        .btn-orange:hover { background: #ff9a2e; transform: translateY(-2px); }

        .btn-outline {
            background: transparent; color: var(--text);
            border: 1.5px solid var(--border-hi);
        }
        .btn-outline:hover { border-color: var(--text); background: var(--surface); }

        /* Content sections */
        .grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }

        .card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px;
        }

        .card-label {
            font-size: 0.7rem; font-weight: 600;
            letter-spacing: 1.5px; text-transform: uppercase;
            color: var(--orange); margin-bottom: 10px;
            display: inline-flex; align-items: center; gap: 8px;
        }
        .card-label::before {
            content: ''; width: 14px; height: 2px;
            background: var(--orange); border-radius: 2px;
        }

        .card h2, .card h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.2rem;
            line-height: 1.15;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            margin-bottom: 10px;
        }

        .card p {
            color: var(--text-mid);
            font-size: 0.95rem;
        }

        /* SEO Content */
        .seo-content {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 48px;
            margin-bottom: 40px;
        }

        .seo-content h2 {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            text-transform: uppercase;
            letter-spacing: -1px;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .seo-content h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.2rem;
            text-transform: uppercase;
            margin: 28px 0 12px;
        }

        .seo-content p {
            color: var(--text-mid);
            margin-bottom: 14px;
            font-size: 1rem;
        }

        .seo-content strong { color: var(--text); }

        .seo-content ul {
            list-style: none;
            padding: 0;
            margin: 16px 0;
        }

        .seo-content ul li {
            padding: 10px 16px;
            background: var(--surface-2);
            border-left: 3px solid var(--orange);
            border-radius: 6px;
            margin-bottom: 8px;
            color: var(--text-mid);
            font-size: 0.95rem;
        }

        /* Cities neighbor nav */
        .neighbor-nav {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px;
            margin-bottom: 40px;
        }

        .neighbor-nav h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }

        .neighbor-tags { display: flex; flex-wrap: wrap; gap: 8px; }

        .neighbor-tag {
            display: inline-flex; align-items: center; gap: 5px;
            background: var(--surface-2);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 8px 14px;
            font-size: 0.85rem;
            color: var(--text-mid);
            text-decoration: none;
            transition: all 0.2s;
        }
        .neighbor-tag:hover {
            border-color: var(--blue-light);
            color: var(--text);
            background: rgba(37, 114, 192, 0.1);
            transform: translateY(-1px);
        }

        /* Final CTA */
        .cta-final {
            background: linear-gradient(135deg, var(--orange) 0%, #d97515 100%);
            color: var(--bg);
            border-radius: 24px;
            padding: 48px;
            text-align: center;
            margin-bottom: 40px;
        }

        .cta-final h2 {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            text-transform: uppercase;
            letter-spacing: -1px;
            margin-bottom: 12px;
            line-height: 1.05;
        }

        .cta-final p {
            font-size: 1rem;
            margin-bottom: 28px;
            opacity: 0.85;
        }

        .cta-final .btn-dark {
            background: var(--bg); color: var(--text);
        }
        .cta-final .btn-dark:hover { background: var(--surface); }

        /* Footer */
        .footer {
            padding: 30px 0;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            color: var(--text-dim);
            font-size: 0.85rem;
        }

        .footer nav { display: flex; gap: 20px; }
        .footer nav a {
            color: var(--text-mid);
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer nav a:hover { color: var(--orange); }

        /* WhatsApp Floating */
        .wa-float {
            position: fixed; bottom: 24px; right: 24px;
            width: 56px; height: 56px;
            background: #25D366;
            border-radius: 50%;
            display: grid; place-items: center;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
            z-index: 100;
            transition: transform 0.25s;
        }
        .wa-float:hover { transform: scale(1.1); }
        .wa-float svg { width: 28px; height: 28px; fill: white; }

        /* Responsive */
        @media (max-width: 800px) {
            .grid { grid-template-columns: 1fr; }
            .seo-content { padding: 32px 24px; }
            .cta-final { padding: 36px 24px; }
            .site-header { flex-direction: column; gap: 16px; text-align: center; }
        }

        /* Individual local content */
        .local-content {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 48px;
            margin-bottom: 40px;
        }

        .local-meta {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 36px;
            padding-bottom: 32px;
            border-bottom: 1px solid var(--border);
        }

        .meta-item {
            background: var(--surface-2);
            border-radius: 12px;
            padding: 18px 20px;
        }

        .meta-label {
            font-size: 0.7rem; font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--orange);
            margin-bottom: 6px;
        }

        .meta-value {
            color: var(--text);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .local-content h2 {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(1.5rem, 3vw, 2rem);
            text-transform: uppercase;
            letter-spacing: -0.5px;
            line-height: 1.1;
            margin-bottom: 18px;
        }

        .local-content h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.15rem;
            text-transform: uppercase;
            margin: 28px 0 12px;
        }

        .local-intro {
            color: var(--text-mid);
            font-size: 1rem;
            line-height: 1.65;
            margin-bottom: 8px;
        }

        .local-content p {
            color: var(--text-mid);
            margin-bottom: 14px;
            line-height: 1.65;
        }

        .chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 16px 0 24px;
        }

        .chip {
            background: var(--surface-2);
            border: 1px solid var(--border);
            border-radius: 100px;
            padding: 6px 14px;
            font-size: 0.82rem;
            color: var(--text-mid);
            font-weight: 500;
        }

        .local-callout {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: rgba(243, 139, 32, 0.08);
            border: 1px solid rgba(243, 139, 32, 0.3);
            border-radius: 14px;
            padding: 20px 24px;
            margin-top: 28px;
            color: var(--text);
            line-height: 1.55;
        }

        .callout-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .local-callout strong { color: var(--orange); }

        @media (max-width: 800px) {
            .local-meta { grid-template-columns: 1fr; }
            .local-content { padding: 32px 24px; }
        }