/* ===========================================================
   TB'S Trees — Bendigo Arborists
   Stylesheet
   =========================================================== */

:root {
  /* Brand palette sampled from the TB'S Trees logo & banner */
  --green-darkest: #15302a;
  --green-dark: #1d4034;
  --green: #2d5938;
  --green-mid: #437a44;
  --green-light: #7a9e3a;
  --green-pale: #e4ebd7;
  --cream: #efece0;
  --cream-dark: #e2ddc9;
  --charcoal: #232520;
  --grey: #5d6258;
  --white: #ffffff;
  --gold: #c79a3e;
  --shadow-sm: 0 2px 8px rgba(22, 40, 13, 0.08);
  --shadow-md: 0 8px 28px rgba(22, 40, 13, 0.14);
  --shadow-lg: 0 18px 50px rgba(22, 40, 13, 0.22);
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--green-mid); }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  line-height: 1.18;
  color: var(--green-darkest);
  font-weight: 700;
}

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--green { background: var(--green-darkest); color: var(--cream); }
.section--green h1, .section--green h2, .section--green h3 { color: var(--white); }
.section--pale { background: var(--green-pale); }
.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}
.section--green .eyebrow { color: var(--green-light); }

.section-title { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 18px; }
.section-intro { max-width: 640px; margin: 0 auto 18px; color: var(--grey); }
.section--green .section-intro { color: #cdd6c2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: .98rem;
  padding: 15px 30px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary { background: var(--gold); color: var(--green-darkest); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: #e6b04c; color: var(--green-darkest); }
.btn--green { background: var(--green); color: var(--white); box-shadow: var(--shadow-md); }
.btn--green:hover { background: var(--green-mid); color: var(--white); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn--outline { background: transparent; border-color: var(--green); color: var(--green); }
.btn--outline:hover { background: var(--green); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 234, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow .25s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.topbar {
  background: var(--green-darkest);
  color: #d6ddc9;
  font-size: .82rem;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
  gap: 12px;
}
.topbar a { color: #d6ddc9; }
.topbar a:hover { color: var(--gold); }
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-badge { color: var(--green-light); font-weight: 600; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 52px; height: 52px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.32rem;
  color: var(--green-darkest);
  letter-spacing: .02em;
}
.brand-tag {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > li > a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: .95rem;
  color: var(--charcoal);
  padding: 10px 14px;
  border-radius: 8px;
  display: block;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--green); background: var(--green-pale); }
.nav-cta { margin-left: 10px; }
.nav-cta .btn { padding: 12px 24px; }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .22s var(--ease);
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(6px); }
.drop a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .92rem;
  color: var(--charcoal);
}
.drop a:hover { background: var(--green-pale); color: var(--green); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 26px; height: 3px;
  background: var(--green-darkest);
  border-radius: 2px;
  transition: .25s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(115deg, rgba(21,48,42,.95) 0%, rgba(29,64,52,.86) 48%, rgba(45,89,56,.66) 100%),
    url("../images/work-6.jpg");
  background-size: cover;
  background-position: center;
  color: var(--cream);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 82% 18%, rgba(122,168,68,.30), transparent 42%),
    radial-gradient(circle at 12% 88%, rgba(122,168,68,.18), transparent 38%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 104px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(122,168,68,.18);
  border: 1px solid rgba(122,168,68,.4);
  color: var(--green-light);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub { font-size: 1.12rem; color: #dde4d3; max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
}
.hero-trust-item span { font-size: .85rem; color: #c8d1bc; }

/* hero card */
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(8px);
}
.hero-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 6px; }
.hero-card p.muted { color: #c2cbb6; font-size: .9rem; margin-bottom: 18px; }
.quote-form { display: grid; gap: 12px; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.95);
  color: var(--charcoal);
  font-family: inherit;
  font-size: .95rem;
}
.quote-form textarea { resize: vertical; min-height: 84px; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { outline: 2px solid var(--green-light); }
.quote-form .btn { width: 100%; justify-content: center; }
.form-note { font-size: .78rem; color: #b9c2ac; text-align: center; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--cream-dark); }
.trust-strip .wrap {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.trust-pill { display: flex; align-items: center; gap: 12px; }
.trust-pill .ic {
  width: 42px; height: 42px;
  background: var(--green-pale);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--green);
  flex: none;
}
.trust-pill strong { font-family: "Poppins", sans-serif; display: block; font-size: .98rem; color: var(--green-darkest); }
.trust-pill span { font-size: .82rem; color: var(--grey); }

/* ---------- Services grid ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 48px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.svc-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  display: grid; place-items: center;
  color: var(--white);
  margin-bottom: 20px;
}
.svc-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.svc-card p { color: var(--grey); font-size: .95rem; margin-bottom: 18px; flex: 1; }
.svc-link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.svc-link svg { transition: transform .2s var(--ease); }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* ---------- Feature / why us ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-list { display: grid; gap: 22px; margin-top: 26px; }
.feature-item { display: flex; gap: 16px; }
.feature-item .fic {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 12px;
  background: var(--green-pale);
  display: grid; place-items: center;
  color: var(--green);
}
.section--green .feature-item .fic { background: rgba(122,168,68,.18); color: var(--green-light); }
.feature-item h4 { font-size: 1.06rem; margin-bottom: 3px; }
.feature-item p { color: var(--grey); font-size: .92rem; }
.section--green .feature-item p { color: #c5cebb; }

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: center;
}
.media-frame .leaf-bg {
  position: absolute; inset: 0;
  opacity: .25;
}
.media-stat {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 30px;
}
.media-stat .big {
  font-family: "Poppins", sans-serif;
  font-size: 4.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.media-stat p { color: #dce3d2; margin-top: 8px; max-width: 260px; }

.float-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
}
.float-badge .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.float-badge strong { font-family: "Poppins", sans-serif; color: var(--green-darkest); display: block; }
.float-badge span { font-size: .8rem; color: var(--grey); }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 26px; margin-top: 48px; }
.step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
}
.step-num {
  position: absolute;
  top: -22px; left: 26px;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--green-darkest);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.step h4 { margin: 10px 0 8px; font-size: 1.12rem; }
.step p { color: var(--grey); font-size: .92rem; }

/* ---------- Testimonials ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 26px; margin-top: 46px; }
.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  display: flex; flex-direction: column;
}
.review .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.review p { font-size: 1rem; color: var(--charcoal); flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: grid; place-items: center;
  font-family: "Poppins", sans-serif; font-weight: 700;
}
.review .who strong { display: block; font-size: .95rem; color: var(--green-darkest); }
.review .who span { font-size: .8rem; color: var(--grey); }

/* ---------- Service area ---------- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 12px; margin-top: 36px; }
.area-chip {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .9rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--green-darkest);
  display: flex; align-items: center; gap: 8px;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.area-chip:hover { background: var(--green-pale); border-color: var(--green-light); }
.area-chip svg { color: var(--green-mid); flex: none; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--green-darkest), var(--green));
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 54px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(122,168,68,.4), transparent 70%);
}
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem,3vw,2.3rem); position: relative; }
.cta-band p { color: #d2dbc6; margin-top: 8px; position: relative; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: linear-gradient(120deg, rgba(22,40,13,.95), rgba(47,94,30,.8));
  color: var(--cream);
  padding: 70px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem,4vw,3rem); margin-bottom: 12px; }
.page-hero p { color: #d4ddc8; max-width: 620px; margin: 0 auto; }
.crumbs { font-size: .85rem; color: var(--green-light); margin-bottom: 18px; }
.crumbs a { color: var(--green-light); }
.crumbs a:hover { color: var(--gold); }

/* ---------- Service detail ---------- */
.svc-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.prose h2 { font-size: 1.7rem; margin: 34px 0 14px; }
.prose h3 { font-size: 1.25rem; margin: 26px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--charcoal); }
.prose ul.ticks { display: grid; gap: 10px; margin: 16px 0 22px; }
.prose ul.ticks li { display: flex; gap: 12px; align-items: flex-start; }
.prose ul.ticks li::before {
  content: "✓";
  flex: none;
  width: 24px; height: 24px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .8rem; font-weight: 700;
  margin-top: 2px;
}
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  margin-bottom: 22px;
}
.sidebar-card.green { background: var(--green-darkest); color: var(--cream); border-color: var(--green-dark); }
.sidebar-card.green h3 { color: var(--white); }
.sidebar-card h3 { font-size: 1.15rem; margin-bottom: 14px; }
.sidebar-card .phone-big {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin: 10px 0 4px;
}
.sidebar-list li { padding: 9px 0; border-bottom: 1px solid var(--cream-dark); }
.sidebar-list li:last-child { border-bottom: 0; }
.sidebar-list a { display: flex; justify-content: space-between; align-items: center; color: var(--charcoal); font-size: .94rem; }
.sidebar-list a:hover { color: var(--green); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 40px auto 0; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--green-darkest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .plus { flex: none; transition: transform .25s var(--ease); color: var(--green-mid); font-size: 1.4rem; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a-inner { padding: 0 24px 20px; color: var(--grey); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-list { display: grid; gap: 20px; margin-top: 24px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-row .ic {
  width: 48px; height: 48px; flex: none;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 12px;
  display: grid; place-items: center;
}
.info-row h4 { font-size: 1rem; margin-bottom: 2px; }
.info-row p, .info-row a { color: var(--grey); font-size: .95rem; }
.info-row a:hover { color: var(--green); }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-dark);
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: .88rem;
  margin-bottom: 6px;
  color: var(--green-darkest);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  font-family: inherit;
  font-size: .96rem;
  background: var(--cream);
  color: var(--charcoal);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--green-light);
  background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--green-dark);
  font-size: .92rem;
  margin-bottom: 16px;
}
.form-success.show { display: block; }

/* ---------- About ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; margin-top: 44px; }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}
.value-card .vic {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--green-pale);
  color: var(--green);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.value-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { color: var(--grey); font-size: .92rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-darkest); color: #c4ccb8; padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { margin-top: 16px; font-size: .92rem; color: #a9b29c; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: #c4ccb8;
}
.footer-social a:hover { background: var(--green-mid); color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
}
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #b5beA8; font-size: .92rem; }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .92rem; }
.footer-contact svg { color: var(--green-light); flex: none; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: #939c87;
}
.footer-bottom a { color: #939c87; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Floating call button ---------- */
.fab-call {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 90;
  background: var(--gold);
  color: var(--green-darkest);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform .2s var(--ease);
}
.fab-call:hover { transform: scale(1.08); color: var(--green-darkest); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split, .contact-grid, .svc-layout { grid-template-columns: 1fr; gap: 38px; }
  .svc-layout .svc-side { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 22px 30px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: right .3s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links > li > a { padding: 14px 16px; font-size: 1.05rem; }
  .nav-cta { margin: 14px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 0 0 0 14px; }
  .has-drop:hover .drop { transform: none; }
  .burger { display: flex; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .topbar-left { gap: 14px; }
  .topbar-item.hide-sm { display: none; }
  .cta-band { padding: 38px 26px; }
  .form-row { grid-template-columns: 1fr; }
  .hero .wrap { padding-top: 60px; padding-bottom: 70px; }
  .footer-grid { grid-template-columns: 1fr; }
  .media-frame { min-height: 320px; }
  .media-stat .big { font-size: 3.2rem; }
}

/* ===========================================================
   Real logo & Facebook photos
   =========================================================== */

/* Logo image (replaces inline SVG) */
img.brand-mark { object-fit: contain; }
.site-footer img.brand-mark { filter: drop-shadow(0 0 0 transparent); }

/* Photo filling a media-frame */
.media-frame { padding: 0; }
.media-frame .media-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-frame .media-photo + .media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(21,48,42,.15) 0%, rgba(21,48,42,.72) 100%);
  z-index: 1;
}
.media-frame .float-badge { z-index: 3; }

/* Hero card — give the quote form a touch more polish over the photo */
.hero-card { box-shadow: var(--shadow-lg); }

/* ---------- Work gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 46px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  background: var(--green-darkest);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(21,48,42,.78) 100%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gallery-item .cap {
  position: absolute;
  left: 14px; bottom: 12px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: .9rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .cap { opacity: 1; transform: none; }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }

/* ---------- Page hero with photo (service/interior pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero.has-photo {
  background:
    linear-gradient(120deg, rgba(21,48,42,.93), rgba(45,89,56,.82)),
    var(--hero-photo) center / cover no-repeat;
}
.page-hero .wrap { position: relative; z-index: 2; }

/* ---------- Service detail intro image ---------- */
.svc-hero-img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 26px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.sidebar-card .sidebar-photo {
  width: 100%;
  border-radius: 10px;
  margin-top: 4px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; aspect-ratio: 16 / 10; }
}

/* ===========================================================
   Long-form content components
   =========================================================== */

/* Wide mega dropdown for the services menu */
.drop--wide { min-width: 520px; padding: 14px; }
.drop--wide .drop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 10px;
}
.drop--wide .drop-head {
  grid-column: 1 / -1;
  font-family: "Poppins", sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-mid);
  padding: 10px 14px 4px;
}
.drop--wide .drop-head:first-child { padding-top: 2px; }

/* In-content callout / highlight box */
.callout {
  background: var(--green-pale);
  border-left: 4px solid var(--green-mid);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.callout h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--green-darkest);
}
.callout p { margin-bottom: 0; color: var(--charcoal); }
.callout p + p { margin-top: 10px; }
.callout--dark {
  background: var(--green-darkest);
  border-left-color: var(--gold);
}
.callout--dark h4 { color: var(--white); }
.callout--dark p { color: #cdd6c2; }

/* Content data table */
.content-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: .95rem;
}
.content-table caption {
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--green-darkest);
  margin-bottom: 10px;
}
.content-table th,
.content-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--cream-dark);
}
.content-table thead th {
  background: var(--green-darkest);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: .88rem;
}
.content-table tbody tr:nth-child(even) { background: var(--green-pale); }
.content-table tbody th { font-weight: 600; color: var(--green-darkest); }

/* Stat band */
.stat-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin: 30px 0;
  padding: 28px;
  background: var(--green-darkest);
  border-radius: var(--radius);
}
.stat-band .stat { text-align: center; }
.stat-band .stat strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-band .stat span { font-size: .85rem; color: #cdd6c2; }

/* Two-column prose feature within a section */
.prose h2:first-child { margin-top: 0; }
.prose .lead {
  font-size: 1.12rem;
  color: var(--charcoal);
  font-weight: 500;
}
.prose ol.steps-list { margin: 16px 0 22px; padding-left: 0; counter-reset: step; }
.prose ol.steps-list li {
  list-style: none;
  position: relative;
  padding: 4px 0 14px 44px;
  margin-bottom: 2px;
}
.prose ol.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 2px;
  width: 30px; height: 30px;
  background: var(--green);
  color: var(--white);
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: .9rem;
}
.prose ul.bullets { margin: 14px 0 22px; padding-left: 0; }
.prose ul.bullets li {
  position: relative;
  padding: 6px 0 6px 22px;
}
.prose ul.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 8px;
  background: var(--green-mid);
  border-radius: 50%;
}
.prose .subhead {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--green-mid);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: block;
  margin: 30px 0 -6px;
}

/* Inline contents nav for long pages */
.toc {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 26px;
}
.toc h3 { font-size: 1.05rem; margin-bottom: 12px; }
.toc ol { padding-left: 18px; }
.toc ol li { padding: 4px 0; font-size: .93rem; }
.toc ol li a { color: var(--charcoal); }
.toc ol li a:hover { color: var(--green); }

@media (max-width: 620px) {
  .drop--wide { min-width: 0; }
  .drop--wide .drop-grid { grid-template-columns: 1fr; }
  .content-table { font-size: .86rem; }
  .content-table th, .content-table td { padding: 9px 8px; }
}
