/*
Theme Name: Barbara Cosgrove Lamps
Theme URI: https://barbaracosgrovelamps.com
Author: Barbara Cosgrove Lamps
Description: Cinematic hospitality aesthetic — Soho House × Aesop × RH × Equinox. Photography-dominant, full-bleed moments, sticky scroll storytelling, magnetic interactions. Vanilla JS motion engine.
Version: 7.24.0
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: barbara-cosgrove-lamps
Tags: full-site-editing, custom-colors, custom-menu, editor-style, featured-images
*/


:root {
  /* Cinematic palette — muted, restrained */
  --bg:           #FDFBF7;
  --bg-alt:       #F5F1E8;
  --bg-deep:      #EDE5D2;
  --bg-paper:     #FBF7EE;
  --bg-dark:      #14110D;
  --bg-darker:    #0B0908;

  /* Single accent — even more muted brass */
  --brass:        #9A7820;
  --brass-soft:   #C8A148;
  --brass-glow:   rgba(154, 120, 32, 0.16);

  /* Ink (warm-tinted neutrals) */
  --ink:          #14110D;
  --ink-soft:     #3D362C;
  --ink-mute:     #7A6F5E;
  --ink-faint:    #B8AE9B;

  /* Light text on dark */
  --text-light:        #FDFBF7;
  --text-light-mute:   rgba(253, 251, 247, 0.7);
  --text-light-faint:  rgba(253, 251, 247, 0.4);

  /* Borders */
  --line:         rgba(20, 17, 13, 0.07);
  --line-md:      rgba(20, 17, 13, 0.12);
  --line-strong:  rgba(20, 17, 13, 0.18);
  --line-dark:    rgba(253, 251, 247, 0.08);

  /* Tinted shadows */
  --shadow-sm:    0 1px 2px rgba(82, 64, 28, 0.04);
  --shadow-md:    0 8px 24px -8px rgba(82, 64, 28, 0.10);
  --shadow-lg:    0 24px 56px -24px rgba(82, 64, 28, 0.16);
  --shadow-xl:    0 40px 80px -32px rgba(82, 64, 28, 0.22);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'Geist Mono', ui-monospace, monospace;

  /* Easings */
  --ease-out:     cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:  cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer:  cubic-bezier(0.32, 0.72, 0, 1);
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern', 'liga', 'calt', 'ss01';
  overflow-x: hidden;
}
@media (max-width: 700px) { body { padding-bottom: 76px; } }

/* Subtle film grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

.wp-site-blocks { padding: 0 !important; background: var(--bg); }
.has-global-padding { padding-left: 0 !important; padding-right: 0 !important; }
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none !important;
  margin-inline: 0 !important;
}
.wp-block-post-content { max-width: 100% !important; }

/* CRITICAL: Kill WP-injected 24px margin between top-level blocks.
   That margin shows the body bg (off-white) between every section,
   creating a "white gap" appearance. */
:where(.wp-site-blocks) > *,
.wp-site-blocks > *,
.wp-block-post-content > *,
:root :where(.is-layout-flow) > *,
:root :where(.is-layout-constrained) > * {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}
:root { --wp--style--block-gap: 0 !important; }

/* ===== TYPE ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.022em;
  margin: 0 0 0.5em;
  line-height: 1.04;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 8vw, 7rem); font-weight: 500; letter-spacing: -0.04em; line-height: 0.92; }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 500; letter-spacing: -0.03em; line-height: 0.98; }
h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 500; letter-spacing: -0.018em; }
h4 {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
}
p { margin: 0 0 1.25em; max-width: 70ch; }
em, i { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--brass); }
a { color: var(--ink); text-decoration: none; transition: color 0.18s var(--ease-out); }
a:hover { color: var(--brass); }
img, picture, video { max-width: 100%; height: auto; display: block; }

/* Force all SVG icons to inherit text color (kills browser-default colors) */
svg { color: inherit; }

/* Kill browser-default focus rings (using our own focus styling) */
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; border-radius: 4px; }

/* Style native select with custom arrow (browser-default arrow can render blue/system color) */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%237A6F5E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 40px !important;
}

/* Override any WP block-editor blue color leaks */
.has-vivid-cyan-blue-color,
.has-pale-cyan-blue-color,
.has-vivid-purple-color,
.has-luminous-vivid-amber-color { color: inherit !important; }

/* Style autofill so it doesn't show browser-yellow/blue */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink);
  -webkit-box-shadow: 0 0 0 30px var(--bg) inset;
  box-shadow: 0 0 0 30px var(--bg) inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* ===== LAYOUT ===== */
.bcl-container { max-width: 1320px; margin-inline: auto; padding-inline: clamp(24px, 4vw, 64px); }
.bcl-container--narrow { max-width: 880px; }
.bcl-container--wide { max-width: 1480px; }
.bcl-section { padding-block: clamp(64px, 7vw, 96px); position: relative; }
.bcl-section--alt { background: var(--bg-alt); }
.bcl-section--deep { background: var(--bg-deep); }
.bcl-section--dark { background: var(--bg-dark); color: var(--text-light-mute); }
.bcl-section--dark h2, .bcl-section--dark h3 { color: var(--text-light); }
.bcl-section--dark p { color: var(--text-light-mute); }
.bcl-section--dark em { color: var(--brass-soft); }

/* Reveal — JS-driven via .is-visible */
.bcl-reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 1s var(--ease-out);
}
.bcl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ===== EYEBROW ===== */
.bcl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  margin: 0 0 28px;
  padding: 6px 14px;
  background: rgba(20, 17, 13, 0.04);
  border: 1px solid var(--line);
  border-radius: 100px;
}
.bcl-eyebrow::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--brass);
  border-radius: 50%;
  flex-shrink: 0;
}
.bcl-section--dark .bcl-eyebrow,
.bcl-cinema-quote .bcl-eyebrow {
  background: rgba(253, 251, 247, 0.06);
  border-color: rgba(253, 251, 247, 0.1);
  color: var(--text-light-mute);
}

/* ===== HEADER — edge-to-edge with mega-menus (Stripe / Linear style) ===== */
.bcl-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.82);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.bcl-header.is-mega-open {
  background: rgba(253, 251, 247, 0.96);
}
.bcl-header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1480px;
  margin-inline: auto;
  padding: 14px clamp(20px, 4vw, 56px);
}
.bcl-header__logo {
  flex-shrink: 0;
  display: block;
}
.bcl-header__logo img { height: 32px; width: auto; display: block; }

.bcl-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-grow: 1;
}
.bcl-nav-item {
  position: relative;
}
.bcl-nav-item__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.18s var(--ease-out), background 0.18s var(--ease-out);
}
.bcl-nav-item__link:hover { color: var(--ink); background: rgba(20, 17, 13, 0.04); }
.bcl-nav-item__chev {
  transition: transform 0.25s var(--ease-out);
  opacity: 0.6;
}
.bcl-nav-item.is-open .bcl-nav-item__link {
  color: var(--ink);
  background: rgba(20, 17, 13, 0.05);
}
.bcl-nav-item.is-open .bcl-nav-item__chev { transform: rotate(180deg); opacity: 1; }

.bcl-header__cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.bcl-header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  color: var(--ink); padding: 9px 16px; border-radius: 100px;
  background: rgba(20, 17, 13, 0.04);
  transition: all 0.2s var(--ease-out);
  text-decoration: none;
}
.bcl-header__phone:hover { background: var(--ink); color: var(--bg); }
.bcl-header__phone svg { width: 12px; height: 12px; stroke-width: 1.5; }
.bcl-header__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--ink); color: var(--bg);
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  border-radius: 100px;
  transition: all 0.2s var(--ease-out);
  text-decoration: none;
}
.bcl-header__cta:hover { background: var(--brass); color: var(--bg); }
.bcl-header__cta svg {
  width: 12px; height: 12px;
  stroke: currentColor; stroke-width: 1.75;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s var(--ease-out);
}
.bcl-header__cta:hover svg { transform: translateX(2px); }

@media (max-width: 950px) {
  .bcl-header__nav { display: none; }
  .bcl-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
  }
  /* unwrap cta-group children to participate in parent grid */
  .bcl-header__cta-group {
    display: contents;
  }
  .bcl-header__cta {
    grid-column: 2;
    justify-self: center;
  }
  .bcl-header__burger {
    grid-column: 3;
    justify-self: end;
  }
}
@media (max-width: 600px) {
  .bcl-header__inner { padding: 10px 14px; gap: 12px; }
  .bcl-header__cta { padding: 9px 16px; font-size: 12.5px; }
  .bcl-header__cta svg { width: 12px; height: 12px; }
}
@media (max-width: 380px) {
  .bcl-header__cta span { display: none; }
  .bcl-header__cta { padding: 9px; }
}

/* Mobile menu trigger (hamburger) */
.bcl-header__burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
  background: rgba(20, 17, 13, 0.04);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s var(--ease-out);
  flex-shrink: 0;
  padding: 0;
}
.bcl-header__burger:hover { background: rgba(20, 17, 13, 0.08); }
.bcl-header__burger-icon {
  position: relative;
  width: 18px; height: 12px;
  display: block;
}
.bcl-header__burger-icon::before,
.bcl-header__burger-icon::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out), top 0.3s var(--ease-out);
}
.bcl-header__burger-icon::before { top: 0; }
.bcl-header__burger-icon::after { top: 10px; }
.bcl-mobile-menu.is-open ~ .bcl-header__burger .bcl-header__burger-icon::before,
.bcl-header__burger.is-open .bcl-header__burger-icon::before { top: 5px; transform: rotate(45deg); }
.bcl-header__burger.is-open .bcl-header__burger-icon::after { top: 5px; transform: rotate(-45deg); }

@media (max-width: 950px) {
  .bcl-header__burger { display: inline-flex; }
}

/* Mobile menu overlay */
.bcl-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0s linear 0.3s;
  overflow-y: auto;
  padding: 80px 24px 32px;
}
.bcl-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0s linear 0s;
}
.bcl-mobile-menu__inner {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bcl-mobile-menu details {
  border-bottom: 1px solid var(--line);
}
.bcl-mobile-menu summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.bcl-mobile-menu summary::-webkit-details-marker { display: none; }
.bcl-mobile-menu summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: var(--brass);
  transition: transform 0.3s var(--ease-out);
  line-height: 1;
}
.bcl-mobile-menu details[open] summary::after { content: "−"; transform: rotate(180deg); }
.bcl-mobile-menu__sub {
  padding: 4px 4px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bcl-mobile-menu__sub a {
  padding: 10px 4px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.bcl-mobile-menu__sub a:last-child { border-bottom: none; }
.bcl-mobile-menu__link {
  display: block;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.bcl-mobile-menu__cta-group {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bcl-mobile-menu__cta-group .bcl-btn { width: 100%; justify-content: center; }
.bcl-mobile-menu__cta-group .bcl-header__phone {
  width: 100%;
  justify-content: center;
  padding: 14px 18px;
  font-size: 15px;
}

/* Body scroll lock when menu open */
body.bcl-menu-open { overflow: hidden; }

/* ===== MEGA-MENU PANELS ===== */
.bcl-mega {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(253, 251, 247, 0.98);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ease-out), transform 0.3s var(--ease-out), visibility 0s linear 0.25s;
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}
.bcl-mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.25s var(--ease-out), transform 0.3s var(--ease-out), visibility 0s linear 0s;
}
.bcl-mega__inner {
  max-width: 1480px;
  margin-inline: auto;
  padding: 40px clamp(20px, 4vw, 56px) 32px;
}
.bcl-mega__head {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.bcl-mega__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.bcl-mega__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
  max-width: none;     /* override global p max-width: 70ch */
}
.bcl-mega__title em { font-family: var(--font-display); font-style: italic; color: var(--brass); }

/* Services grid — 5 cols × 2 rows */
.bcl-mega__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 700px) { .bcl-mega__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .bcl-mega__grid { grid-template-columns: repeat(5, 1fr); } }

.bcl-mega__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s var(--ease-out), transform 0.3s var(--ease-out);
}
.bcl-mega__item:hover {
  background: rgba(20, 17, 13, 0.04);
  transform: translateY(-2px);
}
.bcl-mega__thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-deep);
}
.bcl-mega__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.bcl-mega__item:hover .bcl-mega__thumb img { transform: scale(1.06); }
.bcl-mega__item-body {
  display: flex; align-items: baseline; gap: 8px;
  padding: 0 4px;
}
.bcl-mega__item-num {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.bcl-mega__item-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
  flex-grow: 1;
}
.bcl-mega__item:hover .bcl-mega__item-title { color: var(--brass); }

/* Locations columns */
.bcl-mega__states {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 700px) { .bcl-mega__states { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .bcl-mega__states { grid-template-columns: repeat(4, 1fr); } }
.bcl-mega__state-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bcl-mega__col-label {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.bcl-mega__state-col a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.18s var(--ease-out), padding 0.2s var(--ease-out);
}
.bcl-mega__state-col a:hover { color: var(--brass); padding-left: 6px; }

.bcl-mega__foot {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.bcl-mega__foot-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.18s var(--ease-out);
}
.bcl-mega__foot-link:hover { color: var(--brass); }
.bcl-mega__foot-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--ink); color: var(--bg);
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s var(--ease-out);
}
.bcl-mega__foot-cta:hover { background: var(--brass); color: var(--bg); }

/* Backdrop overlay (subtle dim of body when mega open) */
.bcl-mega__backdrop {
  position: fixed;
  inset: 0;
  top: 64px; /* approx header height */
  background: rgba(20, 17, 13, 0.18);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease-out), visibility 0s linear 0.25s;
  z-index: -1;
  pointer-events: none;
}
.bcl-header.is-mega-open .bcl-mega__backdrop {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s var(--ease-out), visibility 0s linear 0s;
}

/* ===== HERO — full-bleed cinematic, JS parallax + scroll-zoom ===== */
.bcl-hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: var(--bg-dark);
  display: flex;
  align-items: center;          /* text vertically centered on all sizes */
  isolation: isolate;
}
@media (max-width: 700px) {
  .bcl-hero {
    /* iOS Safari address-bar bug: lvh = largest viewport height (toolbar collapsed) */
    height: 100lvh;
    min-height: 560px;
  }
}
.bcl-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.bcl-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
  transform-origin: center center;
  /* Scroll-zoom transition only on desktop; mobile gets bulletproof static */
  will-change: transform;
}
/* Mobile / touch: kill any inline transforms — image stays static */
@media (max-width: 949px), (hover: none), (pointer: coarse) {
  .bcl-hero__img {
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
/* Desktop with mouse: allow smooth scale transitions */
@media (min-width: 950px) and (hover: hover) and (pointer: fine) {
  .bcl-hero__img {
    transition: transform 0.4s var(--ease-out);
  }
}
.bcl-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 17, 13, 0.4) 0%, rgba(20, 17, 13, 0.1) 30%, rgba(20, 17, 13, 0.85) 100%);
}
.bcl-hero__content {
  position: relative; z-index: 2;
  width: 100%;
  padding-block: 24px;          /* symmetric top/bottom — content vertically centered by hero flex align */
}
@media (max-width: 600px) {
  .bcl-hero__content .bcl-container {
    padding-inline: 24px;
  }
}
.bcl-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-light);
  margin: 0 0 24px;
  padding: 9px 18px;
  background: rgba(253, 251, 247, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(253, 251, 247, 0.32);
  border-radius: 100px;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.3);
}
.bcl-hero__eyebrow::before {
  content: ""; width: 6px; height: 6px;
  background: var(--brass-soft); border-radius: 50%;
  box-shadow: 0 0 10px var(--brass-soft);
}
.bcl-hero__title {
  font-family: var(--font-display);
  /* Scaling curve:
     375 mobile  → 40px (min)
     768 tablet  → 46px
     1024 laptop → 61px
     1280 laptop → 77px (was 102px before — fits eyebrow above)
     1440 laptop → 86px
     1680 desktop→ 100px
     1920+ big   → 104px (max)                                         */
  font-size: clamp(2.5rem, 6vw, 6.5rem);
  font-weight: 500;
  color: var(--text-light);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  max-width: 1000px;
  text-wrap: balance;
}
.bcl-hero__title em {
  font-family: var(--font-display);
  font-style: italic; font-weight: 500;
  color: var(--brass-soft);
}
.bcl-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(253, 251, 247, 0.85);
  max-width: 540px;
  margin: 0 0 40px;
}
.bcl-hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.bcl-hero__scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light-faint);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  pointer-events: none;
}
/* SCROLL hint stays visible on all sizes — content is centered on mobile so no overlap */
.bcl-hero__scroll-hint::after {
  content: "";
  width: 1px; height: 32px;
  background: linear-gradient(180deg, var(--text-light-faint), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(0.7); } }

/* ===== PRESS STRIP (sparse, single line) ===== */
.bcl-press {
  background: var(--bg);
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
}
.bcl-press__inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
}
.bcl-press__label {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.24em;
  color: var(--ink-mute); margin: 0;
}
.bcl-press__list {
  display: flex; align-items: center; gap: clamp(20px, 3.5vw, 48px);
  flex-wrap: wrap; list-style: none; margin: 0; padding: 0;
}
.bcl-press__list li {
  font-family: var(--font-display);
  font-style: italic; font-weight: 500;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink);
  white-space: nowrap;
}
.bcl-press__label { text-align: center; }

/* Mobile: stack label above, then 2x2 grid for the 4 publications */
@media (max-width: 700px) {
  .bcl-press { padding-block: 28px; }
  .bcl-press__inner {
    flex-direction: column;
    gap: 16px;
  }
  .bcl-press__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    width: 100%;
    max-width: 360px;
    justify-items: center;
  }
  .bcl-press__list li { font-size: 15px; }
}
@media (max-width: 380px) {
  .bcl-press__list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ===== EDITORIAL INTRO — sparse manifesto ===== */
.bcl-intro {
  text-align: center;
  padding-block: clamp(72px, 8vw, 112px);
  background: var(--bg);
}
.bcl-intro > .bcl-container > * { margin-inline: auto; }
.bcl-intro__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin: 0 auto 32px;
  max-width: 880px;
}
.bcl-intro__title em {
  font-family: var(--font-display);
  font-style: italic; font-weight: 500;
  color: var(--brass);
}
.bcl-intro__text {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* ===== STICKY SCROLL-LOCKED SERVICES ===== */
.bcl-sticky {
  background: var(--bg);
  padding-block: clamp(64px, 7vw, 96px);
}
.bcl-sticky__head { max-width: 880px; margin-bottom: 48px; }
.bcl-sticky__head h2 { margin: 0 0 20px; }
.bcl-sticky__head p { font-size: 18px; line-height: 1.55; color: var(--ink-mute); }

.bcl-sticky__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
}
@media (min-width: 900px) {
  .bcl-sticky__layout { grid-template-columns: 1fr 1.1fr; gap: 80px; }
}

.bcl-sticky__list {
  display: flex; flex-direction: column;
}
.bcl-sticky__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.5s var(--ease-out);
  opacity: 0.4;
  cursor: pointer;
}
.bcl-sticky__item:first-child { border-top: 1px solid var(--line); }
.bcl-sticky__item.is-active { opacity: 1; }
.bcl-sticky__item:hover { opacity: 1; }
.bcl-sticky__item-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(20, 17, 13, 0.04);
  border: 1px solid var(--line);
  color: var(--ink);
  flex-shrink: 0;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.bcl-sticky__item-icon svg {
  width: 20px; height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bcl-sticky__item.is-active .bcl-sticky__item-icon {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--bg);
}
.bcl-sticky__item-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 6px;
  transition: color 0.3s var(--ease-out);
}
.bcl-sticky__item.is-active .bcl-sticky__item-title { color: var(--brass); }
.bcl-sticky__item-desc {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.5;
  color: var(--ink-mute);
  margin: 0;
  max-width: 380px;
}

.bcl-sticky__visual {
  position: sticky;
  top: 96px;
  height: clamp(420px, 65vh, 640px);
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-deep);
  box-shadow: var(--shadow-lg);
}
.bcl-sticky__image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s var(--ease-out), transform 1.5s var(--ease-out);
}
.bcl-sticky__image.is-active {
  opacity: 1;
  transform: scale(1);
}

/* ===== CINEMATIC FULL-BLEED QUOTE ===== */
.bcl-cinema {
  position: relative;
  height: clamp(440px, 65vh, 600px);
  overflow: hidden;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
}
.bcl-cinema__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.62;
}
.bcl-cinema__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(20, 17, 13, 0.45) 0%, rgba(20, 17, 13, 0.7) 100%);
}
.bcl-cinema__content {
  position: relative; z-index: 2;
  text-align: center;
  width: 100%;
  padding-inline: clamp(20px, 5vw, 64px);
}
.bcl-cinema__content > * { margin-inline: auto; max-width: none; }
.bcl-cinema__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-light);
  max-width: 1000px;
  margin: 0 auto 32px;
  text-wrap: balance;
}
.bcl-cinema__quote strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-soft);
}
.bcl-cinema__attr {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light-faint);
}

/* ===== STATS — counter-up ===== */
.bcl-stats {
  background: var(--bg);
  padding-block: clamp(48px, 5vw, 72px);
}
.bcl-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px 40px;
}
@media (min-width: 800px) { .bcl-stats-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.bcl-stat {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
}
.bcl-stat__num {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 14px;
  font-variant-numeric: tabular-nums;
}
.bcl-stat__num em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass);
}
.bcl-stat__label {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400; line-height: 1.5;
  color: var(--ink-mute); margin: 0;
}

/* ===== PROCESS (dark) ===== */
.bcl-section--dark .bcl-section-head__sub { color: var(--text-light-mute); }
.bcl-method {
  display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 16px;
}
@media (min-width: 800px) { .bcl-method { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.bcl-method-step {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}
.bcl-method-step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--brass-soft);
  margin: 0 0 16px;
}
.bcl-method-step__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin: 0 0 12px;
}
.bcl-method-step__desc {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.65;
  color: var(--text-light-mute);
  margin: 0;
  max-width: 360px;
}
@media (max-width: 800px) {
  .bcl-method-step__desc { max-width: none; }
}

/* ===== GUIDE CARDS ===== */
.bcl-guide-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 16px;
}
@media (min-width: 800px) { .bcl-guide-grid { grid-template-columns: repeat(3, 1fr); } }
.bcl-guide-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.3s var(--ease-out);
}
.bcl-guide-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.bcl-guide-card__media {
  aspect-ratio: 16 / 11; overflow: hidden; background: var(--bg-deep);
}
.bcl-guide-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.bcl-guide-card:hover .bcl-guide-card__media img { transform: scale(1.08); }
.bcl-guide-card__body { padding: 28px; flex-grow: 1; display: flex; flex-direction: column; gap: 12px; }
.bcl-guide-card__meta {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-mute); margin: 0;
}
.bcl-guide-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.bcl-guide-card__excerpt {
  font-family: var(--font-body);
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-mute); margin: 0 0 16px;
  flex-grow: 1;
}
.bcl-guide-card__more {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.bcl-guide-card__more::after { content: "→"; transition: transform 0.25s var(--ease-out); }
.bcl-guide-card:hover .bcl-guide-card__more { color: var(--brass); }

/* ===== MARQUEE CITY TICKER ===== */
.bcl-marquee {
  background: var(--bg);
  padding-block: clamp(56px, 6vw, 80px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bcl-marquee__head { text-align: center; margin-bottom: 40px; max-width: 720px; margin-inline: auto; padding-inline: 24px; }
.bcl-marquee__head h2 { margin: 0 0 16px; }
.bcl-marquee__head p { font-size: 16px; color: var(--ink-mute); margin: 0 auto; }
.bcl-marquee__track {
  display: flex;
  gap: 64px;
  animation: bcl-marquee 50s linear infinite;
  width: max-content;
}
.bcl-marquee:hover .bcl-marquee__track { animation-play-state: paused; }
@keyframes bcl-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.bcl-marquee__item {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex; align-items: center;
  gap: 24px;
  flex-shrink: 0;
  transition: color 0.25s var(--ease-out);
}
.bcl-marquee__item:hover { color: var(--brass); }
.bcl-marquee__item em {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  color: var(--ink-faint);
  font-size: 0.55em;
  margin-left: -8px;
}
.bcl-marquee__item::after {
  content: "✦";
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--brass);
  font-size: 0.4em;
  margin-left: 16px;
}
@media (prefers-reduced-motion: reduce) { .bcl-marquee__track { animation: none; } }

/* ===== BUTTONS — simple, inline SVG arrows ===== */
.bcl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.bcl-btn:hover {
  background: var(--brass);
  color: var(--bg);
  box-shadow: 0 8px 24px -8px var(--brass-glow);
}
.bcl-btn:active { transform: scale(0.98); transition-duration: 100ms; }
.bcl-btn svg {
  width: 14px; height: 14px;
  stroke: currentColor; stroke-width: 1.75;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s var(--ease-out);
}
.bcl-btn:hover svg { transform: translateX(3px); }
.bcl-btn--ghost {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(253, 251, 247, 0.3);
}
.bcl-btn--ghost:hover {
  background: var(--text-light);
  color: var(--ink);
  border-color: var(--text-light);
}
.bcl-btn--ghost-light {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.bcl-btn--ghost-light:hover {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}
.bcl-btn--lg { padding: 16px 30px; font-size: 15px; }
.bcl-btn--lg svg { width: 16px; height: 16px; }

.wp-element-button, .wp-block-button__link {
  background: var(--ink) !important; color: var(--bg) !important;
  font-family: var(--font-body) !important; font-weight: 500 !important;
  border-radius: 100px !important; padding: 14px 24px !important;
  font-size: 14px !important;
}

.bcl-link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 500; font-size: 14px;
  color: var(--ink); padding: 8px 0;
  transition: color 0.18s var(--ease-out), gap 0.25s var(--ease-out);
}
.bcl-link-arrow:hover { color: var(--brass); gap: 14px; }
.bcl-link-arrow::after { content: "→"; transition: transform 0.25s var(--ease-out); }
.bcl-section--dark .bcl-link-arrow { color: var(--text-light); }
.bcl-section--dark .bcl-link-arrow:hover { color: var(--brass-soft); }

/* ===== SECTION HEAD ===== */
.bcl-section-head { max-width: 880px; margin-bottom: 48px; }
.bcl-section-head__title { margin: 0 0 24px; }
.bcl-section-head__sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0; max-width: 720px; font-weight: 400;
}

/* ===== ACTION (split — both light) ===== */
.bcl-action-wrap {
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg);
}
.bcl-action-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
@media (min-width: 900px) { .bcl-action-grid { grid-template-columns: 1fr 1fr; } }
.bcl-action-form {
  background: var(--bg);
  padding: clamp(40px, 5vw, 64px);
}
.bcl-action-form h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px); font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.1;
  margin: 0 0 12px; color: var(--ink);
}
.bcl-action-paths {
  background: var(--bg-dark);
  color: var(--text-light-mute);
  padding: clamp(40px, 5vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.bcl-action-paths::before {
  content: ""; position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--brass-glow) 0%, transparent 70%);
  top: -100px; right: -100px;
  filter: blur(20px);
  pointer-events: none;
}
.bcl-action-paths__lede {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500; line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-light); margin: 0 0 32px;
  position: relative; z-index: 1;
}
.bcl-action-path {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
  position: relative; z-index: 1;
  text-decoration: none;
}
.bcl-action-path:last-of-type { border-bottom: 1px solid var(--line-dark); }
.bcl-action-path__icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(212, 169, 58, 0.15); color: var(--brass-soft);
  border-radius: 50%; flex-shrink: 0;
}
.bcl-action-path__icon svg { width: 16px; height: 16px; stroke-width: 1.5; }
.bcl-action-path__content { flex-grow: 1; }
.bcl-action-path__label {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-light-faint); margin: 0 0 4px;
}
.bcl-action-path__value {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 500; letter-spacing: -0.018em;
  color: var(--text-light);
}
.bcl-action-path:hover .bcl-action-path__value { color: var(--brass-soft); }
.bcl-trust-closer {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 400;
  color: var(--text-light-faint);
  position: relative; z-index: 1;
}

/* ===== FORM ===== */
.bcl-form-wrap { padding: 0; }
.bcl-form-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14.5px;
  color: var(--ink-mute); margin: 0 0 28px;
}
.bcl-form-group { margin-bottom: 16px; }
.bcl-form-group label {
  display: block; font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 8px;
}
.bcl-form-group input,
.bcl-form-group select,
.bcl-form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 15px; color: var(--ink);
  border-radius: 10px;
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}
.bcl-form-group input:focus,
.bcl-form-group select:focus,
.bcl-form-group textarea:focus {
  outline: none; border-color: var(--brass);
  box-shadow: 0 0 0 4px var(--brass-glow);
}
.bcl-form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 500px) { .bcl-form-row { grid-template-columns: 1fr 1fr; gap: 14px; } }
.bcl-form-submit {
  display: inline-flex; align-items: center; gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 16px 16px 16px 24px;
  margin-top: 8px;
  background: var(--ink); color: var(--bg); border: none;
  font-family: var(--font-body); font-size: 14.5px;
  font-weight: 500; letter-spacing: -0.005em;
  cursor: pointer; border-radius: 100px;
  transition: all 0.25s var(--ease-out);
}
.bcl-form-submit:hover {
  background: var(--brass);
  box-shadow: 0 12px 32px -8px var(--brass-glow);
}
.bcl-form-submit:active { transform: scale(0.98); transition-duration: 100ms; }
.bcl-form-success { text-align: center; padding: 32px 0; }
.bcl-form-success h3 {
  margin-bottom: 12px; color: var(--ink);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500; letter-spacing: -0.02em;
}

/* ===== Cost table ===== */
.bcl-cost-table { width: 100%; border-collapse: collapse; margin: 32px 0; font-family: var(--font-body); }
.bcl-cost-table th, .bcl-cost-table td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--line); }
.bcl-cost-table th {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); border-bottom: 2px solid var(--ink);
}
.bcl-cost-table td:last-child {
  font-family: var(--font-display);
  font-weight: 500; font-size: 18px; color: var(--ink);
  white-space: nowrap; text-align: right; letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

/* ===== Page hero (interior pages) ===== */
.bcl-page-hero {
  padding-block: clamp(120px, 14vw, 180px) clamp(48px, 7vw, 80px);
  background: var(--bg);
}
.bcl-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500; line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink); margin: 16px 0 28px;
  max-width: 980px;
}
.bcl-page-hero__intro {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 40px;
}
.bcl-page-hero__image {
  width: 100%; aspect-ratio: 21 / 9;
  object-fit: cover; margin-top: 40px; display: block;
  border-radius: 18px;
}

/* ===== STICKY MOBILE CTA (single full-width button) ===== */
.bcl-mobile-cta {
  display: none;
  position: fixed; bottom: 12px; left: 12px; right: 12px; z-index: 200;
}
@media (max-width: 700px) { .bcl-mobile-cta { display: block; } }
.bcl-mobile-cta__form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: var(--shadow-lg);
  transition: background 0.2s var(--ease-out);
}
.bcl-mobile-cta__form:hover { background: var(--brass); color: var(--bg); }

/* ===== FAQ ===== */
.bcl-faq { margin-top: 0; max-width: 920px; margin-inline: auto; }
.bcl-faq details { border-top: 1px solid var(--line); padding: 26px 0; }

/* Centered FAQ section variant */
.bcl-faq-section .bcl-section-head {
  margin-inline: auto;
  text-align: center;
}
.bcl-faq-section .bcl-section-head .bcl-eyebrow {
  margin-inline: auto;
}
.bcl-faq details:last-of-type { border-bottom: 1px solid var(--line); }
.bcl-faq summary {
  font-family: var(--font-display); font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500; letter-spacing: -0.02em; line-height: 1.25;
  color: var(--ink); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 32px;
  transition: color 0.18s var(--ease-out);
}
.bcl-faq summary:hover { color: var(--brass); }
.bcl-faq summary::-webkit-details-marker { display: none; }
.bcl-faq summary::after {
  content: "+"; font-family: var(--font-body);
  font-size: 24px; font-weight: 300; color: var(--brass);
  line-height: 1; transition: transform 0.3s var(--ease-out); flex-shrink: 0;
}
.bcl-faq details[open] summary::after { content: "−"; transform: rotate(180deg); }
.bcl-faq__body {
  margin-top: 16px; font-size: 16px; line-height: 1.7;
  color: var(--ink-mute);
}
.bcl-faq__body,
.bcl-faq__body p { max-width: none; }     /* override global p max-width: 70ch */
.bcl-faq__body p:last-child { margin-bottom: 0; }

/* ===== STORY ===== */
.bcl-story { max-width: 880px; margin-inline: auto; text-align: center; }
.bcl-story > * { margin-inline: auto; }
.bcl-story h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1; letter-spacing: -0.025em; font-weight: 500;
  margin-bottom: 32px; color: var(--ink);
}
.bcl-story p {
  font-size: 17px; line-height: 1.75; margin: 0 auto 1.4em;
  color: var(--ink-soft);
  max-width: 660px;
}

/* ===== FOOTER (dark variant kept) ===== */
.bcl-footer {
  background: var(--bg-dark);
  color: var(--text-light-mute);
  padding: 56px 0 32px;
}
.bcl-footer a { color: var(--text-light); transition: color 0.18s var(--ease-out); }
.bcl-footer a:hover { color: var(--brass-soft); }
.bcl-footer__top {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  margin-bottom: 32px; padding-bottom: 32px;
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 800px) { .bcl-footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 32px; } }
.bcl-footer__lede {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500; line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-light); margin: 0; max-width: 360px;
}
.bcl-footer__lede em { font-family: var(--font-display); font-style: italic; color: var(--brass-soft); }
.bcl-footer__col h4 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass-soft); margin: 0 0 22px;
}
.bcl-footer__col ul { list-style: none; padding: 0; margin: 0; }
.bcl-footer__col li { margin-bottom: 10px; font-size: 13.5px; }
.bcl-footer__bottom {
  font-size: 12.5px; color: var(--text-light-faint);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.bcl-footer--dark { background: var(--bg-dark); }

/* ===== TYPE CARDS — for sub-type / variant grids on service pages.
   Cleaner than .bcl-bcard for smaller, text-heavier cards (4-col grids).
   Strong border + tinted bg so cards read as distinct cards. ===== */
.bcl-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 16px;
}
@media (min-width: 700px) { .bcl-types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .bcl-types-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.bcl-type-card {
  display: flex; flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.bcl-type-card:hover {
  border-color: var(--brass);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.bcl-type-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}
.bcl-type-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.9s var(--ease-out);
}
.bcl-type-card:hover .bcl-type-card__media img { transform: scale(1.06); }
.bcl-type-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
  margin: 0;
  padding: 20px 20px 8px;
}
.bcl-type-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
  padding: 0 20px 24px;
  max-width: none;
}

.editor-styles-wrapper { background: var(--bg); font-family: var(--font-body); color: var(--ink-soft); }
