/* ===== SHARED.CSS — Shortlist city page styles ===== */
/* Extracted from inline <style> — shared across all city pages */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
button, input, select, textarea { font-family: inherit; }

:root {
    --black: #1A1A2E;
    --charcoal: #2D3748;
    --gray: #5A6B7A;
    --light-gray: #5F6F7E;
    --rule: #D0D8E0;
    --pale: #F2F0F7;
    --cream: #F8F7FC;
    --white: #FFFFFF;
    --highlight: #0B857A;
    --highlight-soft: #CCFBF1;
    --pool: #0B857A;
    --sage: #64748B;
    --sky: #D8C8F0;
    --grade-A: #0B857A;
    --grade-B: #1557B0;
    --grade-C: #D97706;
    --grade-D: #DC2626;
    --purple: #7C3AED;
    --muted: #64748B;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* Branded cursor — bookmark logo replaces default "?" help cursor */
.sl-hint, .db-card__diff-icon, abbr[title] {
    cursor: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAYAAACEYr13AAAAUElEQVR4nGNkYGBg4G6tmsZABvha3ZbFQK4BMD1MDBQCplEDGEYNYBgRBnATyGgshDSCsiwym6At3K1V03DZiq4ORDOiS+C0BYshVClQKAYAEC0kYUViEQEAAAAASUVORK5CYII=") 8 10, help !important;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    display: flex; flex-direction: column; min-height: 100vh;
}
main, .content { flex: 1;
    overflow-wrap: break-word;
    word-break: break-word;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}
main { flex: 1; }

/* ===== FOCUS STATES (keyboard accessibility) ===== */
:focus-visible {
    outline: 2px solid var(--pool);
    outline-offset: 2px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: none;
    border-color: var(--pool);
    box-shadow: 0 0 0 2px rgba(11,133,122,0.2);
}
a:focus:not(:focus-visible) { outline: none; }

/* ===== NAV ACTIVE STATE ===== */
.nav-link--active { color: var(--pool); }

/* ===== TYPOGRAPHY ===== */
.serif { font-family: 'DM Serif Display', Georgia, serif; }
.caps { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.7rem; font-weight: 700; }
.label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.65rem; font-weight: 700; color: var(--gray); }

h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.1; }

a { color: var(--charcoal); text-decoration: none; }
a:hover { color: var(--black); }

/* ===== HIGHLIGHT ===== */
.hl {
    text-decoration: underline;
    text-decoration-color: var(--pool);
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    transition: color 0.2s;
}
.hl:hover { color: var(--pool); }
a.hl { text-decoration: underline; text-decoration-color: var(--pool); text-underline-offset: 3px; }
a.hl:hover { color: var(--pool); }

/* ===== LAYOUT ===== */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.wrap--narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.wrap--wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* ===== MAIN NAV (publication masthead) ===== */
.masthead {
    padding: 1.5rem 0 1rem;
    border-bottom: 1px solid var(--black);
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.masthead__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.masthead__logo {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 1.65rem;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.masthead__logo span { color: var(--pool); }
.masthead__logo svg { flex-shrink: 0; }
.masthead__nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    list-style: none;
}
.masthead__nav li {
    display: flex;
    align-items: center;
}
.masthead__nav a {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--charcoal);
    text-decoration: none;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}
.masthead__nav a:hover { border-color: var(--pool); color: var(--black); }
.masthead__nav .signin-nav { color: var(--gray); font-weight: 500; border-bottom: none; }
.masthead__nav .signin-nav:hover { color: var(--pool); border-color: transparent; }

/* Nav dropdown (Free Tools) */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-dropdown__trigger { cursor: pointer; }
.nav-dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 0.5rem;
    z-index: 200;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.nav-dropdown--open .nav-dropdown__menu { display: block; }
.nav-dropdown__menu-inner {
    background: var(--white);
    border: 1px solid var(--rule);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 0.5rem 0;
    min-width: 180px;
}
.nav-dropdown__menu-inner a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: none;
    transition: all 0.15s;
}
.nav-dropdown__menu-inner a:hover {
    color: var(--pool);
    background: var(--pale);
    border-bottom: none;
}

/* ===== SECTION NAV (neighborhoods) ===== */
.section-nav {
    border-bottom: 1px solid var(--rule);
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
}
.section-nav::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2.5rem;
    background: linear-gradient(to right, transparent, var(--white));
    pointer-events: none;
    z-index: 1;
}
.section-nav__label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--light-gray);
    margin-right: 0.75rem;
    flex: 0 0 auto;
}
.section-nav__scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    touch-action: pan-x;
}
.section-nav__scroll::-webkit-scrollbar { display: none; }
.section-nav__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
}
.section-nav a {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray);
    padding: 0.35rem 0.85rem;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.15s;
    flex: 0 0 auto;
    white-space: nowrap;
}
.section-nav__divider {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    padding: 0.35rem 0.5rem 0.35rem 0.75rem;
    flex: 0 0 auto;
    white-space: nowrap;
    border-left: 1px solid var(--rule);
    margin-left: 0.35rem;
}
.section-nav a:hover { background: var(--pale); color: var(--black); }
.section-nav a.active { background: var(--black); color: var(--white); }


/* ===== HERO ===== */
.hero {
    padding: 3.5rem 0 1rem;
    border-bottom: none;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}
.hero__main h1 {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 1.25rem;
}
.hero__deck {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--gray);
    max-width: 520px;
    margin-bottom: 1.5rem;
}
.hero__proof {
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--gray);
    max-width: 520px;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-top: 0.75rem;
}
.hero__proof svg { flex-shrink: 0; position: relative; top: 1px; }
.hero__byline {
    font-size: 0.75rem;
    color: var(--light-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hero__byline strong { color: var(--charcoal); font-weight: 600; }
.hero__byline .sep { color: var(--rule); }

/* Featured guide card in hero */
.featured-guide {
    background: var(--white);
    border: 1px solid var(--rule);
    padding: 0;
    text-decoration: none;
    display: block;
    transition: all 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.featured-guide:hover { border-color: var(--black); box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.featured-guide__img {
    width: 100%;
    height: 220px;
    background: var(--pale);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.featured-guide__img-text {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.4rem;
    color: var(--black);
    text-align: center;
    padding: 1.5rem;
    line-height: 1.2;
}
.featured-guide__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--sage);
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.6rem;
    color: var(--white);
    z-index: 2;
}
.featured-guide__body {
    padding: 1.25rem 1.5rem 1.5rem;
}
.featured-guide__tag {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pool);
    margin-bottom: 0.5rem;
}
.featured-guide__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 0.6rem;
}
.featured-guide__desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== CONTENT SECTIONS ===== */
.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 1.5rem 0 1rem;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 1.5rem;
}
.section-header h2 {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--black);
    letter-spacing: 0.02em;
}
/* ===== DATA PREVIEW TABLE ===== */
.data-preview {
    padding: 1rem 0 0;
    border-top: 1px solid var(--rule);
}
.db-filter-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.db-filter-select {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--charcoal);
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: 0.45rem 2rem 0.45rem 0.75rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A99A8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.65rem center;
    transition: border-color 0.15s;
    min-width: 0;
}
.db-filter-select:hover {
    border-color: var(--charcoal);
}
.db-filter-select:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 2px rgba(124,58,237,0.15);
}
.data-preview__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    margin-top: 1.5rem;
    position: relative;
}
.data-preview__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
    min-width: 860px;
}
.data-preview__table thead th {
    text-align: left;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--black);
    white-space: nowrap;
}
.data-preview__table thead th.locked-col { color: var(--light-gray); }
.data-preview__table tbody td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--rule);
    color: var(--charcoal);
    vertical-align: middle;
}
.data-preview__table tbody tr:nth-child(even) { background: #FAFAFA; }
.data-preview__table tbody tr:hover { background: var(--pale); }
.data-preview__table .provider-name { font-weight: 600; color: var(--black); }
.data-preview__table .cat-label { font-size: 0.65rem; font-weight: 600; color: #7C3AED; }
.data-preview__table .score-cell { font-weight: 800; color: #1557B0; }
.data-preview__table .verified-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sage);
}
.data-preview__table .locked {
    color: transparent;
    text-shadow: 0 0 8px rgba(90,107,122,0.4);
    user-select: none;
    pointer-events: none;
}
.data-preview__table .locked-col { position: relative; }
.data-preview__cta {
    text-align: center;
    padding: 2.5rem 0 3rem;
}
.data-preview__cta p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
}
.data-preview__cta a {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    background: var(--pool);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.2s;
}
.data-preview__cta a:hover { background: var(--black); }

/* ===== THE PITCH (service section) ===== */
.the-pitch {
    background: var(--black);
    color: var(--white);
    padding: 5rem 0;
    margin-top: 2rem;
}
.the-pitch__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.the-pitch h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}
.the-pitch__lead {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ===== NEWSLETTER SIGNUP ===== */
.newsletter {
    background: var(--pool);
    padding: 4rem 0;
}
.newsletter__inner {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}
.newsletter h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.newsletter__sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.newsletter__form {
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
}
.newsletter__form input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--rule);
    border-right: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    background: var(--white);
    outline: none;
}
.newsletter__form input::placeholder { color: var(--light-gray); }
.newsletter__form input:focus { border-color: var(--pool); }
.newsletter__form button {
    padding: 0.85rem 2rem;
    background: var(--white);
    color: var(--pool);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.newsletter__form button:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.newsletter__fine {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.75rem;
}

/* ===== EMAIL GATE (inline capture) ===== */
.email-gate {
    margin: 2.5rem 0;
    padding: 2rem 1.75rem;
    border: 1px solid var(--rule);
    text-align: center;
    background: var(--cream);
}
.email-gate__headline {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0.5rem;
}
.email-gate__subtext {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.email-gate__form {
    display: flex;
    gap: 0;
    max-width: 400px;
    margin: 0 auto;
}
.email-gate__input {
    flex: 1;
    padding: 0.65rem 1rem;
    border: 1px solid var(--black);
    border-right: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    outline: none;
    background: var(--white);
    min-height: 44px;
}
.email-gate__btn {
    padding: 0.65rem 1.25rem;
    background: var(--pool);
    border: 1px solid var(--pool);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    white-space: nowrap;
    min-height: 44px;
    transition: opacity 0.2s;
}
.email-gate__btn:hover { opacity: 0.9; }
.email-gate__msg {
    font-size: 0.72rem;
    margin-top: 0.5rem;
    min-height: 1.2rem;
}

@media (max-width: 600px) {
    .email-gate { padding: 1.5rem 1.25rem; margin: 2rem 0; }
    .email-gate__headline { font-size: 1.15rem; }
    .email-gate__form { flex-direction: column; }
    .email-gate__input { border-right: 1px solid var(--black); border-bottom: none; }
    .email-gate__btn { min-height: 44px; }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--rule);
}
.about-section__grid { max-width: 680px; }
.about-section__text h2 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.about-section__text p {
    font-size: 0.92rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.about-section__text p strong { color: var(--black); }
.about-section__stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rule);
}
.about-section__stat-num {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.6rem;
    color: var(--black);
}
.about-section__stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-top: 0.15rem;
}

/* ===== FAQ ===== */
.faq { padding: 3rem 0 4rem; }
.faq__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem;
}
@media (max-width: 700px) { .faq__grid { grid-template-columns: 1fr; gap: 2rem; } }
.faq__item {
    border-left: 2px solid var(--pool);
    padding-left: 1.2rem;
}
.faq__q {
    display: block; background: none; border: none; padding: 0; margin: 0 0 0.5rem;
    text-align: left; font-family: 'Inter', sans-serif;
    font-size: 0.85rem; font-weight: 600; color: var(--black); letter-spacing: -0.01em;
}
.faq__a {
    font-size: 0.82rem; color: var(--gray); line-height: 1.7;
}

/* ===== SHARE BAR ===== */
.share-bar {
    padding: 2.5rem 2rem;
    text-align: center;
    background: var(--pale);
    border-top: 1px solid var(--rule);
}
.share-bar__inner {
    max-width: 480px;
    margin: 0 auto;
}
.share-bar__text {
    font-size: 0.92rem;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.share-bar__text strong { color: var(--black); }
.share-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.75rem;
    background: var(--white);
    border: 1.5px solid var(--pool);
    color: var(--pool);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.15s;
}
.share-bar__btn:hover { background: var(--pool); color: var(--white); }
.share-bar__btn svg { width: 16px; height: 16px; }
.share-bar__btn:hover svg path { fill: var(--white); }
.share-bar__feedback {
    font-size: 0.72rem;
    color: var(--pool);
    margin-top: 0.5rem;
    min-height: 1.2rem;
    transition: opacity 0.3s;
}

/* ===== CTA DUO ===== */
.cta-duo {
    padding: 3rem 0;
    background: var(--cream);
    border-top: 1px solid var(--rule);
}
.cta-duo__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}
.cta-duo__grid--2col {
    grid-template-columns: 1fr 1fr;
    max-width: 860px;
    margin: 0 auto;
}
.cta-duo__cell {
    padding: 2rem 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.cta-duo__cell .cta-duo__btn,
.cta-duo__cell button.cta-duo__btn {
    margin-top: auto;
    align-self: flex-start;
}
.cta-duo__cell:not(:last-child) {
    border-right: 1px solid var(--rule);
}
.cta-duo h2 {
    font-size: 1.15rem;
    color: var(--black);
    margin-bottom: 0.6rem;
}
.cta-duo p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.cta-duo__note {
    font-size: 0.72rem;
    color: var(--light-gray);
    margin-top: 0.75rem;
    line-height: 1.5;
}
.cta-duo__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.7rem 2rem;
    background: var(--white);
    border: 1.5px solid var(--pool);
    color: var(--pool);
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}
.cta-duo__btn:hover { background: var(--pool); color: var(--white); }
.cta-duo__btn--share { border-color: var(--charcoal); color: var(--charcoal); }
.cta-duo__btn--share:hover { background: var(--charcoal); color: var(--white); }

/* ===== TOOLS SCROLL ===== */
.tools-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 2rem;
}
.tools-scroll::-webkit-scrollbar { display: none; }
.tools-scroll__track {
    display: flex;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
}
.tools-scroll__card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    padding: 1.5rem;
    border: 1px solid var(--rule);
    text-decoration: none;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.tools-scroll__card:hover {
    border-color: var(--pool);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.tools-scroll__label {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pool);
    margin-bottom: 0.6rem;
}
.tools-scroll__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 0.95rem;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 0.4rem;
}
.tools-scroll__desc {
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
    background: var(--black);
    color: rgba(255,255,255,0.5);
    padding: 2rem 0 1.5rem;
    text-align: center;
}
.footer__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}
.footer__brand {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--white);
    letter-spacing: 0.04em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.footer__brand:hover { text-decoration: none; color: var(--white); }
.footer__links {
    display: flex;
    align-items: center;
    gap: 0.2rem 0.15rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 600px;
    line-height: 1.8;
}
.footer__links a {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    white-space: nowrap;
}
.footer__links a:hover { color: var(--pool); }
.footer__sep {
    color: rgba(255,255,255,0.2);
    font-size: 0.45rem;
    margin: 0 0.15rem;
    user-select: none;
}
.footer__copy {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer__social { display: inline-flex; align-items: center; gap: 0.4rem; }
.footer__social a { color: rgba(255,255,255,0.4); }
.footer__social a:hover { color: var(--pool); }

/* Legacy grid footer — hidden by default, kept for generated pages until regenerated */
.footer__grid { display: none; }
.footer__bottom { display: none; }
.footer__tagline { display: none; }
.footer__links-row { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
    .the-pitch__layout { grid-template-columns: 1fr; gap: 3rem; }
    .about-section__grid { max-width: 100%; }
    .masthead__nav { display: none; }
    .mobile-menu-btn { display: block; }
    .masthead { box-shadow: none; }
}

@media (max-width: 600px) {
    .wrap { padding: 0 1rem; }
    .wrap--narrow { padding: 0 1rem; }
    .hero { padding: 1.5rem 0 0.5rem; }
    .hero h1 { font-size: 1.8rem; }
    .hero__deck { font-size: 0.85rem; margin-bottom: 0; }
    .featured-guide { border-radius: 0.5rem; }
    .featured-guide__img { display: none; }
    .featured-guide__body { padding: 1rem 1.25rem; }
    .newsletter { padding: 2.5rem 0; }
    .newsletter h2 { font-size: 1.4rem; }
    .newsletter__form { flex-direction: column; }
    .newsletter__form input { border-right: 1px solid var(--rule); border-bottom: none; }
    .newsletter__form button { padding: 0.75rem 1.5rem; }
    .about-section__stats { flex-direction: column; gap: 1.25rem; }
    .about-section__text h2 { font-size: 1.4rem; }
    .footer__links { max-width: 100%; }
    .footer__brand { font-size: 0.85rem; }
    .pricing-grid { grid-template-columns: 1fr !important; border: none !important; }
    .pricing-grid__free { border-right: none !important; }
    .tools-scroll { padding: 0 1rem; }
    .tools-scroll__card { flex: 0 0 220px; padding: 1.25rem; }
    .tools-scroll__card:hover { transform: none; box-shadow: none; }
    .section-nav { padding-left: 0.5rem; padding-right: 0.5rem; }
    .section-nav__label { display: none; }
    .section-nav__divider { font-size: 0.5rem; padding: 0.35rem 0.35rem 0.35rem 0.5rem; margin-left: 0.2rem; }
    .section-nav a { font-size: 0.68rem; padding: 0.55rem 0.65rem; background: none; border-radius: 0; min-height: 44px; display: inline-flex; align-items: center; }
    .section-nav a:hover { background: none; color: var(--pool); }
    .section-nav a.active { background: none; color: var(--black); font-weight: 700; border-bottom: 2px solid var(--black); }
    .masthead { padding: 0.6rem 0; }
    .masthead__logo { font-size: 1.2rem; }
    .db-filter-select { width: 100%; }
    .the-pitch { padding: 3rem 0; }
    .the-pitch h2 { font-size: 1.5rem; }
    .the-pitch__layout { gap: 2rem; }
    .about-section__stat-num { font-size: 1.3rem; }
    .share-bar { padding: 1.5rem 1rem; }
    .share-bar__btn { padding: 0.6rem 1.25rem; min-height: 44px; }
    /* CTA duo — mobile: horizontal scroll */
    .cta-duo { padding: 1.5rem 0; background: var(--cream); }
    .cta-duo > .wrap { max-width: none; padding: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .cta-duo > .wrap::-webkit-scrollbar { display: none; }
    .cta-duo__grid,
    .cta-duo__grid--2col { display: flex; gap: 0.75rem; padding: 0 1rem; scroll-snap-type: x mandatory; }
    .cta-duo__cell { flex: 0 0 75vw; scroll-snap-align: start; padding: 1rem; text-align: left; display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 0.75rem; background: var(--white); border: 1px solid var(--rule); }
    .cta-duo__cell:not(:last-child) { border-right: none; }
    .cta-duo h2 { font-size: 0.82rem; margin-bottom: 0; color: var(--charcoal); }
    .cta-duo p { display: none; }
    .cta-duo__note { display: none !important; }
    .cta-duo__btn {
        display: inline-flex;
        align-items: center;
        padding: 0.45rem 0.75rem;
        border: 1px solid var(--pool);
        background: none;
        font-size: 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--pool);
        white-space: nowrap;
        min-height: 44px;
        flex-shrink: 0;
    }
    .cta-duo__btn:hover { background: var(--pool); color: var(--white); }
    .cta-duo__btn--share { border-color: var(--pool); color: var(--pool); }
    .cta-duo__btn--share:hover { background: var(--pool); color: var(--white); }
    .mobile-menu-btn, .mobile-menu__cta, .newsletter__form input, .newsletter__form button { min-height: 44px; }
    .mobile-menu-btn { min-width: 44px; display: flex; align-items: center; justify-content: center; }
    .db-filter-select { min-height: 44px; }
    .footer__bottom, .footer__tagline { font-size: max(0.75rem, inherit); }
    .faq__grid { gap: 1.5rem; }
    .faq__q { font-size: 0.8rem; }
    .faq__a { font-size: 0.75rem; }
    .section-header h2 { font-size: 1.2rem; }
    /* Newsletter email capture form mobile fix */
    .email-capture-form { flex-direction: column !important; }
    .email-capture-form input[type="email"] { border-right: 1px solid var(--rule) !important; border-bottom: none !important; }
    .email-capture-form button { min-height: 44px; }
    .hero__deck, .cta-duo p, .footer__tagline { font-weight: 400; }
    /* iOS auto-zoom prevented by maximum-scale=1 in viewport meta */
    .fact-grid { grid-template-columns: 1fr !important; }
}

/* ===== FACT GRID (new-to-city pages) ===== */
.fact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    margin-top: 1.5rem;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--charcoal);
    cursor: pointer;
    padding: 0.25rem;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--white);
    padding: 1.5rem;
    overflow-y: auto;
}
.mobile-menu--open { display: block; }
body.menu-open { overflow: hidden; }
.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--rule);
}
.mobile-menu__close {
    background: none;
    border: none;
    color: var(--charcoal);
    cursor: pointer;
    padding: 0.25rem;
}
.mobile-menu__links {
    list-style: none;
    padding: 0;
}
.mobile-menu__links li { border-bottom: 1px solid var(--pale); }
.mobile-menu__links a {
    display: block;
    padding: 0.85rem 0;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--charcoal);
    text-decoration: none;
}
.mobile-menu__links a:active { color: var(--pool); }
.mobile-menu__section {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--light-gray);
    padding: 1.25rem 0 0.35rem;
    border-bottom: none;
}
.mobile-menu__cta {
    display: block;
    text-align: center;
    padding: 0.75rem;
    margin-top: 1.5rem;
    background: var(--pool);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--rule);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: var(--charcoal);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s, transform 0.2s, bottom 0.3s ease;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { border-color: var(--pool); color: var(--pool); }
body.menu-open .back-to-top { display: none !important; }

/* ── Capture pills (profile capture points) ─── */
.sl-capture-pills {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border: 1px solid var(--rule);
    border-radius: 4px;
    background: var(--cream, #FAFAF7);
}
.sl-capture-pills__label {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 0.75rem;
}
.sl-capture-pills__row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.sl-capture-pills__response {
    margin-top: 0.75rem;
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.5;
}
.sl-capture-pills .compare-priority-pill {
    padding: 0.4rem 1rem;
    border: 1px solid var(--rule);
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.15s;
    border-radius: 20px;
}
.sl-capture-pills .compare-priority-pill:hover { border-color: var(--pool); color: var(--pool); }
.sl-capture-pills .compare-priority-pill.active {
    background: var(--pool);
    color: var(--white);
    border-color: var(--pool);
}

/* Lint cleanup classes — extracted from inline styles */

/* Email capture form variants */
.email-capture-flex {
    display: flex;
    gap: 0;
    max-width: 380px;
    margin: 0 auto;
}
.email-capture-flex--400 {
    display: flex;
    gap: 0;
    max-width: 400px;
    margin: 0 auto;
}
.email-capture-flex--420 {
    display: flex;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
}
.email-capture-flex--bare {
    display: flex;
    gap: 0;
}
.email-capture-flex--center {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    max-width: 420px;
    margin: 0 auto;
}
.calc-gate-flex {
    display: flex;
    gap: 0;
    max-width: 380px;
}

/* Index pricing card */
.pricing-card-body {
    padding: 2rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
}
.pricing-feature-item {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--gray);
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.cta-duo__grid--2col {
    grid-template-columns: 1fr 1fr;
}

/* City buttons / related guides flex containers */
.city-btn-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.related-guides-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.related-guides-column--sm {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Guide header / misc flex */
.guide-header__right-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.guide-tools-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--charcoal);
}

/* Feedback check icon */
.feedback-check-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pool);
}

/* Press bio photo */
.bio__photo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--cream);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Provider edit completeness */
.edit-completeness-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
