/* Cities list — directory hub (detail pages keep old layout) */
body.site-body--cities {
    --site-ink: #111318;
    --site-ink-soft: #3a4150;
    --site-muted: #6b7385;
    --site-paper: #f4f5f7;
    --site-surface: #ffffff;
    --site-accent: #c2410c;
    --site-accent-soft: rgba(194, 65, 12, 0.1);
    --site-line: rgba(17, 19, 24, 0.1);
    --site-max: 1120px;
    --cy-deep: #0c1220;
    color: var(--site-ink);
    background:
        radial-gradient(900px 480px at 0% 0%, rgba(194, 65, 12, 0.07), transparent 55%),
        radial-gradient(800px 500px at 100% 8%, rgba(12, 18, 32, 0.05), transparent 50%),
        var(--site-paper);
}

body.site-body--cities .site-header {
    background: rgba(244, 245, 247, 0.9);
    border-bottom-color: var(--site-line);
}

body.site-body--cities .site-nav__cta {
    border-color: var(--site-ink);
    color: var(--site-ink);
}

body.site-body--cities .site-nav__cta:hover {
    background: var(--site-ink);
    color: #fff;
}

body.site-body--cities .site-footer {
    background: var(--site-surface);
}

.cy-wrap {
    width: min(100% - 2.5rem, var(--site-max));
    margin-inline: auto;
}

/* Hero — full-bleed map plane */
.cy-hero {
    position: relative;
    min-height: min(78vh, 40rem);
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #f8fafc;
}

.cy-hero__media,
.cy-hero__veil {
    position: absolute;
    inset: 0;
}

.cy-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.04);
    animation: cy- ken 22s var(--site-ease) infinite alternate;
}

.cy-hero__veil {
    background:
        linear-gradient(180deg, rgba(12, 18, 32, 0.35) 0%, rgba(12, 18, 32, 0.72) 55%, rgba(12, 18, 32, 0.92) 100%),
        linear-gradient(90deg, rgba(12, 18, 32, 0.55) 0%, transparent 55%);
}

.cy-hero__copy {
    position: relative;
    z-index: 1;
    padding: 5.5rem 0 3.25rem;
    max-width: 38rem;
}

.cy-hero__brand {
    margin: 0 0 0.85rem;
    font-family: var(--site-font-display);
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    animation: cy-rise 0.9s var(--site-ease) both;
}

.cy-hero__title {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    animation: cy-rise 0.9s var(--site-ease) 0.08s both;
}

.cy-hero__lead {
    margin: 1rem 0 0;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(248, 250, 252, 0.86);
    max-width: 34rem;
    animation: cy-rise 0.9s var(--site-ease) 0.14s both;
}

.cy-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
    animation: cy-rise 0.9s var(--site-ease) 0.22s both;
}

.cy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.65rem 1.25rem;
    border-radius: 0.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.2s var(--site-ease), color 0.2s var(--site-ease), border-color 0.2s var(--site-ease);
}

.cy-btn--solid {
    background: var(--site-accent);
    color: #fff;
}

.cy-btn--solid:hover {
    background: #9a3412;
    color: #fff;
}

.cy-btn--ghost {
    background: transparent;
    border-color: rgba(248, 250, 252, 0.55);
    color: #f8fafc;
}

.cy-btn--ghost:hover {
    background: rgba(248, 250, 252, 0.1);
    border-color: #f8fafc;
    color: #fff;
}

.cy-cta .cy-btn--ghost {
    border-color: var(--site-ink);
    color: var(--site-ink);
}

.cy-cta .cy-btn--ghost:hover {
    background: var(--site-ink);
    color: #fff;
}

/* Stats */
.cy-stats {
    border-bottom: 1px solid var(--site-line);
    background: var(--site-surface);
}

.cy-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 1.75rem 0;
}

.cy-stats__value {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--site-ink);
}

.cy-stats__label {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    color: var(--site-muted);
}

/* Sections */
.cy-section {
    padding: 4rem 0;
}

.cy-section--alt {
    background: var(--site-surface);
    border-block: 1px solid var(--site-line);
}

.cy-section__head {
    max-width: 38rem;
    margin-bottom: 2rem;
}

.cy-section__head h2 {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.cy-section__head p {
    margin: 0.75rem 0 0;
    color: var(--site-ink-soft);
    font-size: 1.0625rem;
    line-height: 1.65;
}

.cy-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cy-bar__title {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.cy-bar__lead {
    margin: 0.4rem 0 0;
    color: var(--site-muted);
    font-size: 0.975rem;
}

.cy-bar__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.cy-search {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--site-line);
    background: var(--site-surface);
    border-radius: 0.25rem;
    overflow: hidden;
}

.cy-search input {
    width: min(16rem, 70vw);
    border: 0;
    padding: 0.7rem 0.9rem;
    font: inherit;
    background: transparent;
    color: var(--site-ink);
}

.cy-search input:focus {
    outline: none;
}

.cy-search button {
    border: 0;
    border-left: 1px solid var(--site-line);
    background: var(--site-ink);
    color: #fff;
    padding: 0 1rem;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.cy-search button:hover {
    background: #1f2937;
}

.cy-clear {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--site-accent);
    text-decoration: none;
}

.cy-clear:hover {
    text-decoration: underline;
}

/* City grid — interactive cards */
.cy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.cy-city {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--site-surface);
    border: 1px solid var(--site-line);
    border-radius: 0.35rem;
    overflow: hidden;
    transition: transform 0.35s var(--site-ease), border-color 0.25s ease, box-shadow 0.35s var(--site-ease);
}

.cy-city:hover {
    transform: translateY(-3px);
    border-color: rgba(194, 65, 12, 0.35);
    box-shadow: 0 18px 40px rgba(12, 18, 32, 0.08);
}

.cy-city__media {
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8eaee;
}

.cy-city__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--site-ease);
}

.cy-city:hover .cy-city__media img {
    transform: scale(1.04);
}

.cy-city__body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.15rem 1.2rem 1.25rem;
    flex: 1;
}

.cy-city__top {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 0.75rem;
}

.cy-city__name {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.cy-city__gj {
    font-size: 0.875rem;
    color: var(--site-muted);
}

.cy-city__place {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--site-accent);
}

.cy-city__summary {
    margin: 0.15rem 0 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--site-ink-soft);
    flex: 1;
}

.cy-city__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.65rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--site-line);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--site-muted);
}

.cy-city__more {
    color: var(--site-ink);
}

.cy-city:hover .cy-city__more {
    color: var(--site-accent);
}

.cy-empty {
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: var(--site-muted);
    background: var(--site-surface);
    border: 1px dashed var(--site-line);
    border-radius: 0.35rem;
}

/* Categories */
.cy-cats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.cy-cats__item {
    padding: 0.45rem 0.8rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--site-ink-soft);
    background: var(--site-paper);
    border: 1px solid var(--site-line);
    border-radius: 0.25rem;
}

/* Steps */
.cy-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.cy-steps__num {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--site-accent);
}

.cy-steps__item h3 {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cy-steps__item p {
    margin: 0.55rem 0 0;
    color: var(--site-ink-soft);
    font-size: 0.975rem;
    line-height: 1.6;
}

/* About prose */
.cy-about__prose {
    display: grid;
    gap: 1rem;
    max-width: 48rem;
}

.cy-about__prose p {
    margin: 0;
    font-size: 1.025rem;
    line-height: 1.75;
    color: var(--site-ink-soft);
}

/* CTA */
.cy-cta {
    padding: 0 0 4.5rem;
}

.cy-cta__box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 2.1rem;
    background: var(--site-surface);
    border: 1px solid var(--site-line);
    border-radius: 0.35rem;
}

.cy-cta__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--site-accent);
}

.cy-cta__box > div > p:last-child {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--site-ink-soft);
    max-width: 32rem;
}

.cy-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Pagination (shared site template class names) */
body.site-body--cities .blogs-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 2.5rem;
}

body.site-body--cities .blogs-pagination a,
body.site-body--cities .blogs-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.7rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--site-line);
    background: var(--site-surface);
    color: var(--site-ink-soft);
}

body.site-body--cities .blogs-pagination a:hover {
    border-color: var(--site-accent);
    color: var(--site-accent);
}

body.site-body--cities .blogs-pagination .is-active {
    background: var(--site-ink);
    border-color: var(--site-ink);
    color: #fff;
}

body.site-body--cities .blogs-pagination .is-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* City detail */
.cy-hero--detail .cy-hero__copy {
    max-width: 40rem;
}

/* Category listing — image-forward hero (no dark veil) */
.cy-hero--figure {
    min-height: 0;
    display: block;
    color: var(--site-ink);
    background: var(--site-surface);
    border-bottom: 1px solid var(--site-line);
}

.cy-hero__top {
    padding: 1.35rem 0 1rem;
}

.cy-crumbs--ink {
    color: var(--site-muted);
    animation: none;
}

.cy-crumbs--ink a {
    color: var(--site-ink-soft);
}

.cy-crumbs--ink a:hover {
    color: var(--site-accent);
}

.cy-hero__figure {
    margin: 0;
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #f3e6b8;
    box-shadow: 0 10px 28px rgba(12, 18, 32, 0.08);
}

.cy-hero__figure img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    transform: none;
    animation: cy-figure-in 0.9s var(--site-ease) both;
}

.cy-hero__band {
    padding: 1.75rem 0 2.5rem;
    max-width: 42rem;
}

.cy-hero__title--ink {
    color: var(--site-ink);
}

.cy-hero__lead--ink {
    color: var(--site-ink-soft);
}

.cy-btn--ghost-ink {
    border-color: var(--site-ink);
    color: var(--site-ink);
}

.cy-btn--ghost-ink:hover {
    background: var(--site-ink);
    border-color: var(--site-ink);
    color: #fff;
}

@keyframes cy-figure-in {
    from {
        opacity: 0;
        transform: scale(1.02);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.cy-crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(248, 250, 252, 0.7);
    animation: cy-rise 0.9s var(--site-ease) both;
}

.cy-crumbs a {
    color: rgba(248, 250, 252, 0.88);
    text-decoration: none;
}

.cy-crumbs a:hover {
    color: #fff;
    text-decoration: underline;
}

.cy-hero__gj {
    margin: 0.55rem 0 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(248, 250, 252, 0.78);
    animation: cy-rise 0.9s var(--site-ease) 0.1s both;
}

.cy-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.cy-cat {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--site-surface);
    border: 1px solid var(--site-line);
    border-radius: 0.35rem;
    overflow: hidden;
    transition: transform 0.35s var(--site-ease), border-color 0.25s ease, box-shadow 0.35s var(--site-ease);
}

.cy-cat:hover {
    transform: translateY(-3px);
    border-color: rgba(194, 65, 12, 0.35);
    box-shadow: 0 16px 36px rgba(12, 18, 32, 0.08);
}

.cy-cat__media {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e8eaee;
}

.cy-cat__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--site-ease);
}

.cy-cat:hover .cy-cat__media img {
    transform: scale(1.04);
}

.cy-cat__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.95rem 1rem 1.1rem;
    flex: 1;
}

.cy-cat__title {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.cy-cat__meta {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--site-muted);
}

.cy-cat__more {
    margin-top: auto;
    padding-top: 0.65rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--site-ink);
}

.cy-cat:hover .cy-cat__more {
    color: var(--site-accent);
}

.cy-prose {
    max-width: 48rem;
    font-size: 1.025rem;
    line-height: 1.75;
    color: var(--site-ink-soft);
}

.cy-prose > *:first-child {
    margin-top: 0;
}

.cy-prose > *:last-child {
    margin-bottom: 0;
}

.cy-prose p {
    margin: 0 0 1rem;
}

.cy-prose a {
    color: var(--site-accent);
}

.cy-prose ul,
.cy-prose ol {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

.cy-cats__item--link {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

a.cy-cats__item--link:hover {
    color: var(--site-accent);
    border-color: rgba(194, 65, 12, 0.35);
    background: #fff;
}

.cy-empty a {
    color: var(--site-accent);
    font-weight: 600;
}

/* Business listings — directory rows */
.cy-bar--list {
    margin-bottom: 1.75rem;
}

.cy-biz-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--site-line);
}

.cy-biz {
    display: grid;
    grid-template-columns: 2.5rem 5.5rem minmax(0, 1fr);
    gap: 1rem 1.15rem;
    align-items: start;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--site-line);
    background: transparent;
    border-radius: 0;
    overflow: visible;
    transition: background 0.25s var(--site-ease);
}

.cy-biz:hover {
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--site-line);
    box-shadow: none;
    transform: none;
}

.cy-biz__index {
    padding-top: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--site-muted);
    font-variant-numeric: tabular-nums;
}

.cy-biz__avatar {
    margin: 0;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 0.65rem;
    overflow: hidden;
    background: #e8eaee;
    border: 1px solid var(--site-line);
    box-shadow: 0 8px 20px rgba(12, 18, 32, 0.06);
}

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

.cy-biz__body {
    min-width: 0;
    padding-top: 0.1rem;
}

.cy-biz__heading {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem 1.25rem;
}

.cy-biz__name {
    margin: 0;
    flex: 1 1 14rem;
    font-family: var(--site-font-display);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--site-ink);
}

.cy-biz__score {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
    text-align: right;
    flex: 0 0 auto;
}

.cy-biz__score-value {
    font-family: var(--site-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--site-accent);
}

.cy-biz__score-meta {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--site-muted);
}

.cy-biz__place {
    margin: 0.4rem 0 0;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--site-accent);
}

.cy-biz__address {
    margin: 0.5rem 0 0;
    max-width: 46rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--site-ink-soft);
}

.cy-biz__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.15rem;
    margin-top: 0.85rem;
}

.cy-biz__actions a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--site-ink);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.cy-biz__actions a:hover {
    color: var(--site-accent);
    border-bottom-color: var(--site-accent);
}

.cy-related-more {
    margin: 1.75rem 0 0;
}

.cy-related-more a {
    font-weight: 600;
    color: var(--site-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--site-line);
}

.cy-related-more a:hover {
    color: var(--site-accent);
    border-bottom-color: var(--site-accent);
}

@keyframes cy-rise {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes cy-ken {
    from {
        transform: scale(1.04) translate3d(0, 0, 0);
    }
    to {
        transform: scale(1.1) translate3d(-1.5%, -1%, 0);
    }
}

@media (max-width: 1100px) {
    .cy-cat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .cy-grid,
    .cy-steps,
    .cy-cat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cy-stats__grid {
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .cy-hero {
        min-height: min(72vh, 34rem);
    }

    .cy-hero--figure {
        min-height: 0;
    }

    .cy-hero__figure {
        border-radius: 0.55rem;
    }

    .cy-hero__band {
        padding: 1.35rem 0 2rem;
    }

    .cy-hero__copy {
        padding: 4.5rem 0 2.5rem;
    }

    .cy-stats__grid,
    .cy-grid,
    .cy-steps,
    .cy-cat-grid {
        grid-template-columns: 1fr;
    }

    .cy-biz {
        grid-template-columns: 2rem 4.25rem minmax(0, 1fr);
        gap: 0.75rem 0.85rem;
        padding: 1.15rem 0;
    }

    .cy-biz__avatar {
        width: 4.25rem;
        height: 4.25rem;
        border-radius: 0.55rem;
    }

    .cy-biz__score {
        align-items: flex-start;
        text-align: left;
        width: 100%;
        flex-direction: row;
        align-items: baseline;
        gap: 0.5rem;
    }

    .cy-biz__main {
        grid-template-columns: 3.5rem minmax(0, 1fr);
        gap: 0.85rem;
        padding: 1.1rem 1rem;
    }

    .cy-biz__footer {
        padding: 0.75rem 1rem;
    }

    .cy-section {
        padding: 3rem 0;
    }

    .cy-cta__box {
        padding: 1.5rem;
    }

    .cy-search input {
        width: min(12rem, 55vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cy-hero__brand,
    .cy-hero__title,
    .cy-hero__lead,
    .cy-hero__actions,
    .cy-hero__gj,
    .cy-crumbs,
    .cy-hero__media img,
    .cy-hero__figure img {
        animation: none;
    }

    .cy-city,
    .cy-city__media img,
    .cy-cat,
    .cy-cat__media img {
        transition: none;
    }

    .cy-city:hover,
    .cy-cat:hover {
        transform: none;
    }

    .cy-city:hover .cy-city__media img,
    .cy-cat:hover .cy-cat__media img {
        transform: none;
    }
}

/* Add business cover — interactive, no photo hero */
.ba-cover {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0 3.25rem;
    isolation: isolate;
}

.ba-cover__ambient {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.ba-cover__mesh {
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(ellipse 55% 45% at 15% 20%, rgba(194, 65, 12, 0.14), transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 10%, rgba(12, 18, 32, 0.08), transparent 55%),
        linear-gradient(180deg, #f7f4ef 0%, var(--site-paper) 100%);
    animation: ba-mesh 14s ease-in-out infinite alternate;
}

.ba-cover__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.55;
}

.ba-cover__orb--a {
    width: 18rem;
    height: 18rem;
    top: 8%;
    right: 12%;
    background: rgba(194, 65, 12, 0.22);
    animation: ba-orb 18s ease-in-out infinite alternate;
}

.ba-cover__orb--b {
    width: 14rem;
    height: 14rem;
    bottom: 5%;
    left: 8%;
    background: rgba(17, 19, 24, 0.1);
    animation: ba-orb 22s ease-in-out infinite alternate-reverse;
}

.ba-cover__glow {
    position: absolute;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194, 65, 12, 0.18), transparent 68%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.ba-cover__glow.is-on {
    opacity: 1;
}

.ba-cover__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
    align-items: center;
}

.ba-cover__copy {
    max-width: 34rem;
    animation: cy-rise 0.9s var(--site-ease) both;
}

.ba-cover .cy-crumbs,
.ba-cover .cy-crumbs--ink {
    color: #3a4150;
    font-weight: 600;
}

.ba-cover .cy-crumbs a,
.ba-cover .cy-crumbs--ink a {
    color: #111318;
    text-decoration: none;
    border-bottom: 1px solid rgba(17, 19, 24, 0.25);
}

.ba-cover .cy-crumbs a:hover,
.ba-cover .cy-crumbs--ink a:hover {
    color: var(--site-accent);
    border-bottom-color: var(--site-accent);
}

.ba-cover .cy-crumbs span:last-child {
    color: #111318;
    font-weight: 700;
}

.ba-cover__title {
    margin: 0.85rem 0 0;
    font-family: var(--site-font-display);
    font-size: clamp(2.1rem, 4.5vw, 3.15rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: var(--site-ink);
}

.ba-cover__lead {
    margin: 1rem 0 0;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--site-ink-soft);
}

.ba-cover__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.35rem;
}

.ba-cover__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--site-ink-soft);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--site-line);
    border-radius: 0.35rem;
    backdrop-filter: blur(6px);
}

.ba-cover__meta strong {
    color: var(--site-ink);
    font-weight: 700;
}

.ba-cover__actions {
    margin-top: 1.6rem;
    animation: cy-rise 0.9s var(--site-ease) 0.12s both;
}

.ba-stage {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: cy-rise 0.9s var(--site-ease) 0.1s both;
}

.ba-stage__frame {
    position: relative;
    padding: 1.25rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--site-line);
    box-shadow: 0 22px 50px rgba(12, 18, 32, 0.1);
    backdrop-filter: blur(10px);
    transform: perspective(900px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.ba-stage__label {
    margin: 0 0 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--site-accent);
}

.ba-preview {
    padding: 1.15rem 1.2rem 1.2rem;
    border-radius: 0.75rem;
    background:
        linear-gradient(160deg, rgba(194, 65, 12, 0.08), transparent 45%),
        var(--site-paper);
    border: 1px solid var(--site-line);
}

.ba-preview__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.ba-preview__badge {
    display: inline-flex;
    padding: 0.28rem 0.55rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9a3412;
    background: rgba(194, 65, 12, 0.12);
    border-radius: 0.25rem;
}

.ba-preview__pulse {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--site-accent);
    box-shadow: 0 0 0 0 rgba(194, 65, 12, 0.45);
    animation: ba-pulse 2s ease-out infinite;
}

.ba-preview__name {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.ba-preview__place {
    margin: 0.45rem 0 0;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--site-accent);
}

.ba-preview__blurb {
    margin: 0.75rem 0 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--site-ink-soft);
}

.ba-preview__foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--site-line);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--site-muted);
}

.ba-preview.is-updating .ba-preview__name,
.ba-preview.is-updating .ba-preview__place,
.ba-preview.is-updating .ba-preview__foot span:last-child {
    opacity: 0.35;
    transform: translateY(4px);
}

.ba-stage__rail-label {
    margin: 0 0 0.45rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--site-muted);
}

.ba-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.ba-chip {
    appearance: none;
    border: 1px solid var(--site-line);
    background: rgba(255, 255, 255, 0.85);
    color: var(--site-ink-soft);
    border-radius: 0.35rem;
    padding: 0.45rem 0.7rem;
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--site-ease);
}

.ba-chip:hover {
    border-color: rgba(194, 65, 12, 0.4);
    color: var(--site-ink);
    transform: translateY(-1px);
}

.ba-chip.is-active {
    background: var(--site-ink);
    border-color: var(--site-ink);
    color: #fff;
}

.ba-chip:focus-visible {
    outline: 2px solid var(--site-accent);
    outline-offset: 2px;
}

@keyframes ba-mesh {
    from { transform: scale(1) translate3d(0, 0, 0); }
    to { transform: scale(1.06) translate3d(-1%, 1%, 0); }
}

@keyframes ba-orb {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(8%, -10%, 0); }
}

@keyframes ba-pulse {
    0% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0.45); }
    70% { box-shadow: 0 0 0 10px rgba(194, 65, 12, 0); }
    100% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0); }
}

@media (max-width: 900px) {
    .ba-cover__grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .ba-stage__frame {
        transform: none !important;
    }
}

@media (max-width: 640px) {
    .ba-cover {
        padding: 1.75rem 0 2.25rem;
    }

    .ba-cover__title {
        font-size: clamp(1.85rem, 8vw, 2.35rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ba-cover__mesh,
    .ba-cover__orb,
    .ba-preview__pulse,
    .ba-cover__copy,
    .ba-cover__actions,
    .ba-stage {
        animation: none;
    }

    .ba-stage__frame,
    .ba-chip {
        transition: none;
    }
}

.ba-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}

.ba-benefits__item {
    padding: 1.35rem 1.25rem 1.5rem;
    background: var(--site-surface);
    border: 1px solid var(--site-line);
    border-radius: 0.65rem;
    transition: transform 0.35s var(--site-ease), border-color 0.25s ease, box-shadow 0.35s var(--site-ease);
}

.ba-benefits__item:hover {
    transform: translateY(-3px);
    border-color: rgba(194, 65, 12, 0.3);
    box-shadow: 0 16px 36px rgba(12, 18, 32, 0.07);
}

.ba-benefits__num {
    display: block;
    margin-bottom: 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--site-accent);
}

.ba-benefits__item h3 {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ba-benefits__item p {
    margin: 0.55rem 0 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--site-ink-soft);
}

.cy-cats__item--more {
    border-style: dashed;
    color: var(--site-muted);
}

.ba-form-section__head {
    max-width: 40rem;
}

.ba-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(17rem, 0.75fr);
    gap: 1.5rem;
    align-items: start;
}

.ba-form-panel {
    background: var(--site-surface);
    border: 1px solid var(--site-line);
    border-radius: 0.85rem;
    padding: 1.85rem 1.7rem 2.1rem;
    box-shadow: 0 18px 40px rgba(12, 18, 32, 0.05);
}

.ba-aside {
    position: sticky;
    top: calc(var(--site-header-h, 4.5rem) + 1rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ba-aside__card {
    padding: 1.35rem 1.25rem 1.45rem;
    border-radius: 0.85rem;
    background:
        linear-gradient(155deg, rgba(194, 65, 12, 0.12), transparent 55%),
        var(--site-ink);
    color: #f8fafc;
}

.ba-aside__eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fdba74;
}

.ba-aside__card h2 {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.ba-aside__lead {
    margin: 0.65rem 0 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(248, 250, 252, 0.82);
}

.ba-aside__block {
    padding: 1.2rem 1.2rem 1.3rem;
    background: var(--site-surface);
    border: 1px solid var(--site-line);
    border-radius: 0.75rem;
}

.ba-aside__block h3 {
    margin: 0 0 0.75rem;
    font-family: var(--site-font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ba-aside__cta {
    width: 100%;
    justify-content: center;
}

.ba-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--site-ink-soft);
    font-size: 0.9rem;
    line-height: 1.5;
}

.ba-checklist li {
    position: relative;
    margin: 0 0 0.65rem;
    padding-left: 1.1rem;
}

.ba-checklist li:last-child {
    margin-bottom: 0;
}

.ba-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 0.1rem;
    background: var(--site-accent);
}

.ba-checklist strong {
    color: var(--site-ink);
}

.ba-progress {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1.5rem;
}

.ba-progress span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--site-muted);
    background: var(--site-paper);
    border: 1px solid var(--site-line);
    border-radius: 0.35rem;
}

.ba-progress span.is-on {
    color: #fff;
    background: var(--site-ink);
    border-color: var(--site-ink);
}

.ba-errors {
    margin: 0 0 1.25rem;
    padding: 0.95rem 1.05rem;
    border: 1px solid rgba(194, 65, 12, 0.35);
    border-radius: 0.5rem;
    background: rgba(194, 65, 12, 0.06);
    color: #9a3412;
}

.ba-errors ul {
    margin: 0.45rem 0 0;
    padding-left: 1.1rem;
}

.ba-fieldset {
    margin: 0 0 1.85rem;
    padding: 1.25rem 1.2rem 1.35rem;
    border: 1px solid var(--site-line);
    border-radius: 0.65rem;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 40%);
}

.ba-fieldset legend {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1rem;
    padding: 0 0.35rem;
    float: none;
    width: auto;
    font-family: var(--site-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--site-ink);
}

.ba-fieldset__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 0.35rem;
    background: var(--site-accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.15rem;
}

.ba-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ba-field--full {
    grid-column: 1 / -1;
}

.ba-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--site-ink);
}

.ba-optional {
    font-weight: 500;
    color: var(--site-muted);
}

.ba-field input,
.ba-field select,
.ba-field textarea {
    width: 100%;
    border: 1px solid var(--site-line);
    border-radius: 0.45rem;
    background: #fff;
    padding: 0.8rem 0.95rem;
    font: inherit;
    font-size: 0.9375rem;
    color: var(--site-ink);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ba-field textarea {
    resize: vertical;
    min-height: 7rem;
}

.ba-field input:focus,
.ba-field select:focus,
.ba-field textarea:focus {
    border-color: var(--site-ink);
    box-shadow: 0 0 0 3px rgba(17, 19, 24, 0.06);
}

.ba-field.is-invalid label {
    color: #9a3412;
}

.ba-field.is-invalid input,
.ba-field.is-invalid select,
.ba-field.is-invalid textarea {
    border-color: rgba(194, 65, 12, 0.55);
}

.ba-field__error {
    font-size: 0.8125rem;
    color: #9a3412;
}

.ba-field__hint {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--site-muted);
}

.ba-upload {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1rem;
    border: 1px dashed rgba(194, 65, 12, 0.35);
    border-radius: 0.55rem;
    background: rgba(194, 65, 12, 0.04);
}

.ba-upload input[type="file"] {
    padding: 0.45rem 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ba-upload__hint {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--site-muted);
}

.ba-crop {
    grid-column: 1 / -1;
    border: 1px dashed var(--site-line);
    border-radius: 0.65rem;
    overflow: hidden;
    background: var(--site-paper);
}

.ba-crop .cr-boundary {
    border-radius: 0.65rem;
}

.ba-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.25rem;
    padding: 1.15rem 1.2rem;
    border-radius: 0.65rem;
    background: var(--site-paper);
    border: 1px solid var(--site-line);
}

.ba-actions .cy-btn {
    border: 0;
    cursor: pointer;
}

.ba-actions__note {
    margin: 0;
    flex: 1 1 14rem;
    font-size: 0.875rem;
    color: var(--site-muted);
}

.ba-actions__note strong {
    color: var(--site-ink);
}

@media (max-width: 1100px) {
    .ba-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .ba-layout {
        grid-template-columns: 1fr;
    }

    .ba-aside {
        position: static;
    }
}

@media (max-width: 640px) {
    .ba-benefits,
    .ba-grid {
        grid-template-columns: 1fr;
    }

    .ba-form-panel {
        padding: 1.35rem 1.1rem 1.55rem;
    }

    .ba-fieldset {
        padding: 1rem 0.9rem 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ba-benefits__item {
        transition: none;
    }

    .ba-benefits__item:hover {
        transform: none;
    }
}

/* Business directory hub (/business) */
.bd-hub {
    position: relative;
    isolation: isolate;
}

.bd-ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bd-ambient__grid {
    position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(rgba(17, 19, 24, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 19, 24, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 55% at 50% 18%, #000 18%, transparent 72%);
    animation: bd-grid 48s linear infinite;
}

.bd-ambient__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0.48;
}

.bd-ambient__blob--a {
    width: min(42vw, 28rem);
    height: min(42vw, 28rem);
    top: -8%;
    left: -6%;
    background: rgba(194, 65, 12, 0.16);
    animation: bd-blob-a 18s ease-in-out infinite;
}

.bd-ambient__blob--b {
    width: min(38vw, 24rem);
    height: min(38vw, 24rem);
    top: 28%;
    right: -8%;
    background: rgba(17, 19, 24, 0.09);
    animation: bd-blob-b 22s ease-in-out infinite;
}

.bd-ambient__glow {
    position: absolute;
    width: 26rem;
    height: 26rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194, 65, 12, 0.14), transparent 68%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 28%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bd-ambient__glow.is-on {
    opacity: 1;
}

.bd-ambient__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bd-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    z-index: 60;
    background: linear-gradient(90deg, var(--site-accent), #fb923c);
    pointer-events: none;
}

.bd-hero {
    position: relative;
    z-index: 1;
    padding: 4.5rem 0 3rem;
    border-bottom: 1px solid var(--site-line);
}

.bd-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: center;
}

.bd-hero__copy {
    max-width: 34rem;
    animation: bd-in 0.9s var(--site-ease) both;
}

.bd-live {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(16, 185, 129, 0.28);
    background: rgba(16, 185, 129, 0.08);
    color: #047857;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.bd-live__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55);
    animation: bd-pulse 1.8s ease-out infinite;
}

.bd-hero__brand {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: clamp(1.65rem, 3.4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.bd-hero__title {
    margin: 0.85rem 0 0;
    font-family: var(--site-font-display);
    font-size: clamp(1.75rem, 3.8vw, 2.55rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.18;
    min-height: 2.6em;
}

.bd-hero__typed {
    color: var(--site-accent);
}

.bd-hero__caret {
    display: inline-block;
    width: 0.08em;
    height: 0.95em;
    margin-left: 0.1em;
    background: var(--site-accent);
    vertical-align: -0.08em;
    animation: bd-caret 0.9s steps(1) infinite;
}

.bd-hero__lead {
    margin: 1rem 0 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--site-ink-soft);
    max-width: 32rem;
}

.bd-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.bd-hero__visual {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0.25rem 0;
    animation: bd-in 1s var(--site-ease) 0.08s both;
}

.bd-map {
    position: relative;
    width: min(100%, 28rem);
    height: min(22rem, 52vw);
    aspect-ratio: auto;
    touch-action: manipulation;
}

.bd-map__grid {
    position: absolute;
    inset: -4%;
    background-image:
        linear-gradient(rgba(17, 19, 24, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 19, 24, 0.045) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, #000 15%, transparent 72%);
    pointer-events: none;
    animation: bd-grid 48s linear infinite;
}

.bd-map__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bd-map__radar {
    position: absolute;
    left: 50%;
    top: 45%;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0;
    border-radius: 50%;
    border: 1px solid rgba(194, 65, 12, 0.4);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.55;
    transition: left 0.15s ease, top 0.15s ease, opacity 0.25s ease;
}

.bd-map__radar::before,
.bd-map__radar::after {
    content: "";
    position: absolute;
    inset: -40%;
    border-radius: 50%;
    border: 1px solid rgba(194, 65, 12, 0.2);
    transform-origin: center;
    animation: bd-radar-ring 2.8s ease-out infinite;
}

.bd-map__radar::after {
    inset: -85%;
    animation-delay: 0.5s;
}

.bd-map.is-active .bd-map__radar {
    opacity: 0.95;
}

.bd-map__pins {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.bd-map__pin {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 2.25rem;
    height: 2.25rem;
    transform: translate(-50%, -50%);
    border: 0;
    padding: 0;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.bd-map__dot {
    display: block;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: var(--site-accent);
    box-shadow: 0 0 0 0 rgba(194, 65, 12, 0.45);
    transition: transform 0.25s var(--site-ease), background 0.2s ease, box-shadow 0.25s ease;
    animation: bd-marker 2.8s ease-out infinite;
    animation-delay: var(--d, 0s);
}

.bd-map__pin:nth-child(even) .bd-map__dot {
    background: #111318;
}

.bd-map__tip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 0.35rem);
    transform: translateX(-50%) translateY(4px);
    padding: 0.28rem 0.55rem;
    border-radius: 0.35rem;
    border: 1px solid var(--site-line);
    background: rgba(255, 255, 255, 0.96);
    color: var(--site-ink);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.25s var(--site-ease);
    box-shadow: 0 8px 20px rgba(17, 19, 24, 0.08);
}

.bd-map__pin:hover .bd-map__dot,
.bd-map__pin:focus-visible .bd-map__dot,
.bd-map__pin.is-active .bd-map__dot {
    transform: scale(1.45);
    background: var(--site-accent);
    box-shadow: 0 0 0 0.35rem rgba(194, 65, 12, 0.18);
    animation: none;
}

.bd-map__pin:hover .bd-map__tip,
.bd-map__pin:focus-visible .bd-map__tip,
.bd-map__pin.is-active .bd-map__tip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.bd-map__pin:focus-visible {
    outline: none;
}

.bd-map__status {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 3;
    margin: 0;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--site-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--site-muted);
    white-space: nowrap;
    pointer-events: none;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.bd-map.is-active .bd-map__status {
    color: var(--site-ink);
    border-color: rgba(194, 65, 12, 0.35);
}

.bd-strip {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--site-line);
    background: rgba(255, 255, 255, 0.55);
}

.bd-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.5rem 0;
}

.bd-strip__value {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: clamp(1.45rem, 2.8vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.bd-strip__label {
    margin: 0.25rem 0 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--site-muted);
}

.bd-marquee {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-bottom: 1px solid var(--site-line);
    background: rgba(255, 255, 255, 0.4);
}

.bd-marquee__track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    padding: 0.85rem 0;
    animation: bd-marquee 40s linear infinite;
}

.bd-marquee__track span {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--site-muted);
    white-space: nowrap;
}

.bd-marquee__track span::before {
    content: "·";
    margin-right: 2.5rem;
    color: var(--site-accent);
}

.bd-section {
    position: relative;
    z-index: 1;
    padding: 3.75rem 0;
}

.bd-section--alt {
    background: rgba(255, 255, 255, 0.55);
    border-block: 1px solid var(--site-line);
}

.bd-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.bd-bar__title {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: clamp(1.5rem, 2.8vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.bd-bar__lead {
    margin: 0.4rem 0 0;
    font-size: 0.95rem;
    color: var(--site-muted);
}

.bd-list {
    display: flex;
    flex-direction: column;
}

.bd-row {
    display: grid;
    grid-template-columns: 2.5rem 4.75rem minmax(0, 1fr) auto;
    gap: 1rem 1.15rem;
    align-items: center;
    padding: 1.1rem 0;
    border-top: 1px solid var(--site-line);
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease, padding 0.25s var(--site-ease);
}

.bd-row:last-child {
    border-bottom: 1px solid var(--site-line);
}

.bd-row:hover {
    background: rgba(255, 255, 255, 0.72);
    padding-inline: 0.75rem;
}

.bd-row__index {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--site-muted);
}

.bd-row__media {
    margin: 0;
    width: 4.75rem;
    height: 4.75rem;
    border-radius: 0.65rem;
    overflow: hidden;
    border: 1px solid var(--site-line);
    background: #e8eaee;
}

.bd-row__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--site-ease);
}

.bd-row:hover .bd-row__media img {
    transform: scale(1.06);
}

.bd-row__title {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.bd-row__place {
    margin: 0.3rem 0 0;
    font-size: 0.875rem;
    color: var(--site-muted);
}

.bd-row__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--site-muted);
    white-space: nowrap;
}

.bd-row__go {
    color: var(--site-accent);
}

.bd-cats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bd-cats__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--site-line);
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.75);
    transition: border-color 0.2s ease, transform 0.25s var(--site-ease);
}

.bd-cats__item:hover {
    border-color: rgba(194, 65, 12, 0.4);
    transform: translateY(-2px);
}

.bd-cats__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--site-ink);
    text-transform: capitalize;
}

.bd-cats__count {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--site-muted);
}

.bd-cats__note {
    margin: 1.35rem 0 0;
    font-size: 0.9375rem;
    color: var(--site-ink-soft);
}

.bd-cats__note a {
    color: var(--site-accent);
    font-weight: 600;
    text-decoration: none;
}

.bd-cats__note a:hover {
    text-decoration: underline;
}

.bd-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bd-steps__item {
    padding-top: 0.25rem;
}

.bd-steps__num {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--site-accent);
}

.bd-steps__item h3 {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.bd-steps__item p {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--site-ink-soft);
}

.bd-owners {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.25rem;
    align-items: center;
}

.bd-owners__copy h2 {
    margin: 0;
    font-family: var(--site-font-display);
    font-size: clamp(1.5rem, 2.8vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.bd-owners__copy > p {
    margin: 0.75rem 0 0;
    font-size: 1.025rem;
    line-height: 1.65;
    color: var(--site-ink-soft);
    max-width: 34rem;
}

.bd-owners__list {
    margin: 1.15rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.bd-owners__list li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--site-ink-soft);
}

.bd-owners__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--site-accent);
}

.bd-owners__stage {
    position: relative;
    min-height: 14rem;
}

.bd-owners__card {
    position: absolute;
    inset: 8% 8% auto;
    height: 78%;
    border-radius: 0.85rem;
    border: 1px solid var(--site-line);
    background: rgba(255, 255, 255, 0.7);
}

.bd-owners__card--a {
    transform: rotate(-6deg) translate(-4%, 4%);
    animation: bd-sheet-a 7s ease-in-out infinite;
}

.bd-owners__card--b {
    transform: rotate(5deg) translate(5%, -2%);
    background: rgba(244, 245, 247, 0.9);
    animation: bd-sheet-b 8s ease-in-out infinite;
}

.bd-owners__card--main {
    position: relative;
    inset: auto;
    height: auto;
    z-index: 2;
    padding: 1.35rem 1.4rem 1.5rem;
    background: #fff;
    box-shadow: 0 18px 40px rgba(17, 19, 24, 0.1);
    overflow: hidden;
}

.bd-owners__badge {
    margin: 0;
    display: inline-block;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(194, 65, 12, 0.25);
    background: rgba(194, 65, 12, 0.08);
    color: var(--site-accent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bd-owners__name {
    margin: 0.85rem 0 0;
    font-family: var(--site-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.bd-owners__path {
    margin: 0.45rem 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--site-muted);
}

.bd-owners__scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(194, 65, 12, 0.08), transparent);
    background-size: 100% 35%;
    background-repeat: no-repeat;
    animation: bd-scan 4.8s ease-in-out infinite;
}

.bd-cta {
    position: relative;
    z-index: 1;
    padding: 0 0 4.5rem;
}

.bd-cta__box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 2.1rem;
    background: var(--site-surface);
    border: 1px solid var(--site-line);
    border-radius: 0.35rem;
}

.bd-cta__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--site-accent);
}

.bd-cta__box > div > p:last-child {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--site-ink-soft);
    max-width: 32rem;
}

.bd-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bd-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.65s var(--site-ease), transform 0.65s var(--site-ease);
    transition-delay: calc(var(--i, 0) * 50ms);
}

.bd-reveal.is-in {
    opacity: 1;
    transform: none;
}

@keyframes bd-in {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
}

@keyframes bd-pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
    70% { box-shadow: 0 0 0 0.55rem rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes bd-caret {
    0%, 45% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes bd-ink {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.55; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.95; }
}

@keyframes bd-marker {
    0% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0.45); }
    70% { box-shadow: 0 0 0 0.75rem rgba(194, 65, 12, 0); }
    100% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0); }
}

@keyframes bd-radar-ring {
    0% { transform: scale(0.7); opacity: 0.7; }
    100% { transform: scale(1.35); opacity: 0; }
}

@keyframes bd-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes bd-grid {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-56px, -56px, 0); }
}

@keyframes bd-blob-a {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(8%, 10%) scale(1.08); }
}

@keyframes bd-blob-b {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10%, 6%) scale(1.05); }
}

@keyframes bd-sheet-a {
    0%, 100% { transform: rotate(-6deg) translate(-4%, 4%); }
    50% { transform: rotate(-8deg) translate(-6%, 2%); }
}

@keyframes bd-sheet-b {
    0%, 100% { transform: rotate(5deg) translate(5%, -2%); }
    50% { transform: rotate(7deg) translate(7%, 0%); }
}

@keyframes bd-scan {
    0% { background-position: 0 -40%; opacity: 0; }
    20% { opacity: 0.9; }
    100% { background-position: 0 140%; opacity: 0; }
}

@media (max-width: 960px) {
    .bd-hero__grid,
    .bd-owners,
    .bd-steps {
        grid-template-columns: 1fr;
    }

    .bd-hero__visual {
        order: -1;
    }

    .bd-map {
        width: min(100%, 22rem);
        height: 18rem;
    }

    .bd-cats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .bd-row {
        grid-template-columns: 2rem 4rem minmax(0, 1fr);
        gap: 0.75rem;
    }

    .bd-row__meta {
        grid-column: 2 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .bd-row__media {
        width: 4rem;
        height: 4rem;
    }

    .bd-strip__grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
}

@media (max-width: 640px) {
    .bd-hero {
        padding: 3.25rem 0 2.5rem;
    }

    .bd-cats {
        grid-template-columns: 1fr;
    }

    .bd-section {
        padding: 3rem 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bd-ambient__grid,
    .bd-ambient__blob,
    .bd-live__dot,
    .bd-hero__caret,
    .bd-hero__copy,
    .bd-hero__visual,
    .bd-map__radar,
    .bd-map__radar::before,
    .bd-map__radar::after,
    .bd-map__dot,
    .bd-marquee__track,
    .bd-owners__card--a,
    .bd-owners__card--b,
    .bd-owners__scan {
        animation: none !important;
    }

    .bd-map__tip {
        transition: none;
    }

    .bd-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .bd-row,
    .bd-row__media img,
    .bd-cats__item {
        transition: none;
    }

    .bd-row:hover,
    .bd-cats__item:hover {
        transform: none;
    }
}
