/* ==========================================================================
   Townsville Bathroom Renos — Component Library (bc-*)
   Industry: bathroom renovations, trades / home improvement
   Location: Townsville, tropical North Queensland
   Palette direction: coastal water teal (trust/water/tile) + warm
   terracotta clay accent (tropical warmth, NQ sun) — deliberately NOT the
   generic "fencing" look implied by the reused logo filename.
   ========================================================================== */

:root {
  /* ---- Colour tokens --------------------------------------------------- */
  --bc-primary: #0b6b6b;
  --bc-primary-dark: #08514f;
  --bc-primary-light: #4fb8b8;

  --bc-accent: #d9682c;
  --bc-accent-ink: #b8541f;
  --bc-accent-soft: #f0a06a;

  --bc-paper: #faf8f5;
  --bc-paper-alt: #eef4f3;
  --bc-white: #ffffff;

  --bc-ink: #16241f;
  --bc-ink-soft: #45605c;
  --bc-ink-faint: #587067;

  --bc-dark: #0d2b2b;
  --bc-dark-2: #0a3736;

  --bc-line: #d8e3e0;
  --bc-line-dark: rgba(255, 255, 255, 0.16);

  --bc-success: #2f7a4f;
  --bc-focus: #1c8f8f;

  /* ---- Typography -------------------------------------------------------*/
  --bc-font-body: -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif, system-ui;
  --bc-font-heading: -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif, system-ui;

  --bc-text-xs: 0.8125rem;
  --bc-text-sm: 0.9375rem;
  --bc-text-base: 1rem;
  --bc-text-lg: 1.125rem;
  --bc-text-xl: 1.375rem;
  --bc-text-2xl: 1.75rem;
  --bc-text-3xl: 2.25rem;
  --bc-text-4xl: 2.75rem;
  --bc-text-5xl: 3.5rem;

  --bc-leading-tight: 1.15;
  --bc-leading-snug: 1.35;
  --bc-leading-normal: 1.6;

  --bc-tracking-wide: 0.08em;
  --bc-tracking-wider: 0.14em;

  /* ---- Spacing scale ---------------------------------------------------*/
  --bc-space-1: 0.25rem;
  --bc-space-2: 0.5rem;
  --bc-space-3: 0.75rem;
  --bc-space-4: 1rem;
  --bc-space-5: 1.5rem;
  --bc-space-6: 2rem;
  --bc-space-8: 3rem;
  --bc-space-10: 4rem;
  --bc-space-12: 6rem;
  --bc-space-16: 8rem;

  /* ---- Radius / shadow ---------------------------------------------------*/
  --bc-radius-sm: 6px;
  --bc-radius: 10px;
  --bc-radius-lg: 18px;
  --bc-radius-full: 999px;

  --bc-shadow-sm: 0 2px 8px rgba(13, 43, 43, 0.08);
  --bc-shadow: 0 8px 24px rgba(13, 43, 43, 0.12);
  --bc-shadow-lg: 0 20px 48px rgba(13, 43, 43, 0.18);

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

/* ==========================================================================
   Base / reset
   ========================================================================== */

* ,
*::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-text-base);
  line-height: var(--bc-leading-normal);
  color: var(--bc-ink);
  background: var(--bc-paper);
  overflow-x: hidden;
}

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

a {
  color: var(--bc-primary-dark);
}

h1, h2, h3, h4 {
  font-family: var(--bc-font-heading);
  line-height: var(--bc-leading-tight);
  margin: 0 0 var(--bc-space-4);
  font-weight: 800;
  letter-spacing: -0.01em;
}

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

.bc-container {
  width: 100%;
  max-width: var(--bc-container-w);
  margin-inline: auto;
  padding-inline: var(--bc-space-5);
}

/* ==========================================================================
   Eyebrow
   ========================================================================== */

.bc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--bc-space-2);
  font-size: var(--bc-text-xs);
  font-weight: 700;
  letter-spacing: var(--bc-tracking-wider);
  text-transform: uppercase;
  color: var(--bc-accent-ink);
  margin-bottom: var(--bc-space-3);
}

.bc-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--bc-accent);
  display: inline-block;
}

.bc-eyebrow--on-dark {
  color: var(--bc-accent-soft);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--bc-space-2);
  font-family: var(--bc-font-heading);
  font-size: var(--bc-text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--bc-radius-full);
  padding: 0.9rem 1.75rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  line-height: 1;
}

.bc-btn:focus-visible {
  outline: 3px solid var(--bc-focus);
  outline-offset: 2px;
}

.bc-btn:hover {
  transform: translateY(-2px);
}

.bc-btn--primary {
  background: var(--bc-primary);
  color: var(--bc-white);
  box-shadow: var(--bc-shadow-sm);
}
.bc-btn--primary:hover {
  background: var(--bc-primary-dark);
  box-shadow: var(--bc-shadow);
}

.bc-btn--accent {
  background: var(--bc-accent);
  color: var(--bc-ink);
  box-shadow: var(--bc-shadow-sm);
}
.bc-btn--accent:hover {
  background: var(--bc-accent-ink);
  color: var(--bc-white);
  box-shadow: var(--bc-shadow);
}

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

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

/* Dark-section context: outline buttons and inline links inherit white/light text so they stay
   legible against the hero/formband/testimonial/photo-scrim dark backgrounds. */
.bc-hero .bc-btn--outline,
.bc-formband--final .bc-btn--outline,
.bc-formband--intro .bc-btn--outline,
.bc-testimonial .bc-btn--outline,
.bc-testimonial a,
.bc-map .bc-btn--outline,
[style*="color:#fff"] .bc-btn--outline,
[style*="color: #fff"] .bc-btn--outline {
  color: var(--bc-white);
  border-color: var(--bc-white);
}
.bc-hero .bc-btn--outline:hover,
.bc-formband--final .bc-btn--outline:hover,
.bc-formband--intro .bc-btn--outline:hover,
.bc-testimonial .bc-btn--outline:hover,
.bc-map .bc-btn--outline:hover,
[style*="color:#fff"] .bc-btn--outline:hover,
[style*="color: #fff"] .bc-btn--outline:hover {
  background: var(--bc-white);
  color: var(--bc-primary-dark);
}

/* ==========================================================================
   Site shell — header / nav / footer
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bc-paper);
  border-bottom: 1px solid var(--bc-line);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--bc-space-5);
  padding-block: var(--bc-space-3);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: var(--bc-space-3);
  text-decoration: none;
  color: var(--bc-ink);
}

.site-header__brand-mark {
  width: 42px;
  height: 42px;
  border-radius: var(--bc-radius);
  background: linear-gradient(145deg, var(--bc-primary), var(--bc-primary-dark));
  display: grid;
  place-items: center;
  color: var(--bc-white);
  font-weight: 800;
  font-size: var(--bc-text-lg);
  flex-shrink: 0;
}

.site-header__brand-text {
  font-family: var(--bc-font-heading);
  font-weight: 800;
  font-size: var(--bc-text-lg);
  line-height: 1.1;
}
.site-header__brand-text span {
  display: block;
  font-size: var(--bc-text-xs);
  font-weight: 600;
  letter-spacing: var(--bc-tracking-wide);
  text-transform: uppercase;
  color: var(--bc-ink-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--bc-space-6);
}

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

.site-nav__list a {
  text-decoration: none;
  color: var(--bc-ink);
  font-weight: 600;
  font-size: var(--bc-text-sm);
}
.site-nav__list a:hover {
  color: var(--bc-primary-dark);
}

.site-footer {
  background: var(--bc-dark);
  color: var(--bc-paper);
  padding-block: var(--bc-space-10) var(--bc-space-6);
}

.site-footer a {
  color: var(--bc-primary-light);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--bc-space-6);
}

.site-footer__heading {
  font-size: var(--bc-text-sm);
  text-transform: uppercase;
  letter-spacing: var(--bc-tracking-wide);
  color: var(--bc-accent-soft);
  margin-bottom: var(--bc-space-3);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--bc-space-2);
}

.site-footer__bottom {
  margin-top: var(--bc-space-8);
  padding-top: var(--bc-space-5);
  border-top: 1px solid var(--bc-line-dark);
  font-size: var(--bc-text-xs);
  color: #a9c7c3;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--bc-space-2);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.bc-hero {
  position: relative;
  background: radial-gradient(120% 140% at 15% 0%, var(--bc-dark-2) 0%, var(--bc-dark) 55%, #071f1f 100%);
  color: var(--bc-white);
  padding-block: var(--bc-space-12) var(--bc-space-10);
  overflow: hidden;
}

.bc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(217, 104, 44, 0.28), transparent 45%),
    radial-gradient(circle at 100% 90%, rgba(79, 184, 184, 0.25), transparent 50%);
  pointer-events: none;
}

.bc-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--bc-space-8);
  align-items: center;
}

.bc-hero__title {
  font-size: var(--bc-text-5xl);
  color: var(--bc-white);
  margin-bottom: var(--bc-space-4);
}

.bc-hero__title em {
  font-style: normal;
  color: var(--bc-accent-soft);
}

.bc-hero__lede {
  font-size: var(--bc-text-lg);
  color: #d8ece9;
  max-width: 46ch;
  margin-bottom: var(--bc-space-6);
}

.bc-hero__actions {
  display: flex;
  gap: var(--bc-space-3);
  flex-wrap: wrap;
}

.bc-hero__stats {
  display: flex;
  gap: var(--bc-space-6);
  margin-top: var(--bc-space-8);
  flex-wrap: wrap;
}

.bc-hero__stat strong {
  display: block;
  font-size: var(--bc-text-2xl);
  color: var(--bc-white);
}
.bc-hero__stat span {
  font-size: var(--bc-text-xs);
  color: #a9c7c3;
  text-transform: uppercase;
  letter-spacing: var(--bc-tracking-wide);
}

.bc-hero__media {
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  box-shadow: var(--bc-shadow-lg);
  border: 1px solid var(--bc-line-dark);
}

.bc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Prose (rich text sections)
   ========================================================================== */

.bc-prose {
  padding-block: var(--bc-space-10);
}

.bc-prose__inner {
  max-width: 74ch;
}

.bc-prose--wide .bc-prose__inner {
  max-width: none;
}

.bc-prose h2 {
  font-size: var(--bc-text-3xl);
}
.bc-prose h3 {
  font-size: var(--bc-text-xl);
  color: var(--bc-primary-dark);
}
.bc-prose p {
  color: var(--bc-ink-soft);
}

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

.bc-prose--dark {
  background: var(--bc-dark);
  color: var(--bc-paper);
}
.bc-prose--dark h2,
.bc-prose--dark h3 {
  color: var(--bc-white);
}
.bc-prose--dark p {
  color: #c7ddd9;
}

.bc-prose--with-image .bc-prose__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bc-space-8);
  align-items: center;
  max-width: none;
}

.bc-prose__img {
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  box-shadow: var(--bc-shadow);
}

/* ==========================================================================
   Grid (services / feature cards)
   ========================================================================== */

.bc-grid {
  padding-block: var(--bc-space-10);
}

.bc-grid__head {
  max-width: 62ch;
  margin-bottom: var(--bc-space-8);
}

.bc-grid__head h2 {
  font-size: var(--bc-text-3xl);
}

.bc-grid__head p {
  color: var(--bc-ink-soft);
  font-size: var(--bc-text-lg);
}

.bc-grid__list {
  display: grid;
  gap: var(--bc-space-5);
  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);
  color: var(--bc-ink);
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-lg);
  padding: var(--bc-space-5);
  box-shadow: var(--bc-shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

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

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

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

.bc-grid__card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--bc-radius);
  background: var(--bc-paper-alt);
  color: var(--bc-primary);
  display: grid;
  place-items: center;
  margin-bottom: var(--bc-space-4);
  font-size: var(--bc-text-xl);
}

.bc-grid__card h3 {
  font-size: var(--bc-text-lg);
  margin-bottom: var(--bc-space-2);
}

.bc-grid__card p {
  color: var(--bc-ink-soft);
  font-size: var(--bc-text-sm);
  margin-bottom: 0;
}

.bc-grid--text-only .bc-grid__card {
  border: none;
  background: var(--bc-paper-alt);
  box-shadow: none;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.bc-faq {
  padding-block: var(--bc-space-10);
  background: var(--bc-paper-alt);
}

.bc-faq__head {
  max-width: 60ch;
  margin-bottom: var(--bc-space-6);
}

.bc-faq__list {
  display: grid;
  gap: var(--bc-space-3);
  max-width: 860px;
}

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

.bc-faq__q {
  margin: 0;
  font-size: var(--bc-text-base);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--bc-space-3);
  cursor: pointer;
}

.bc-faq__q::after {
  content: "+";
  color: var(--bc-accent-ink);
  font-size: var(--bc-text-xl);
  flex-shrink: 0;
}

.bc-faq__item[open] .bc-faq__q::after {
  content: "\2212";
}

.bc-faq__a {
  margin: var(--bc-space-3) 0 0;
  color: var(--bc-ink-soft);
  font-size: var(--bc-text-sm);
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.bc-gallery {
  padding-block: var(--bc-space-10);
}

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

.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 0.3s ease;
}

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

.bc-gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(13, 43, 43, 0.85), transparent);
  color: var(--bc-white);
  font-size: var(--bc-text-xs);
  font-weight: 600;
  padding: var(--bc-space-4) var(--bc-space-3) var(--bc-space-2);
}

/* ==========================================================================
   Video
   ========================================================================== */

.bc-video {
  padding-block: var(--bc-space-10);
  background: var(--bc-paper-alt);
}

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

.bc-video__copy h2 {
  font-size: var(--bc-text-3xl);
}
.bc-video__copy p {
  color: var(--bc-ink-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-lg);
  background: var(--bc-dark);
}

.bc-video__frame iframe,
.bc-video__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.bc-video__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.bc-video__play span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bc-accent);
  color: var(--bc-ink);
  display: grid;
  place-items: center;
  font-size: var(--bc-text-xl);
  box-shadow: var(--bc-shadow);
}

/* ==========================================================================
   Map
   ========================================================================== */

.bc-map {
  padding-block: var(--bc-space-10);
}

.bc-map__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--bc-space-8);
  align-items: stretch;
}

.bc-map__info {
  background: var(--bc-dark);
  color: var(--bc-white);
  border-radius: var(--bc-radius-lg);
  padding: var(--bc-space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bc-map__info h2 {
  font-size: var(--bc-text-2xl);
  color: var(--bc-white);
}

.bc-map__addr {
  color: #c7ddd9;
  font-style: normal;
  line-height: var(--bc-leading-snug);
  margin-bottom: var(--bc-space-4);
}

.bc-map__info a:not(.bc-btn) {
  color: var(--bc-white);
}

.bc-map__addr strong {
  display: block;
  color: var(--bc-white);
  margin-bottom: var(--bc-space-1);
}

.bc-map__frame {
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  box-shadow: var(--bc-shadow);
  min-height: 320px;
}

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

/* ==========================================================================
   Testimonial
   ========================================================================== */

.bc-testimonial {
  padding-block: var(--bc-space-10);
  background: var(--bc-dark);
  color: var(--bc-white);
}

.bc-testimonial__head {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto var(--bc-space-8);
}

.bc-testimonial__head h2 {
  color: var(--bc-white);
  font-size: var(--bc-text-3xl);
}

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

.bc-testimonial__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bc-line-dark);
  border-radius: var(--bc-radius-lg);
  padding: var(--bc-space-5);
}

.bc-testimonial__stars {
  color: var(--bc-accent-soft);
  letter-spacing: 0.15em;
  margin-bottom: var(--bc-space-3);
  font-size: var(--bc-text-sm);
}

.bc-testimonial__quote {
  color: #dcecea;
  margin-bottom: var(--bc-space-4);
  font-size: var(--bc-text-sm);
}

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

.bc-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bc-primary-light);
  color: var(--bc-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: var(--bc-text-sm);
  flex-shrink: 0;
}

.bc-testimonial__author strong {
  display: block;
  font-size: var(--bc-text-sm);
  color: var(--bc-white);
}
.bc-testimonial__author span:not(.bc-testimonial__avatar) {
  font-size: var(--bc-text-xs);
  color: #a9c7c3;
}

/* ==========================================================================
   Form band + form fields
   ========================================================================== */

.bc-formband {
  padding-block: var(--bc-space-10);
  background: var(--bc-paper-alt);
}

.bc-formband__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bc-space-8);
  align-items: center;
}

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

.bc-formband__lede {
  color: var(--bc-ink-soft);
  font-size: var(--bc-text-base);
  max-width: 48ch;
}

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

.bc-formband--intro {
  background: var(--bc-dark);
}
.bc-formband--intro .bc-formband__title,
.bc-formband--intro .bc-formband__lede {
  color: var(--bc-white);
}
.bc-formband--intro .bc-formband__lede {
  color: #c7ddd9;
}

.bc-formband--final {
  background: radial-gradient(120% 140% at 85% 100%, var(--bc-dark-2) 0%, var(--bc-dark) 60%, #071f1f 100%);
}
.bc-formband--final .bc-formband__grid {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.bc-formband--final .bc-formband__title {
  color: var(--bc-white);
}
.bc-formband--final .bc-formband__lede {
  color: #c7ddd9;
}
.bc-formband--final .bc-formband__form {
  width: 100%;
  max-width: 560px;
}

.bc-form-field {
  display: grid;
  gap: var(--bc-space-1);
  text-align: left;
}

.bc-form-field label {
  font-size: var(--bc-text-xs);
  font-weight: 700;
  color: var(--bc-ink-soft);
  text-transform: uppercase;
  letter-spacing: var(--bc-tracking-wide);
}

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

.bc-form-field input,
.bc-form-field select,
.bc-form-field textarea {
  font-family: var(--bc-font-body);
  font-size: var(--bc-text-base);
  padding: 0.75rem 0.9rem;
  border-radius: var(--bc-radius-sm);
  border: 1.5px solid var(--bc-line);
  background: var(--bc-paper);
  color: var(--bc-ink);
}

.bc-form-field input:focus,
.bc-form-field select:focus,
.bc-form-field textarea:focus {
  outline: none;
  border-color: var(--bc-primary);
  box-shadow: 0 0 0 3px rgba(11, 107, 107, 0.18);
}

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

/* ==========================================================================
   Mobile nav toggle (utility, JS optional)
   ========================================================================== */

.bc-nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--bc-line);
  border-radius: var(--bc-radius-sm);
  padding: var(--bc-space-2) var(--bc-space-3);
  font-size: var(--bc-text-lg);
  color: var(--bc-ink);
  cursor: pointer;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .bc-hero__inner,
  .bc-prose--with-image .bc-prose__inner,
  .bc-video__grid,
  .bc-map__grid,
  .bc-formband__grid {
    grid-template-columns: 1fr;
  }

  .bc-hero__media {
    order: -1;
  }

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

  .bc-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bc-testimonial__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --bc-text-5xl: 2.5rem;
    --bc-text-4xl: 2.1rem;
    --bc-text-3xl: 1.75rem;
  }

  .bc-container {
    padding-inline: var(--bc-space-4);
  }

  .site-nav__list {
    display: none;
  }

  .bc-nav-toggle {
    display: inline-flex;
  }

  .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;
  }

  .bc-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bc-hero__stats {
    gap: var(--bc-space-4);
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}
