
        /* ================================================
           AIRBNB-IDENTICAL DESIGN SYSTEM
           Sober Network Sober — Recovery Directory
           ================================================ */
        html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --black: #222222;
            --gray-dark: #6A6A6A;
            --gray-light: #DDDDDD;
            --gray-bg: #F7F7F7;
            --white: #FFFFFF;
            --red: #FF385C;
            --brand: #2D6A4F;
            --brand-dark: #1B4332;
            --radius: 12px;
            --radius-lg: 16px;
            --text: #222222;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
            --shadow-md: 0 2px 8px rgba(0,0,0,0.12);
            --shadow-lg: 0 6px 20px rgba(0,0,0,0.2);
            --shadow-search: 0 3px 12px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.08);
        }

        body {
            font-family: var(--font);
            color: var(--black);
            background: var(--white);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden; }
        a { color: inherit; text-decoration: none; }
        img { display: block; max-width: 100%; }

        /* ===== HEADER (Airbnb exact) ===== */
        .header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--white);
            border-bottom: 1px solid var(--gray-light);
        }
        .header-inner {
            max-width: 1760px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            padding: 0 24px;
        }
        .header-bottom { border-bottom: 1px solid var(--gray-light); }
        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 21px;
            font-weight: 800;
            color: var(--brand);
            flex-shrink: 0;
        }
        .logo svg { width: 30px; height: 30px; }

        /* Center Nav Tabs (Airbnb identical) */
        .header-center {
            display: flex;
            align-items: center;
            gap: 32px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        .header-inner { position: relative; }
        .nav-tab {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            font-size: 16px;
            font-weight: 400;
            color: var(--gray-dark);
            border-bottom: 2px solid transparent;
            cursor: pointer;
            transition: color 0.15s;
            white-space: nowrap;
            position: relative;
        }
        .nav-tab:hover { color: var(--black); }
        .nav-tab.active { color: var(--black); font-weight: 600; border-bottom: 3px solid var(--black); }
        .nav-icon { width: 36px; height: 36px; flex-shrink: 0; }
        .nav-tab-badge {
            position: absolute;
            top: 4px;
            right: 4px;
            background: #484848;
            color: white;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            line-height: 14px;
        }
        /* Scroll-to-collapse: icons shrink, text stays */
        .header.scrolled .nav-icon {
            width: 0; height: 0; opacity: 0; overflow: hidden;
            transition: all 0.25s ease;
        }
        .header.scrolled .nav-tab {
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 600;
            gap: 0;
        }
        .header.scrolled .header-center { gap: 24px; }
        .nav-icon { transition: all 0.25s ease; }
        .nav-tab { transition: all 0.25s ease; }
        /* Enhanced search pill - AirBNB prominent style */
        .m-search {
            display: none;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: #fff;
            border: 1px solid var(--gray-light);
            border-radius: 40px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
            cursor: pointer;
            transition: box-shadow 0.2s;
            min-width: 280px;
        }
        .m-search:hover { box-shadow: 0 2px 4px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08); }
        .header.scrolled .m-search { display: flex; }
        .header.scrolled .header-search { display: none !important; }
        .mobile-listing-cta,
        .desktop-listing-trust {
            display: none;
        }
        .stripe-wordmark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            background: transparent;
            text-decoration: none;
            flex-shrink: 0;
            line-height: 0;
        }
        .stripe-wordmark img {
            height: 18px;
            width: auto;
            display: block;
            pointer-events: none;
        }
        .stripe-wordmark.hero-mark img { height: 24px; }
        a.stripe-wordmark { transition: opacity .15s ease; }
        a.stripe-wordmark:hover { opacity: 0.78; }

        /* Right side — user menu (Airbnb identical) */
        .header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
        .host-link {
            font-size: 14px;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 22px;
            cursor: pointer;
            white-space: nowrap;
        }
        .host-link:hover { background: var(--gray-bg); }
        .globe-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            background: none;
            color: var(--black);
            text-decoration: none;
        }
        .globe-btn:hover { background: var(--gray-bg); }
        .globe-btn .material-symbols-outlined { font-size: 20px; }
        .city-globe-btn {
            position: relative;
            border: 1px solid #d8e5dc;
            background: #fff;
            color: var(--brand-dark);
            box-shadow: 0 1px 2px rgba(16,24,40,0.04);
        }
        .city-globe-btn:hover { background: #f7fbf8; border-color: rgba(45,106,79,0.34); }
        .city-globe-btn .desktop-city-badge {
            position: absolute;
            top: -3px;
            right: -4px;
            min-width: 18px;
            height: 17px;
            padding: 0 5px;
            border-radius: 999px;
            background: #10b981;
            color: #fff;
            border: 2px solid #fff;
            font-size: 9px;
            font-weight: 800;
            line-height: 13px;
            text-align: center;
        }
        .user-avatar { display: none; }
        /* Desktop Expanded Search (Airbnb identical) */
        .search-bar { display: none; }
        .header-search {
            max-width: 850px;
            margin: 0 auto;
            padding: 0 24px 16px;
            border-bottom: none;
        }
        .search-expanded {
            display: flex;
            align-items: center;
            background: var(--white);
            border: 1px solid var(--gray-light);
            border-radius: 100px;
            padding: 8px 8px 8px 0;
            box-shadow: rgba(0,0,0,0.02) 0px 0px 0px 1px, rgba(0,0,0,0.1) 0px 8px 24px 0px;
            cursor: pointer;
            transition: box-shadow 0.3s;
        }
        .search-expanded:hover {
            box-shadow: rgba(0,0,0,0.02) 0px 0px 0px 1px, rgba(0,0,0,0.18) 0px 8px 28px 0px;
        }
        .sf {
            flex: 1;
            padding: 14px 24px;
            border-radius: 32px;
            transition: background 0.15s;
        }
        .sf:hover { background: var(--gray-bg); }
        .sf:first-child { flex: 1.5; }
        .sf-label {
            display: block;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: normal;
            line-height: 16px;
            color: var(--black);
        }
        .sf-value {
            display: block;
            font-size: 14px;
            color: var(--gray-dark);
            line-height: 18px;
        }
        .s-div {
            width: 1px;
            height: 32px;
            background: var(--gray-light);
            flex-shrink: 0;
        }
        .s-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--brand);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            cursor: pointer;
            margin-left: 8px;
            transition: transform 0.15s, background 0.15s;
        }
        .s-btn:hover { background: var(--brand-dark); transform: scale(1.04); }
        .s-btn .material-symbols-outlined { font-size: 20px; }

        /* Mobile Search Pill (Airbnb exact) */
        .m-search {
            display: none;
            align-items: center;
            gap: 12px;
            border: 1px solid var(--gray-light);
            border-radius: 100px;
            padding: 14px 20px;
            box-shadow: rgba(0,0,0,0.02) 0px 0px 0px 1px, rgba(0,0,0,0.1) 0px 8px 24px 0px;
            flex: 1;
            margin: 0 8px;
            cursor: pointer;
            background: var(--white);
        }
        .m-search .material-symbols-outlined { font-size: 18px; }
        .m-search-text { font-size: 14px; font-weight: 600; display: block; line-height: 18px; }
        .m-search-sub { font-size: 12px; color: var(--gray-dark); font-weight: 400; display: none; }

        .crisis-pill {
            display: none;
            align-items: center;
            gap: 6px;
            background: var(--red);
            color: white;
            padding: 10px 16px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 700;
        }
        .crisis-pill:hover { opacity: 0.9; }
        .crisis-pill .material-symbols-outlined { font-size: 16px; }

        /* ===== MAIN ===== */
        .main {
            max-width: 1760px;
            margin: 0 auto;
            padding: 24px 24px 100px;
        }

        /* ===== SECTION ===== */
        .sec { margin-bottom: 32px; padding: 0 16px; }
        .sec + .sec { padding-top: 24px; border-top: 1px solid #e8e8e8; }
        #therapists-section,
        #aa-meetings-section,
        #audio-library-section,
        #recovery-books-section,
        #recovery-blog-section,
        #explore-cities-section,
        #crisis-resources-section {
            border-top: 1px solid #e8e8e8;
        }
        #therapists-section,
        #aa-meetings-section {
            padding-top: 24px !important;
        }
        #audio-library-section,
        #recovery-books-section,
        #recovery-blog-section,
        #crisis-resources-section {
            padding-top: 24px !important;
        }
        .sec-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 20px;
        }
        .sec-title {
            flex: 1;
            min-width: 0;
            font-size: 22px;
            line-height: 1.18;
            font-weight: 700;
            letter-spacing: 0;
            color: var(--black);
        }
        .sec-link {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.01em;
            white-space: nowrap;
            color: var(--black);
            text-decoration: none;
            padding: 7px 11px;
            border-radius: 8px;
            border: 1px solid var(--gray-light);
            transition: background 0.15s, border-color 0.15s;
            flex-shrink: 0;
        }
        .sec-link:hover { background: var(--gray-bg); }

        #therapists-section,
        #aa-meetings-section,
        #audio-library-section,
        #recovery-books-section,
        #recovery-blog-section,
        #explore-cities-section,
        #crisis-resources-section {
            scroll-margin-top: 92px;
        }
        #audio-library-section > div:first-child,
        #recovery-books-section > div:first-child,
        #recovery-blog-section > div:first-child {
            gap: 12px;
        }
        #audio-library-section h3,
        #recovery-books-section h3 {
            font-size: 20px !important;
            line-height: 1.16;
            letter-spacing: 0;
            color: var(--black);
        }
        #recovery-blog-section h3 {
            font-size: 18px !important;
            line-height: 1.18;
            letter-spacing: 0;
            color: var(--black);
        }
        #aa-meetings-section > a > .card {
            max-width: 760px;
        }

        /* ===== CARD ROW ===== */
        .crow {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            scrollbar-width: none;
            padding-bottom: 4px;
        }
        .crow::-webkit-scrollbar { display: none; }

        /* Row nav arrows (desktop) */
        .rnav { position: relative; }
        .rnav-a {
            position: absolute;
            top: 35%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--white);
            border: 1px solid var(--gray-light);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.15s;
            opacity: 0;
            font-size: 18px;
            font-weight: bold;
            line-height: 1;
            color: #333;
        }
        .rnav:hover .rnav-a { opacity: 1; }
        .rnav-a:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.15); transform: translateY(-50%) scale(1.05); }
        .rnav-a.l { left: -16px; }
        .rnav-a.r { right: -16px; }
        .rnav-a .material-symbols-outlined { font-size: 14px; }

        /* ===== CARD (Airbnb exact) ===== */
        .card {
            scroll-snap-align: start;
            flex: 0 0 calc(16.666% - 20px);
            min-width: 180px;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .card:active { transform: scale(0.98); }
        .card-photo {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 5 / 4;
            background: #f4f7f5;
        }
        .card-photo::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            background: linear-gradient(110deg, #f4f7f5 8%, #ffffff 18%, #edf4ef 33%);
            background-size: 200% 100%;
            animation: cardPhotoLoad 1.15s linear infinite;
        }
        .card-photo img {
            position: relative;
            z-index: 1;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        @keyframes cardPhotoLoad { to { background-position-x: -200%; } }
        @media (prefers-reduced-motion: reduce) {
            .card-photo::before { animation: none; }
        }
        .card:hover .card-photo img { transform: scale(1.02); }
        .blog-card-link { flex: 0 0 108px !important; max-width: 108px !important; }
        .blog-card { min-width: 0; }
        .blog-photo { aspect-ratio: 4 / 3; border-radius: 10px; }
        .blog-photo img { border-radius: 10px; }
        .blog-card .card-info { padding-top: 7px; }
        .blog-card .card-name {
            font-size: 12px;
            line-height: 1.25;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .blog-card .card-sub { font-size: 11px; color: #8a8a8a; }
        /* Blog cards are supporting content, not facility cards */
        @media (min-width: 768px) {
            .blog-card-link { flex: 0 0 170px !important; max-width: 170px !important; }
        }
        @media (min-width: 1200px) {
            .blog-card-link { flex: 0 0 190px !important; max-width: 190px !important; }
        }
        /* Level-of-care badge (IOP/PHP/OP) on outpatient cards */
        .loc-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: white;
            color: #222;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 700;
            box-shadow: 0 1px 3px rgba(0,0,0,0.18);
            z-index: 3;
            letter-spacing: 0.5px;
        }
        .loc-badge.loc-iop { color: #0066cc; }
        .loc-badge.loc-php { color: #8a2be2; }
        .loc-badge.loc-op { color: #059669; }
        .card-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: white;
            padding: 5px 10px;
            border-radius: 16px;
            font-size: 12px;
            font-weight: 700;
            box-shadow: 0 2px 4px rgba(0,0,0,0.08);
            z-index: 2;
            letter-spacing: 0;
            color: #222;
        }
        /* 2026-05-28 polish: subtle gold "FEATURED" pill on paid listings — visual ROI for $5 buyers */
        .featured-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 5px 10px 5px 8px;
            background: linear-gradient(135deg, #ffd166 0%, #ffbf00 100%);
            color: #4a3500;
            font-size: 10.5px;
            font-weight: 900;
            letter-spacing: .05em;
            text-transform: uppercase;
            border-radius: 999px;
            box-shadow: 0 4px 12px rgba(255, 191, 0, .35), 0 1px 2px rgba(0,0,0,.08);
            border: 1px solid rgba(255,255,255,.5);
            pointer-events: none;
        }
        .featured-badge::before { content: '\2605'; font-size: 11px; line-height: 1; }
        /* DOMINO RESIZE 2026-04-26: hide non-featured card badges per Douglas */
        .card-badge, .loc-badge { display: none !important; }
        .card-heart {
            position: absolute;
            top: 8px;
            right: 8px;
            cursor: pointer;
            z-index: 2;
        }
        .card-heart svg {
            width: 24px;
            height: 24px;
            fill: rgba(0,0,0,0.5);
            stroke: white;
            stroke-width: 2;
            transition: all 0.15s;
            filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
        }
        .card-heart:hover svg { fill: var(--red); stroke: var(--red); transform: scale(1.1); }
        .card-heart.active svg { fill: #ff385c; stroke: #ff385c; animation: heartPop 0.3s ease; }
        .card-heart.active svg path { fill: #ff385c !important; stroke: #ff385c !important; }
        .card-heart svg path { transition: fill 0.2s ease, transform 0.2s ease; }
        @keyframes heartPop { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } }
        .card-ph {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, #f8fafb, #eef2f5);
        }
        .card-ph .material-symbols-outlined { font-size: 48px; color: #c8d5dc; font-variation-settings: 'FILL' 1; }

        .card-info { padding: 10px 0 0; }
        .card-r1 {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 4px;
        }
        .card-name {
            font-size: 15px;
            font-weight: 600;
            line-height: 1.3;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            flex: 1;
            color: var(--text);
        }
        .card-name-link {
            text-decoration: none;
        }
        .card-name-link:hover {
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .card-star {
            display: inline-flex;
            align-items: center;
            gap: 2px;
            font-size: 14px;
            flex-shrink: 0;
            font-weight: 600;
            color: var(--text);
        }
        .card-star svg { width: 12px; height: 12px; }
        .card-sub {
            font-size: 14px;
            color: #717171;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            margin-top: 2px;
        }
        .card-trust-pill {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            max-width: 100%;
            margin-top: 5px;
            padding: 3px 7px;
            border-radius: 999px;
            background: #eef8f1;
            color: #236347;
            border: 1px solid #cfe8d8;
            font-size: 11px;
            line-height: 1.15;
            font-weight: 750;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .card-trust-pill .material-symbols-outlined {
            font-size: 13px;
            flex: 0 0 auto;
            color: #2d6a4f;
        }
        .card-trust-pill.npi {
            background: #eef4ff;
            border-color: #d7e5ff;
            color: #244b78;
        }
        .card-trust-pill.npi .material-symbols-outlined { color: #315f96; }
        .card-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 32px;
            padding: 7px 12px;
            border-radius: 999px;
            background: #ecfdf5;
            font-size: 13px;
            font-weight: 800;
            text-decoration: none;
            margin-top: 7px;
            color: var(--brand);
        }




        /* Visual QA polish 2026-06-09: pin Call Now CTA to card bottom so rows align */
        .card:has(> .card-info > .card-cta) { display: flex; flex-direction: column; }
        .card:has(> .card-info > .card-cta) > .card-photo { flex: 0 0 auto; }
        .card:has(> .card-info > .card-cta) > .card-info { display: flex; flex-direction: column; flex: 1 1 auto; }
        .card-info > .card-cta { margin-top: auto; align-self: flex-start; }
        /* Visual QA polish 2026-06-09 r3: section auto-scroll lands below sticky header */
        [id$="-section"], #wishlists-content { scroll-margin-top: 152px; }
        @media (max-width: 640px) { [id$="-section"], #wishlists-content { scroll-margin-top: 88px; } }
        /* Design touch-ups 2026-06-09 r6 — calm, consistent, tactile */
        /* Crisis chip: warm + findable, matches desktop header treatment */
        .mobile-city-secondary[href*="988"] { background: #fef2f2; border-color: #fecaca; color: #b91c1c; }
        /* Desktop hover: shadow lift on the photo (the visual anchor), keeps Airbnb restraint */
        .card-photo { transition: box-shadow .22s ease; }
        @media (hover: hover) and (min-width: 745px) {
            .card:hover .card-photo { box-shadow: 0 10px 28px rgba(15,23,42,.13); }
        }
        /* Keyboard focus visibility — quality floor */
        a:focus-visible, button:focus-visible, [role="button"]:focus-visible, select:focus-visible, input:focus-visible, [tabindex]:focus-visible {
            outline: 2px solid var(--brand, #2d6a4f); outline-offset: 2px; border-radius: 6px;
        }
        /* Tactile press states */
        .card-cta, .mobile-city-primary, .mobile-city-secondary { transition: transform .12s ease, background .15s ease; }
        .card-cta:active, .mobile-city-primary:active, .mobile-city-secondary:active { transform: scale(.97); }
        .card-cta:hover { background: #dcfce9; }
        /* Stat tiles: labels never inherit link blue */
        a.mobile-city-stat, .mobile-city-stat a, .mobile-city-stats a { color: inherit; text-decoration: none; }
        .mobile-city-stat span { color: #64748b; }
        /* Providers strip: intentional monetization touchpoint, not an afterthought */
        .mobile-listing-cta { border-left: 3px solid var(--brand, #2d6a4f); }
        .mobile-listing-main b { color: var(--brand, #2d6a4f); }
        @media (prefers-reduced-motion: reduce) {
            .card-photo, .card-cta, .mobile-city-primary, .mobile-city-secondary { transition: none; }
        }

        /* Premium pass 2026-06-09 r9 — editorial display voice + refined detail */
        .desktop-hero h2, .mobile-city-intro h2, .sec-title {
            font-family: "Fraunces", Georgia, serif;
            font-weight: 600;
            letter-spacing: -0.012em;
            font-optical-sizing: auto;
        }
        .desktop-hero h2 { font-size: clamp(36px, 3.2vw, 52px); line-height: 1.04; }
        @media (max-width: 744px) { .mobile-city-intro h2 { font-size: 29px !important; line-height: 1.12 !important; font-weight: 600 !important; } }
        .sec-title { font-size: 24px; font-weight: 600; }
        .mobile-city-kicker, .desktop-kicker { letter-spacing: .085em !important; }
        .mobile-city-stat b { font-size: 19px !important; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
        .mobile-city-stat span { font-size: 10px !important; letter-spacing: .06em; text-transform: uppercase; font-weight: 750 !important; }
        .sec-link svg, .sec-link .material-symbols-outlined { transition: transform .18s ease; }
        .sec-link:hover svg, .sec-link:hover .material-symbols-outlined { transform: translateX(3px); }
        @media (prefers-reduced-motion: reduce) { .sec-link svg, .sec-link .material-symbols-outlined { transition: none; } }
        .logo { font-family: "Fraunces", Georgia, serif; font-weight: 600; letter-spacing: -0.01em; }
        /* Cinematic hero 2026-06-09 r10 — one image, text on scrim, glass detail */
        .mobile-city-intro {
            position: relative;
            overflow: hidden;
            border: none !important;
            background: linear-gradient(170deg, #143526 0%, #0e261b 100%) !important;
            box-shadow: 0 18px 44px rgba(15,35,25,.22) !important;
        }
        .mobile-city-intro::before {
            content: ""; position: absolute; inset: 0; z-index: 0;
            background: url('/shared/assets/hero/hero-860.webp') center 38% / cover no-repeat;
            opacity: .25; filter: blur(1.5px) saturate(.8);
            border-radius: inherit;
        }
        .mobile-city-intro > * { position: relative; z-index: 1; }
        .mobile-city-intro h2 { color: #ffffff !important; text-shadow: 0 2px 18px rgba(0,0,0,.25); }
        .mobile-city-kicker { color: #d3f3e0 !important; text-shadow: 0 1px 12px rgba(0,0,0,.35); }
        .mobile-city-intro > p:not(.mobile-city-kicker) { color: rgba(255,255,255,.92) !important; text-shadow: 0 1px 14px rgba(0,0,0,.3); }
        .mobile-city-primary { background: #ffffff !important; color: #1b4332 !important; box-shadow: 0 10px 24px rgba(0,0,0,.22) !important; }
        .mobile-city-secondary[href*="988"] { background: rgba(255,255,255,.14) !important; border-color: rgba(255,255,255,.45) !important; color: #ffffff !important; font-weight: 850 !important; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
        .mobile-city-stat {
            background: rgba(255,255,255,.10) !important;
            border: 1px solid rgba(255,255,255,.22) !important;
            -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
        }
        .mobile-city-stat b { color: #ffffff !important; }
        .mobile-city-stat span { color: rgba(255,255,255,.78) !important; }
        @media (min-width: 745px) {
            .desktop-hero {
                position: relative;
                overflow: hidden;
                border: none !important;
                background: linear-gradient(120deg, #143527 0%, #0f2a1e 100%) !important;
                box-shadow: 0 26px 60px rgba(15,35,25,.25) !important;
            }
            .desktop-hero::before {
                content: ""; position: absolute; inset: 0; z-index: 0;
                background: url('/shared/assets/hero/hero-1700-v2.webp') center 42% / cover no-repeat;
                opacity: .25; filter: blur(2px) saturate(.8);
                border-radius: inherit;
            }
            .desktop-hero > * { position: relative; z-index: 1; }
            .desktop-hero h2 { color: #ffffff !important; text-shadow: 0 2px 22px rgba(0,0,0,.28); }
            .desktop-kicker { color: #d3f3e0 !important; text-shadow: 0 1px 12px rgba(0,0,0,.35); }

            .desktop-hero-copy > p:not(.desktop-kicker) { color: rgba(255,255,255,.88) !important; }
            .desktop-hero-primary { background: #ffffff !important; color: #1b4332 !important; }
            .desktop-hero-secondary { background: rgba(255,255,255,.12) !important; border: 1px solid rgba(255,255,255,.4) !important; color: #fff !important; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
            .desktop-action {
                background: rgba(255,255,255,.10) !important;
                border: 1px solid rgba(255,255,255,.22) !important;
                -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
            }
            .desktop-action, .desktop-action * { color: #ffffff !important; }
            .desktop-action small, .desktop-action span:last-child { color: rgba(255,255,255,.78) !important; }
        }
        /* Trust band + brand presence 2026-06-09 r11 (rebuilt) */
        .trust-band {
            display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
            gap: 8px 22px; margin: 14px 16px 4px; padding: 10px 6px;
            color: #475569; font-size: 12.5px; font-weight: 650;
        }
        .trust-band > span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
        .trust-band .material-symbols-outlined { font-size: 17px; color: var(--brand, #2D6A4F); }
        @media (min-width: 745px) {
            .trust-band { margin: 18px auto 0; max-width: 760px; font-size: 13px; }
            .mobile-listing-cta { display: none !important; }
        }
        @media (max-width: 744px) {
            .logo { display: flex !important; justify-content: center; margin: 2px 0 10px; }
            .logo .logo-text { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: 19px; color: var(--brand, #2D6A4F); letter-spacing: -0.01em; }
            .mobile-listing-cta { margin: 10px 16px 0 !important; width: auto !important; max-width: calc(100% - 32px); }
        }



        /* Page load animation */
        .tab-content { animation: fadeUp 0.3s ease; }
        @keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
        
        /* Smooth hover on all interactive elements */
        a, button { transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease; }

        /* ===== ICON FILTER BAR (AirBNB pattern) ===== */
        .icon-filters {
            display: flex;
            gap: 32px;
            overflow-x: auto;
            padding: 12px 24px;
            border-bottom: 1px solid var(--gray-light);
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
            position: sticky;
            top: 80px;
            background: white;
            z-index: 50;
            transition: top 0.25s ease;
        }
        .header.scrolled ~ .content-tabs .icon-filters { top: 56px; }
        .icon-filters::-webkit-scrollbar { display: none; }
        /* Gender Pill Bar */
        /* gpill CSS removed 2026-04-02 */
        .icon-filter {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 8px 4px;
            border-bottom: 2px solid transparent;
            color: var(--gray-dark);
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.15s;
            text-decoration: none;
            opacity: 0.7;
            flex-shrink: 0;
        }
        .icon-filter:hover { opacity: 1; color: var(--black); }
        .icon-filter.active { 
            color: var(--black); 
            border-bottom-color: var(--black); 
            opacity: 1; 
        }
        .icon-filter .material-symbols-outlined { font-size: 24px; }
        @media (max-width: 767px) {
            .icon-filters { gap: 24px; padding: 10px 16px; }
            .icon-filter { font-size: 11px; }
            .icon-filter .material-symbols-outlined { font-size: 22px; }
        }

        /* ===== LEAD SECTION ===== */
        .lead-sec {
            background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0f9ff 100%);
            border-radius: 20px;
            padding: 48px 32px;
            text-align: center;
            margin: 40px 16px;
            border: 1px solid #d1fae5;
        }
        .lead-sec h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
        .lead-sec > p { color: var(--gray-dark); font-size: 15px; margin-bottom: 24px; }
        .lead-form { display: flex; gap: 12px; max-width: 560px; margin: 0 auto; }
        .lead-input {
            flex: 1;
            padding: 14px 16px;
            border: 1px solid var(--gray-light);
            border-radius: 12px;
            font-size: 16px;
            font-family: var(--font);
            outline: none;
            background: white;
        }
        .lead-input:focus { border-color: var(--black); }
        .lead-submit {
            background: var(--brand);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            font-family: var(--font);
            cursor: pointer;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(45,106,79,0.3);
            transition: all 0.2s;
        }
        .lead-submit:hover { background: var(--brand-dark); }

        /* ===== FOOTER (AirBNB 3-column) ===== */
        .footer {
            border-top: 1px solid var(--gray-light);
            padding: 48px 24px 24px;
            max-width: 1200px;
            margin: 0 auto;
            font-size: 14px;
            color: var(--gray-dark);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--black);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin: 0 0 16px;
        }
        .footer-col a {
            display: block;
            color: var(--gray-dark);
            text-decoration: none;
            font-size: 14px;
            padding: 4px 0;
            transition: color 0.15s, text-decoration 0.15s;
        }
        .footer-col a:hover { color: var(--black); text-decoration: underline; }
        .footer-bottom {
            border-top: 1px solid var(--gray-light);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom-left { font-size: 13px; color: var(--gray-dark); }
        .footer-bottom-right { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
        .footer-bottom-right a { color: var(--gray-dark); text-decoration: none; font-size: 13px; white-space: nowrap; }
        .footer-bottom-right a:hover { color: var(--black); text-decoration: underline; }
        @media (max-width: 1023px) {
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 767px) {
            .footer-grid { grid-template-columns: 1fr; gap: 24px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .footer-bottom-right { justify-content: center; gap: 12px 18px; }
        }

        /* ===== BOTTOM NAV (Airbnb exact) ===== */
        .bnav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--white);
            border-top: 1px solid var(--gray-light);
            padding: 8px 0 max(8px, env(safe-area-inset-bottom));
            z-index: 200;
            justify-content: space-around;
        }
        /* UI POLISH 2026-04-26: bnav scroll-hide motion */
        .bnav { will-change: transform, opacity; transition: transform 320ms cubic-bezier(0.16,1,0.3,1), opacity 320ms cubic-bezier(0.16,1,0.3,1); }
        .bnav.hidden {
            transform: translateY(110%);
            opacity: 0;
            pointer-events: none;
            transition: transform 240ms cubic-bezier(0.4,0,0.6,1), opacity 240ms cubic-bezier(0.4,0,0.6,1);
        }
        .bn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            font-size: 10px;
            font-weight: 600;
            color: var(--gray-dark);
            padding: 2px 12px;
        }
        .bn.active { color: var(--red); }
        .bn .material-symbols-outlined { font-size: 26px; }

        /* Floating Map Button (Airbnb identical) */
        .map-float {
            display: none;
            position: fixed;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--black);
            color: white;
            border: none;
            border-radius: 24px;
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 600;
            font-family: var(--font);
            cursor: pointer;
            z-index: 190;
            box-shadow: 0 4px 12px rgba(0,0,0,0.28);
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        .map-float .material-symbols-outlined { font-size: 16px; }
        .map-float:hover { transform: translateX(-50%) scale(1.04); }

        /* ===== RESPONSIVE: TABLET ===== */
        @media (max-width: 1024px) {
            .card { flex: 0 0 calc(25% - 16px); }
        }

        /* ===== RESPONSIVE: MOBILE (Airbnb identical) ===== */
        @media (max-width: 744px) {
            .rnav::after { content: ''; position: absolute; top: 0; right: -20px; width: 40px; height: 100%; background: linear-gradient(to right, transparent, white); pointer-events: none; z-index: 5; }
            /* Hide desktop elements */
            .host-link { display: none; }
            .globe-btn { display: none; }
            .logo { display: none; }
            .crisis-pill { display: none; }
            .header-search { display: none !important; }
            .search-bar { display: none; }
            .header-bottom { border-bottom: none; }
            .header { border-bottom: none; }
            .header-right { display: none; }

            /* Stack header vertically */
            .header-inner {
                height: auto;
                padding: 14px 24px;
                flex-wrap: wrap;
                justify-content: center;
            }

            /* Search pill: simple centered like Airbnb */
            .m-search {
                display: flex;
                width: 100%;
                order: 1;
                margin: 0;
                justify-content: center;
                align-items: center;
                text-align: center;
                padding: 16px 24px;
                border-radius: 100px;
                border: 1px solid var(--gray-light);
                box-shadow: rgba(0,0,0,0.02) 0px 0px 0px 1px, rgba(0,0,0,0.08) 0px 4px 16px 0px;
                background: var(--white);
                gap: 10px;
            }
            .m-search .material-symbols-outlined { font-size: 18px; color: var(--black); flex-shrink: 0; }
            .m-search-text { font-size: 14px; font-weight: 500; display: inline; color: var(--black); }
            .m-search-sub { display: none; }

            /* Show illustrated tabs on mobile (Airbnb identical) */
            .header-center {
                display: flex;
                position: static;
                transform: none;
                justify-content: space-around;
                gap: 0;
                width: 100%;
                order: 3;
                padding: 16px 0 0;
                border-bottom: 1px solid var(--gray-light);
                margin-top: 12px;
            }
            .mobile-listing-cta {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
                width: 100%;
                order: 2;
                margin-top: 10px;
                padding: 12px 14px;
                border: 1px solid #ded7ff;
                border-radius: 18px;
                background: #fbfaff;
                color: #31256f;
                text-decoration: none;
                box-shadow: 0 6px 18px rgba(99,91,255,0.12);
                max-height: 96px;
                overflow: hidden;
                opacity: 1;
                transform: translateX(0) scale(1);
                transition:
                    transform .34s cubic-bezier(.22, 1, .36, 1),
                    opacity .24s ease,
                    max-height .34s ease,
                    margin-top .34s ease,
                    padding-top .34s ease,
                    padding-bottom .34s ease,
                    border-color .34s ease,
                    box-shadow .34s ease;
                will-change: transform, opacity, max-height;
            }
            .mobile-listing-cta.is-dismissed {
                max-height: 0;
                margin-top: 0;
                padding-top: 0;
                padding-bottom: 0;
                border-color: transparent;
                box-shadow: none;
                opacity: 0;
                pointer-events: none;
                transform: translateX(112%) scale(.98);
            }
            .mobile-listing-main {
                flex: 1;
                min-width: 0;
                color: inherit;
                text-decoration: none;
                display: flex;
                flex-direction: column;
                justify-content: center;
                min-height: 52px;
                padding: 4px 2px;
            }
            .mobile-listing-signin {
                flex-shrink: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 3px;
                min-width: 60px;
                min-height: 52px;
                padding: 6px 8px;
                margin: -4px -4px -4px 0;
                border-left: 1px solid rgba(99,91,255,0.22);
                color: #31256f;
                text-decoration: none;
                font-size: 11px;
                font-weight: 800;
                line-height: 1;
                letter-spacing: 0.02em;
            }
            .mobile-listing-signin img {
                height: 13px;
                width: auto;
                pointer-events: none;
                opacity: 0.75;
            }
            .mobile-listing-signin span { white-space: nowrap; }
            .mobile-listing-signin:active { background: rgba(99,91,255,0.06); border-radius: 0 16px 16px 0; }
            .mobile-listing-actions {
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                gap: 6px;
                flex-shrink: 0;
            }
            .mobile-provider-link {
                color: #20135d;
                font-size: 11px;
                font-weight: 900;
                line-height: 1.1;
                text-decoration: none;
                border-bottom: 1px solid rgba(32,19,93,0.28);
                white-space: nowrap;
            }
            .mobile-listing-cta b {
                display: block;
                color: #20135d;
                font-size: 14px;
                font-weight: 900;
                line-height: 1.15;
            }
            .mobile-listing-cta small {
                display: block;
                margin-top: 3px;
                color: #5d6180;
                font-size: 11.5px;
                line-height: 1.25;
            }
            @media (prefers-reduced-motion: reduce) {
                .mobile-listing-cta {
                    transition:
                        opacity .01s linear,
                        max-height .01s linear,
                        margin-top .01s linear,
                        padding-top .01s linear,
                        padding-bottom .01s linear;
                }
                .mobile-listing-cta.is-dismissed {
                    transform: none;
                }
            }
            .nav-tab {
                flex-direction: column;
                align-items: center;
                gap: 4px;
                padding: 10px 28px 12px;
                font-size: 11px;
                font-weight: 500;
                border-bottom: 3px solid transparent;
                flex: 1;
                max-width: 120px;
            }
            .nav-tab.active { border-bottom: 3px solid var(--black); font-weight: 600; }
            .nav-icon { width: 48px; height: 48px; }
            .nav-tab-badge { top: -4px; right: 8px; font-size: 8px; padding: 2px 5px; }

            .main { padding: 16px 0 100px; }
            .sec { margin-bottom: 28px; padding: 0 20px; }
            .sec + .sec { padding-top: 20px; }

            .sec-head { align-items: flex-start; gap: 12px; margin-bottom: 16px; }
            .sec-title { font-size: 23px; line-height: 1.2; }
            .sec-link { min-height: 36px; font-size: 13px; padding: 6px 10px; }
            #therapists-section,
            #aa-meetings-section,
            #audio-library-section,
            #recovery-books-section,
            #recovery-blog-section,
            #explore-cities-section,
            #crisis-resources-section {
                margin-bottom: 28px;
            }
            #therapists-section .sec-title,
            #aa-meetings-section .sec-title {
                font-size: 24px;
                line-height: 1.22;
            }
            #audio-library-section > div:first-child,
            #recovery-books-section > div:first-child,
            #recovery-blog-section > div:first-child {
                align-items: flex-start !important;
                margin-bottom: 14px !important;
            }
            #audio-library-section h3,
            #recovery-books-section h3 {
                font-size: 21px !important;
            }
            #aa-meetings-section > a > .card {
                gap: 14px !important;
                padding: 16px !important;
            }
            #aa-meetings-section > a > .card > div:first-child {
                width: 58px !important;
                height: 58px !important;
                border-radius: 14px !important;
            }
            /* Cards: horizontal scroll, 2 visible like Airbnb mobile */
            .crow { 
                gap: 16px; 
                flex-direction: row;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                padding: 2px 6px 10px 0;
                margin-right: 0;
                scroll-padding: 0;
                -webkit-overflow-scrolling: touch;
            }
            .card {
                flex: 0 0 calc(49% - 8px);
                min-width: 136px;
            }
            .card-photo {
                aspect-ratio: 4 / 3;
                border-radius: 12px;
            }
            .card-info { padding: 8px 0 0; }
            .card-name { font-size: 14px; font-weight: 700; line-height: 1.24; }
            .card-star { font-size: 14px; }
            .card-sub { font-size: 14px; color: var(--gray-dark); }
            .card-cta { min-height: 32px; font-size: 13px; font-weight: 800; padding: 7px 12px; }
            .card-badge { font-size: 12px; padding: 5px 10px; border-radius: 20px; font-weight: 600; }

            .rnav-a { display: none; }

            .lead-sec { padding: 28px 20px; margin: 24px 12px; border-radius: 16px; }
            .lead-sec h2 { font-size: 20px; }
            .lead-form { flex-direction: column; }

            .bnav { display: flex; }
            .map-float { display: flex; }
            .footer { padding-bottom: calc(156px + env(safe-area-inset-bottom, 0px)); }
        }

        @media (max-width: 380px) {
            .card { flex: 0 0 calc(50% - 8px); min-width: 136px; }
            .card-name { font-size: 13px; }
            .sec { padding: 0 16px; }
            .sec-title { font-size: 20px; }
            .sec-link { font-size: 12px; padding: 5px 8px; }
        }


        /* === TAB SYSTEM === */
        .nav-tabs {
            display: flex;
            gap: 0;
            border-bottom: 1px solid var(--gray-light);
            padding: 0 16px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
        }
        .nav-tab {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 12px 16px;
            border-bottom: 3px solid transparent;
            color: var(--gray-dark);
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .nav-tab.active {
            color: var(--black);
            border-bottom-color: var(--brand);
        }
        .nav-tab span.material-symbols-outlined {
            font-size: 20px;
        }

        /* === CONTENT TABS === */
        .content-tabs {
            width: 100%;
        }
        .tab-content {
            animation: fadeIn 0.3s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        }

        /* === FORM ENHANCEMENTS === */
        .lead-input:focus {
            outline: none;
            border-color: var(--brand);
            background: #f0f7f3;
        }
        .lead-submit:active {
            background: var(--brand-dark);
            transform: scale(0.98);
        }

        /* Card placeholder - uses main .card-ph styles above */


        /* === SCROLL BEHAVIOR — HIDE SEARCH ON SCROLL DOWN === */
        header.header { transition: transform 0.3s ease; }
        header.header.scrolled-up { transform: none; }

        /* === CARD TAP STATES === */
        .card { transition: transform 0.15s ease, box-shadow 0.15s ease; }
        .card:active { transform: scale(0.98); }

        /* === SAM TYPING DOTS === */
        @keyframes samDots { 0%,80%,100% { opacity: 0.3; } 40% { opacity: 1; } }
        .sam-dot-1 { animation: samDots 1.4s infinite 0s; }
        .sam-dot-2 { animation: samDots 1.4s infinite 0.2s; }
        .sam-dot-3 { animation: samDots 1.4s infinite 0.4s; }

        /* === SMOOTH SCROLLBAR HIDE === */
        .crow, [style*="overflow-x"] { scrollbar-width: none; -ms-overflow-style: none; }
        .crow::-webkit-scrollbar, [style*="overflow-x"]::-webkit-scrollbar { display: none; }

        /* === SEARCH OVERLAY ANIMATION === */
        
        .fd-scroll-hint {
            position: fixed;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 301;
            animation: bounceDown 1.5s ease-in-out infinite;
            color: rgba(0,0,0,0.3);
            pointer-events: none;
        }
        .fd-scroll-hint .material-symbols-outlined { font-size: 28px; }
        @keyframes bounceDown {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }
        @keyframes shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        @keyframes slideUp {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }
        #search-results div[style*="cursor:pointer"]:hover { background: #f8fafc !important; }
        }
        }

        /* === BOTTOM NAV POLISH === */
        .bnav { backdrop-filter: blur(12px); background: rgba(255,255,255,0.95); }
        .bn { transition: color 0.15s ease; }
        .bn:active { transform: scale(0.92); }

        /* === MOBILE OPTIMIZATIONS === */

    

        /* ===== FACILITY DETAIL MODAL ===== */
        .fd-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: #fff;
            z-index: 10020;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            animation: fdSlideUp 0.3s ease;
        }
        @media (min-width: 601px) {
            .fd-overlay {
                top: 0; left: 50%; right: auto; bottom: 0;
                width: 480px;
                max-width: 480px;
                transform: translateX(-50%);
                border-radius: 0;
                box-shadow: 0 4px 24px rgba(0,0,0,0.15);
                animation: fdSlideUpDesktop 0.3s ease;
            }
            @keyframes fdSlideUpDesktop {
                from { transform: translateX(-50%) translateY(100%); }
                to { transform: translateX(-50%) translateY(0); }
            }
        }
        @media (min-width: 601px) {
            body.fd-open > *:not(.fd-overlay):not(.fd-backdrop) {
                filter: brightness(0.45) blur(2px);
                pointer-events: none;
                transition: filter 0.3s ease;
            }
        }
        .fd-closing {
            animation: slideDown 0.25s cubic-bezier(0.32, 0.72, 0, 1) forwards;
        }
        @keyframes slideDown {
            to { transform: translateY(100%); opacity: 0; }
        }
        @keyframes fdSlideUp {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }
        @media (min-width: 601px) {
            .fd-closing {
                animation: slideDownDesktop 0.25s cubic-bezier(0.32, 0.72, 0, 1) forwards;
            }
            @keyframes slideDownDesktop {
                to { transform: translateX(-50%) translateY(100%); opacity: 0; }
            }
        }
        #search-results div[style*="cursor:pointer"]:hover { background: #f8fafc !important; }
        }
            to { transform: translateY(100%); }
        }
        .fd-carousel::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 80px;
            background: linear-gradient(to bottom, rgba(0,0,0,0.35), transparent);
            z-index: 2;
            pointer-events: none;
        }
        .fd-topbar {
            position: sticky;
            top: 0;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            background: white;
            border-bottom: 1px solid var(--gray-light);
        }
        .fd-topbar-btn {
            width: 42px; height: 42px;
            border-radius: 50%;
            border: 2.5px solid #000;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.15s, transform 0.1s;
            color: #000;
            box-shadow: 0 2px 6px rgba(0,0,0,0.25);
        }
        .fd-topbar-btn:hover { background: var(--gray-light); transform: scale(1.05); }
        .fd-topbar-btn:active { transform: scale(0.95); }
        .fd-topbar-btn .material-symbols-outlined {
            font-size: 22px;
            color: #000;
            font-weight: 700;
            font-variation-settings: 'FILL' 0, 'wght' 700, 'GRAD' 0, 'opsz' 24;
        }
        .fd-carousel {
            position: relative;
            width: 100%;
            aspect-ratio: 3 / 2;
            overflow: hidden;
            background: var(--gray-bg);
        }
        .fd-carousel-track {
            display: flex;
            width: 100%;
            height: 100%;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }
        .fd-carousel-track::-webkit-scrollbar { display: none; }
        .fd-carousel-slide {
            flex: 0 0 100%;
            scroll-snap-align: start;
            background: linear-gradient(110deg, #f0f0f0 30%, #fafafa 50%, #f0f0f0 70%);
            background-size: 200% 100%;
            animation: shimmer 1.5s ease-in-out infinite;
        }
        .fd-carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        /* Desktop carousel arrows */
        .fd-carousel-arrow {
            display: none;
        }
        @media (min-width: 601px) {
            .fd-carousel-arrow {
                display: flex;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 36px;
                height: 36px;
                border-radius: 50%;
                background: rgba(255,255,255,0.9);
                backdrop-filter: blur(4px);
                -webkit-backdrop-filter: blur(4px);
                border: none;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                z-index: 3;
                box-shadow: 0 2px 6px rgba(0,0,0,0.15);
                opacity: 0;
                transition: opacity 0.2s;
            }
            .fd-carousel:hover .fd-carousel-arrow {
                opacity: 1;
            }
            .fd-carousel-arrow:hover {
                background: #fff;
                box-shadow: 0 2px 8px rgba(0,0,0,0.25);
            }
            .fd-carousel-arrow.prev { left: 12px; }
            .fd-carousel-arrow.next { right: 12px; }
            .fd-carousel-arrow svg {
                width: 16px;
                height: 16px;
                fill: none;
                stroke: #222;
                stroke-width: 2.5;
                stroke-linecap: round;
                stroke-linejoin: round;
            }
        }
        .fd-dots {
            display: flex;
            justify-content: center;
            gap: 6px;
            padding: 10px 0 4px;
            position: absolute;
            bottom: 8px;
            left: 0; right: 0;
            z-index: 2;
        }
        .fd-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            transition: all 0.3s ease;
        }
        .fd-dot.active {
            background: #fff;
            width: 8px; height: 8px;
        }
        .fd-type-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text);
            z-index: 3;
            letter-spacing: 0.3px;
        }
        .fd-carousel-counter {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(0,0,0,0.6);
            color: white;
            padding: 4px 10px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
        }
        .fd-body { border-radius: 16px 16px 0 0;
            margin-top: -16px;
            position: relative;
            background: #fff;
            z-index: 1;
            padding: 20px; padding-bottom: 100px; }
        .fd-title { font-size: 24px; font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 4px;     letter-spacing: 0;
        }
        .fd-subtitle { font-size: 15px; color: #717171; margin-bottom: 16px; }
        .fd-divider { height: 1px; background: var(--gray-light); margin: 20px 0; }
        .fd-rating-bar {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
            border: 1px solid var(--gray-light);
            border-radius: 12px;
            margin-bottom: 20px;
            transition: box-shadow 0.2s;
        }
        .fd-rating-bar:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
        .fd-rating-big { font-size: 40px; font-weight: 800; line-height: 1; }
        .fd-stars { display: flex; gap: 2px; }
        .fd-stars svg { width: 14px; height: 14px; fill: var(--text); }
        .fd-rating-text { font-size: 13px; color: #717171; }
        .fd-trust-panel {
            margin: 16px 0 20px;
            border: 1px solid #dbeee2;
            border-radius: 14px;
            background: #f6fbf8;
            padding: 14px;
        }
        .fd-trust-panel.npi {
            border-color: #d7e5ff;
            background: #f7faff;
        }
        .fd-trust-panel.npi .fd-trust-icon {
            background: #e7f0ff;
            color: #315f96;
        }
        .fd-trust-panel.npi .fd-trust-title { color: #244b78; }
        .fd-trust-panel.npi .fd-trust-chip { border-color: #d7e5ff; color: #244b78; }
        .fd-trust-head {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
        }
        .fd-trust-icon {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            background: #e5f5eb;
            color: #236347;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
        }
        .fd-trust-icon .material-symbols-outlined { font-size: 19px; }
        .fd-trust-title { font-size: 15px; font-weight: 800; color: #1f513b; letter-spacing: 0; }
        .fd-trust-note { font-size: 13px; line-height: 1.4; color: #5b6f64; margin-top: 2px; }
        .fd-trust-group { margin-top: 12px; }
        .fd-trust-label {
            font-size: 12px;
            font-weight: 800;
            color: #43584d;
            margin-bottom: 7px;
        }
        .fd-trust-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
        }
        .fd-trust-chip {
            max-width: 100%;
            padding: 6px 9px;
            border-radius: 999px;
            background: #fff;
            border: 1px solid #d8e9df;
            color: #2f4f3f;
            font-size: 12px;
            line-height: 1.25;
            overflow-wrap: anywhere;
        }
        .fd-care-nav {
            margin: 14px 0 18px;
        }
        .fd-care-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 10px;
        }
        .fd-care-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0;
        }
        .fd-care-note {
            font-size: 12px;
            color: #717171;
            white-space: nowrap;
        }
        .fd-care-options {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
        }
        .fd-care-option {
            display: flex;
            align-items: center;
            gap: 9px;
            min-width: 0;
            padding: 10px;
            border: 1px solid #e5ece7;
            border-radius: 14px;
            background: #fff;
            color: var(--text);
            text-decoration: none;
            transition: border-color 0.16s, background 0.16s, box-shadow 0.16s;
        }
        .fd-care-option:hover {
            border-color: #b7d9c3;
            box-shadow: 0 2px 10px rgba(31, 102, 56, 0.08);
        }
        .fd-care-option.active {
            border-color: #248a4b;
            background: #effaf3;
        }
        .fd-care-icon {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background: #f4f7f5;
            color: #2f6f4d;
        }
        .fd-care-option.active .fd-care-icon {
            background: #dff3e6;
            color: #1e7a40;
        }
        .fd-care-icon .material-symbols-outlined {
            font-size: 21px;
        }
        .fd-care-copy {
            min-width: 0;
        }
        .fd-care-label {
            font-size: 13px;
            font-weight: 700;
            line-height: 1.1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .fd-care-count {
            margin-top: 3px;
            font-size: 12px;
            color: #717171;
            white-space: nowrap;
        }
        .fd-highlights {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            margin: 20px 0;
        }
        .fd-highlight {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px;
            border: 1px solid #edf1ee;
            border-radius: 14px;
            background: #fff;
        }
        .fd-highlight .material-symbols-outlined {
            font-size: 26px;
            color: var(--brand);
            background: #f0faf0;
            width: 48px; height: 48px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 12px;
            flex-shrink: 0;
        }
        .fd-highlight-text h4 { font-size: 15px; font-weight: 600; margin: 0; }
        .fd-highlight-text p { font-size: 14px; color: #717171; margin: 2px 0 0; }
        .fd-section-title { font-size: 20px; font-weight: 700; margin-bottom: 12px;     letter-spacing: 0;
        }
        .fd-description { font-size: 15px; line-height: 1.6; color: #484848; transition: max-height 0.3s ease; }
        .fd-amenities {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        .fd-amenity {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }
        .fd-amenity .material-symbols-outlined { font-size: 22px; color: var(--text); }
        .fd-map {
            width: 100%;
            height: 200px;
            border-radius: 12px;
            border: 1px solid var(--gray-light);
            overflow: hidden;
        }
        .fd-map iframe { width: 100%; height: 100%; border: none; }
        .fd-bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10030;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            background: white;
            border-top: 1px solid var(--gray-light);
            gap: 12px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
        }
        .fd-bottom-info { flex: 1; }
        .fd-bottom-info .fd-rating-sm {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 14px;
            font-weight: 600;
        }
        .fd-bottom-info .fd-rating-sm svg { width: 12px; height: 12px; fill: var(--text); }
        .fd-bottom-type { font-size: 13px; color: #717171; }
        @media (min-width: 601px) {
            .fd-bottom-bar {
                left: 50%;
                right: auto;
                width: 480px;
                max-width: 480px;
                transform: translateX(-50%);
                border-radius: 0 0 0 0;
            }
        }
        @media (max-width: 600px) {
            .fd-care-head {
                align-items: flex-start;
                flex-direction: column;
                gap: 2px;
            }
            .fd-care-note {
                white-space: normal;
            }
            .fd-care-options {
                display: flex;
                overflow-x: auto;
                gap: 10px;
                margin: 0 -20px;
                padding: 0 20px 4px;
                scroll-snap-type: x proximity;
                -webkit-overflow-scrolling: touch;
            }
            .fd-care-options::-webkit-scrollbar {
                display: none;
            }
            .fd-care-option {
                min-width: 146px;
                scroll-snap-align: start;
            }
        }
        .fd-cta-call {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 12px 20px;
            background: linear-gradient(135deg, #2d8f4e, #1a7a3a);
            color: #fff;
            border-radius: 12px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            box-shadow: 0 2px 8px rgba(45,143,78,0.3);
            transition: transform 0.15s, box-shadow 0.15s;
        }
        .fd-cta-call .material-symbols-outlined { font-size: 18px; }
        
        .fd-cta-call:active {
            transform: scale(0.97);
            box-shadow: 0 1px 4px rgba(45,143,78,0.3);
        }
        .fd-cta-web {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 14px 20px;
            background: white;
            color: var(--text);
            border: 1px solid var(--text);
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            font-family: var(--font);
            cursor: pointer;
            text-decoration: none;
            white-space: nowrap;
        }
        .fd-cta-web:active {
            transform: scale(0.97);
            background: #f7f7f7;
        }

/* Hide scrollbar on horizontal scroll sections */
.audio-scroll::-webkit-scrollbar, section div[style*="overflow-x"]::-webkit-scrollbar { display:none; }
.audio-scroll, section div[style*="overflow-x"] { -ms-overflow-style:none; scrollbar-width:none; }



/* === EXPLORE CITIES SECTION === */
}

/* === CITY DIRECTORY OVERLAY === */
.cd-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    animation: cdSlideUp 0.25s ease-out;
}
@keyframes cdSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
        }
        #search-results div[style*="cursor:pointer"]:hover { background: #f8fafc !important; }
}
.cd-overlay.cd-closing {
    animation: cdSlideDown 0.25s ease-in forwards;
}
@keyframes cdSlideDown {
    from { transform: translateY(0); }
    to { transform: translateY(100%); }
}
.cd-header {
    padding: 12px 16px 0;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
    background: #fff;
}
.cd-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.cd-header-row h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}
.cd-close {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: none;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}
.cd-close span { font-size: 18px; color: #374151; }
.cd-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f3f4f6;
    border-radius: 10px;
    margin-bottom: 12px;
}
.cd-search span { font-size: 18px; color: #6e7788; }
.cd-search input {
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: var(--font);
    outline: none;
    width: 100%;
    color: #1a1a1a;
}
.cd-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 16px 100px;
}
.cd-state-group { margin-bottom: 20px; }
.cd-state-label {
    font-size: 12px;
    font-weight: 700;
    color: #6e7788;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 0 6px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 4px;
}
.cd-city-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 4px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f9fafb;
}
.cd-city-link:active { background: #f9fafb; }
.cd-city-name {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}
.cd-city-count {
    font-size: 12px;
    color: #6e7788;
    white-space: nowrap;
}
.cd-no-results {
    text-align: center;
    padding: 40px 16px;
    color: #6e7788;
    font-size: 15px;
}


        /* City Cards */
        #explore-cities-section { padding-top: 22px; }
        #explore-cities-section .sec-head { margin-bottom: 14px; gap: 12px; }
        #explore-cities-section .sec-title { font-size: 19px; line-height: 1.16; }
        #explore-cities-section .crow { gap: 12px; padding-bottom: 8px; }
        .city-card { flex: 0 0 138px; width: 138px; min-width: 138px; scroll-snap-align: start; border-radius: 10px; overflow: hidden; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s; }
        .city-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
        .city-card-photo { position: relative; height: 82px; overflow: hidden; }
        .city-card-photo img { width: 100%; height: 100%; object-fit: cover; }
        .city-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%); }
        .city-card-state { position: absolute; bottom: 9px; left: 11px; right: 10px; color: #fff; font-size: 13px; line-height: 1.1; font-weight: 700; text-shadow: 0 1px 4px rgba(0,0,0,0.3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .city-card-info { padding: 6px 9px 8px; }
        .city-card-cities { font-size: 11px; line-height: 1.2; color: #717171; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        @media (min-width: 768px) {
            #explore-cities-section .sec-title { font-size: 22px; }
            .city-card { flex-basis: 164px; width: 164px; min-width: 164px; border-radius: 12px; }
            .city-card-photo { height: 96px; }
            .city-card-state { font-size: 14px; bottom: 10px; left: 12px; }
            .city-card-cities { font-size: 12px; }
        }

        /* Show All Grid View */
        .show-all-grid { display: none; padding: 0 0 20px; }
        .show-all-grid.active { display: block; }
        .show-all-filters { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
        .show-all-pill { padding: 8px 16px; border-radius: 20px; border: 1.5px solid #ddd; background: #fff; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s; color: #222; }
        .show-all-pill.active { background: #222; color: #fff; border-color: #222; }
        .show-all-pill:hover:not(.active) { border-color: #222; }
        .show-all-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
        @media (min-width: 768px) { .show-all-wrap { grid-template-columns: repeat(3, 1fr); } }
        @media (min-width: 1024px) { .show-all-wrap { grid-template-columns: repeat(4, 1fr); } }
        .show-all-card { border-radius: 12px; overflow: hidden; cursor: pointer; }
        .show-all-card .card-photo { aspect-ratio: 1; border-radius: 12px; overflow: hidden; }
        .show-all-card .card-photo img { width: 100%; height: 100%; object-fit: cover; }
        .show-all-card .card-info { padding: 8px 0; }
        .show-all-card .card-name { font-size: 15px; font-weight: 600; }
        .show-all-card .card-sub { font-size: 13px; color: #717171; }
        .show-all-back { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 500; color: #222; cursor: pointer; margin-bottom: 16px; padding: 6px 12px; border-radius: 20px; border: 1.5px solid #ddd; background: #fff; }
        .show-all-back:hover { border-color: #222; }
        .show-all-count { font-size: 14px; color: #717171; margin-left: auto; }

        /* Desktop directory polish: keep the mobile-first flow, compose it for wide screens */
        .desktop-hero { display: none; }
        @media (min-width: 745px) {
            .header {
                box-shadow: 0 1px 0 rgba(34,34,34,0.04);
            }
            .header-inner {
                max-width: 1440px;
                height: 66px;
                padding: 0 32px;
            }
            .logo {
                font-size: 19px;
                font-weight: 800;
            }
            .globe-btn {
                width: 42px;
                height: 42px;
            }
            .header-right {
                gap: 10px;
            }
            .desktop-header-link,
            .desktop-provider-link,
            .desktop-crisis-link {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                min-height: 42px;
                padding: 0 16px;
                border: 1px solid #d8e5dc;
                border-radius: 999px;
                background: #fff;
                color: var(--brand-dark);
                font-size: 14px;
                font-weight: 800;
                line-height: 1;
                white-space: nowrap;
                text-decoration: none;
                box-shadow: 0 1px 2px rgba(16,24,40,0.04);
            }
            .desktop-header-link:hover {
                border-color: rgba(45,106,79,0.34);
                background: #f7fbf8;
            }
            .desktop-provider-link {
                border-color: #e5e7eb;
                color: #334155;
            }
            .desktop-provider-link:hover {
                border-color: rgba(99,91,255,0.32);
                background: #fbfaff;
            }
            .desktop-crisis-link {
                border-color: #fecaca;
                background: #fff7f7;
                color: #b91c1c;
            }
            .desktop-crisis-link:hover {
                background: #fef2f2;
                border-color: #fca5a5;
            }
            .header-search {
                max-width: 780px;
                padding: 0 32px 14px;
            }
            .search-expanded {
                min-height: 64px;
                box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 12px 34px rgba(16,24,40,0.09);
            }
            .sf { padding: 10px 24px; }
            .sf-label { font-size: 11px; font-weight: 700; }
            .sf-value { font-size: 13px; }
            .s-btn {
                width: 44px;
                height: 44px;
                margin-left: 6px;
            }
            .content-tabs {
                max-width: 1440px;
                margin: 0 auto;
                padding: 28px 32px 104px;
            }
            .desktop-hero {
                display: grid;
                grid-template-columns: minmax(360px, 1fr) minmax(440px, 1fr);
                gap: 28px;
                align-items: stretch;
                margin: 0 0 34px;
                padding: 28px;
                border: 1px solid #e5ece7;
                border-radius: 24px;
                background:
                    linear-gradient(135deg, rgba(240,253,244,0.96) 0%, rgba(255,255,255,0.98) 48%, rgba(239,246,255,0.78) 100%);
                box-shadow: 0 18px 46px rgba(27,67,50,0.08);
            }
            .desktop-hero-copy {
                display: flex;
                flex-direction: column;
                justify-content: center;
                min-width: 0;
            }
            .desktop-kicker {
                margin: 0 0 10px;
                color: var(--brand);
                font-size: 13px;
                font-weight: 800;
                letter-spacing: 0.04em;
                text-transform: uppercase;
            }
            .desktop-hero h2 {
                margin: 0;
                max-width: 11ch;
                color: var(--black);
                font-size: clamp(34px, 3vw, 48px);
                line-height: 1.02;
                font-weight: 850;
                letter-spacing: 0;
            }
            .desktop-hero-copy > p:not(.desktop-kicker) {
                max-width: 54ch;
                margin: 16px 0 0;
                color: #4b5563;
                font-size: 16px;
                line-height: 1.55;
            }
            .desktop-listing-trust {
                display: flex;
                align-items: center;
                gap: 12px;
                width: min(100%, 520px);
                margin-top: 20px;
                padding: 14px 15px;
                border: 1px solid #ded7ff;
                border-radius: 16px;
                background: #fbfaff;
                color: #33215f;
                text-decoration: none;
                box-shadow: 0 10px 28px rgba(99,91,255,0.12);
            }
            .desktop-listing-trust b {
                display: block;
                color: #20135d;
                font-size: 14px;
                line-height: 1.2;
            }
            .desktop-listing-trust small {
                display: block;
                margin-top: 3px;
                color: #5d6180;
                font-size: 12px;
                line-height: 1.25;
            }
            .desktop-listing-trust .material-symbols-outlined {
                margin-left: auto;
                color: #635bff;
                font-size: 20px;
            }
            .desktop-hero-actions {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 10px;
                align-content: center;
            }
            .desktop-action {
                display: grid;
                grid-template-columns: 44px minmax(0, 1fr);
                gap: 12px;
                align-items: center;
                min-height: 72px;
                padding: 12px 14px;
                border: 1px solid rgba(45,106,79,0.16);
                border-radius: 14px;
                background: rgba(255,255,255,0.82);
                color: var(--black);
                text-decoration: none;
                box-shadow: 0 1px 2px rgba(16,24,40,0.04);
                transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
            }
            .desktop-action:hover {
                transform: translateY(-2px);
                border-color: rgba(45,106,79,0.34);
                box-shadow: 0 10px 24px rgba(16,24,40,0.10);
            }
            .desktop-action .material-symbols-outlined {
                width: 44px;
                height: 44px;
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #ecfdf5;
                color: var(--brand);
                font-size: 24px;
                font-variation-settings: 'FILL' 1;
            }
            .desktop-action b {
                display: block;
                font-size: 14px;
                line-height: 1.2;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            .desktop-action small {
                display: block;
                margin-top: 2px;
                color: #667085;
                font-size: 12px;
                line-height: 1.25;
            }
            .sec {
                padding: 0;
                margin-bottom: 42px;
            }
            .sec + .sec {
                padding-top: 34px;
                border-top-color: #edf0ed;
            }
            #therapists-section,
            #aa-meetings-section {
                padding-top: 34px !important;
            }
            #audio-library-section,
            #recovery-books-section,
            #recovery-blog-section,
            #explore-cities-section,
            #crisis-resources-section {
                padding: 34px 0 0 !important;
                margin-bottom: 42px;
            }
            .sec-head {
                margin-bottom: 18px;
                align-items: center;
            }
            .sec-title {
                font-size: 27px;
                line-height: 1.12;
                font-weight: 800;
            }
            .sec-link {
                padding: 9px 14px;
                border-radius: 999px;
                font-size: 14px;
                background: #fff;
            }
            .crow {
                gap: 20px;
                padding: 2px 2px 16px;
                scroll-padding: 2px;
            }
            .card {
                flex: 0 0 clamp(195px, calc((100% - 80px) / 5), 260px);
                min-width: 195px;
                border-radius: 14px;
            }
            .card:hover {
                transform: translateY(-2px);
            }
            .card-photo {
                border-radius: 14px;
                box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
            }
            .card-info { padding: 12px 2px 0; }
            .card-name {
                font-size: 15px;
                line-height: 1.28;
                font-weight: 700;
            }
            .card-sub {
                font-size: 13px;
                margin-top: 4px;
            }
            .card-cta {
                display: inline-flex;
                margin-top: 7px;
                font-size: 13px;
                font-weight: 800;
            }
            .card-heart {
                top: 10px;
                right: 10px;
            }
            .card-heart svg {
                width: 27px;
                height: 27px;
            }
            .rnav-a {
                top: 38%;
                width: 42px;
                height: 42px;
                border-color: rgba(0,0,0,0.12);
                box-shadow: 0 8px 18px rgba(16,24,40,0.16);
                opacity: 0;
            }
            .rnav:hover .rnav-a,
            .rnav:focus-within .rnav-a {
                opacity: 1;
            }
            .rnav-a.l { left: -21px; }
            .rnav-a.r { right: -21px; }
            #aa-meetings-section > a > .card,
            #therapists-section > a > .card {
                max-width: 820px;
            }
            #aa-meetings-section > a > .card {
                max-width: none;
                min-height: 126px;
            }
            #audio-library-section > div:first-child,
            #recovery-books-section > div:first-child,
            #recovery-blog-section > div:first-child {
                margin-bottom: 16px !important;
            }
            #audio-library-section h3,
            #recovery-books-section h3,
            #recovery-blog-section h3,
            #crisis-resources-section h3 {
                font-size: 24px !important;
                line-height: 1.14;
            }
            #audio-library-section .audio-scroll > a,
            #recovery-books-section div[style*="overflow-x"] > a {
                flex: 0 0 150px !important;
            }
            #audio-library-section .audio-scroll,
            #recovery-books-section > div[style*="overflow-x"] {
                display: grid !important;
                grid-template-columns: repeat(6, minmax(0, 1fr));
                gap: 14px !important;
                overflow: visible !important;
                scroll-snap-type: none !important;
                padding-bottom: 0 !important;
            }
            #audio-library-section .audio-scroll > a > div,
            #recovery-books-section div[style*="overflow-x"] > a > div {
                border-radius: 14px !important;
                height: 100%;
                box-shadow: 0 1px 2px rgba(16,24,40,0.06);
            }
            #audio-library-section .audio-scroll > a > div > div:first-child {
                height: 112px !important;
            }
            #recovery-books-section div[style*="overflow-x"] > a div[style*="width:110px"] {
                width: 100% !important;
                height: 220px !important;
            }
            #recovery-blog-section .crow {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 20px;
                overflow: visible;
                scroll-snap-type: none;
                padding-bottom: 0;
            }
            .blog-card-link {
                flex: auto !important;
                max-width: 230px !important;
            }
            #recovery-blog-section .blog-card-link {
                max-width: none !important;
            }
            #recovery-blog-section .blog-photo {
                aspect-ratio: 1.78 / 1;
            }
            #recovery-blog-section .crow {
                gap: 16px;
            }
            #recovery-blog-section .blog-card .card-info {
                padding: 12px 14px;
            }
            #recovery-blog-section .blog-card .card-name {
                font-size: 15px;
                line-height: 1.3;
            }
            #recovery-blog-section .blog-card .card-sub {
                font-size: 12px;
                margin-top: 4px;
            }
            #explore-cities-section .sec-title {
                font-size: 27px;
            }
            .city-card {
                flex-basis: 220px;
                width: 220px;
                min-width: 220px;
                border-radius: 14px;
                box-shadow: 0 1px 3px rgba(16,24,40,0.08);
            }
            .city-card-photo { height: 132px; }
            .city-card-state { font-size: 16px; }
            .city-card-cities { font-size: 13px; }
            .show-all-wrap {
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 22px;
            }
            #crisis-resources-section > div[style*="display:flex"] {
                display: grid !important;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 14px !important;
            }
            #crisis-resources-section > div > a > div {
                min-height: 106px;
                align-items: center !important;
                border-radius: 16px !important;
                box-shadow: 0 1px 2px rgba(16,24,40,0.05);
            }
            #crisis-resources-section > div > a > div > div:nth-child(2) {
                min-width: 0;
            }
            .footer {
                max-width: 1440px;
                padding-left: 32px;
                padding-right: 32px;
            }
        }
        @media (min-width: 745px) and (max-width: 1180px) {
            .desktop-hero {
                grid-template-columns: 1fr;
            }
            .desktop-hero h2 {
                max-width: 18ch;
            }
            .desktop-hero-actions {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 8px;
            }
            .desktop-action {
                min-height: 64px;
                padding: 10px 12px;
            }
            .desktop-action b {
                font-size: 13px;
                white-space: normal;
            }
            .desktop-action small {
                font-size: 11px;
            }
            .card {
                flex-basis: calc((100% - 60px) / 4);
            }
            #audio-library-section .audio-scroll {
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 12px !important;
            }
            #audio-library-section .audio-scroll > a > div > div:first-child {
                height: 96px !important;
            }
            #recovery-books-section > div[style*="overflow-x"],
            #recovery-blog-section .crow,
            #crisis-resources-section > div[style*="display:flex"] {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
            .desktop-header-link {
                display: none;
            }
        }
        @media (min-width: 1500px) {
            .content-tabs,
            .header-inner,
            .footer {
                max-width: 1500px;
            }
            .card {
                flex-basis: calc((100% - 100px) / 6);
            }
        }

	    