/* =====================================================================
   NORTHFORGE CONTRACTING CO. — Template 1 (OVERHAUL)
   Brand direction: Warm family-owned trades. Toronto small business.
   Palette: Forest green (primary), cream, brick-rust (CTA), warm gold.
   Type: DM Serif Display (headlines) + DM Sans (body/UI).
   ===================================================================== */

/* -- RESET ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p, figure { margin: 0; }
input, select, textarea { font: inherit; color: inherit; }
svg { flex-shrink: 0; }

/* -- TOKENS ----------------------------------------------------------- */
:root {
  /* colour — committed: forest green dominant, cream warm bg, brick rust CTA, warm gold accent */
  --forest: #1F3D2E;
  --forest-dark: #16291F;
  --forest-light: #2E5742;
  --cream: #F4EFE3;
  --cream-light: #FAF6EC;
  --cream-warm: #EDE6D2;
  --white: #FFFFFF;
  /* Primary CTA accent — bright honey gold (replaced the rust orange) */
  --rust: #E0A82C;
  --rust-dark: #B5872E;
  --rust-on: #1F3D2E;          /* dark forest text on the gold accent */
  --gold: #E0A82C;             /* alias for clarity in new code */
  --gold-light: #F0CB6B;       /* softer gold for highlights on dark bg */
  --gold-deep: #B5872E;
  --ink: #1A1F1B;
  --ink-soft: #2C322E;
  --steel: #6B6F6C;
  --ash: #D4CDB8;
  --ash-light: #E5DFC8;
  --star: #E0A82C;

  /* type */
  --font-display: "Big Shoulders Display", "Arial Black", "Helvetica Neue", sans-serif;
  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-signature: "Permanent Marker", "Brush Script MT", cursive;

  /* scale */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.0625rem;
  --fs-lg: 1.1875rem;
  --fs-xl: 1.375rem;
  --fs-h4: 1.625rem;
  --fs-h3: 2.125rem;
  --fs-h2: 2.875rem;
  --fs-h1: 4rem;
  --fs-display: 5rem;

  /* spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 5.5rem;
  --sp-10: 7rem;

  /* layout */
  --container: 1200px;
  --container-wide: 1320px;
  --container-narrow: 880px;
  --gutter: 1.25rem;

  /* misc */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 6px rgba(31, 61, 46, 0.06);
  --shadow: 0 8px 24px rgba(31, 61, 46, 0.10);
  --shadow-lg: 0 16px 48px rgba(31, 61, 46, 0.14);
}

/* -- TYPOGRAPHY ------------------------------------------------------- */
body {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}
.display, .h1, .h2, .h3, .h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: uppercase;
}
.display { font-size: clamp(3.25rem, 8vw, 6.5rem); font-weight: 800; line-height: 0.96; letter-spacing: -0.015em; }
.h1 { font-size: clamp(2.75rem, 6vw, 5rem); font-weight: 800; line-height: 0.98; }
.h2 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); font-weight: 700; line-height: 1.02; }
.h3 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.05; }
.h4 { font-size: 1.875rem; font-weight: 600; line-height: 1.1; }

.lead { font-size: var(--fs-lg); line-height: 1.55; color: var(--ink-soft); }
.muted { color: var(--steel); }
.small { font-size: var(--fs-sm); }
.fine { font-size: var(--fs-xs); color: var(--steel); }

.label {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
}
.label--gold { color: var(--gold); }
.label--cream { color: var(--cream); }
.label--white { color: var(--white); }
.label--ink { color: var(--ink); }

/* -- LAYOUT ----------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding: var(--sp-10) 0; }
.section--sm { padding: var(--sp-9) 0; }
.section--xs { padding: var(--sp-8) 0; }
.section--forest { background: var(--forest); color: var(--cream); }
.section--forest .h1, .section--forest .h2, .section--forest .h3, .section--forest .h4 { color: var(--cream); }
.section--forest .lead { color: var(--ash-light); }
.section--cream-warm { background: var(--cream-warm); }
.section--white { background: var(--white); }

/* -- BUTTONS ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 700;
  letter-spacing: 0.01em;
  background: var(--gold);
  color: var(--forest);
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.btn:hover {
  background: var(--forest);
  color: var(--gold);
  border-color: var(--forest);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--forest { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.btn--forest:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }
.btn--cream { background: var(--cream); color: var(--forest); border-color: var(--cream); }
.btn--cream:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }
.btn--ghost { background: transparent; color: var(--forest); border-color: var(--forest); box-shadow: none; }
.btn--ghost:hover { background: var(--forest); color: var(--gold); border-color: var(--forest); }
.btn--ghost-light { background: transparent; color: var(--cream); border-color: var(--cream); box-shadow: none; }
.btn--ghost-light:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.btn--lg { padding: 1.15rem 2rem; font-size: var(--fs-md); }
.btn--sm { padding: 0.55rem 1rem; font-size: var(--fs-sm); }
.btn-arrow svg { transition: var(--transition); }
.btn:hover .btn-arrow svg { transform: translateX(3px); }

/* -- TOP UTILITY BAR (small biz hallmark) ----------------------------- */
.utility-bar {
  background: var(--forest);
  color: var(--cream);
  font-size: var(--fs-sm);
  padding: 0.55rem 0;
}
.utility-bar__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.utility-bar__group { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.utility-bar__item { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--cream); }
.utility-bar__item svg { width: 14px; height: 14px; color: var(--gold-light); }
.utility-bar__item a { color: var(--cream); transition: var(--transition); }
.utility-bar__item a:hover { color: var(--gold-light); }
.utility-bar__rating { display: inline-flex; align-items: center; gap: 0.4rem; }
.utility-bar__stars { color: var(--star); letter-spacing: 0.05em; font-size: var(--fs-sm); }

/* -- MAIN HEADER ------------------------------------------------------ */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--ash);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: var(--container-wide);
  margin: 0 auto;
  gap: var(--sp-5);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.logo__icon {
  width: 46px; height: 46px;
  background: var(--forest);
  color: var(--gold-light);
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--forest);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  line-height: 1;
}
.logo__sub {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: var(--sp-5); }
.nav__list { display: flex; gap: 1.65rem; align-items: center; }
.nav__link {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: var(--transition);
}
.nav__link:hover { color: var(--rust); }
.nav__link.is-active { color: var(--rust); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: 0.875rem; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--forest);
  font-weight: 400;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.header-phone svg { color: var(--rust); width: 22px; height: 22px; }
.header-phone span { line-height: 1; }
.header-phone small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 2px;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--forest);
  border-radius: var(--radius-sm);
  background: var(--white);
}
.nav-toggle__bar {
  display: block; width: 20px; height: 2px;
  background: var(--forest);
  position: relative;
}
.nav-toggle__bar::before, .nav-toggle__bar::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: var(--forest);
}
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }

/* -- TRUST STRIP (badges row right under header) --------------------- */
.trust-strip {
  background: var(--cream-warm);
  border-bottom: 1px solid var(--ash);
  padding: var(--sp-3) 0;
}
.trust-strip__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink);
}
.trust-strip__item svg { width: 18px; height: 18px; color: var(--forest); }
.trust-strip__divider {
  width: 4px; height: 4px;
  background: var(--ash);
  border-radius: 50%;
}

/* -- HERO ------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--cream);
  padding: var(--sp-9) 0;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--ash);
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-5);
  box-shadow: var(--shadow-sm);
}
.hero__badge svg { color: var(--star); width: 16px; height: 16px; }
.hero__badge strong { font-weight: 700; color: var(--forest); }

.hero__title { margin-bottom: var(--sp-5); }
.hero__title em { color: var(--rust); font-style: normal; }
.accent-rust { color: var(--rust); }
.accent-gold { color: var(--gold); }
.hero__sub {
  font-size: var(--fs-lg);
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: var(--sp-6);
  max-width: 32rem;
}

.hero__actions { display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center; }
.hero__actions-hint { font-size: var(--fs-sm); color: var(--steel); display: inline-flex; align-items: center; gap: 0.4rem; }
.hero__actions-hint::before { content: ""; width: 6px; height: 6px; background: #4CB04C; border-radius: 50%; }

.hero__highlights {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--ash);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.hero__highlight {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__highlight-num {
  font-family: var(--font-display);
  font-size: 2.125rem;
  color: var(--forest);
  line-height: 1;
}
.hero__highlight-label { font-size: var(--fs-sm); color: var(--steel); }

.hero__media-wrap {
  position: relative;
}
.hero__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media-tag {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.85rem 1.05rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 80%;
}
.hero__media-tag-icon {
  width: 40px; height: 40px;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero__media-tag-text { display: flex; flex-direction: column; line-height: 1.2; }
.hero__media-tag-title { font-weight: 600; font-size: var(--fs-sm); color: var(--ink); }
.hero__media-tag-meta { font-size: var(--fs-xs); color: var(--steel); }

.hero__media-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--gold);
  color: var(--forest-dark);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

/* Page hero (smaller, for non-home pages) */
.page-hero {
  background: var(--cream);
  padding: var(--sp-9) 0 var(--sp-8);
  border-bottom: 1px solid var(--ash);
}
.page-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.page-hero__crumbs {
  font-size: var(--fs-sm);
  color: var(--steel);
  margin-bottom: var(--sp-4);
}
.page-hero__crumbs a { color: var(--rust); }
.page-hero__crumbs span { margin: 0 0.5rem; opacity: 0.5; }
.page-hero__title { margin-bottom: var(--sp-4); max-width: 22ch; margin-left: auto; margin-right: auto; }
.page-hero__sub { font-size: var(--fs-lg); color: var(--ink-soft); max-width: 56ch; margin: 0 auto; line-height: 1.55; }

/* -- SECTION HEAD ----------------------------------------------------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--sp-7); }
.section-head__label { display: inline-block; margin-bottom: var(--sp-3); }
.section-head__title { margin-bottom: var(--sp-3); }
.section-head__sub { font-size: var(--fs-md); color: var(--ink-soft); line-height: 1.55; max-width: 56ch; margin: 0 auto; }

.section-head--left { text-align: left; max-width: none; margin: 0 0 var(--sp-7); display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-7); align-items: end; }
.section-head--left .section-head__title { max-width: 18ch; margin-bottom: 0; }
.section-head--left .section-head__sub { margin: 0; }

/* -- SERVICE CARDS (icon-led, NOT numbered) -------------------------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.service {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  border: 1px solid var(--ash-light);
  transition: var(--transition);
  position: relative;
}
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--ash); }
.service__icon {
  width: 56px; height: 56px;
  background: var(--cream-warm);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--forest);
  margin-bottom: var(--sp-2);
  transition: var(--transition);
}
.service:hover .service__icon { background: var(--forest); color: var(--gold-light); }
.service__icon svg { width: 28px; height: 28px; }
.service__title { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.15; color: var(--ink); }
.service__desc { font-size: var(--fs-base); color: var(--steel); line-height: 1.55; flex: 1; }
.service__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--rust);
  font-weight: 600;
  font-size: var(--fs-sm);
  margin-top: var(--sp-2);
}
.service__link svg { transition: var(--transition); }
.service:hover .service__link svg { transform: translateX(3px); }

/* -- OWNER INTRO ------------------------------------------------------ */
.owner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--sp-8);
  align-items: center;
}
.owner__media-wrap {
  position: relative;
  max-width: 26rem;
  margin: 0 auto;
}
.owner__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.owner__media img { width: 100%; height: 100%; object-fit: cover; }
.owner__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--gold);
  color: var(--forest-dark);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.2;
  box-shadow: var(--shadow);
  text-align: center;
}
.owner__badge strong { display: block; font-size: 1.75rem; }
.owner__title { margin-bottom: var(--sp-4); }
.owner__title em { color: var(--rust); font-style: normal; }
.owner__hi {
  font-family: var(--font-signature);
  font-size: 1.875rem;
  color: var(--forest);
  display: inline-block;
  margin-bottom: var(--sp-2);
  transform: rotate(-2deg);
}
.owner__copy { font-size: var(--fs-lg); line-height: 1.6; color: var(--ink-soft); margin-bottom: var(--sp-4); }
.owner__sign {
  font-family: var(--font-signature);
  font-size: 2.5rem;
  color: var(--ink);
  margin-top: var(--sp-4);
  line-height: 1;
  display: inline-block;
  transform: rotate(-1.5deg);
}
.owner__role { font-size: var(--fs-sm); color: var(--steel); margin-top: 0.3rem; }
.owner__sigs {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--ash);
  flex-wrap: wrap;
}
.owner__sig {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--ink);
}
.owner__sig svg { width: 20px; height: 20px; color: var(--forest); }

/* -- PROMISE / WHY US ------------------------------------------------- */
.promise-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4) var(--sp-5); }
.promise {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--sp-3);
  align-items: start;
  padding: var(--sp-4);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.promise__icon {
  width: 44px; height: 44px;
  background: var(--forest);
  color: var(--gold-light);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
}
.promise__icon svg { width: 22px; height: 22px; }
.promise__title { font-weight: 700; font-size: var(--fs-base); color: var(--ink); margin-bottom: 0.2rem; }
.promise__copy { font-size: var(--fs-sm); color: var(--steel); line-height: 1.55; }

/* -- PROJECT GALLERY (simple, friendly) ------------------------------ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.gallery-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-warm);
}
.gallery-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.gallery-card:hover .gallery-card__media img { transform: scale(1.04); }
.gallery-card__body { padding: var(--sp-4) var(--sp-5) var(--sp-5); }
.gallery-card__tag {
  display: inline-block;
  background: var(--cream-warm);
  color: var(--forest);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
}
.gallery-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.gallery-card__meta { font-size: var(--fs-sm); color: var(--steel); }
.gallery-card__meta span + span::before { content: " • "; }

/* -- REVIEWS ---------------------------------------------------------- */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}
.reviews-summary__rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.reviews-summary__score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--forest);
}
.reviews-summary__stars {
  color: var(--star);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}
.reviews-summary__count { font-size: var(--fs-sm); color: var(--steel); }
.reviews-summary__source {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--ink);
  background: var(--white);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ash);
}
.reviews-summary__source strong { color: var(--forest); }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.review {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.review__stars { color: var(--star); font-size: 1rem; letter-spacing: 0.08em; }
.review__quote { font-size: var(--fs-base); color: var(--ink); line-height: 1.55; flex: 1; }
.review__attribution { display: flex; gap: 0.75rem; align-items: center; padding-top: var(--sp-3); border-top: 1px solid var(--ash-light); }
.review__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--forest);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.review__name { font-weight: 700; font-size: var(--fs-sm); color: var(--ink); }
.review__loc { font-size: var(--fs-xs); color: var(--steel); }

/* -- SERVICE AREA ----------------------------------------------------- */
.areas {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
}
.areas-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.areas-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  background: var(--cream-light);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink);
}
.areas-list li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--rust);
  border-radius: 50%;
}

/* -- CTA BANNER ------------------------------------------------------- */
.cta-banner {
  background: var(--forest);
  color: var(--cream);
  padding: var(--sp-9) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--sp-7);
  align-items: center;
}
.cta-banner h2 { color: var(--cream); margin-bottom: var(--sp-3); }
.cta-banner p { color: var(--ash-light); font-size: var(--fs-lg); margin-bottom: var(--sp-5); max-width: 38rem; line-height: 1.55; }
.cta-banner__actions { display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center; }
.cta-banner__phone {
  background: var(--cream);
  color: var(--forest);
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-banner__phone-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}
.cta-banner__phone-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.85rem;
  display: block;
}
.cta-banner__phone-hint { font-size: var(--fs-sm); color: var(--steel); }

/* -- FAQ -------------------------------------------------------------- */
.faq { display: grid; gap: var(--sp-3); }
.faq__item {
  background: var(--white);
  border: 1px solid var(--ash-light);
  border-radius: var(--radius);
  transition: var(--transition);
}
.faq__item.is-open { border-color: var(--forest); box-shadow: var(--shadow-sm); }
.faq__btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  gap: var(--sp-4);
  text-align: left;
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--ink);
}
.faq__icon {
  width: 32px; height: 32px;
  background: var(--cream-warm);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--forest);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq__item.is-open .faq__icon { background: var(--forest); color: var(--gold-light); transform: rotate(45deg); }
.faq__icon svg { width: 14px; height: 14px; }
.faq__body { display: none; padding: 0 1.5rem 1.4rem; color: var(--steel); line-height: 1.65; font-size: var(--fs-base); max-width: 70ch; }
.faq__item.is-open .faq__body { display: block; }

/* -- FORMS ------------------------------------------------------------ */
.form { display: grid; gap: var(--sp-4); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.form__label { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.form__label-req { color: var(--rust); }
.form__input, .form__select, .form__textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--ash);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: var(--fs-base);
  color: var(--ink);
  transition: var(--transition);
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(31, 61, 46, 0.1);
}
.form__textarea { min-height: 8rem; resize: vertical; }
.form__select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--forest) 50%), linear-gradient(135deg, var(--forest) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}
.form__hint { font-size: var(--fs-sm); color: var(--steel); }
.form__check {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: var(--fs-sm); color: var(--steel); line-height: 1.5;
}
.form__check input { margin-top: 4px; accent-color: var(--forest); width: 16px; height: 16px; }
.form__actions { display: flex; gap: var(--sp-3); align-items: center; flex-wrap: wrap; margin-top: var(--sp-2); }

/* Formidable note (visible only in static prototype, will be removed in WP build) */
.fm-note {
  background: var(--cream-warm);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  line-height: 1.5;
}
.fm-note strong { display: block; color: var(--forest); font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 4px; }

/* -- FOOTER ---------------------------------------------------------- */
.site-footer { background: var(--forest-dark); color: var(--cream); padding: var(--sp-9) 0 var(--sp-5); }
.site-footer__top {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid var(--forest-light);
}
.site-footer .logo__mark { color: var(--cream); font-size: 1.75rem; }
.site-footer .logo__sub { color: var(--gold-light); }
.site-footer__tag { margin-top: var(--sp-4); color: var(--ash-light); font-size: var(--fs-sm); line-height: 1.55; max-width: 30ch; }
.site-footer__cta { margin-top: var(--sp-5); }
.site-footer__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--forest-dark);
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: var(--transition);
}
.site-footer__cta a:hover { background: var(--gold-light); }
.site-footer h6 {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--sp-4);
}
.site-footer__list { display: grid; gap: var(--sp-3); }
.site-footer__list a, .site-footer__list li { color: var(--ash-light); font-size: var(--fs-sm); transition: var(--transition); line-height: 1.5; }
.site-footer__list a:hover { color: var(--gold-light); }
.site-footer__bottom {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: var(--sp-5) var(--gutter) 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--sp-3);
  font-size: var(--fs-xs); color: var(--ash);
}
.site-footer__socials { display: flex; gap: var(--sp-3); }
.site-footer__socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--forest-light);
  color: var(--cream);
  display: grid; place-items: center;
  transition: var(--transition);
}
.site-footer__socials a:hover { background: var(--gold); color: var(--forest-dark); }
.site-footer__socials svg { width: 16px; height: 16px; }

/* -- UTILITIES ------------------------------------------------------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.center-text { text-align: center; }
.tag {
  display: inline-block;
  background: var(--cream-warm);
  color: var(--forest);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}
.tag--forest { background: var(--forest); color: var(--gold-light); }
.tag--rust { background: var(--rust); color: var(--forest); }

/* -- RESPONSIVE ------------------------------------------------------ */
@media (max-width: 1024px) {
  :root { --sp-10: 5.5rem; --sp-9: 4rem; }
  .hero__inner { grid-template-columns: 1fr; gap: var(--sp-6); }
  .hero__media { aspect-ratio: 4 / 3; max-width: 600px; margin: 0 auto; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .owner { grid-template-columns: 1fr; gap: var(--sp-6); }
  .promise-list { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: repeat(3, 1fr); }
  .cta-banner__inner { grid-template-columns: 1fr; gap: var(--sp-5); }
  .section-head--left { grid-template-columns: 1fr; gap: var(--sp-3); }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .utility-bar__group:nth-child(2) { display: none; }
}

@media (max-width: 720px) {
  :root { --sp-10: 4rem; --sp-9: 3rem; --sp-8: 2.5rem; --gutter: 1rem; }
  body { font-size: var(--fs-base); }
  .utility-bar { display: none; }
  .nav__list { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open .nav__list {
    display: grid;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--ash);
    padding: var(--sp-4) var(--gutter);
    gap: var(--sp-3);
    box-shadow: var(--shadow);
  }
  .header-phone span { display: none; }
  .header-phone small { display: none; }
  .header-phone { font-size: 1rem; }
  .trust-strip__inner { gap: var(--sp-4); }
  .trust-strip__divider { display: none; }
  .hero__highlights { grid-template-columns: 1fr; gap: var(--sp-2); }
  .services { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .reviews-summary { gap: var(--sp-3); }
  .reviews-summary__score { font-size: 2.5rem; }
  .areas-list { grid-template-columns: 1fr 1fr; }
  .cta-banner__phone-num { font-size: 2rem; }
  .form__row { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; gap: var(--sp-5); }
  .section-head--left { gap: var(--sp-2); }
}
