/* ==========================================================================
   Total Concrete Geelong — Bold Component Library
   Industry: Concreting / Concrete Contractor | Location: Geelong, VIC, AU
   Palette rationale: charcoal + concrete greys (durable, industrial, trade
   trustworthiness) with a burnt safety-orange accent (Australian trade /
   hi-vis cue) reserved for CTAs and highlights.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  /* ---- Brand palette ---- */
  --bc-primary: #33383c;        /* charcoal steel — nav, header, dark sections */
  --bc-primary-dark: #1b1e20;   /* deep charcoal — footer, darkest surfaces */
  --bc-primary-light: #4c5257;  /* lighter charcoal for hovers on dark */
  --bc-accent: #c94a10;         /* burnt safety orange — primary CTA */
  --bc-accent-dark: #a13c0c;    /* accent hover/active */
  --bc-accent-light: #f2925c;   /* accent tints / highlights — AA-safe on both primary and primary-dark */
  --bc-concrete: #6b6963;       /* concrete grey — secondary text, borders (AA on white/alt) */
  --bc-concrete-light: #d8d5cd; /* light concrete — dividers, muted bg */

  /* ---- Surfaces / ink ---- */
  --bc-paper: #f5f3ef;          /* warm off-white, poured-concrete tone */
  --bc-surface: #ffffff;        /* card / form surface */
  --bc-surface-alt: #ece9e2;    /* alternate section bg */
  --bc-ink: #202325;            /* primary text, near-black charcoal */
  --bc-ink-soft: #4b4f52;       /* secondary text on light */
  --bc-on-dark: #f5f3ef;        /* text on dark surfaces */
  --bc-on-dark-soft: #c7c5bf;   /* secondary text on dark surfaces */
  --bc-border: #d6d2c8;         /* hairline borders on light */
  --bc-border-dark: #4a4f53;    /* hairline borders on dark */

  /* ---- Type scale ---- */
  --bc-font-head: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --bc-font-body: 'Work Sans', 'Segoe UI', Arial, sans-serif;
  --bc-fs-eyebrow: 0.8125rem;
  --bc-fs-sm: 0.9375rem;
  --bc-fs-base: 1.0625rem;
  --bc-fs-lg: 1.25rem;
  --bc-fs-h4: 1.375rem;
  --bc-fs-h3: 1.75rem;
  --bc-fs-h2: 2.375rem;
  --bc-fs-h1: 3.25rem;
  --bc-lh-tight: 1.12;
  --bc-lh-head: 1.2;
  --bc-lh-body: 1.6;

  /* ---- Spacing 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;

  /* ---- Misc ---- */
  --bc-radius: 6px;
  --bc-radius-lg: 12px;
  --bc-shadow: 0 6px 20px rgba(20, 22, 23, 0.14);
  --bc-shadow-sm: 0 2px 8px rgba(20, 22, 23, 0.10);
  --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; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--bc-font-head);
  line-height: var(--bc-lh-head);
  font-weight: 700;
  margin: 0 0 var(--bc-sp-3);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
h1 { font-size: var(--bc-fs-h1); line-height: var(--bc-lh-tight); }
h2 { font-size: var(--bc-fs-h2); }
h3 { font-size: var(--bc-fs-h3); }
h4 { font-size: var(--bc-fs-h4); }
p { margin: 0 0 var(--bc-sp-3); }

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

/* ==========================================================================
   Eyebrow
   ========================================================================== */
.bc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--bc-sp-1);
  font-family: var(--bc-font-body);
  font-size: var(--bc-fs-eyebrow);
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--bc-accent-dark);
  margin: 0 0 var(--bc-sp-2);
}
.bc-eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--bc-accent);
  display: inline-block;
  border-radius: 2px;
}
.bc-eyebrow--on-dark { color: var(--bc-accent-light); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--bc-sp-1);
  font-family: var(--bc-font-body);
  font-weight: 700;
  font-size: var(--bc-fs-sm);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.75rem;
  border-radius: var(--bc-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--bc-transition), color var(--bc-transition), border-color var(--bc-transition), transform var(--bc-transition);
}
.bc-btn:hover { transform: translateY(-1px); }
.bc-btn:active { transform: translateY(0); }

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

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

.bc-btn--ghost {
  background: transparent;
  color: var(--bc-on-dark);
  border-color: rgba(245, 243, 239, 0.55);
}
.bc-btn--ghost:hover { background: rgba(245, 243, 239, 0.12); border-color: var(--bc-on-dark); }

.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-on-dark); }

/* ==========================================================================
   Site shell — header / nav / footer
   ========================================================================== */
.site-header {
  background: var(--bc-surface);
  border-bottom: 1px solid var(--bc-border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--bc-sp-4);
  padding: var(--bc-sp-2) 0;
}
.site-header__logo {
  font-family: var(--bc-font-head);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--bc-primary);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.site-header__logo span { color: var(--bc-accent); }

.site-nav { display: flex; }
.site-nav__list {
  list-style: none;
  display: flex;
  gap: var(--bc-sp-5);
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-nav__list a {
  text-decoration: none;
  color: var(--bc-ink);
  font-weight: 600;
  font-size: var(--bc-fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: var(--bc-sp-1) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--bc-transition), border-color var(--bc-transition);
}
.site-nav__list a:hover,
.site-nav__list a[aria-current="page"] {
  color: var(--bc-accent);
  border-color: var(--bc-accent);
}
/* CTA buttons inside nav must keep their own button text color, not the generic nav-link ink color */
.site-nav__list a.bc-btn--accent,
.site-nav__list a.bc-btn--accent:hover,
.site-nav__list a.bc-btn--accent[aria-current="page"] { color: #ffffff; }
.site-nav__list a.bc-btn--primary,
.site-nav__list a.bc-btn--primary:hover { color: var(--bc-on-dark); }
.site-nav__list a.bc-btn--ghost,
.site-nav__list a.bc-btn--ghost:hover { color: var(--bc-on-dark); }
.site-nav__list a.bc-btn--outline,
.site-nav__list a.bc-btn--outline:hover { color: var(--bc-ink); }

.site-footer {
  background: var(--bc-primary-dark);
  color: var(--bc-on-dark-soft);
  padding: var(--bc-sp-7) 0 var(--bc-sp-4);
}
.site-footer a { color: var(--bc-on-dark); text-decoration: none; }
.site-footer a:hover { color: var(--bc-accent-light); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--bc-sp-6);
  padding-bottom: var(--bc-sp-6);
  border-bottom: 1px solid var(--bc-border-dark);
}
.site-footer__heading {
  font-family: var(--bc-font-head);
  color: var(--bc-on-dark);
  text-transform: uppercase;
  font-size: var(--bc-fs-lg);
  margin-bottom: var(--bc-sp-3);
}
.site-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--bc-sp-2); }
.site-footer__bottom {
  padding-top: var(--bc-sp-4);
  font-size: var(--bc-fs-sm);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--bc-sp-2);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.bc-hero {
  background-color: var(--bc-primary-dark);
  background-image: linear-gradient(135deg, var(--bc-primary-dark) 0%, var(--bc-primary) 100%);
  color: var(--bc-on-dark);
  padding: var(--bc-sp-8) 0;
  position: relative;
  overflow: hidden;
}
/* Dark scrim: keeps on-dark hero text AA-readable even when a page inline-styles a
   background-image (real photo or a broken lazy-load placeholder) directly on .bc-hero,
   which replaces the gradient above but never the background-color fallback. */
.bc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 30, 32, 0.6);
  pointer-events: none;
}
.bc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 18px);
  pointer-events: none;
}
.bc-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--bc-sp-6);
  align-items: center;
}
.bc-hero__title { font-size: var(--bc-fs-h1); margin-bottom: var(--bc-sp-3); }
.bc-hero__lede {
  font-size: var(--bc-fs-lg);
  color: var(--bc-on-dark-soft);
  max-width: 46ch;
  margin-bottom: var(--bc-sp-5);
}
.bc-hero__cta { display: flex; gap: var(--bc-sp-3); flex-wrap: wrap; }
.bc-hero__media {
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  box-shadow: var(--bc-shadow);
  border: 1px solid var(--bc-border-dark);
}
.bc-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.bc-hero--compact { padding: var(--bc-sp-6) 0; }

/* ==========================================================================
   Prose
   ========================================================================== */
.bc-prose {
  padding: var(--bc-sp-7) 0;
  background: var(--bc-paper);
  color: var(--bc-ink);
}
.bc-prose__inner { max-width: 74ch; }
.bc-prose--with-image .bc-prose__inner { max-width: none; display: grid; grid-template-columns: 1fr 1fr; gap: var(--bc-sp-6); align-items: center; }
.bc-prose--with-image .bc-prose__img { border-radius: var(--bc-radius-lg); overflow: hidden; box-shadow: var(--bc-shadow-sm); }
.bc-prose h2, .bc-prose h3 { color: var(--bc-primary); }
.bc-prose--has-color { background: var(--bc-surface-alt); }
.bc-prose--dark { background: var(--bc-primary-dark); color: var(--bc-on-dark); }
.bc-prose--dark h2, .bc-prose--dark h3 { color: var(--bc-on-dark); }
.bc-prose--dark p { color: var(--bc-on-dark-soft); }
.bc-prose--dark a { color: var(--bc-accent-light); }

/* ==========================================================================
   Grid (services / features)
   ========================================================================== */
.bc-grid { padding: var(--bc-sp-7) 0; }
.bc-grid__head { max-width: 60ch; margin-bottom: var(--bc-sp-6); }
.bc-grid__head h2 { color: var(--bc-primary); }
.bc-grid__list {
  display: grid;
  gap: var(--bc-sp-4);
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}
.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--2col .bc-grid__list { grid-template-columns: repeat(2, 1fr); }

.bc-grid__card {
  background: var(--bc-surface);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  padding: var(--bc-sp-4);
  transition: box-shadow var(--bc-transition), transform var(--bc-transition), border-color var(--bc-transition);
}
.bc-grid__card:hover { box-shadow: var(--bc-shadow-sm); transform: translateY(-2px); border-color: var(--bc-accent); }
.bc-grid__card h3, .bc-grid__card h4 { color: var(--bc-primary); font-size: var(--bc-fs-h4); }
.bc-grid__card p { color: var(--bc-ink-soft); margin-bottom: 0; }
.bc-grid__card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--bc-radius);
  margin-bottom: var(--bc-sp-3);
  background: var(--bc-concrete-light);
}
.bc-grid--text-only .bc-grid__card-img { display: none; }
.bc-grid--imaged .bc-grid__card { padding-bottom: var(--bc-sp-4); }
.bc-grid__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bc-primary);
  color: var(--bc-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--bc-sp-3);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.bc-faq { padding: var(--bc-sp-7) 0; background: var(--bc-surface-alt); }
.bc-faq__head { max-width: 60ch; margin: 0 auto var(--bc-sp-6); text-align: center; }
.bc-faq__head h2 { color: var(--bc-primary); }
.bc-faq__list { max-width: 820px; margin: 0 auto; display: grid; gap: var(--bc-sp-3); }
.bc-faq__item {
  background: var(--bc-surface);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: var(--bc-sp-4);
}
.bc-faq__q {
  margin: 0;
  font-family: var(--bc-font-body);
  font-weight: 700;
  font-size: var(--bc-fs-lg);
  text-transform: none;
  color: var(--bc-primary);
  display: flex;
  align-items: baseline;
  gap: var(--bc-sp-2);
}
.bc-faq__q::before { content: "Q."; color: var(--bc-accent); font-weight: 800; }
.bc-faq__a { margin: var(--bc-sp-2) 0 0; color: var(--bc-ink-soft); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.bc-gallery { padding: var(--bc-sp-7) 0; }
.bc-gallery__head { max-width: 60ch; margin-bottom: var(--bc-sp-6); }
.bc-gallery__head h2 { color: var(--bc-primary); }
.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: 4 / 3;
  background: var(--bc-concrete-light);
}
.bc-gallery__cell img { width: 100%; height: 100%; object-fit: cover; }
.bc-gallery__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(27,30,32,0.88), rgba(27,30,32,0));
  color: #ffffff;
  font-size: var(--bc-fs-sm);
  font-weight: 600;
  padding: var(--bc-sp-4) var(--bc-sp-2) var(--bc-sp-2);
}

/* ==========================================================================
   Video
   ========================================================================== */
.bc-video { padding: var(--bc-sp-7) 0; background: var(--bc-primary-dark); color: var(--bc-on-dark); }
.bc-video__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--bc-sp-6);
  align-items: center;
}
.bc-video__copy h2 { color: var(--bc-on-dark); }
.bc-video__copy p { color: var(--bc-on-dark-soft); }
.bc-video__player { position: relative; }
.bc-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  box-shadow: var(--bc-shadow);
  border: 1px solid var(--bc-border-dark);
  background: var(--bc-primary);
}
.bc-video__frame iframe,
.bc-video__frame img { width: 100%; height: 100%; object-fit: cover; border: 0; }
.bc-video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--bc-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* ==========================================================================
   Map
   ========================================================================== */
.bc-map { padding: var(--bc-sp-7) 0; }
.bc-map__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--bc-sp-6);
  align-items: stretch;
  background: var(--bc-surface);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
}
.bc-map__info { padding: var(--bc-sp-6); display: flex; flex-direction: column; justify-content: center; }
.bc-map__info h2 { color: var(--bc-primary); }
.bc-map__addr { list-style: none; margin: var(--bc-sp-3) 0; padding: 0; display: grid; gap: var(--bc-sp-2); color: var(--bc-ink-soft); }
.bc-map__addr strong { color: var(--bc-ink); }
.bc-map__frame { min-height: 320px; background: var(--bc-concrete-light); }
.bc-map__frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================================================
   Testimonial
   ========================================================================== */
.bc-testimonial { padding: var(--bc-sp-7) 0; background: var(--bc-surface-alt); }
.bc-testimonial__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bc-sp-4);
}
.bc-testimonial__card {
  background: var(--bc-surface);
  border-radius: var(--bc-radius-lg);
  padding: var(--bc-sp-5);
  border-top: 4px solid var(--bc-accent);
  box-shadow: var(--bc-shadow-sm);
}
.bc-testimonial__quote {
  margin: 0 0 var(--bc-sp-4);
  font-size: var(--bc-fs-lg);
  color: var(--bc-ink);
  line-height: 1.5;
}
.bc-testimonial__quote::before { content: open-quote; color: var(--bc-accent); font-size: 1.6em; }
.bc-testimonial__quote::after { content: close-quote; color: var(--bc-accent); font-size: 1.6em; }
.bc-testimonial__author { display: flex; align-items: center; gap: var(--bc-sp-2); }
.bc-testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bc-primary); color: var(--bc-accent-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--bc-font-head);
}
.bc-testimonial__name { font-weight: 700; color: var(--bc-primary); display: block; }
.bc-testimonial__role { font-size: var(--bc-fs-sm); color: var(--bc-concrete); }
.bc-testimonial__stars { color: var(--bc-accent); letter-spacing: 2px; margin-bottom: var(--bc-sp-2); }

/* ==========================================================================
   Form band (quote request / contact)
   ========================================================================== */
.bc-formband {
  padding: var(--bc-sp-8) 0;
  background: var(--bc-primary);
  color: var(--bc-on-dark);
}
.bc-formband__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bc-sp-6);
  align-items: center;
}
.bc-formband__title { color: var(--bc-on-dark); }
.bc-formband__lede { color: var(--bc-on-dark-soft); max-width: 46ch; }
.bc-formband__form {
  background: var(--bc-surface);
  border-radius: var(--bc-radius-lg);
  padding: var(--bc-sp-5);
  box-shadow: var(--bc-shadow);
  display: grid;
  gap: var(--bc-sp-3);
}
.bc-formband--intro { background: linear-gradient(135deg, var(--bc-primary-dark), var(--bc-primary)); }
.bc-formband--final {
  background: var(--bc-primary-dark);
  text-align: center;
}
.bc-formband--final .bc-formband__grid { grid-template-columns: 1fr; justify-items: center; }
.bc-formband--final .bc-formband__form { width: 100%; max-width: 560px; }

.bc-form-field { display: grid; gap: 0.35rem; text-align: left; }
.bc-form-field label {
  font-size: var(--bc-fs-sm);
  font-weight: 600;
  color: var(--bc-ink);
}
.bc-form-field--required label::after { content: " *"; color: var(--bc-accent-dark); }
.bc-form-field input,
.bc-form-field textarea,
.bc-form-field select {
  font-family: var(--bc-font-body);
  font-size: var(--bc-fs-base);
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  background: var(--bc-paper);
  color: var(--bc-ink);
}
.bc-form-field input:focus,
.bc-form-field textarea:focus,
.bc-form-field select:focus {
  outline: 2px solid var(--bc-accent);
  outline-offset: 1px;
  border-color: var(--bc-accent);
}
.bc-form-field textarea { resize: vertical; min-height: 100px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  :root {
    --bc-fs-h1: 2.5rem;
    --bc-fs-h2: 1.9rem;
    --bc-fs-h3: 1.5rem;
  }
  .bc-hero__grid,
  .bc-prose--with-image .bc-prose__inner,
  .bc-video__grid,
  .bc-map__grid,
  .bc-formband__grid {
    grid-template-columns: 1fr;
  }
  .bc-grid--3col .bc-grid__list,
  .bc-grid--4col .bc-grid__list,
  .bc-grid--2col .bc-grid__list,
  .bc-grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .bc-testimonial__grid { grid-template-columns: 1fr; }
  .bc-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .bc-container { padding: 0 var(--bc-sp-3); }
  .site-header__bar { flex-wrap: wrap; row-gap: var(--bc-sp-2); }
  .site-nav { order: 3; width: 100%; }
  .site-nav__list { gap: var(--bc-sp-3) var(--bc-sp-4); }
  .bc-hero { padding: var(--bc-sp-6) 0; }
  .bc-hero__cta { flex-direction: column; align-items: stretch; }
  .bc-hero__cta .bc-btn { width: 100%; }
  .bc-grid--3col .bc-grid__list,
  .bc-grid--4col .bc-grid__list,
  .bc-grid--2col .bc-grid__list,
  .bc-grid__list {
    grid-template-columns: 1fr;
  }
  .bc-gallery__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-nav__list { flex-wrap: wrap; gap: var(--bc-sp-3); }
  .bc-testimonial__grid { grid-template-columns: 1fr; }
}
