/* ==========================================================================
   Landscaping Tamworth — Locked Component Library
   Palette rationale: Tamworth sits in the New England pastoral belt of NSW —
   deep eucalyptus-bushland green paired with a burnt-terracotta clay accent
   (the red loam/sandstone tone common to the region's cuttings and paving),
   on a warm limestone paper. Headings set in a sturdy display serif (Fraunces)
   to read as crafted/natural rather than generic corporate-green landscaping.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root{
  /* ---- Brand tokens ---- */
  --bc-primary:        #2F4A3C; /* deep eucalyptus/bushland green */
  --bc-primary-dark:   #1E2F26;
  --bc-primary-light:  #4C6C5A;
  --bc-accent:         #B8541F; /* burnt terracotta / red-loam clay */
  --bc-accent-dark:    #8F3F16;
  --bc-accent-light:   #EEA878;

  --bc-paper:          #F8F4EA; /* warm limestone paper */
  --bc-paper-alt:      #EFE7D4; /* deeper stone panel */
  --bc-paper-dark:     #E4D9BF;
  --bc-ink:            #21261F; /* near-black bush-charcoal */
  --bc-ink-soft:       #4A5148;
  --bc-ink-faint:      #6D7466;
  --bc-line:           #D8CDAF;
  --bc-line-dark:      #3E5546;

  --bc-white:          #FFFFFF;
  --bc-on-primary:     #F8F4EA;
  --bc-on-accent:      #FFFFFF;

  --bc-success:        #2F5D3A;
  --bc-focus:          #B8541F;

  /* ---- Type scale ---- */
  --bc-font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --bc-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --bc-text-xs:   0.8125rem;
  --bc-text-sm:   0.9375rem;
  --bc-text-base: 1.0625rem;
  --bc-text-lg:   1.25rem;
  --bc-text-xl:   1.5625rem;
  --bc-text-2xl:  2rem;
  --bc-text-3xl:  2.75rem;
  --bc-text-4xl:  3.5rem;

  --bc-lh-tight: 1.15;
  --bc-lh-snug:  1.35;
  --bc-lh-body:  1.65;

  /* ---- Space 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-7: 3rem;
  --bc-space-8: 4.5rem;
  --bc-space-9: 6.5rem;

  --bc-radius-sm: 6px;
  --bc-radius-md: 12px;
  --bc-radius-lg: 20px;

  --bc-shadow-sm: 0 1px 3px rgba(33,38,31,0.12);
  --bc-shadow-md: 0 8px 24px rgba(33,38,31,0.14);
  --bc-shadow-lg: 0 20px 48px rgba(33,38,31,0.20);

  --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-lh-body);
  color:var(--bc-ink);
  background:var(--bc-paper);
}
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-space-4);
  color:var(--bc-ink);
  font-weight:600;
}
p{ margin:0 0 var(--bc-space-4); }
a{ color:var(--bc-accent); }
:focus-visible{ outline:3px solid var(--bc-focus); outline-offset:2px; }

/* ==========================================================================
   Layout primitives
   ========================================================================== */
.bc-container{
  max-width:var(--bc-container-w);
  margin-inline:auto;
  padding-inline:var(--bc-space-5);
}
@media (max-width:480px){
  .bc-container{ padding-inline:var(--bc-space-4); }
}

.bc-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:var(--bc-space-2);
  font-family:var(--bc-font-body);
  font-size:var(--bc-text-xs);
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--bc-accent-dark);
  margin-bottom:var(--bc-space-3);
}
.bc-eyebrow::before{
  content:"";
  width:1.5rem; height:2px;
  background:var(--bc-accent);
  display:inline-block;
}
.bc-eyebrow--on-dark{ color:var(--bc-accent-light); }
.bc-eyebrow--on-dark::before{ background:var(--bc-accent-light); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.bc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:var(--bc-space-2);
  font-family:var(--bc-font-body);
  font-weight:600;
  font-size:var(--bc-text-sm);
  line-height:1;
  text-decoration:none;
  cursor:pointer;
  border-radius:var(--bc-radius-sm);
  padding:0.9em 1.6em;
  border:2px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}
.bc-btn:hover{ transform:translateY(-1px); }

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

.bc-btn--accent{
  background:var(--bc-accent);
  color:var(--bc-on-accent);
  border-color:var(--bc-accent);
  box-shadow:var(--bc-shadow-sm);
}
.bc-btn--accent:hover{ background:var(--bc-accent-dark); border-color:var(--bc-accent-dark); }

.bc-btn--ghost{
  background:transparent;
  color:var(--bc-on-primary);
  border-color:rgba(248,244,234,0.55);
}
.bc-btn--ghost:hover{ background:rgba(248,244,234,0.14); border-color:var(--bc-on-primary); }

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

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

.site-nav{ display:flex; align-items:center; gap:var(--bc-space-5); flex-wrap:wrap; row-gap:var(--bc-space-3); }
.site-nav__list{
  list-style:none;
  display:flex;
  gap:var(--bc-space-5);
  margin:0; padding:0;
  flex-wrap:wrap;
}
.site-nav__list a{
  color:var(--bc-ink-soft);
  text-decoration:none;
  font-weight:600;
  font-size:var(--bc-text-sm);
}
.site-nav__list a:hover{ color:var(--bc-accent); }

.site-footer{
  background:var(--bc-primary-dark);
  color:var(--bc-on-primary);
  padding-block:var(--bc-space-7);
  margin-top:var(--bc-space-8);
}
.site-footer a{ color:var(--bc-on-primary); }
.site-footer__grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:var(--bc-space-6);
}
.site-footer__heading{
  font-family:var(--bc-font-body);
  font-size:var(--bc-text-xs);
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--bc-accent-light);
  margin-bottom:var(--bc-space-3);
  font-weight:700;
}
.site-footer__list{ list-style:none; margin:0; padding:0; display:grid; gap:var(--bc-space-2); }
.site-footer__list a{ opacity:0.88; text-decoration:none; font-size:var(--bc-text-sm); }
.site-footer__list a:hover{ opacity:1; text-decoration:underline; }
.site-footer__bottom{
  margin-top:var(--bc-space-7);
  padding-top:var(--bc-space-5);
  border-top:1px solid rgba(248,244,234,0.18);
  font-size:var(--bc-text-xs);
  opacity:0.75;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.bc-hero{
  background:linear-gradient(160deg,var(--bc-primary) 0%,var(--bc-primary-dark) 100%);
  color:var(--bc-on-primary);
  padding-block:var(--bc-space-9) var(--bc-space-8);
}
.bc-hero__grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:var(--bc-space-7);
  align-items:center;
}
.bc-hero__title{
  font-size:var(--bc-text-4xl);
  color:var(--bc-on-primary);
  margin-bottom:var(--bc-space-4);
}
.bc-hero__lede{
  font-size:var(--bc-text-lg);
  color:rgba(248,244,234,0.88);
  max-width:46ch;
  margin-bottom:var(--bc-space-6);
}
.bc-hero__actions{ display:flex; gap:var(--bc-space-3); flex-wrap:wrap; }
.bc-hero__media{
  border-radius:var(--bc-radius-lg);
  overflow:hidden;
  box-shadow:var(--bc-shadow-lg);
  aspect-ratio:4/3;
}
.bc-hero__media img{ width:100%; height:100%; object-fit:cover; }
.bc-hero__badges{
  display:flex;
  gap:var(--bc-space-5);
  margin-top:var(--bc-space-6);
  flex-wrap:wrap;
}
.bc-hero__badge{ font-size:var(--bc-text-sm); color:rgba(248,244,234,0.85); }
.bc-hero__badge strong{ display:block; font-family:var(--bc-font-display); font-size:var(--bc-text-xl); color:var(--bc-on-primary); }

@media (max-width:800px){
  .bc-hero__grid{ grid-template-columns:1fr; }
  .bc-hero__title{ font-size:var(--bc-text-3xl); }
}

/* ==========================================================================
   Prose (rich text sections)
   ========================================================================== */
.bc-prose{ padding-block:var(--bc-space-8); }
.bc-prose__inner{ max-width:74ch; margin-inline:auto; }
.bc-prose__inner > *:last-child{ margin-bottom:0; }
.bc-prose h2{ font-size:var(--bc-text-2xl); }
.bc-prose h3{ font-size:var(--bc-text-xl); }
.bc-prose ul, .bc-prose ol{ padding-left:1.25em; }
.bc-prose li{ margin-bottom:var(--bc-space-2); }

.bc-prose--has-color{
  background:var(--bc-paper-alt);
  border-radius:var(--bc-radius-lg);
}
.bc-prose--has-color .bc-prose__inner{ padding-block:var(--bc-space-2); }

.bc-prose--dark{
  background:var(--bc-primary-dark);
  color:var(--bc-on-primary);
}
.bc-prose--dark h2,.bc-prose--dark h3{ color:var(--bc-on-primary); }
.bc-prose--dark a{ color:var(--bc-accent-light); }

.bc-prose--with-image .bc-prose__inner{
  max-width:none;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:var(--bc-space-7);
  align-items:center;
}
.bc-prose--with-image img{ border-radius:var(--bc-radius-md); box-shadow:var(--bc-shadow-md); width:100%; }
@media (max-width:760px){
  .bc-prose--with-image .bc-prose__inner{ grid-template-columns:1fr; }
}

/* ==========================================================================
   Grid (services / feature cards)
   ========================================================================== */
.bc-grid{ padding-block:var(--bc-space-8); }
.bc-grid__head{ max-width:60ch; margin:0 auto var(--bc-space-7); text-align:center; }
.bc-grid__head .bc-eyebrow{ justify-content:center; }
.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);
  border:1px solid var(--bc-line);
  border-radius:var(--bc-radius-md);
  padding:var(--bc-space-5);
  display:flex;
  flex-direction:column;
  gap:var(--bc-space-2);
  box-shadow:var(--bc-shadow-sm);
}
.bc-grid__card-img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  border-radius:var(--bc-radius-sm);
  margin-bottom:var(--bc-space-3);
}
.bc-grid--text-only .bc-grid__card{ text-align:left; }
.bc-grid__card h3{ font-size:var(--bc-text-lg); margin-bottom:var(--bc-space-1); }
.bc-grid__card p{ color:var(--bc-ink-soft); font-size:var(--bc-text-sm); margin-bottom:0; }
.bc-grid__icon{
  width:2.75rem; height:2.75rem;
  border-radius:var(--bc-radius-sm);
  background:var(--bc-paper-alt);
  color:var(--bc-accent-dark);
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem;
  margin-bottom:var(--bc-space-2);
}

@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-space-8); }
.bc-faq__inner{ max-width:74ch; margin-inline:auto; }
.bc-faq__list{ display:grid; gap:var(--bc-space-3); }
.bc-faq__item{
  background:var(--bc-white);
  border:1px solid var(--bc-line);
  border-radius:var(--bc-radius-md);
  padding:var(--bc-space-2) var(--bc-space-5);
}
.bc-faq__q{
  font-family:var(--bc-font-body);
  font-weight:700;
  font-size:var(--bc-text-base);
  color:var(--bc-ink);
  padding-block:var(--bc-space-4);
  margin:0;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--bc-space-3);
  list-style:none;
}
.bc-faq__q::-webkit-details-marker{ display:none; }
.bc-faq__q::after{
  content:"+";
  font-size:1.4rem;
  color:var(--bc-accent);
  flex:none;
}
details[open] .bc-faq__q::after{ content:"–"; }
.bc-faq__a{
  color:var(--bc-ink-soft);
  padding-bottom:var(--bc-space-4);
  margin:0;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.bc-gallery{ padding-block:var(--bc-space-8); }
.bc-gallery__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:var(--bc-space-3);
}
.bc-gallery__cell{
  position:relative;
  border-radius:var(--bc-radius-md);
  overflow:hidden;
  aspect-ratio:1/1;
  background:var(--bc-paper-alt);
}
.bc-gallery__cell img{ width:100%; height:100%; object-fit:cover; }
.bc-gallery__caption{
  position:absolute; inset:auto 0 0 0;
  background:linear-gradient(0deg,rgba(30,47,38,0.88),rgba(30,47,38,0));
  color:var(--bc-on-primary);
  font-size:var(--bc-text-xs);
  font-weight:600;
  padding:var(--bc-space-4) var(--bc-space-3) var(--bc-space-2);
}
@media (max-width:760px){
  .bc-gallery__grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:420px){
  .bc-gallery__grid{ grid-template-columns:1fr 1fr; gap:var(--bc-space-2); }
}

/* ==========================================================================
   Video
   ========================================================================== */
.bc-video{ padding-block:var(--bc-space-8); background:var(--bc-paper-alt); }
.bc-video__grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:var(--bc-space-7);
  align-items:center;
}
.bc-video__copy{ max-width:44ch; }
.bc-video__player{
  border-radius:var(--bc-radius-lg);
  overflow:hidden;
  box-shadow:var(--bc-shadow-md);
  background:var(--bc-ink);
}
.bc-video__frame{
  width:100%;
  aspect-ratio:16/9;
  border:0;
  display:block;
}
@media (max-width:800px){
  .bc-video__grid{ grid-template-columns:1fr; }
}

/* ==========================================================================
   Map
   ========================================================================== */
.bc-map{ padding-block:var(--bc-space-8); }
.bc-map__grid{
  display:grid;
  grid-template-columns:0.8fr 1.2fr;
  gap:var(--bc-space-6);
  align-items:stretch;
}
.bc-map__info{
  background:var(--bc-primary);
  color:var(--bc-on-primary);
  border-radius:var(--bc-radius-lg);
  padding:var(--bc-space-6);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:var(--bc-space-3);
}
.bc-map__info h3{ color:var(--bc-on-primary); font-size:var(--bc-text-xl); }
.bc-map__addr{
  font-style:normal;
  color:rgba(248,244,234,0.9);
  font-size:var(--bc-text-sm);
  line-height:var(--bc-lh-snug);
}
.bc-map__frame{
  width:100%;
  min-height:320px;
  border:0;
  border-radius:var(--bc-radius-lg);
  display:block;
}
@media (max-width:800px){
  .bc-map__grid{ grid-template-columns:1fr; }
}

/* ==========================================================================
   Testimonial
   ========================================================================== */
.bc-testimonial{ padding-block:var(--bc-space-8); background:var(--bc-primary-dark); color:var(--bc-on-primary); }
.bc-testimonial__inner{ max-width:70ch; margin-inline:auto; text-align:center; }
.bc-testimonial__quote{
  font-family:var(--bc-font-display);
  font-size:var(--bc-text-2xl);
  line-height:var(--bc-lh-snug);
  margin-bottom:var(--bc-space-5);
}
.bc-testimonial__quote::before{ content:"\201C"; color:var(--bc-accent-light); }
.bc-testimonial__quote::after{ content:"\201D"; color:var(--bc-accent-light); }
.bc-testimonial__author{ display:flex; align-items:center; justify-content:center; gap:var(--bc-space-3); }
.bc-testimonial__avatar{
  width:3rem; height:3rem; border-radius:50%;
  object-fit:cover;
  border:2px solid var(--bc-accent-light);
}
.bc-testimonial__name{ font-weight:700; }
.bc-testimonial__role{ font-size:var(--bc-text-sm); color:rgba(248,244,234,0.75); }

/* ==========================================================================
   Form band (lead capture)
   ========================================================================== */
.bc-formband{ padding-block:var(--bc-space-8); background:var(--bc-paper-alt); }
.bc-formband__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:var(--bc-space-7);
  align-items:center;
}
.bc-formband__title{ font-size:var(--bc-text-2xl); margin-bottom:var(--bc-space-3); }
.bc-formband__lede{ color:var(--bc-ink-soft); max-width:42ch; }
.bc-formband__form{
  background:var(--bc-white);
  border-radius:var(--bc-radius-lg);
  padding:var(--bc-space-6);
  box-shadow:var(--bc-shadow-md);
  display:grid;
  gap:var(--bc-space-4);
}

.bc-formband--intro{ background:var(--bc-primary); color:var(--bc-on-primary); }
.bc-formband--intro .bc-formband__title{ color:var(--bc-on-primary); }
.bc-formband--intro .bc-formband__lede{ color:rgba(248,244,234,0.85); }

.bc-formband--final{
  background:linear-gradient(160deg,var(--bc-primary) 0%,var(--bc-primary-dark) 100%);
  color:var(--bc-on-primary);
}
.bc-formband--final .bc-formband__title{ color:var(--bc-on-primary); }
.bc-formband--final .bc-formband__lede{ color:rgba(248,244,234,0.85); }
.bc-formband--final .bc-formband__grid{ text-align:center; grid-template-columns:1fr; max-width:640px; margin-inline:auto; }

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

.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;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--bc-ink-soft);
}
.bc-form-field input,
.bc-form-field textarea,
.bc-form-field select{
  font:inherit;
  padding:0.8em 1em;
  border:1px solid var(--bc-line);
  border-radius:var(--bc-radius-sm);
  background:var(--bc-paper);
  color:var(--bc-ink);
}
.bc-form-field input:focus,
.bc-form-field textarea:focus,
.bc-form-field select:focus{
  outline:3px solid var(--bc-focus);
  outline-offset:1px;
  border-color:var(--bc-accent);
}
.bc-form-field--required label::after{
  content:" *";
  color:var(--bc-accent);
}
