/* ============================================================
   Topwebsuite — public business listing
   /[category]/[city]/[country]/[business]/

   Arrangement: hero, then a two-column body — scannable detail on the left,
   a sticky contact/conversion rail on the right so the phone number never
   scrolls out of view.

   Every listing renders in the Topwebsuite palette — brand colour is NOT
   per-business, so the directory reads as one product.

   Self-contained tokens: this page loads style.css (public/marketing) but NOT
   dashboard.css, so --surface/--primary/--bg would otherwise be undefined in
   light mode. Everything is declared here and re-declared for dark, which
   theme-dark.css activates via [data-theme="dark"].
============================================================ */

.bl-page,
.bl-tabs {
  --bl-brand: #2f68e6;
  --bl-brand-deep: #1e4bb8;
  --bl-brand-ink: #12306f;
  --bl-brand-wash: #eef3fe;
  --bl-ink: #0b1533;
  --bl-ink-soft: #334063;
  --bl-muted: #6b7590;
  --bl-line: #e4e9f4;
  --bl-line-soft: #eef1f8;
  --bl-surface: #ffffff;
  --bl-surface-2: #f7f9fd;
  --bl-ok: #12855a;
  --bl-ok-wash: #e6f6ee;
  --bl-no: #c2334d;
  --bl-no-wash: #fdecef;
  --bl-sh-sm: 0 1px 2px rgba(11, 21, 51, .04), 0 4px 12px rgba(11, 21, 51, .04);
  --bl-sh-md: 0 2px 4px rgba(11, 21, 51, .04), 0 12px 32px rgba(11, 21, 51, .08);
  --bl-sh-lg: 0 32px 64px -12px rgba(11, 21, 51, .18);
  --bl-r: 16px;
  --bl-r-lg: 22px;
}

[data-theme="dark"] .bl-page,
[data-theme="dark"] .bl-tabs {
  --bl-brand: #5b93ff;
  --bl-brand-deep: #2f68e6;
  --bl-brand-ink: #a8c6ff;
  --bl-brand-wash: #14243f;
  --bl-ink: #eaf0fa;
  --bl-ink-soft: #c2cde2;
  --bl-muted: #8c9ab6;
  --bl-line: #22304a;
  --bl-line-soft: #1a2639;
  --bl-surface: #101a2b;
  --bl-surface-2: #0c1522;
  --bl-ok: #4ade9b;
  --bl-ok-wash: #102c20;
  --bl-no: #ff7d92;
  --bl-no-wash: #331a21;
  --bl-sh-sm: 0 1px 2px rgba(0, 0, 0, .4), 0 4px 12px rgba(0, 0, 0, .3);
  --bl-sh-md: 0 2px 4px rgba(0, 0, 0, .4), 0 12px 32px rgba(0, 0, 0, .45);
  --bl-sh-lg: 0 32px 64px -12px rgba(0, 0, 0, .7);
}

/* visually-hidden label (icon-only links keep an accessible name) */
.bl-sr {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.bl-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 88px;
  color: var(--bl-ink);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Font Awesome glyphs: size via font-size only — a fixed width/height would
   clip the glyph. fa-fw keeps the icon column aligned where it matters. */
.bl-i { flex: none; font-size: 16px; line-height: 1; text-align: center; }
.bl-i--brand { color: var(--bl-brand); }

/* ── section tabs (inline, above About) ──
   Deliberately not sticky: the site header is position:relative at z-index 999,
   so anything pinned to top:0 gets slid over by it as the page scrolls. */
.bl-tabs {
  border-radius: var(--bl-r);
  background: var(--bl-surface);
  border: 1px solid var(--bl-line);
  box-shadow: var(--bl-sh-sm);
}
.bl-tabs-list {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0; padding: 0 8px;
  overflow-x: auto; scrollbar-width: none;
}
.bl-tabs-list::-webkit-scrollbar { display: none; }
.bl-tabs-list a {
  display: block; position: relative;
  padding: 16px 16px;
  font-size: 14.5px; font-weight: 620; color: var(--bl-muted);
  text-decoration: none; white-space: nowrap;
  transition: color .18s ease;
}
.bl-tabs-list a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 0;
  height: 2px; border-radius: 2px 2px 0 0; background: var(--bl-brand);
  transform: scaleX(0); transition: transform .22s cubic-bezier(.4, 0, .2, 1);
}
.bl-tabs-list a:hover { color: var(--bl-ink); }
.bl-tabs-list a.is-active { color: var(--bl-brand); }
.bl-tabs-list a.is-active::after { transform: scaleX(1); }

/* ── breadcrumbs ── */
.bl-crumbs { padding: 20px 0 0; }
.bl-crumbs ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 7px;
  list-style: none; margin: 0; padding: 0; font-size: 13px; color: var(--bl-muted);
}
.bl-crumbs li + li::before { content: "›"; margin-right: 7px; opacity: .55; }
.bl-crumbs a { color: var(--bl-muted); text-decoration: none; transition: color .15s ease; }
.bl-crumbs a:hover { color: var(--bl-brand); }

/* ── buttons ── */
.bl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 20px; border-radius: 11px; border: 1px solid transparent;
  font-size: 14.5px; font-weight: 650; letter-spacing: -.01em;
  text-decoration: none; cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.bl-btn--primary { background: var(--bl-brand); color: #fff; box-shadow: 0 4px 14px rgba(47, 104, 230, .28); }
.bl-btn--primary:hover { background: var(--bl-brand-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(47, 104, 230, .36); }
.bl-btn--soft { background: var(--bl-surface); color: var(--bl-ink); border-color: var(--bl-line); box-shadow: var(--bl-sh-sm); }
.bl-btn--soft:hover { border-color: var(--bl-brand); color: var(--bl-brand); transform: translateY(-2px); }
.bl-btn--invert { background: #fff; color: var(--bl-brand-deep); box-shadow: 0 8px 24px rgba(0, 0, 0, .16); }
.bl-btn--invert:hover { transform: translateY(-2px); }
.bl-btn--outline { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .38); }
.bl-btn--outline:hover { background: rgba(255, 255, 255, .2); border-color: #fff; }
.bl-btn--block { display: flex; width: 100%; }

/* ── hero ── */
.bl-hero { margin-top: 16px; scroll-margin-top: 20px; }
.bl-cover {
  position: relative; height: 230px;
  border-radius: var(--bl-r-lg); overflow: hidden;
  background: var(--bl-surface-2); isolation: isolate;
}
/* The cover fills the band. The blurred layer stays underneath so a logo with a
   transparent background sits on its own colours rather than a bare surface. */
.bl-cover-blur {
  position: absolute; inset: -10%;
  background-size: cover; background-position: center;
  filter: blur(34px) saturate(140%); transform: scale(1.15); opacity: .85;
}
.bl-cover-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.bl-cover-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6, 14, 33, .04), rgba(6, 14, 33, .3) 65%, rgba(6, 14, 33, .5));
}
.bl-cover-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 120% at 12% 8%, rgba(255, 255, 255, .28), transparent 46%),
    radial-gradient(100% 140% at 88% 100%, #6f4bd8, transparent 52%),
    linear-gradient(120deg, var(--bl-brand-deep), var(--bl-brand) 58%, #4f8bff);
}
.bl-cover-mesh::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(80% 80% at 50% 0%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 0%, #000, transparent 78%);
}

.bl-identity {
  position: relative; z-index: 1;
  margin: -60px 24px 0; padding: 26px 30px;
  display: flex; align-items: flex-end; gap: 24px;
  border-radius: var(--bl-r-lg);
  background: var(--bl-surface); border: 1px solid var(--bl-line);
  box-shadow: var(--bl-sh-lg);
}
.bl-identity-logo {
  flex: none; width: 100px; height: 100px; margin-top: -46px;
  border-radius: 20px; background: var(--bl-surface); padding: 6px;
  box-shadow: var(--bl-sh-md); display: grid; place-items: center;
}
.bl-identity-logo img {
  width: 100%; height: 100%; border-radius: 15px;
  object-fit: cover; display: block; background: var(--bl-surface-2);
}
.bl-identity-initials {
  width: 100%; height: 100%; border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bl-brand-deep), var(--bl-brand));
  color: #fff; font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 32px; font-weight: 800; letter-spacing: -.02em;
}
.bl-identity-copy { flex: 1; min-width: 0; }
.bl-identity-actions { flex: none; display: flex; flex-wrap: wrap; gap: 10px; }

.bl-identity-copy h1 {
  margin: 0 0 8px;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(26px, 3.4vw, 38px); font-weight: 800;
  line-height: 1.12; letter-spacing: -.03em; color: var(--bl-ink);
  overflow-wrap: anywhere;
}
.bl-locus {
  display: inline-flex; align-items: center; gap: 7px; margin: 0 0 10px;
  font-size: 14.5px; font-weight: 500; color: var(--bl-muted);
}
.bl-locus .bl-i { color: var(--bl-brand); font-size: 16px; }
.bl-tagline { margin: 0 0 12px; font-size: 16px; line-height: 1.55; color: var(--bl-ink-soft); overflow-wrap: anywhere; }

.bl-pill-row { display: flex; flex-wrap: wrap; gap: 7px; }
.bl-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 8px;
  background: var(--bl-surface-2); border: 1px solid var(--bl-line);
  font-size: 12.5px; font-weight: 600; color: var(--bl-muted);
  text-decoration: none; transition: .15s ease;
}
a.bl-pill:hover { border-color: var(--bl-brand); color: var(--bl-brand); }
.bl-pill .bl-i { font-size: 14px; }
.bl-pill--brand {
  background: var(--bl-brand-wash);
  border-color: color-mix(in srgb, var(--bl-brand) 22%, transparent);
  color: var(--bl-brand-ink);
}
.bl-pill--gold { background: #fff8e6; border-color: #f5d894; color: #8a5b00; }
[data-theme="dark"] .bl-pill--gold { background: #33280d; border-color: #6b551d; color: #f5cf7a; }

/* ── two-column body ── */
.bl-layout {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 366px;
  gap: 28px;
  align-items: start;
}
.bl-main { min-width: 0; display: flex; flex-direction: column; gap: 20px; }

.bl-block {
  padding: 30px 32px;
  border-radius: var(--bl-r);
  background: var(--bl-surface);
  border: 1px solid var(--bl-line);
  box-shadow: var(--bl-sh-sm);
  scroll-margin-top: 20px;
}
.bl-block-title {
  margin: 0 0 18px;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 19px; font-weight: 750; letter-spacing: -.02em; color: var(--bl-ink);
}
.bl-prose p {
  margin: 0 0 15px; font-size: 16px; line-height: 1.75;
  color: var(--bl-ink-soft); overflow-wrap: anywhere;
}
.bl-prose p:last-child { margin-bottom: 0; }

/* services / products checklist */
.bl-offers {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 4px 24px;
}
.bl-offer { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0; min-width: 0; }
.bl-offer .bl-i { font-size: 19px; margin-top: 1px; }
.bl-offer div { min-width: 0; }
.bl-offer strong {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  font-size: 15.5px; font-weight: 620; color: var(--bl-ink); overflow-wrap: anywhere;
}
.bl-price {
  padding: 2px 8px; border-radius: 6px;
  background: var(--bl-brand-wash); color: var(--bl-brand-ink);
  font-size: 12.5px; font-weight: 700; font-style: normal;
}
[data-theme="dark"] .bl-price { color: var(--bl-brand); }
.bl-offer.is-featured strong::after {
  content: "\f005"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  font-size: 11px; color: #e0a800;
}
.bl-offer span { display: block; margin-top: 3px; font-size: 14px; line-height: 1.6; color: var(--bl-muted); overflow-wrap: anywhere; }

/* location */
.bl-address {
  display: flex; align-items: flex-start; gap: 10px; margin: 0 0 18px;
  font-size: 16px; line-height: 1.65; color: var(--bl-ink-soft); overflow-wrap: anywhere;
}
.bl-address .bl-i { font-size: 19px; margin-top: 2px; }
.bl-map-embed {
  position: relative;
  margin-bottom: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--bl-line);
  background: var(--bl-surface-2);
  aspect-ratio: 16 / 9;
}
.bl-map-embed iframe { display: block; width: 100%; height: 100%; border: 0; }
/* Google's tiles are light-only; take the edge off the glare in dark mode
   without washing out the labels. */
[data-theme="dark"] .bl-map-embed iframe { filter: invert(.9) hue-rotate(180deg) saturate(.85) contrast(.9); }

.bl-map {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; border-radius: 14px;
  border: 1px solid var(--bl-line);
  background:
    radial-gradient(120% 160% at 100% 0%, var(--bl-brand-wash), transparent 60%),
    var(--bl-surface-2);
  text-decoration: none; color: inherit;
  transition: border-color .16s ease, transform .16s ease;
}
.bl-map:hover { border-color: var(--bl-brand); transform: translateY(-2px); }
.bl-map-pin {
  flex: none; width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 14px; background: var(--bl-brand); color: #fff;
  box-shadow: 0 6px 16px rgba(47, 104, 230, .32);
}
.bl-map-pin .bl-i { font-size: 22px; }
.bl-map span { min-width: 0; }
.bl-map strong { display: block; font-size: 15.5px; font-weight: 650; color: var(--bl-ink); }
.bl-map small { display: block; margin-top: 2px; font-size: 13.5px; color: var(--bl-muted); }
.bl-map-go { margin-left: auto; color: var(--bl-brand); font-size: 18px; }

/* browse more (internal links) */
.bl-block--browse { background: var(--bl-surface-2); }
.bl-browse { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.bl-browse a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 2px; border-bottom: 1px solid var(--bl-line);
  font-size: 15px; font-weight: 600; color: var(--bl-brand-ink);
  text-decoration: none; transition: color .15s ease, padding-left .15s ease;
}
[data-theme="dark"] .bl-browse a { color: var(--bl-brand); }
.bl-browse li:last-child a { border-bottom: 0; padding-bottom: 0; }
.bl-browse a:hover { color: var(--bl-brand); padding-left: 6px; }
.bl-browse .bl-i { margin-left: auto; font-size: 15px; opacity: .5; }

/* ── sticky rail ── */
.bl-rail { position: sticky; top: 20px; display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.bl-card {
  border-radius: var(--bl-r);
  background: var(--bl-surface);
  border: 1px solid var(--bl-line);
  box-shadow: var(--bl-sh-sm);
}
.bl-card--contact { padding: 24px 20px 22px; }
.bl-card-title {
  margin: 0 0 6px; padding: 0 4px;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 17px; font-weight: 750; letter-spacing: -.02em; color: var(--bl-ink);
}

.bl-channels { display: flex; flex-direction: column; }
.bl-channel {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 10px; border-radius: 12px;
  text-decoration: none; color: inherit; min-width: 0;
  transition: background .16s ease;
}
a.bl-channel:hover { background: var(--bl-surface-2); }
.bl-channel + .bl-channel { border-top: 1px solid var(--bl-line-soft); border-radius: 0; }
.bl-channel-icon {
  flex: none; width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 11px; background: var(--bl-brand-wash); color: var(--bl-brand);
}
.bl-channel-icon .bl-i { font-size: 18px; }
.bl-channel-text { flex: 1; min-width: 0; }
.bl-channel-text > span {
  display: block; font-size: 11.5px; font-weight: 650;
  letter-spacing: .06em; text-transform: uppercase; color: var(--bl-muted);
}
.bl-channel-text > strong {
  display: block; margin-top: 3px;
  font-size: 15px; font-weight: 620; color: var(--bl-ink); overflow-wrap: anywhere;
}
.bl-channel-go { color: var(--bl-muted); font-size: 16px; opacity: 0; transform: translateX(-4px); transition: .18s ease; }
a.bl-channel:hover .bl-channel-go { opacity: 1; transform: translateX(0); color: var(--bl-brand); }
.bl-inline-link {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 6px;
  font-size: 13.5px; font-weight: 650; color: var(--bl-brand); text-decoration: none;
}
.bl-inline-link:hover { text-decoration: underline; }
.bl-inline-link .bl-i { font-size: 13px; }
/* full-width row of its own so the marks sit side by side, not one per line */
.bl-social-block { margin-top: 14px; padding: 14px; border-radius: 13px; background: var(--bl-surface-2); }
.bl-social-label {
  display: block; margin-bottom: 10px;
  font-size: 11.5px; font-weight: 650; letter-spacing: .06em;
  text-transform: uppercase; color: var(--bl-muted);
}
.bl-social { display: flex; flex-wrap: wrap; gap: 8px; }
.bl-social a {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--bl-surface); border: 1px solid var(--bl-line);
  color: var(--bl-ink-soft); text-decoration: none;
  transition: .15s ease;
}
.bl-social a .bl-i { font-size: 16px; }
.bl-social a:hover {
  border-color: var(--bl-brand); color: #fff; background: var(--bl-brand);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(47, 104, 230, .28);
}

/* hours */
.bl-rail-hours { margin-top: 14px; padding: 16px 14px 14px; border-radius: 13px; background: var(--bl-surface-2); }
.bl-rail-hours-head {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
  font-size: 13.5px; font-weight: 700; color: var(--bl-ink);
}
.bl-status {
  margin-left: auto; padding: 4px 10px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .02em;
}
.bl-status.is-open { background: var(--bl-ok-wash); color: var(--bl-ok); }
.bl-status.is-closed { background: var(--bl-no-wash); color: var(--bl-no); }
.bl-hours { margin: 0; display: flex; flex-direction: column; }
.bl-hours > div {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 7px 6px; border-radius: 7px;
  font-size: 13.5px;
}
.bl-hours > div.is-today { background: var(--bl-surface); box-shadow: var(--bl-sh-sm); }
.bl-hours dt { color: var(--bl-muted); font-weight: 600; }
.bl-hours > div.is-today dt,
.bl-hours > div.is-today dd { color: var(--bl-ink); font-weight: 700; }
.bl-hours dd { margin: 0; color: var(--bl-ink-soft); text-align: right; }

.bl-rail-actions { display: flex; flex-direction: column; gap: 9px; margin-top: 16px; }
.bl-share {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 10px; padding: 11px;
  border: 0; border-radius: 10px; background: transparent;
  font: inherit; font-size: 13.5px; font-weight: 650;
  color: var(--bl-muted); cursor: pointer; transition: .15s ease;
}
.bl-share:hover { background: var(--bl-surface-2); color: var(--bl-brand); }

/* claim */
.bl-card--claim { padding: 22px 20px; background: var(--bl-brand-wash); border-color: color-mix(in srgb, var(--bl-brand) 20%, transparent); }
.bl-card--claim h3 {
  display: flex; align-items: center; gap: 8px; margin: 0 0 8px;
  font-size: 15.5px; font-weight: 720; color: var(--bl-brand-ink);
}
[data-theme="dark"] .bl-card--claim h3 { color: var(--bl-brand-ink); }
.bl-card--claim p { margin: 0 0 16px; font-size: 14px; line-height: 1.6; color: var(--bl-ink-soft); }

/* ── closing CTA ── */
.bl-cta {
  position: relative; margin-top: 30px; padding: 44px;
  border-radius: var(--bl-r-lg); overflow: hidden; color: #fff;
  background:
    radial-gradient(110% 130% at 88% 110%, #6f4bd8, transparent 55%),
    linear-gradient(120deg, var(--bl-brand-deep), var(--bl-brand) 62%, #4f8bff);
  box-shadow: var(--bl-sh-lg);
}
.bl-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(70% 90% at 20% 0%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 90% at 20% 0%, #000, transparent 75%);
}
.bl-cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.bl-cta-copy { max-width: 56ch; }
.bl-cta h2 {
  margin: 0 0 8px; font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(21px, 2.4vw, 29px); font-weight: 800; line-height: 1.2; letter-spacing: -.025em;
}
.bl-cta p { margin: 0; font-size: 15.5px; line-height: 1.6; opacity: .92; }
.bl-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── client-render states (fallback path only) ── */
.bl-state { max-width: 1200px; margin: 64px auto; padding: 48px 24px; text-align: center; font-size: 15px; color: #6b7590; }
.bl-state.is-error { color: #dc2626; }

/* ── owner banner ── */
.bl-owner {
  max-width: 1200px; margin: 20px auto 0; padding: 16px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  border-radius: 14px; background: #eef3fe; border: 1px solid #d5e2fb;
  font-size: 14px; color: #12306f;
}
[data-theme="dark"] .bl-owner { background: #14243f; border-color: #22304a; color: #a8c6ff; }
.bl-owner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.bl-owner .bl-btn { padding: 10px 18px; font-size: 13.5px; }
.bl-owner .bl-btn--primary { background: #2f68e6; color: #fff; }
.bl-owner .bl-btn--soft { background: #fff; color: #12306f; border-color: #d5e2fb; }
[data-theme="dark"] .bl-owner .bl-btn--soft { background: #101a2b; color: #a8c6ff; border-color: #22304a; }

/* ── responsive ── */
@media (max-width: 1080px) {
  .bl-layout { grid-template-columns: 1fr; gap: 20px; }
  /* Un-stick once stacked — a sticky full-width block would cover the content. */
  .bl-rail { position: static; }
  .bl-identity { flex-wrap: wrap; align-items: flex-start; }
  .bl-identity-actions { width: 100%; }
}

@media (max-width: 760px) {
  .bl-page { padding: 0 14px 60px; }
  .bl-tabs-list { padding: 0 4px; }
  .bl-tabs-list a { padding: 14px 12px; font-size: 13.5px; }

  .bl-cover { height: 150px; border-radius: 16px; }
  .bl-identity {
    margin: -48px 10px 0; padding: 20px;
    flex-direction: column; align-items: stretch; gap: 16px; border-radius: 16px;
  }
  .bl-identity-logo { width: 76px; height: 76px; margin-top: -40px; border-radius: 18px; }
  .bl-identity-initials { font-size: 25px; }
  .bl-identity-actions .bl-btn { flex: 1 1 auto; }

  .bl-layout { margin-top: 22px; }
  .bl-block { padding: 22px 18px; border-radius: 14px; }
  .bl-offers { grid-template-columns: 1fr; gap: 0; }
  .bl-map { padding: 16px; gap: 12px; }
  .bl-map-pin { width: 40px; height: 40px; }
  .bl-channel { padding: 12px 6px; gap: 11px; }
  .bl-channel-go { display: none; }
  .bl-cta { margin-top: 22px; padding: 30px 22px; border-radius: 16px; }
  .bl-cta-actions { width: 100%; }
  .bl-cta-actions .bl-btn { flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
  .bl-btn, .bl-channel-go, .bl-social a, .bl-map, .bl-browse a { transition: none; }
  .bl-btn:hover, .bl-map:hover { transform: none; }
  .bl-browse a:hover { padding-left: 2px; }
}
