/* =========================================================================
   Concrete Bundaberg — Bold component library ("bc-*")
   Industry: concrete contracting | Region: Bundaberg, QLD
   Palette rationale: steel slate + charcoal read as durable/industrial
   (concrete, trowels, form-work), burnt safety-orange accent nods to
   site-safety cones/hazard tape common on concrete job sites, warm
   paper tones echo poured/aggregate concrete rather than clinical white.
   ========================================================================= */

:root {
  /* ---- Color tokens ---- */
  --bc-ink: #1c1f22;
  --bc-ink-soft: #2b3033;
  --bc-primary: #33424b;
  --bc-primary-dark: #22292e;
  --bc-primary-light: #4b5c66;
  --bc-accent: #b84813;
  --bc-accent-dark: #93390d;
  --bc-accent-light: #f08a4b;
  --bc-paper: #f6f4f0;
  --bc-paper-alt: #eae5dc;
  --bc-paper-deep: #ded7c9;
  --bc-white: #ffffff;
  --bc-muted: #54595e;
  --bc-muted-light: #5c6167;
  --bc-muted-onDark: #a7acb2;
  --bc-link: #1f5c8b;
  --bc-link-onDark: #7fb2e0;
  --bc-border: #d8d2c4;
  --bc-border-dark: #3d4750;
  --bc-success: #2f6b3a;
  --bc-focus: #1f5c8b;

  /* ---- Type scale ---- */
  --bc-font-head: "Barlow Condensed", "Oswald", Arial, sans-serif;
  --bc-font-body: "Source Sans Pro", "Segoe UI", Arial, sans-serif;
  --bc-fs-xs: 0.8125rem;
  --bc-fs-sm: 0.9375rem;
  --bc-fs-base: 1rem;
  --bc-fs-lg: 1.125rem;
  --bc-fs-xl: 1.375rem;
  --bc-fs-2xl: 1.75rem;
  --bc-fs-3xl: 2.25rem;
  --bc-fs-4xl: 3rem;
  --bc-fs-5xl: 3.75rem;
  --bc-lh-tight: 1.15;
  --bc-lh-snug: 1.35;
  --bc-lh-body: 1.6;

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

  /* ---- Misc ---- */
  --bc-radius-sm: 4px;
  --bc-radius: 8px;
  --bc-radius-lg: 14px;
  --bc-shadow: 0 6px 20px rgba(28, 31, 34, 0.12);
  --bc-shadow-sm: 0 2px 8px rgba(28, 31, 34, 0.1);
  --bc-container: 1180px;
  --bc-transition: 160ms ease;
}

/* =========================================================================
   Reset / base
   ========================================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--bc-font-body);
  font-size: var(--bc-fs-base);
  line-height: var(--bc-lh-body);
  color: var(--bc-ink);
  background: var(--bc-paper);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--bc-font-head);
  font-weight: 700;
  line-height: var(--bc-lh-tight);
  margin: 0 0 var(--bc-sp-4);
  letter-spacing: 0.01em;
}

h1 { font-size: var(--bc-fs-5xl); }
h2 { font-size: var(--bc-fs-3xl); }
h3 { font-size: var(--bc-fs-2xl); }
h4 { font-size: var(--bc-fs-xl); }

p { margin: 0 0 var(--bc-sp-4); }

a { color: var(--bc-link); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--bc-focus);
  outline-offset: 2px;
}

@media (max-width: 375px) {
  h1 { font-size: var(--bc-fs-3xl); }
  h2 { font-size: var(--bc-fs-2xl); }
}

/* =========================================================================
   Container / eyebrow
   ========================================================================= */
.bc-container {
  width: 100%;
  max-width: var(--bc-container);
  margin: 0 auto;
  padding: 0 var(--bc-sp-5);
}

.bc-eyebrow {
  display: inline-block;
  font-family: var(--bc-font-head);
  font-size: var(--bc-fs-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bc-accent-dark);
  margin: 0 0 var(--bc-sp-3);
}

.bc-eyebrow--onDark {
  color: var(--bc-accent-light);
}

/* =========================================================================
   Buttons
   ========================================================================= */
.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--bc-sp-2);
  font-family: var(--bc-font-head);
  font-weight: 700;
  font-size: var(--bc-fs-lg);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85em 1.7em;
  border-radius: var(--bc-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--bc-transition), color var(--bc-transition), border-color var(--bc-transition), transform var(--bc-transition);
  line-height: 1.1;
}

.bc-btn:hover { transform: translateY(-1px); }
.bc-btn:active { transform: translateY(0); }

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

.bc-btn--accent {
  background: var(--bc-primary-dark);
  color: var(--bc-white);
  border-color: var(--bc-primary-dark);
}
.bc-btn--accent:hover { background: var(--bc-ink); border-color: var(--bc-ink); }

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

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

/* =========================================================================
   Site shell — header / nav / footer
   ========================================================================= */
.site-header {
  background: var(--bc-primary-dark);
  color: var(--bc-white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--bc-shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--bc-sp-3) var(--bc-sp-5);
  padding: var(--bc-sp-3) var(--bc-sp-5);
  max-width: var(--bc-container);
  margin: 0 auto;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: var(--bc-sp-2);
  font-family: var(--bc-font-head);
  font-weight: 700;
  font-size: var(--bc-fs-xl);
  color: var(--bc-white);
  text-decoration: none;
  white-space: nowrap;
}

.site-header__logo span.bc-accent-text { color: var(--bc-accent-light); }

/* =========================================================================
   Mobile nav toggle — checkbox hack, zero JS (matches the .site-nav__dropdown
   <details>/<summary> approach used elsewhere in this file).
   ========================================================================= */
.site-nav__toggle-input { position: absolute; opacity: 0; pointer-events: none; }

.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  cursor: pointer;
}

.site-nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--bc-white);
  border-radius: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--bc-sp-5);
  flex-wrap: wrap;
}

.site-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--bc-sp-2) var(--bc-sp-5);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .site-header__inner { justify-content: space-between; text-align: left; }
  .site-nav__toggle { display: flex; }
  .site-nav {
    display: none;
    width: 100%;
    order: 3;
  }
  .site-nav__toggle-input:checked ~ .site-nav { display: flex; }
  .site-nav__list { justify-content: flex-start; width: 100%; flex-direction: column; gap: var(--bc-sp-3); }
}

.site-nav__list a {
  color: var(--bc-white);
  text-decoration: none;
  font-family: var(--bc-font-head);
  font-weight: 600;
  font-size: var(--bc-fs-base);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.92;
}

.site-nav__list a:hover { opacity: 1; color: var(--bc-accent-light); }

/* =========================================================================
   Nav dropdown (Services / Service Areas) — native <details>/<summary>,
   zero JS. Built entirely from existing tokens.
   ========================================================================= */
.site-nav__dropdown { position: relative; }

.site-nav__dropdown summary {
  cursor: pointer;
  list-style: none;
  color: var(--bc-white);
  font-family: var(--bc-font-head);
  font-weight: 600;
  font-size: var(--bc-fs-base);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.92;
  display: inline-flex;
  align-items: center;
  gap: var(--bc-sp-1);
}
.site-nav__dropdown summary::-webkit-details-marker { display: none; }
.site-nav__dropdown summary::after { content: "\25BE"; font-size: 0.7em; }
.site-nav__dropdown[open] summary::after { content: "\25B4"; }
.site-nav__dropdown summary:hover { opacity: 1; color: var(--bc-accent-light); }

.site-nav__submenu {
  list-style: none;
  margin: var(--bc-sp-2) 0 0;
  padding: var(--bc-sp-4);
  background: var(--bc-white);
  border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow);
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: var(--bc-sp-1) var(--bc-sp-5);
  max-height: 60vh;
  overflow-y: auto;
}

.site-nav__submenu a {
  display: block;
  padding: var(--bc-sp-1) 0;
  color: var(--bc-ink);
  text-decoration: none;
  font-family: var(--bc-font-body);
  font-weight: 400;
  font-size: var(--bc-fs-sm);
  text-transform: none;
  letter-spacing: normal;
  opacity: 1;
}
.site-nav__submenu a:hover { color: var(--bc-accent-dark); text-decoration: underline; }

@media (min-width: 641px) {
  .site-nav__dropdown .site-nav__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 560px;
    z-index: 60;
  }
}

@media (max-width: 640px) {
  .site-nav__submenu { grid-template-columns: 1fr; max-height: 50vh; min-width: 0; }
}

.site-footer {
  background: var(--bc-ink);
  color: var(--bc-paper);
  padding: var(--bc-sp-8) 0 var(--bc-sp-6);
}

.site-footer__inner {
  max-width: var(--bc-container);
  margin: 0 auto;
  padding: 0 var(--bc-sp-5);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--bc-sp-6);
}

.site-footer h4 {
  color: var(--bc-white);
  font-size: var(--bc-fs-lg);
  margin-bottom: var(--bc-sp-3);
}

.site-footer a:not(.bc-btn) {
  color: var(--bc-paper-alt);
  text-decoration: none;
}
.site-footer a:not(.bc-btn):hover { color: var(--bc-accent-light); text-decoration: underline; }

.site-footer__bottom {
  max-width: var(--bc-container);
  margin: var(--bc-sp-7) auto 0;
  padding: var(--bc-sp-5) var(--bc-sp-5) 0;
  border-top: 1px solid var(--bc-border-dark);
  font-size: var(--bc-fs-sm);
  color: var(--bc-muted-onDark);
}

/* Social icons list is markup up as a sibling of .site-footer__inner rather than
   inside it, so it needs its own matching container width/padding to line up. */
.site-footer > .bc-social {
  max-width: var(--bc-container);
  margin: var(--bc-sp-2) auto 0;
  padding: 0 var(--bc-sp-5);
}

/* =========================================================================
   Hero
   ========================================================================= */
.bc-hero {
  position: relative;
  background-color: var(--bc-primary-dark);
  background-image: linear-gradient(135deg, var(--bc-primary-dark) 0%, var(--bc-ink) 100%);
  color: var(--bc-white);
  padding: var(--bc-sp-9) 0;
  overflow: hidden;
}

.bc-hero a:not(.bc-btn),
.bc-formband a:not(.bc-btn),
.bc-video a:not(.bc-btn),
.bc-prose--dark a:not(.bc-btn),
.bc-gallery__caption a:not(.bc-btn) {
  color: var(--bc-link-onDark);
}

/* Plain (non-nav-list, non-button) links placed directly in the dark header — e.g. a
   skip-to-content link — would otherwise inherit the light-background link color. */
.site-header > a:not(.bc-btn),
.site-header__inner > a:not(.site-header__logo):not(.bc-btn),
.site-nav > a:not(.bc-btn) {
  color: var(--bc-white);
}

.bc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 26px);
  pointer-events: none;
}

.bc-hero__inner {
  position: relative;
  max-width: var(--bc-container);
  margin: 0 auto;
  padding: 0 var(--bc-sp-5);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--bc-sp-7);
  align-items: center;
}

.bc-hero--imgless .bc-hero__inner { grid-template-columns: 1fr; max-width: 860px; text-align: center; }
.bc-hero--imgless .bc-hero__actions { justify-content: center; }
.bc-hero--imgless .bc-hero__meta { justify-content: center; }

.bc-hero__title {
  font-size: var(--bc-fs-5xl);
  margin-bottom: var(--bc-sp-4);
}

.bc-hero__lede {
  font-size: var(--bc-fs-lg);
  color: var(--bc-paper-alt);
  max-width: 46ch;
  margin-bottom: var(--bc-sp-6);
}

.bc-hero__actions {
  display: flex;
  gap: var(--bc-sp-4);
  flex-wrap: wrap;
}

.bc-hero__meta {
  display: flex;
  gap: var(--bc-sp-5);
  margin-top: var(--bc-sp-6);
  flex-wrap: wrap;
  font-size: var(--bc-fs-sm);
  color: var(--bc-paper-alt);
}

.bc-hero__media {
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  box-shadow: var(--bc-shadow);
  border: 4px solid rgba(255, 255, 255, 0.08);
}

.bc-hero__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

@media (max-width: 800px) {
  .bc-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .bc-hero__lede { margin-left: auto; margin-right: auto; }
  .bc-hero__actions { justify-content: center; }
  .bc-hero__meta { justify-content: center; }
}

/* =========================================================================
   Hero — homepage above-the-fold quote variant (Module 03)
   Scoped entirely under .bc-hero--quote so no other page's .bc-hero is
   affected. Built only from existing tokens already defined above.
   ========================================================================= */
html { scroll-behavior: smooth; }

.bc-hero--quote { padding: var(--bc-sp-7) 0; }

.bc-hero--quote .bc-hero__title { font-size: var(--bc-fs-4xl); }

.bc-hero--quote .bc-hero__meta {
  list-style: none;
  margin: var(--bc-sp-5) 0 0;
  padding: 0;
}

.bc-hero--quote .bc-hero__form {
  background: var(--bc-white);
  color: var(--bc-ink);
  border-radius: var(--bc-radius-lg);
  padding: var(--bc-sp-6);
  box-shadow: var(--bc-shadow);
  /* Offsets the anchor-scroll landing point so the sticky site header never
     covers the form after a #quote-form jump. Values match the header's
     measured height at each breakpoint, not a design-scale value. */
  scroll-margin-top: 110px;
}

.bc-hero--quote .bc-hero__form .bc-eyebrow,
.bc-hero--quote .bc-hero__form .bc-eyebrow--onDark {
  color: var(--bc-accent-dark);
}

.bc-hero--quote .bc-hero__form h2 {
  color: var(--bc-primary);
  font-size: var(--bc-fs-2xl);
}

.bc-hero--quote .bc-hero__form iframe { display: block; }

/* Keep the two-column layout through tablet width (768px) so the form stays
   above the fold there too — only the true global mobile breakpoint below
   collapses to a single stacked column. Higher specificity than the base
   .bc-hero__inner rule above, so this wins in the 641-800px range. */
@media (max-width: 800px) {
  .bc-hero--quote .bc-hero__inner { grid-template-columns: 1.05fr 0.95fr; text-align: left; }
  .bc-hero--quote .bc-hero__title { font-size: var(--bc-fs-3xl); }
  .bc-hero--quote .bc-hero__lede { font-size: var(--bc-fs-base); margin-left: 0; margin-right: 0; }
  .bc-hero--quote .bc-hero__actions,
  .bc-hero--quote .bc-hero__meta { justify-content: flex-start; }
  .bc-hero--quote .bc-hero__form { scroll-margin-top: 145px; }
  /* Tighter than the desktop padding — reclaims headroom for pages whose
     pre-existing header markup runs taller at tablet widths (some pages'
     header includes an extra always-visible call button we don't touch,
     per file scope). */
  .bc-hero--quote { padding: var(--bc-sp-6) 0; }
}

@media (max-width: 640px) {
  .bc-hero--quote .bc-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .bc-hero--quote .bc-hero__lede { margin-left: auto; margin-right: auto; }
  .bc-hero--quote .bc-hero__actions,
  .bc-hero--quote .bc-hero__meta { justify-content: center; }
  .bc-hero--quote .bc-hero__form { scroll-margin-top: 180px; }
  /* Existing hero copy left verbatim in the page source but hidden at this breakpoint only
     when it's too long to leave the "Get a Quote" button and phone CTA above the fold on
     mobile — the words are not deleted or reworded, just not rendered on narrow screens.
     Tablet and desktop show it in full. */
  .bc-hero--quote .bc-hero__lede--compact { display: none; }
}

/* =========================================================================
   Prose
   ========================================================================= */
.bc-prose {
  padding: var(--bc-sp-8) 0;
}

/* Any prose section used as an anchor-scroll target (e.g. the homepage Service
   Overview detail blocks) should land clear of the sticky site header. */
.bc-prose[id] { scroll-margin-top: 110px; }
@media (max-width: 800px) { .bc-prose[id] { scroll-margin-top: 145px; } }
@media (max-width: 640px) { .bc-prose[id] { scroll-margin-top: 180px; } }

.bc-prose__inner {
  max-width: var(--bc-container);
  margin: 0 auto;
  padding: 0 var(--bc-sp-5);
}

/* Purely decorative visual break between paragraph groups in long-copy sections —
   content/readability framework wall-of-text fix. No text, no icon, aria-hidden. */
.bc-prose__divider {
  width: 48px;
  height: 3px;
  background: var(--bc-accent);
  border-radius: var(--bc-radius-sm);
  margin: var(--bc-sp-5) 0;
}

.bc-prose--has-color {
  background: var(--bc-paper-alt);
}

.bc-prose--dark {
  background: var(--bc-primary-dark);
  color: var(--bc-white);
}
.bc-prose--dark h2, .bc-prose--dark h3 { color: var(--bc-white); }
.bc-prose--dark p { color: var(--bc-paper-alt); }
.bc-prose--dark .bc-eyebrow { color: var(--bc-accent-light); }

.bc-prose--with-image .bc-prose__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bc-sp-7);
  align-items: center;
}

.bc-prose__media img {
  border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow-sm);
  width: 100%;
}

.bc-prose__body { max-width: 62ch; }
.bc-prose--with-image .bc-prose__body { max-width: none; }

@media (max-width: 800px) {
  .bc-prose--with-image .bc-prose__inner { grid-template-columns: 1fr; }
}

/* =========================================================================
   Grid (services / features)
   ========================================================================= */
.bc-grid {
  padding: var(--bc-sp-8) 0;
}

.bc-grid__inner {
  max-width: var(--bc-container);
  margin: 0 auto;
  padding: 0 var(--bc-sp-5);
}

.bc-grid__head {
  max-width: 62ch;
  margin: 0 auto var(--bc-sp-7);
  text-align: center;
}

.bc-grid__cells {
  display: grid;
  gap: var(--bc-sp-5);
  grid-template-columns: repeat(2, 1fr);
}

.bc-grid--2col .bc-grid__cells { grid-template-columns: repeat(2, 1fr); }
.bc-grid--3col .bc-grid__cells { grid-template-columns: repeat(3, 1fr); }
.bc-grid--4col .bc-grid__cells { grid-template-columns: repeat(4, 1fr); }

.bc-grid__card {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: var(--bc-sp-5);
  box-shadow: var(--bc-shadow-sm);
  transition: transform var(--bc-transition), box-shadow var(--bc-transition);
}

/* .bc-grid__card is also used as a clickable <a> in the homepage Service Overview
   grid (Module — Service Overview). Neutralise the default anchor underline; the
   existing h3/p colour rules below already handle text colour. */
.bc-grid__card[href] { display: block; text-decoration: none; }

.bc-grid__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--bc-shadow);
}

.bc-grid--text-only .bc-grid__card { text-align: left; }

.bc-grid--imaged .bc-grid__card { padding: 0; overflow: hidden; }

.bc-grid__card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.bc-grid--imaged .bc-grid__card-body { padding: var(--bc-sp-5); }

.bc-grid__card h3 {
  font-size: var(--bc-fs-xl);
  margin-bottom: var(--bc-sp-2);
  color: var(--bc-primary);
}

.bc-grid__card p {
  color: var(--bc-muted);
  margin-bottom: 0;
  font-size: var(--bc-fs-sm);
}

.bc-grid__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--bc-radius-sm);
  background: var(--bc-paper-alt);
  color: var(--bc-accent-dark);
  margin-bottom: var(--bc-sp-3);
  font-size: 1.4rem;
}

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

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

/* =========================================================================
   FAQ
   ========================================================================= */
.bc-faq {
  padding: var(--bc-sp-8) 0;
  background: var(--bc-paper-alt);
}

.bc-faq__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--bc-sp-5);
}

.bc-faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--bc-sp-3);
  margin-top: var(--bc-sp-6);
}

.bc-faq__item {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: var(--bc-sp-4) var(--bc-sp-5);
}

.bc-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--bc-sp-4);
  margin: 0;
  font-family: var(--bc-font-head);
  font-size: var(--bc-fs-lg);
  font-weight: 700;
  color: var(--bc-primary);
  cursor: pointer;
  list-style: none;
}

.bc-faq__q::-webkit-details-marker { display: none; }

.bc-faq__q::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--bc-accent);
  flex-shrink: 0;
  transition: transform var(--bc-transition);
}

.bc-faq__item[open] .bc-faq__q::after { transform: rotate(45deg); }

.bc-faq__a {
  margin: var(--bc-sp-3) 0 0;
  color: var(--bc-muted);
}

/* =========================================================================
   Gallery
   ========================================================================= */
.bc-gallery {
  padding: var(--bc-sp-8) 0;
}

.bc-gallery__inner {
  max-width: var(--bc-container);
  margin: 0 auto;
  padding: 0 var(--bc-sp-5);
}

.bc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bc-sp-4);
  margin-top: var(--bc-sp-6);
}

.bc-gallery__cell {
  position: relative;
  border-radius: var(--bc-radius);
  overflow: hidden;
  box-shadow: var(--bc-shadow-sm);
}

.bc-gallery__cell img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--bc-transition);
}

.bc-gallery__cell:hover img { transform: scale(1.05); }

.bc-gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  background-color: var(--bc-ink);
  background-image: linear-gradient(0deg, rgba(28, 31, 34, 0.88), transparent);
  color: var(--bc-white);
  padding: var(--bc-sp-4) var(--bc-sp-3) var(--bc-sp-2);
  font-size: var(--bc-fs-sm);
  font-weight: 600;
}

@media (max-width: 800px) {
  .bc-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .bc-gallery__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Video
   ========================================================================= */
.bc-video {
  padding: var(--bc-sp-8) 0;
  background: var(--bc-primary-dark);
  color: var(--bc-white);
}

.bc-video__inner {
  max-width: var(--bc-container);
  margin: 0 auto;
  padding: 0 var(--bc-sp-5);
}

.bc-video__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--bc-sp-7);
  align-items: center;
}

.bc-video__copy p { color: var(--bc-paper-alt); }

.bc-video__player {
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  box-shadow: var(--bc-shadow);
  border: 4px solid rgba(255, 255, 255, 0.08);
}

.bc-video__frame {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: 0;
}

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

/* =========================================================================
   Map
   ========================================================================= */
.bc-map {
  padding: var(--bc-sp-8) 0;
}

.bc-map__inner {
  max-width: var(--bc-container);
  margin: 0 auto;
  padding: 0 var(--bc-sp-5);
}

.bc-map__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--bc-sp-6);
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  box-shadow: var(--bc-shadow-sm);
}

.bc-map__info {
  padding: var(--bc-sp-6);
  align-self: center;
}

.bc-map__addr {
  list-style: none;
  margin: var(--bc-sp-4) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--bc-sp-2);
  color: var(--bc-muted);
  font-size: var(--bc-fs-sm);
}

.bc-map__addr strong { color: var(--bc-primary); }

.bc-map__frame {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

@media (max-width: 800px) {
  .bc-map__grid { grid-template-columns: 1fr; }
  .bc-map__frame { min-height: 260px; }
}

/* =========================================================================
   Testimonial
   ========================================================================= */
.bc-testimonial {
  padding: var(--bc-sp-8) 0;
  background: var(--bc-paper-alt);
}

.bc-testimonial__inner {
  max-width: var(--bc-container);
  margin: 0 auto;
  padding: 0 var(--bc-sp-5);
}

.bc-testimonial__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bc-sp-5);
  margin-top: var(--bc-sp-6);
}

.bc-testimonial__card {
  background: var(--bc-white);
  border-radius: var(--bc-radius);
  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);
  letter-spacing: 0.15em;
  margin-bottom: var(--bc-sp-3);
  font-size: var(--bc-fs-base);
}

.bc-testimonial__quote {
  color: var(--bc-ink-soft);
  font-style: italic;
  margin-bottom: var(--bc-sp-4);
}

.bc-testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--bc-sp-3);
}

.bc-testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bc-primary);
  color: var(--bc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bc-font-head);
  font-weight: 700;
  flex-shrink: 0;
}

.bc-testimonial__name {
  font-weight: 700;
  color: var(--bc-primary);
  font-size: var(--bc-fs-sm);
}

.bc-testimonial__role {
  font-size: var(--bc-fs-xs);
  color: var(--bc-muted-light);
}

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

.bc-testimonial__carousel {
  position: relative;
}

.bc-testimonial__carousel [data-testimonial-item][hidden] {
  display: none;
}

.bc-testimonial__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--bc-sp-4);
  margin-top: var(--bc-sp-5);
}

.bc-testimonial__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--bc-border);
  background: var(--bc-white);
  color: var(--bc-primary);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.bc-testimonial__arrow:hover,
.bc-testimonial__arrow:focus-visible {
  background: var(--bc-primary);
  color: var(--bc-white);
}

.bc-testimonial__dots {
  display: flex;
  gap: var(--bc-sp-2);
}

.bc-testimonial__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--bc-border);
  padding: 0;
  cursor: pointer;
}

.bc-testimonial__dot.is-active {
  background: var(--bc-accent);
}

/* =========================================================================
   Form band
   ========================================================================= */
.bc-formband {
  padding: var(--bc-sp-8) 0;
  background: var(--bc-ink);
  color: var(--bc-white);
}

.bc-formband--intro {
  background-color: var(--bc-primary-dark);
  background-image: linear-gradient(135deg, var(--bc-primary-dark), var(--bc-ink));
}

.bc-formband--final {
  background: var(--bc-accent-dark);
}
.bc-formband--final .bc-eyebrow,
.bc-formband--final .bc-eyebrow--onDark { color: var(--bc-white); }
.bc-formband--final a:not(.bc-btn) { color: var(--bc-white); text-decoration: underline; }

.bc-formband__inner {
  max-width: var(--bc-container);
  margin: 0 auto;
  padding: 0 var(--bc-sp-5);
}

.bc-formband__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bc-sp-7);
  align-items: start;
}

.bc-formband__title {
  font-size: var(--bc-fs-3xl);
  margin-bottom: var(--bc-sp-3);
}

.bc-formband__lede {
  color: var(--bc-paper-alt);
  max-width: 42ch;
}

.bc-formband--final .bc-formband__lede { color: rgba(255, 255, 255, 0.85); }

.bc-formband__form {
  background: var(--bc-white);
  color: var(--bc-ink);
  border-radius: var(--bc-radius-lg);
  padding: var(--bc-sp-6);
  box-shadow: var(--bc-shadow);
  display: grid;
  gap: var(--bc-sp-4);
}

.bc-form-field {
  display: flex;
  flex-direction: column;
  gap: var(--bc-sp-2);
}

.bc-form-field label {
  font-size: var(--bc-fs-sm);
  font-weight: 600;
  color: var(--bc-ink-soft);
}

.bc-form-field--required label::after {
  content: " *";
  color: var(--bc-accent);
}

.bc-form-field input,
.bc-form-field textarea,
.bc-form-field select {
  font: inherit;
  font-size: var(--bc-fs-base);
  padding: 0.7em 0.85em;
  border: 1.5px solid var(--bc-border);
  border-radius: var(--bc-radius-sm);
  color: var(--bc-ink);
  background: var(--bc-paper);
}

.bc-form-field input:focus,
.bc-form-field textarea:focus,
.bc-form-field select:focus {
  border-color: var(--bc-accent);
}

.bc-form-field textarea { resize: vertical; min-height: 100px; }

.bc-formband__form .bc-btn { margin-top: var(--bc-sp-2); width: 100%; }
/* .bc-btn--ghost is designed for use directly on a dark section background (transparent +
   white text/border). The form card inside a formband is always white, so a ghost button
   placed there needs the light-background outline treatment instead. */
.bc-formband__form .bc-btn--ghost {
  color: var(--bc-accent-dark);
  border-color: var(--bc-accent-dark);
}
.bc-formband__form .bc-btn--ghost:hover { background: var(--bc-accent-dark); color: var(--bc-white); }
/* The white form card sits inside a dark (or --final accent-dark) formband. Any eyebrow/link
   markup nested INSIDE the card must use the light-background palette regardless of which
   formband variant wraps it — the dark-background overrides above target copy OUTSIDE the card. */
.bc-formband__form .bc-eyebrow,
.bc-formband__form .bc-eyebrow--onDark {
  color: var(--bc-accent-dark);
}
.bc-formband__form a:not(.bc-btn) {
  color: var(--bc-link);
}

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

/* =========================================================================
   Blog article layout (.bc-blogpost) — editorial flow matching the original
   blog's presentation: plain title header (no dark hero band), full-width
   stacked images instead of the side-by-side landing-page treatment.
   Scoped entirely to blog post pages; no other page is affected.
   ========================================================================= */
.bc-blogpost .bc-hero {
  background-image: none !important;
  background-color: transparent;
  color: var(--bc-ink);
  padding: var(--bc-sp-6) 0 var(--bc-sp-5);
}
.bc-blogpost .bc-hero::after { content: none; }
.bc-blogpost .bc-hero__inner,
.bc-blogpost .bc-hero--imgless .bc-hero__inner {
  text-align: left;
  margin: 0 auto;
}
.bc-blogpost .bc-hero .bc-eyebrow--onDark { color: var(--bc-accent-dark); }
.bc-blogpost .bc-hero__title { color: var(--bc-ink); font-size: var(--bc-fs-4xl); }
.bc-blogpost .bc-hero__lede { color: var(--bc-muted); max-width: none; }
.bc-blogpost .bc-hero__lede a { color: var(--bc-link); }
.bc-blogpost .bc-hero__meta,
.bc-blogpost .bc-hero__actions { justify-content: flex-start; }
.bc-blogpost .bc-hero__meta { color: var(--bc-muted-light); }
.bc-blogpost .bc-hero__meta a { color: var(--bc-link); }

.bc-blogpost .bc-prose--with-image .bc-prose__inner {
  grid-template-columns: 1fr;
}
.bc-blogpost .bc-prose__media {
  order: 2;
  margin-top: var(--bc-sp-5);
}
.bc-blogpost .bc-prose__media img {
  width: 100%;
}

/* Mandatory blog Table of Contents. Built from existing tokens only. */
.bc-toc {
  padding: var(--bc-sp-5) 0;
}
.bc-toc__nav {
  background: var(--bc-paper-alt);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: var(--bc-sp-5);
  max-width: 46ch;
}
.bc-toc__list {
  list-style: none;
  margin: var(--bc-sp-2) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--bc-sp-2);
}
.bc-toc__list a {
  color: var(--bc-link);
  font-size: var(--bc-fs-sm);
  text-decoration: none;
}
.bc-toc__list a:hover { text-decoration: underline; }

.bc-blogpost h2[id] { scroll-margin-top: 110px; }
@media (max-width: 800px) { .bc-blogpost h2[id] { scroll-margin-top: 145px; } }
@media (max-width: 640px) { .bc-blogpost h2[id] { scroll-margin-top: 180px; } }

/* Verified social profile links. Icon-only, currentColor, no text labels. */
.bc-social {
  display: flex;
  align-items: center;
  gap: var(--bc-sp-3);
  margin: var(--bc-sp-4) 0 0;
  padding: 0;
  list-style: none;
}
.bc-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--bc-white);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.bc-social a:hover,
.bc-social a:focus-visible { background: var(--bc-accent); border-color: var(--bc-accent); opacity: 1; }
.bc-social svg { width: 18px; height: 18px; fill: currentColor; }
.bc-social--onLight a { background: var(--bc-paper-alt); border-color: var(--bc-border); color: var(--bc-ink); }
.bc-social--onLight a:hover,
.bc-social--onLight a:focus-visible { background: var(--bc-accent); border-color: var(--bc-accent); color: var(--bc-white); }
