/* MyNearMe: editorial local directory UI */

:root {
    --ink: #121110;
    --ink-soft: #3d3a36;
    --muted: #6f6a63;
    --paper: #f6f3ed;
    --surface: #ffffff;
    --line: #ddd7cd;
    --line-strong: #c9c1b4;
    --accent: #c53d0a;
    --accent-hover: #a33108;
    --accent-soft: #fdf0ea;
    --nav-bg: #121110;
    --nav-text: #f6f3ed;
    --nav-muted: #a8a096;
    --open: #166534;
    --open-soft: #ecfdf3;
    --shadow-sm: 0 1px 2px rgba(18, 17, 16, 0.06);
    --shadow-md: 0 8px 24px rgba(18, 17, 16, 0.08);
    --radius: 10px;
    --radius-lg: 16px;
    --font: 'Libre Franklin', system-ui, sans-serif;
    --font-display: 'Libre Baskerville', Georgia, serif;
    --max: 1120px;
    --header-top-h: 60px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img, svg { display: block; max-width: 100%; }

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

.container {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--nav-bg);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-top {
    height: var(--header-top-h);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1rem;
}

.header-top__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--nav-text);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
}

.logo:hover {
    color: #fff;
    opacity: 0.94;
}

.logo__mark {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: block;
}

.logo__img {
    display: block;
    width: auto;
    height: 32px;
    max-width: min(168px, 46vw);
}

.logo__text {
    font-family: var(--font);
    color: inherit;
}

.logo__accent {
    color: #f07030;
}

.logo--footer {
    color: var(--nav-text);
}

.logo--footer .logo__text {
    color: var(--nav-text);
}

.logo--footer .logo__accent {
    color: #f07030;
}

.header-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.header-pill--gold {
    color: #fcd34d;
    background: rgba(251,191,36,0.1);
    border: 1px solid rgba(251,191,36,0.2);
}

.header-pill--gold:hover {
    color: #fef08a;
    background: rgba(251,191,36,0.18);
}

.header-pill--block {
    width: 100%;
    padding: 0.65rem 1rem;
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--nav-text);
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    cursor: pointer;
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
}

.nav-toggle__icon {
    width: 14px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    position: relative;
    display: block;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 14px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
}

.nav-toggle__icon::before { top: -5px; }
.nav-toggle__icon::after  { top: 5px; }

/* Category strip (desktop) */
.header-categories {
    background: #1a1917;
}

.header-categories__inner {
    position: relative;
}

.category-strip-wrap {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.category-strip__viewport {
    position: relative;
    flex: 1;
    min-width: 0;
}

.category-strip__viewport::before,
.category-strip__viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2.75rem;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.category-strip__viewport::before {
    left: 0;
    background: linear-gradient(to right, #1a1917 15%, rgba(26, 25, 23, 0));
}

.category-strip__viewport::after {
    right: 0;
    background: linear-gradient(to left, #1a1917 15%, rgba(26, 25, 23, 0));
}

.category-strip-wrap.is-at-start .category-strip__viewport::before,
.category-strip-wrap:not(.is-scrollable) .category-strip__viewport::before,
.category-strip-wrap:not(.is-scrollable) .category-strip__viewport::after {
    opacity: 0;
}

.category-strip-wrap.is-at-end .category-strip__viewport::after {
    opacity: 0;
}

.category-strip__nav {
    flex-shrink: 0;
    display: none;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.category-strip__nav:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.category-strip__nav:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.category-strip-wrap.is-scrollable .category-strip__nav {
    display: inline-flex;
}

.category-strip-wrap.is-at-start .category-strip__nav--prev,
.category-strip-wrap.is-at-end .category-strip__nav--next {
    visibility: hidden;
    pointer-events: none;
}

.category-strip {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
}

.category-strip.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
}

.category-strip:focus-visible {
    outline: 2px solid rgba(197, 61, 10, 0.55);
    outline-offset: -2px;
    border-radius: 4px;
}

.category-strip::-webkit-scrollbar {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .category-strip {
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.38) rgba(255, 255, 255, 0.06);
        padding-bottom: 0.125rem;
    }

    .category-strip::-webkit-scrollbar {
        display: block;
        height: 7px;
    }

    .category-strip::-webkit-scrollbar-track {
        margin-inline: 0.25rem;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 999px;
    }

    .category-strip::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.34);
        border-radius: 999px;
        border: 1px solid rgba(26, 25, 23, 0.35);
    }

    .category-strip::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
}

.category-strip__list {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    padding: 0.625rem 0.75rem 0.5rem;
    min-width: min-content;
}

.category-strip__list li { flex-shrink: 0; }

.category-strip__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    color: var(--nav-muted);
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s, background 0.15s;
}

.category-strip__link:hover,
.category-strip__link.is-active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.category-strip__link.is-active {
    background: rgba(197,61,10,0.25);
    color: #fecaca;
}

.category-strip__icon {
    display: grid;
    place-items: center;
    opacity: 0.75;
}

.category-strip__link.is-active .category-strip__icon { opacity: 1; }

/* Mobile nav panel */
.mobile-nav-panel {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    justify-content: flex-end;
}

.mobile-nav-panel[hidden] { display: none; }

.mobile-nav-panel__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18,17,16,0.55);
    border: none;
    cursor: pointer;
}

.mobile-nav-panel__sheet {
    position: relative;
    width: min(100%, 360px);
    height: 100%;
    background: var(--nav-bg);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
    animation: slideIn 0.2s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}

.mobile-nav-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--nav-text);
    font-weight: 600;
    font-size: 0.9375rem;
}

.mobile-nav-panel__close {
    background: none;
    border: none;
    color: var(--nav-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem;
}

.mobile-nav-panel__close:hover { color: #fff; }

.mobile-nav-grid {
    list-style: none;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    overflow-y: auto;
    flex: 1;
}

.mobile-nav-grid a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    color: var(--nav-text);
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
}

.mobile-nav-grid a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.mobile-nav-grid__icon {
    color: var(--accent);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.mobile-nav-panel__footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ── Main ── */
.site-main {
    flex: 1;
    padding: 1.5rem 0 3rem;
}

/* ── Breadcrumbs ── */
.breadcrumbs {
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    color: var(--muted);
}

.breadcrumbs li { display: flex; align-items: center; gap: 0.35rem; }

.breadcrumbs a {
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.breadcrumbs a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.breadcrumbs li:last-child span,
.breadcrumbs li:last-child [itemprop="name"] {
    color: var(--muted);
    font-weight: 500;
}

.crumb-sep { color: var(--line-strong); user-select: none; }

/* ── Page hero ── */
.page-hero {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem 2rem 1.75rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(197,61,10,0.06) 0%, transparent 45%),
        linear-gradient(135deg, transparent 60%, rgba(18,17,16,0.02) 100%);
    pointer-events: none;
}

.page-hero--compact { padding: 1.5rem; }

.page-hero__icon {
    width: 52px;
    height: 52px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 12px;
    display: grid;
    place-items: center;
    position: relative;
}

.page-hero__body { position: relative; }

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.625rem, 4vw, 2.25rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.page-hero__lead {
    color: var(--ink-soft);
    font-size: 1.0625rem;
    max-width: 58ch;
    line-height: 1.55;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.hero-meta__item dt {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 0.15rem;
}

.hero-meta__item dd {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
}

/* ── Home hero ── */
.home-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .home-hero { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
}

.home-hero__copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.home-hero__copy h1 em {
    font-style: normal;
    color: var(--accent);
}

.home-hero__copy p {
    font-size: 1.125rem;
    color: var(--ink-soft);
    max-width: 46ch;
    margin-bottom: 1.5rem;
}

.home-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ink-soft);
}

.chip--live {
    background: var(--open-soft);
    border-color: #bbf7d0;
    color: var(--open);
}

.chip--live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--open);
    border-radius: 50%;
}

.home-hero__panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.home-hero__panel h2 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    margin-bottom: 1rem;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: border-color 0.15s, transform 0.15s;
}

.quick-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
}

.quick-link__icon {
    width: 36px;
    height: 36px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 8px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

/* ── Sections ── */
.content-section {
    margin-bottom: 2.5rem;
}

.section-head {
    margin-bottom: 1.25rem;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.section-head p {
    color: var(--muted);
    font-size: 0.9375rem;
}

/* ── Category grid ── */
.category-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.75rem;
}

.category-card {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.125rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.category-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
    color: var(--ink);
}

.category-card__icon {
    width: 42px;
    height: 42px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--accent);
    flex-shrink: 0;
}

.category-card__text strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.category-card__text span {
    font-size: 0.8125rem;
    color: var(--muted);
}

.category-card--event {
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
    border-color: #fde68a;
}

.category-card--event .category-card__icon {
    background: #fef3c7;
    border-color: #fde68a;
    color: #b45309;
}

/* ── State grid ── */
.state-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 0.5rem;
}

.state-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.875rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.15s;
}

.state-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.state-link__abbr {
    width: 32px;
    height: 32px;
    background: var(--paper);
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    flex-shrink: 0;
}

/* ── City list ── */
.city-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.5rem;
}

.city-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.15s, padding-left 0.15s;
}

.city-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    padding-left: 1.15rem;
}

.city-link__state {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    background: var(--paper);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
}

/* ── Category hub ── */
.category-hub__hero {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 900px) {
    .category-hub__hero {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: start;
    }

    .hub-quick-link {
        padding: 0.625rem 0.75rem;
        font-size: 0.875rem;
    }
}

.category-hub__intro {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.category-hub__intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(197,61,10,0.06) 0%, transparent 45%);
    pointer-events: none;
}

.category-hub__icon {
    width: 52px;
    height: 52px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    position: relative;
}

.category-hub__intro h1 {
    font-family: var(--font-display);
    font-size: clamp(1.625rem, 4vw, 2.25rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    position: relative;
}

.category-hub__lead {
    color: var(--ink-soft);
    font-size: 1.0625rem;
    line-height: 1.55;
    max-width: 52ch;
    position: relative;
}

.category-hub__stat {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--open);
    position: relative;
}

.category-hub__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1.5rem;
    position: relative;
}

.category-hub__quick {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.category-hub__quick h2 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.category-hub__quick-desc {
    font-size: 0.875rem;
    color: var(--ink-soft);
    margin-bottom: 1rem;
    line-height: 1.45;
}

.category-hub__seo {
    margin: 2rem 0 2.5rem;
}

.category-hub__seo-inner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
    background-color: var(--surface);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-hub__seo-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

@media (min-width: 768px) {
    .category-hub__seo-inner {
        padding: 2rem 2.25rem;
    }
}

.category-hub__seo-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 1rem;
}

.category-hub__seo-body {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.75;
    width: 100%;
    max-width: none;
    columns: 1;
}

@media (min-width: 900px) {
    .category-hub__seo-body {
        column-count: 2;
        column-gap: 2.5rem;
    }

    .category-hub__seo-body p {
        break-inside: avoid;
    }
}

.category-hub__seo-body p {
    margin: 0 0 1rem;
}

.category-hub__seo-body p:last-child {
    margin-bottom: 0;
}

.hub-quick-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hub-quick-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.875rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: border-color 0.15s, transform 0.15s;
}

.hub-quick-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateX(2px);
}

.hub-quick-link__state {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted);
    background: var(--surface);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.hub-quick-more {
    display: inline-block;
    margin-top: 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

.hub-quick-more:hover {
    text-decoration: underline;
}

.hub-section--primary {
    padding: 1.75rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.hub-section--secondary {
    padding: 1.75rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.hub-section__footer {
    margin-top: 1.25rem;
    margin-bottom: 0;
    font-size: 0.875rem;
}

.hub-section__footer a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.hub-section__footer a:hover {
    text-decoration: underline;
}

.featured-city-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 0.75rem;
}

.city-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.125rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
    min-height: 100%;
}

.city-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: var(--ink);
}

.city-card__name {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
}

.city-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.city-card__state {
    color: var(--muted);
}

.city-card__count {
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}

.city-card__count--muted {
    color: var(--muted);
    font-weight: 500;
}

.hub-state-picker {
    max-width: 24rem;
    margin-bottom: 1.25rem;
}

.hub-state-picker__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 0.375rem;
}

.hub-state-picker__select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
}

.hub-state-picker__select:focus {
    outline: 2px solid var(--accent-soft);
    border-color: var(--accent);
}

.hub-states-expand {
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

.hub-states-expand__summary {
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    list-style: none;
    user-select: none;
}

.hub-states-expand__summary::-webkit-details-marker {
    display: none;
}

.hub-states-expand__summary::before {
    content: '▸ ';
}

.hub-states-expand[open] .hub-states-expand__summary::before {
    content: '▾ ';
}

.hub-states-expand .state-grid {
    margin-top: 1rem;
}

.state-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
}

.state-grid--compact .state-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
}

.state-grid--compact .state-link__abbr {
    width: 28px;
    height: 28px;
    font-size: 0.625rem;
}

/* ── Results ── */
.results-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--muted);
}

.results-toolbar strong { color: var(--ink); }

.result-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.result-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1.375rem;
    transition: box-shadow 0.15s;
}

.result-card:hover { box-shadow: var(--shadow-md); }

.result-card__layout {
    display: flex;
    gap: 1.125rem;
    align-items: flex-start;
}

.result-card__photo {
    flex-shrink: 0;
    width: 160px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
}

.result-card__photo img {
    display: block;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.result-card__body { flex: 1; min-width: 0; }

.result-card__title-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.result-card__price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
}

.result-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}

.result-card__types,
.result-card__amenities {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0 0 0.75rem;
    padding: 0;
}

.chip--soft {
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.75rem;
    padding: 0.2rem 0.55rem;
}

.result-card__desc {
    font-size: 0.875rem;
    color: var(--ink-soft);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
}

.badge--open { background: #dcfce7; color: #166534; }
.badge--closed { background: #fee2e2; color: #991b1b; }
.badge--warn { background: #fef3c7; color: #92400e; }

.result-card__hours {
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
}

.result-card__hours summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.result-card__hours ul {
    list-style: none;
    padding: 0;
    margin: 0.35rem 0 0;
    color: var(--ink-soft);
}

.result-card__hours li + li { margin-top: 0.15rem; }

.result-card__reviews {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.review-snippet {
    margin: 0;
    padding: 0.75rem 0.875rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.review-snippet__head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
    font-size: 0.8125rem;
}

.review-snippet__head strong { color: var(--ink); }

.review-snippet__time {
    color: var(--muted);
    font-size: 0.75rem;
}

.review-snippet p {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--ink-soft);
    line-height: 1.45;
}

@media (max-width: 640px) {
    .result-card__layout { flex-direction: column; }
    .result-card__photo { width: 100%; }
    .result-card__photo img { height: 180px; }
}

.result-card__top {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.result-card__rank {
    width: 28px;
    height: 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--muted);
    flex-shrink: 0;
}

.result-card__head { flex: 1; min-width: 0; }

.result-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.result-card__rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.stars { display: inline-flex; gap: 2px; }

.star {
    width: 14px;
    height: 14px;
    background: var(--line);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star--on { background: #f59e0b; }
.star--half { background: linear-gradient(90deg, #f59e0b 50%, var(--line) 50%); }

.rating-num { font-weight: 700; font-size: 0.875rem; color: var(--ink); }
.rating-count { font-size: 0.8125rem; color: var(--muted); }

.result-card__address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--ink-soft);
    margin-bottom: 1rem;
    line-height: 1.45;
}

.result-card__address svg { flex-shrink: 0; margin-top: 2px; color: var(--muted); }

.result-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ── Events ── */
.hub-section--events {
    scroll-margin-top: calc(var(--header-top-h) + 4rem);
}

.event-schedule {
    margin-bottom: 2rem;
}

.event-schedule__bar {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: calc(var(--header-top-h) + 0.5rem);
    z-index: 20;
}

.event-schedule__bar--single {
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0.85rem 1rem;
}

.event-schedule__track {
    display: flex;
    flex: 1;
    gap: 0.35rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.event-schedule__track::-webkit-scrollbar {
    display: none;
}

.event-schedule__tab {
    flex: 1 0 0;
    min-width: 7.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    padding: 0.85rem 0.75rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--ink-soft);
    background: transparent;
    border: 1px solid transparent;
    transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
    position: relative;
}

.event-schedule__tab:hover {
    background: var(--paper);
    color: var(--ink);
}

.event-schedule__tab.is-active {
    background: var(--nav-bg);
    color: var(--nav-text);
    border-color: var(--nav-bg);
    box-shadow: var(--shadow-md);
}

.event-schedule__tab-label {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.event-schedule__tab-date {
    font-size: 0.6875rem;
    font-weight: 500;
    opacity: 0.72;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.event-schedule__tab.is-active .event-schedule__tab-date {
    opacity: 0.85;
}

.event-schedule__tab-count {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 800;
    line-height: 1;
}

.event-schedule__tab.is-active .event-schedule__tab-count {
    background: #fff;
    color: var(--nav-bg);
}

.event-schedule__calendar {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0 1rem;
    min-height: 3.25rem;
    border-left: 1px solid var(--line);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

.event-schedule__calendar:hover {
    color: var(--accent);
}

.event-schedule__calendar-icon {
    display: flex;
    color: var(--accent);
}

.event-schedule__calendar-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.event-schedule__back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

.event-schedule__single-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
}

.event-schedule-sections {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.event-block {
    scroll-margin-top: calc(var(--header-top-h) + 5.5rem);
}

.event-block__header {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--line);
}

.event-block--yesterday .event-block__header { border-bottom-color: #a1a1aa; }
.event-block--today .event-block__header { border-bottom-color: var(--accent); }
.event-block--tomorrow .event-block__header { border-bottom-color: #6366f1; }
.event-block--upcoming .event-block__header { border-bottom-color: #0d9488; }

.event-block__label {
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.event-block--today .event-block__label { color: var(--accent); }
.event-block--tomorrow .event-block__label { color: #6366f1; }
.event-block--upcoming .event-block__label { color: #0d9488; }

.event-block__heading-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.event-block__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
}

.event-block__count {
    flex-shrink: 0;
    min-width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--paper);
    border: 1px solid var(--line);
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--ink);
}

.event-block__subtitle {
    font-size: 0.875rem;
    color: var(--muted);
}

.event-block__empty {
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: var(--radius-lg);
    color: var(--muted);
    background: rgba(255, 255, 255, 0.55);
}

.event-block__groups {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.event-block__group-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink-soft);
    margin-bottom: 0.75rem;
    padding-left: 0.75rem;
    border-left: 3px solid #0d9488;
}

.event-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.event-list__ad {
    grid-column: 1 / -1;
}

.event-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
    height: 100%;
}

.event-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.event-card--today {
    border-color: rgba(197, 61, 10, 0.4);
    box-shadow: 0 4px 20px rgba(197, 61, 10, 0.08);
}

.event-card--past {
    background: #fcfcfb;
}

.event-card--tile article {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--paper);
    overflow: hidden;
}

.event-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-card__chip {
    position: absolute;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    backdrop-filter: blur(8px);
}

.event-card__chip--time,
.event-card__chip--date {
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(18, 17, 16, 0.82);
    color: #fff;
}

.event-card__chip--price {
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.92);
    color: #047857;
    border: 1px solid #bbf7d0;
}

.event-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.55rem;
    padding: 1.1rem 1.15rem 1.15rem;
}

.event-card__category {
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.event-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
}

.event-card__artists {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink-soft);
    line-height: 1.4;
}

.event-card__datetime {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.65rem;
    font-size: 0.875rem;
    color: var(--ink-soft);
}

.event-card__datetime time {
    font-weight: 700;
    color: var(--ink);
}

.event-card__doors {
    font-size: 0.8125rem;
    color: var(--muted);
}

.event-card__doors time {
    font-weight: 600;
    color: var(--ink-soft);
}

.event-card__venue {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.5;
}

.event-card__venue-name {
    display: block;
    font-weight: 700;
    color: var(--ink-soft);
    margin-bottom: 0.15rem;
}

.event-card__venue [itemprop="address"] {
    display: block;
}

.event-card__venue [itemprop="address"] > span + span::before {
    content: ', ';
}

.event-card__city a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.event-card__city a:hover {
    text-decoration: underline;
}

.event-card__desc {
    font-size: 0.8125rem;
    color: var(--ink-soft);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card__actions {
    margin-top: auto;
    padding-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.event-card__actions .btn--primary {
    flex: 1;
    min-width: 8rem;
}

.event-day-group {
    margin-bottom: 1.5rem;
}

.event-day-group__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.hub-section__more {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
}

.hub-section__more a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 768px) {
    .event-schedule__bar {
        flex-direction: column;
        position: static;
        padding: 0.65rem;
    }

    .event-schedule__track {
        width: 100%;
    }

    .event-schedule__tab {
        min-width: 6.5rem;
        padding: 0.75rem 0.5rem;
    }

    .event-schedule__calendar {
        width: 100%;
        border-left: 0;
        border-top: 1px solid var(--line);
        justify-content: center;
        min-height: 2.75rem;
    }

    .event-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
}

.btn--ghost {
    background: var(--paper);
    color: var(--ink-soft);
    border-color: var(--line);
}

.btn--ghost:hover {
    border-color: var(--line-strong);
    color: var(--ink);
}

.btn--sm { padding: 0.375rem 0.75rem; font-size: 0.75rem; }

/* ── Empty state ── */
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--surface);
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius-lg);
}

.empty-state__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: var(--paper);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--muted);
}

.empty-state h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--muted);
    max-width: 40ch;
    margin: 0 auto 1.25rem;
    font-size: 0.9375rem;
}

/* ── FAQ ── */
.faq-block { margin-top: 2.5rem; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--muted);
    flex-shrink: 0;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
    padding: 0 1.25rem 1.125rem;
    color: var(--ink-soft);
    font-size: 0.9375rem;
    line-height: 1.55;
}

/* ── Footer ── */
.site-footer {
    background: var(--nav-bg);
    color: var(--nav-muted);
    padding: 2.5rem 0 2rem;
    margin-top: auto;
    font-size: 0.875rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p {
    margin-top: 0.75rem;
    line-height: 1.55;
    max-width: 28ch;
}

.footer-brand .logo { margin-bottom: 0.25rem; }

.footer-col h3 {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--nav-text);
    margin-bottom: 0.75rem;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.4rem; }

.footer-col a {
    color: var(--nav-muted);
    text-decoration: none;
    font-size: 0.8125rem;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.8125rem;
}

.error-page h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--ink);
}

.error-page__code {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--line);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.error-page {
    text-align: center;
    padding: 4rem 1rem;
}

.error-page p { color: var(--muted); margin-bottom: 1.5rem; }

.error-page__lead {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.error-page__actions {
    margin-bottom: 2.5rem;
}

.error-page__links {
    max-width: 28rem;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.error-page__links-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    margin-bottom: 1rem;
}

.error-page__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
}

.error-page__list a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.error-page__list a:hover {
    text-decoration: underline;
}

/* ── Mobile header ── */
@media (max-width: 900px) {
    .header-categories { display: none; }

    .nav-toggle { display: inline-flex; }

    .header-pill--gold { display: none; }
}

@media (min-width: 901px) {
    .nav-toggle { display: none !important; }
    .mobile-nav-panel { display: none !important; }
}

.header-pill--hide-sm { display: inline-flex; }

@media (max-width: 1100px) {
    .header-pill--hide-sm { display: none; }
}

.result-card__link {
    color: inherit;
    text-decoration: none;
}

.result-card__link:hover {
    color: var(--accent);
}

/* ── Place detail ── */
.place-hero {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.place-hero__media img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.place-hero__content {
    padding: 1.5rem 1.75rem 1.75rem;
}

.place-hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.place-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    line-height: 1.15;
    margin-bottom: 0.85rem;
}

.place-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.place-hero__types {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0 0 1rem;
    padding: 0;
}

.place-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.place-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 1.5rem;
    align-items: start;
}

.place-section {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem 1.5rem;
    margin-bottom: 1rem;
}

.place-section h2 {
    font-size: 1.125rem;
    margin-bottom: 0.85rem;
}

.place-lead {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 0.75rem;
}

.place-context {
    font-size: 0.875rem;
    color: var(--muted);
    margin: 0;
}

.place-facts {
    margin: 0;
}

.place-facts__row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--line);
}

.place-facts__row:last-child { border-bottom: 0; }

.place-facts dt {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.place-facts dd {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.45;
}

.place-map {
    margin-top: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: var(--paper);
}

.place-map__viewport {
    width: 100%;
    min-height: 220px;
    line-height: 0;
}

.place-map__frame {
    display: block;
    width: 100%;
    min-height: 220px;
    border: 0;
    vertical-align: top;
}

.place-map__credit {
    margin: 0;
    padding: 0.55rem 0.75rem;
    font-size: 0.75rem;
    color: var(--muted);
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.place-map__credit a {
    color: var(--ink-soft);
    text-decoration: none;
}

.place-map__credit a:hover {
    color: var(--accent);
}

.city-map-section {
    margin-bottom: 1.75rem;
}

.city-map-section__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.city-map-section__head h2 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.city-map-section__desc {
    font-size: 0.875rem;
    color: var(--muted);
}

.city-map {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.city-map__canvas {
    width: 100%;
    height: clamp(280px, 42vw, 420px);
    background: #e8e4dc;
}

.city-map__credit {
    margin: 0.55rem 0 0;
    font-size: 0.75rem;
    color: var(--muted);
}

.city-map__credit a {
    color: var(--ink-soft);
    text-decoration: none;
}

.city-map__credit a:hover {
    color: var(--accent);
}

.city-map-pin {
    background: transparent;
    border: 0;
}

.city-map-pin__dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px 999px 999px 0;
    transform: rotate(-45deg);
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(197, 61, 10, 0.35);
    border: 2px solid #fff;
}

.city-map-pin__dot span {
    transform: rotate(45deg);
    line-height: 1;
}

.city-map-pin__dot--category {
    border-radius: 999px;
    transform: none;
}

.city-map-pin__dot--category span {
    transform: none;
    font-size: 0.6875rem;
}

.category-map-section {
    margin-bottom: 2rem;
}

.category-map__canvas {
    height: clamp(320px, 48vw, 480px);
}

.city-map-popup {
    min-width: 10rem;
}

.city-map-popup strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.city-map-popup__meta {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-bottom: 0.45rem;
}

.city-map-popup a {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}

.result-card.is-map-highlight {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    box-shadow: var(--shadow-md);
}

.city-map__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    color: var(--muted);
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    .city-map-section__head {
        flex-direction: column;
    }
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table th,
.hours-table td {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: 0.875rem;
}

.hours-table th {
    width: 120px;
    font-weight: 600;
    color: var(--ink);
}

.hours-table td { color: var(--ink-soft); }

.place-amenities {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
}

.place-reviews {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.place-sidebar__card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.15rem 1.25rem;
    margin-bottom: 1rem;
}

.place-sidebar__card h2 {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.place-sidebar__links,
.related-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.place-sidebar__links li + li,
.related-list li + li {
    margin-top: 0.55rem;
}

.place-sidebar__links a,
.related-list a {
    font-size: 0.875rem;
    color: var(--ink-soft);
    text-decoration: none;
}

.place-sidebar__links a:hover,
.related-list a:hover {
    color: var(--accent);
}

.related-list a {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

@media (max-width: 900px) {
    .place-grid { grid-template-columns: 1fr; }
    .place-facts__row { grid-template-columns: 1fr; gap: 0.25rem; }
}

@media (max-width: 640px) {
    .page-hero { padding: 1.5rem; }
    .home-hero__copy h1 { font-size: 1.75rem; }
    .quick-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: 1fr; }
}

/* ── Google Ads ── */
.ad-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.ad-row--top {
    margin-bottom: 1.75rem;
}

.ad-row--bottom {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.ad-row--banner,
.ad-row--section {
    margin: 2.5rem 0;
}

.ad-row--top .ad-slot,
.ad-row--bottom .ad-slot,
.ad-row--banner .ad-slot,
.ad-row--section .ad-slot {
    width: 100%;
    max-width: 728px;
}

.ad-row--rail {
    margin-bottom: 1.25rem;
}

.ad-row--rail .ad-slot {
    width: 100%;
}

.ad-row--infeed {
    margin: 0.25rem 0;
}

.ad-row--infeed .ad-slot {
    width: 100%;
}

.ad-slot {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.875rem 1rem 1rem;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
    box-sizing: border-box;
}

.ad-slot__label {
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    text-align: center;
}

.ad-slot__frame {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-slot__unit {
    width: 100%;
}

.ad-slot[data-ad-live="0"] .ad-slot__frame {
    min-height: var(--ad-preview-height, 90px);
}

.ad-slot__preview {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: inherit;
    padding: 1.25rem;
    border-radius: calc(var(--radius) - 2px);
    background: var(--paper);
    border: 1px dashed var(--line);
    color: var(--muted);
    text-align: center;
}

.ad-slot__preview-type {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted);
}

.ad-row--infeed .ad-slot {
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-sm);
}

.result-list__ad,
.event-list__ad {
    list-style: none;
}

@media (max-width: 640px) {
    .ad-row--top {
        margin-bottom: 1.25rem;
    }

    .ad-row--banner,
    .ad-row--section {
        margin: 2rem 0;
    }

    .ad-row--bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
