.bh-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 20px 64px;
    font-family: var(--font-primary, sans-serif);
}

.bh-back {
    margin-bottom: 16px;
}
.bh-back__link {
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
}
.bh-back__link:hover { color: #111; }

/* Header */
.bh-header { margin-bottom: 32px; }
.bh-header__name {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    margin: 0 0 6px;
    color: #111;
}
.bh-header__category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}
.bh-header__cat-icon { flex-shrink: 0; }
.bh-header__cat-name {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}
.bh-header__address {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

/* Body layout */
.bh-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}
@media (max-width: 720px) {
    .bh-body { grid-template-columns: 1fr; }
}

/* Hero image */
.bh-hero-image {
    position: relative;
    margin-bottom: 48px;
    border-radius: 10px;
    overflow: visible;
    max-height: 420px;
}
.bh-hero-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    max-height: 420px;
}
.bh-hero-image__credit {
    position: absolute;
    bottom: 8px;
    right: 94px; /* leave room for badge */
    font-size: 11px;
    color: rgba(255,255,255,.8);
    background: rgba(0,0,0,.3);
    padding: 2px 6px;
    border-radius: 3px;
}
.bh-hero-badge {
    position: absolute;
    bottom: -32px;
    right: 16px;
    width: 64px;
    height: 64px;
}
.bh-hero-badge img { width: 64px; height: 64px; }

/* Description */
.bh-description {
    font-size: 16px;
    line-height: 1.65;
    color: #374151;
    margin-bottom: 28px;
}
.bh-description p { margin: 0 0 1em; }

/* Gallery */
.bh-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 32px;
}
.bh-gallery__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.bh-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bh-gallery__credit {
    position: absolute;
    bottom: 4px;
    right: 6px;
    font-size: 10px;
    color: rgba(255,255,255,.8);
    background: rgba(0,0,0,.3);
    padding: 1px 4px;
    border-radius: 3px;
}

/* Nearby routes */
.bh-routes { margin-bottom: 32px; }
.bh-routes__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #111;
}
.bh-routes__radius { font-size: 14px; font-weight: 400; color: #6b7280; }
.bh-routes__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.bh-routes__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fafafa;
}
.bh-routes__thumb {
    width: 60px;
    height: 44px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}
.bh-routes__thumb--empty {
    opacity: 0.35;
    border-radius: 5px;
}
.bh-routes__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bh-routes__name {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bh-routes__name:hover { color: #4c7c59; }
.bh-routes__meta { font-size: 13px; color: #6b7280; }

/* Sidebar */
.bh-sidebar { display: flex; flex-direction: column; gap: 24px; }

/* Contact */
.bh-contact {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
}
.bh-contact__title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 14px;
    color: #111;
}
.bh-contact__row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0 0 10px;
    font-size: 14px;
}
.bh-contact__label { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: #9ca3af; }
.bh-contact__row a { color: #111; text-decoration: none; }
.bh-contact__row a:hover { color: #4c7c59; }
.bh-contact__website {
    display: inline-block;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #4c7c59;
    text-decoration: none;
}
.bh-contact__website:hover { text-decoration: underline; }

/* Facilities */
.bh-facilities {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
}
.bh-facilities__title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 14px;
    color: #111;
}
/* Pill items come from map.css .feature-icon / .bubble-text */
.bh-facilities .poi-features { margin: 0; }

/* Map */
.bh-map-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}
#bh-map { height: 280px; width: 100%; }

/* Zoom at top-right — no sidebar offset needed */
#bh-map .leaflet-top.leaflet-right { top: 0; }

/* POI marker */
.bh-map-marker {
    width: 18px;
    height: 18px;
    background: #4c7c59;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,.4);
}
