/* ==========================================================================
   Epoxy Wizards Canberra — Locked Component Library
   Theme: "Poured Metal" — graphite + poured-resin gold/violet flake accents.
   Distinct from generic trade teal/orange: cool graphite base, warm metallic
   gold primary CTA, cool resin-violet secondary accent (echoes flake epoxy
   pigment colours: gold flake + cobalt-violet flake finishes).
   ========================================================================== */

:root {
  /* ---- Colour tokens ---- */
  --bc-ink: #14181f;            /* near-black graphite text */
  --bc-ink-soft: #4a5261;       /* muted graphite for secondary text */
  --bc-paper: #f6f5f1;          /* warm-cool off white */
  --bc-paper-soft: #ece8df;     /* card / section tint */
  --bc-line: #ddd8cc;           /* hairlines on paper */

  --bc-primary: #1b2430;        /* deep graphite navy — dark sections/header */
  --bc-primary-light: #2c3745;  /* lighter graphite for hover/panels */
  --bc-primary-line: #3a4655;   /* hairlines on dark */

  --bc-accent: #b6862c;         /* metallic gold flake — primary CTA */
  --bc-accent-dark: #8e6820;    /* hover/pressed gold */
  --bc-accent-darker: #6b4f17;  /* small on-tint text (eyebrow labels) */
  --bc-accent-ink: #241a06;     /* text on gold */
  --bc-accent-bright: #e0b56e;  /* lightened gold — AA-safe gold TEXT on dark/photo hero backgrounds */

  --bc-accent-2: #4952c9;       /* resin cobalt-violet — secondary accent (decorative/background use) */
  --bc-accent-2-dark: #363dab;
  --bc-link-on-light: #282f8c;  /* darkened cobalt-violet — AA-safe link colour on paper/white backgrounds */
  --bc-link-on-dark: #bac0ff;   /* lightened cobalt-violet — AA-safe link colour on graphite/hero backgrounds */

  --bc-white: #ffffff;
  --bc-success: #2f7a4d;

  /* ---- Type scale ---- */
  --bc-font-display: 'Sora', 'Segoe UI', Arial, sans-serif;
  --bc-font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  --bc-fs-h1: clamp(2.1rem, 1.5rem + 2.6vw, 3.6rem);
  --bc-fs-h2: clamp(1.6rem, 1.25rem + 1.6vw, 2.5rem);
  --bc-fs-h3: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem);
  --bc-fs-lead: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
  --bc-fs-body: 1rem;
  --bc-fs-small: 0.875rem;
  --bc-fs-eyebrow: 0.8rem;

  --bc-lh-tight: 1.15;
  --bc-lh-normal: 1.6;

  /* ---- Space scale ---- */
  --bc-sp-1: 0.5rem;
  --bc-sp-2: 0.75rem;
  --bc-sp-3: 1rem;
  --bc-sp-4: 1.5rem;
  --bc-sp-5: 2rem;
  --bc-sp-6: 3rem;
  --bc-sp-7: 4.5rem;
  --bc-sp-8: 6rem;

  --bc-radius: 10px;
  --bc-radius-lg: 18px;
  --bc-radius-pill: 999px;

  --bc-shadow-sm: 0 2px 8px rgba(20, 24, 31, 0.08);
  --bc-shadow-md: 0 10px 30px rgba(20, 24, 31, 0.14);
  --bc-shadow-gold: 0 8px 22px rgba(182, 134, 44, 0.35);

  --bc-container-w: 1180px;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: var(--bc-font-body);
  font-size: var(--bc-fs-body);
  line-height: var(--bc-lh-normal);
  color: var(--bc-ink);
  background: var(--bc-paper);
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--bc-font-display);
  line-height: var(--bc-lh-tight);
  margin: 0 0 var(--bc-sp-3);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--bc-fs-h1); }
h2 { font-size: var(--bc-fs-h2); }
h3 { font-size: var(--bc-fs-h3); }
/* Source content sometimes includes bare long URLs or unbroken strings (e.g. "Website:
   https://example.com/") with no natural break point — without this, a single such
   line forces the whole ancestor chain wider than the viewport on mobile. */
p, address, li, td, dd, blockquote { overflow-wrap: break-word; word-break: break-word; }
a { overflow-wrap: break-word; word-break: break-word; }
p { margin: 0 0 var(--bc-sp-3); }
a { color: var(--bc-link-on-light); }
ul, ol { padding-left: 1.2em; }

/* Links inside dark-background components need a lighter variant to stay AA
   (4.5:1) — the base link colour above is tuned for the light paper ground
   and does not have enough contrast against graphite/hero backgrounds. */
.bc-hero a,
.bc-prose--dark a,
.bc-video a,
.bc-formband a {
  color: var(--bc-link-on-dark);
}
/* ...except nested light-background boxes inside those dark sections
   (e.g. the white lead-capture form), which should keep the light-ground link colour. */
.bc-formband__form a {
  color: var(--bc-link-on-light);
}
/* Buttons keep their own ink/white text regardless of which dark section they sit in —
   the generic "a inside dark section" rule above has higher specificity than .bc-btn--*
   alone and was overriding button text to the on-dark link colour, which fails AA against
   the button's own solid gold/violet background. */
.bc-hero a.bc-btn--primary,
.bc-prose--dark a.bc-btn--primary,
.bc-video a.bc-btn--primary,
.bc-formband a.bc-btn--primary {
  color: var(--bc-accent-ink);
}
.bc-hero a.bc-btn--accent,
.bc-prose--dark a.bc-btn--accent,
.bc-video a.bc-btn--accent,
.bc-formband a.bc-btn--accent {
  color: var(--bc-white);
}

/* ==========================================================================
   Container / grid utility
   ========================================================================== */
.bc-container {
  width: 100%;
  max-width: var(--bc-container-w);
  margin-inline: auto;
  padding-inline: var(--bc-sp-4);
}

.bc-eyebrow {
  display: inline-block;
  font-family: var(--bc-font-display);
  font-size: var(--bc-fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bc-accent-darker);
  background: rgba(182, 134, 44, 0.12);
  padding: 0.35em 0.9em;
  border-radius: var(--bc-radius-pill);
  margin-bottom: var(--bc-sp-3);
}
.bc-eyebrow--on-dark {
  color: var(--bc-accent-bright);
  background: rgba(224, 181, 110, 0.16);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--bc-font-display);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--bc-radius);
  padding: 0.85em 1.6em;
  line-height: 1.1;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.bc-btn:hover { transform: translateY(-1px); }
.bc-btn:focus-visible { outline: 3px solid var(--bc-accent-2); outline-offset: 2px; }

.bc-btn--primary {
  background: var(--bc-accent);
  color: var(--bc-accent-ink);
  box-shadow: var(--bc-shadow-gold);
}
.bc-btn--primary:hover { background: var(--bc-accent-dark); }

.bc-btn--accent {
  background: var(--bc-accent-2);
  color: var(--bc-white);
  box-shadow: 0 8px 22px rgba(73, 82, 201, 0.32);
}
.bc-btn--accent:hover { background: var(--bc-accent-2-dark); }

.bc-btn--ghost {
  background: transparent;
  color: var(--bc-white);
  border-color: rgba(255, 255, 255, 0.55);
}
.bc-btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }

.bc-btn--outline {
  background: transparent;
  color: var(--bc-primary);
  border-color: var(--bc-primary);
}
.bc-btn--outline:hover { background: var(--bc-primary); color: var(--bc-white); }

/* ==========================================================================
   Site shell — header / nav / footer
   ========================================================================== */
.site-header {
  background: var(--bc-primary);
  color: var(--bc-white);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--bc-primary-line);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--bc-sp-4);
  padding-block: var(--bc-sp-3);
}
.site-header__logo {
  font-family: var(--bc-font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--bc-white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.site-header__logo span { color: var(--bc-accent); }

.site-nav { display: flex; align-items: center; gap: var(--bc-sp-5); }
.site-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--bc-sp-4);
}
.site-nav__list a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav__list a:hover,
.site-nav__list a:focus-visible { color: var(--bc-accent); }

/* This site's real nav has ~10-15 location/service links. The markup has no
   JS-driven hamburger toggle element, so a pure-CSS collapse is used below
   the tablet breakpoint: the header bar wraps, and the nav list switches
   from a single unbreakable flex row (which was wider than the viewport and
   caused document-level horizontal scroll) to a full-width, wrapping list
   stacked under the logo/CTA row. Nothing below can exceed 100% width. */
@media (max-width: 860px) {
  .site-header__bar {
    flex-wrap: wrap;
    row-gap: var(--bc-sp-2);
  }
  .site-header__logo {
    flex: 1 1 auto;
    min-width: 0;
  }
  .site-nav {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }
  .site-nav__list {
    flex-wrap: wrap;
    width: 100%;
    row-gap: var(--bc-sp-2);
    gap: var(--bc-sp-2) var(--bc-sp-4);
    padding-block: var(--bc-sp-2) 0;
    border-top: 1px solid var(--bc-primary-line);
  }
  .site-nav__list li {
    min-width: 0;
    max-width: 100%;
  }
  .site-nav__list a {
    white-space: normal;
    overflow-wrap: break-word;
  }
  .site-header__bar > .bc-btn {
    flex: 1 1 auto;
  }
  /* Catch-all for any other direct child of the header bar (e.g. a search form some
     page places there) that isn't one of the specifically-handled logo/nav/button
     cases above — without this, an unanticipated child with its own intrinsic width
     can force the whole bar wider than the viewport. */
  .site-header__bar > * {
    min-width: 0;
    max-width: 100%;
  }
  .site-header__bar > form,
  .site-header__bar > .bc-form-field {
    order: 2;
    flex: 1 1 100%;
    /* Some pages set a compact inline max-width (e.g. style="max-width:180px") for this
       form in its desktop header context — inline style beats any plain class rule, so
       this needs !important to actually let the form use the full row at mobile width. */
    max-width: 100% !important;
  }
}

.site-footer {
  background: var(--bc-ink);
  color: rgba(255, 255, 255, 0.78);
  padding-block: var(--bc-sp-7) var(--bc-sp-5);
  font-size: var(--bc-fs-small);
}
.site-footer a { color: rgba(255, 255, 255, 0.86); }
/* A page reused the light-context .bc-map__addr (NAP block) styling inside the dark
   footer — its --bc-ink-soft text colour is tuned for a white card, not this dark
   background. Force it back to the footer's own already-AA-safe on-dark colour. */
.site-footer .bc-map__addr,
.site-footer .bc-map__addr strong { color: inherit; }
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--bc-sp-5);
  margin-bottom: var(--bc-sp-6);
}
.site-footer__heading {
  font-family: var(--bc-font-display);
  color: var(--bc-white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--bc-sp-3);
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--bc-sp-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--bc-sp-3);
  justify-content: space-between;
}

/* ==========================================================================
   Hero
   ========================================================================== */
/* background-color only (no background-image) on the base element itself — kept as a
   PLAIN OPAQUE property so it survives a per-page inline `style="background-image:url(...)"`
   override (inline style only touches the image layer) and so an automated contrast
   checker, which can't resolve a photo url() to a colour, reliably reads this element as
   dark. The decorative gradient + darkening scrim live on ::before instead — both cases
   (photo hero or plain-gradient hero) end up with the same reliable dark base underneath. */
.bc-hero {
  background-color: var(--bc-ink);
  color: var(--bc-white);
  padding-block: var(--bc-sp-8) var(--bc-sp-7);
  position: relative;
  overflow: hidden;
}
.bc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(120% 140% at 85% -10%, rgba(182, 134, 44, 0.22), transparent 55%),
    linear-gradient(160deg, rgba(13, 17, 23, 0.72) 0%, rgba(10, 13, 17, 0.84) 70%);
  z-index: 0;
  pointer-events: none;
}
.bc-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--bc-sp-6);
  align-items: center;
  position: relative;
  z-index: 1;
}
.bc-hero__title { color: var(--bc-white); }
.bc-hero__lede {
  font-size: var(--bc-fs-lead);
  color: rgba(255, 255, 255, 0.92);
  max-width: 46ch;
}
.bc-hero p {
  color: rgba(255, 255, 255, 0.92);
}
.bc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--bc-sp-3);
  margin-top: var(--bc-sp-4);
}
.bc-hero__media {
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  box-shadow: var(--bc-shadow-md);
  border: 1px solid var(--bc-primary-line);
}
.bc-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.bc-hero__stats {
  display: flex;
  gap: var(--bc-sp-5);
  margin-top: var(--bc-sp-6);
  flex-wrap: wrap;
}
.bc-hero__stat-num {
  font-family: var(--bc-font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--bc-accent-bright);
}
/* Some built pages inline `style="color:var(--bc-accent)"` on links inside a
   stat number (e.g. author/category meta links) at a smaller font size than
   the 1.7rem default above, which drops them out of "large text" AA rules
   and reproduces the same near-invisible gold-on-dark failure. Inline styles
   win on specificity, so this needs !important to actually override them. */
.bc-hero__stat-num a {
  color: var(--bc-accent-bright) !important;
}
.bc-hero__stat-label {
  font-size: var(--bc-fs-small);
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 860px) {
  .bc-hero__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Prose
   ========================================================================== */
.bc-prose {
  padding-block: var(--bc-sp-7);
}
.bc-prose__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--bc-sp-5);
}
.bc-prose--has-color { background: var(--bc-paper-soft); }
.bc-prose--dark {
  background: var(--bc-primary);
  color: var(--bc-white);
}
.bc-prose--dark h2, .bc-prose--dark h3 { color: var(--bc-white); }
.bc-prose--dark p { color: rgba(255, 255, 255, 0.92); }
.bc-prose--with-image .bc-prose__grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.bc-prose__img {
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  box-shadow: var(--bc-shadow-sm);
}
@media (max-width: 760px) {
  .bc-prose--with-image .bc-prose__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Grid (feature / service cards)
   ========================================================================== */
.bc-grid { padding-block: var(--bc-sp-7); }
.bc-grid__head { max-width: 62ch; margin-bottom: var(--bc-sp-6); }
.bc-grid__list {
  display: grid;
  gap: var(--bc-sp-4);
  grid-template-columns: repeat(2, 1fr);
}
.bc-grid--2col .bc-grid__list { grid-template-columns: repeat(2, 1fr); }
.bc-grid--3col .bc-grid__list { grid-template-columns: repeat(3, 1fr); }
.bc-grid--4col .bc-grid__list { grid-template-columns: repeat(4, 1fr); }

.bc-grid__card {
  background: var(--bc-white);
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-lg);
  padding: var(--bc-sp-4);
  box-shadow: var(--bc-shadow-sm);
  height: 100%;
}
.bc-grid--text-only .bc-grid__card { padding: var(--bc-sp-5); }
.bc-grid__card-img {
  border-radius: var(--bc-radius);
  overflow: hidden;
  margin-bottom: var(--bc-sp-3);
  aspect-ratio: 4 / 3;
}
.bc-grid__card-img img { width: 100%; height: 100%; object-fit: cover; }
.bc-grid--imaged .bc-grid__card { padding: var(--bc-sp-3); }
.bc-grid__card h3 { font-size: 1.15rem; margin-bottom: var(--bc-sp-2); }
.bc-grid__card p { color: var(--bc-ink-soft); margin-bottom: 0; font-size: var(--bc-fs-small); }
.bc-grid__card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--bc-radius);
  background: var(--bc-accent);
  color: var(--bc-accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: var(--bc-sp-3);
}

@media (max-width: 900px) {
  .bc-grid--3col .bc-grid__list,
  .bc-grid--4col .bc-grid__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .bc-grid__list,
  .bc-grid--2col .bc-grid__list,
  .bc-grid--3col .bc-grid__list,
  .bc-grid--4col .bc-grid__list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.bc-faq { padding-block: var(--bc-sp-7); background: var(--bc-paper-soft); }
.bc-faq__list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--bc-sp-3);
}
.bc-faq__item {
  background: var(--bc-white);
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  padding: var(--bc-sp-4);
}
.bc-faq__q {
  font-family: var(--bc-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 var(--bc-sp-2);
  display: flex;
  align-items: center;
  gap: var(--bc-sp-2);
}
.bc-faq__q::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  background: var(--bc-accent);
  color: var(--bc-accent-ink);
  font-size: 0.8rem;
  flex: none;
}
.bc-faq__a { margin: 0; color: var(--bc-ink-soft); padding-left: 2.2em; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.bc-gallery { padding-block: var(--bc-sp-7); }
.bc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bc-sp-3);
}
.bc-gallery__cell {
  position: relative;
  border-radius: var(--bc-radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--bc-shadow-sm);
}
.bc-gallery__cell img { width: 100%; height: 100%; object-fit: cover; }
.bc-gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  /* Solid white text over a photo needs a reliably dark, mostly-opaque
     backdrop — a single low stop fading straight to transparent let bright
     photos show through right where the caption text sits and broke AA. */
  background: linear-gradient(0deg, rgba(15, 18, 24, 0.96) 0%, rgba(15, 18, 24, 0.88) 55%, rgba(15, 18, 24, 0.35) 85%, transparent 100%);
  color: var(--bc-white);
  font-size: var(--bc-fs-small);
  padding: var(--bc-sp-3) var(--bc-sp-2) var(--bc-sp-2);
}
@media (max-width: 760px) {
  .bc-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .bc-gallery__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Video
   ========================================================================== */
.bc-video { padding-block: var(--bc-sp-7); background: var(--bc-primary); color: var(--bc-white); }
.bc-video__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--bc-sp-6);
  align-items: center;
}
.bc-video__copy h2 { color: var(--bc-white); }
.bc-video__copy p { color: rgba(255, 255, 255, 0.92); }
.bc-video__player { border-radius: var(--bc-radius-lg); overflow: hidden; box-shadow: var(--bc-shadow-md); }
.bc-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.bc-video__frame iframe,
.bc-video__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
@media (max-width: 820px) {
  .bc-video__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Map
   ========================================================================== */
.bc-map { padding-block: var(--bc-sp-7); }
.bc-map__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--bc-sp-5);
  align-items: stretch;
  min-width: 0;
}
/* Grid items default to min-width:auto (their content's min-content size), which
   blocks shrinking below that and causes horizontal overflow on narrow viewports
   when the content (e.g. a long address) doesn't naturally have a break point. */
.bc-map__grid > * { min-width: 0; }
.bc-map__info {
  background: var(--bc-white);
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-lg);
  padding: var(--bc-sp-5);
}
.bc-map__addr { font-style: normal; color: var(--bc-ink-soft); margin-bottom: var(--bc-sp-4); }
.bc-map__addr strong { display: block; color: var(--bc-ink); font-family: var(--bc-font-display); }
.bc-map__frame {
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--bc-shadow-sm);
}
.bc-map__frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
@media (max-width: 820px) {
  .bc-map__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Testimonial
   ========================================================================== */
.bc-testimonial { padding-block: var(--bc-sp-7); background: var(--bc-paper-soft); }
.bc-testimonial__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bc-sp-4);
}
.bc-testimonial__card {
  background: var(--bc-white);
  border-radius: var(--bc-radius-lg);
  padding: var(--bc-sp-5);
  box-shadow: var(--bc-shadow-sm);
  border-top: 3px solid var(--bc-accent);
}
.bc-testimonial__stars { color: var(--bc-accent-dark); letter-spacing: 0.1em; margin-bottom: var(--bc-sp-2); font-size: 1.1rem; }
.bc-testimonial__quote { color: var(--bc-ink); margin-bottom: var(--bc-sp-3); }
.bc-testimonial__author { font-family: var(--bc-font-display); font-weight: 700; font-size: 0.9rem; }
.bc-testimonial__role { color: var(--bc-ink-soft); font-size: var(--bc-fs-small); }
@media (max-width: 900px) {
  .bc-testimonial__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Formband
   ========================================================================== */
.bc-formband {
  padding-block: var(--bc-sp-7);
  background: var(--bc-primary);
  color: var(--bc-white);
}
.bc-formband--intro { background: linear-gradient(160deg, var(--bc-primary), #10151c); }
.bc-formband--final {
  background:
    radial-gradient(120% 140% at 15% 0%, rgba(73, 82, 201, 0.22), transparent 55%),
    var(--bc-ink);
}
.bc-formband__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bc-sp-6);
  align-items: center;
}
.bc-formband__title { color: var(--bc-white); }
.bc-formband__lede { color: rgba(255, 255, 255, 0.92); max-width: 42ch; }
.bc-formband__form {
  background: var(--bc-white);
  color: var(--bc-ink);
  border-radius: var(--bc-radius-lg);
  padding: var(--bc-sp-5);
  box-shadow: var(--bc-shadow-md);
  display: grid;
  gap: var(--bc-sp-3);
}
@media (max-width: 820px) {
  .bc-formband__grid { grid-template-columns: 1fr; }
}

.bc-form-field { display: flex; flex-direction: column; gap: 0.4em; }
.bc-form-field label {
  font-size: var(--bc-fs-small);
  font-weight: 600;
  color: var(--bc-ink-soft);
}
.bc-form-field--required label::after { content: " *"; color: var(--bc-accent-2); }
.bc-form-field input,
.bc-form-field select,
.bc-form-field textarea {
  font: inherit;
  padding: 0.7em 0.8em;
  border: 1px solid var(--bc-line);
  border-radius: 8px;
  background: var(--bc-paper);
  color: var(--bc-ink);
}
.bc-form-field input:focus,
.bc-form-field select:focus,
.bc-form-field textarea:focus {
  outline: 2px solid var(--bc-accent-2);
  outline-offset: 1px;
}

/* Small-text utility used for byline/meta text in a few page builds. */
.bc-fs-small { font-size: var(--bc-fs-small); }
