/* =========================================================
   Evergreen Surface Solutions — Brand Stylesheet
   Palette + type derived from the logo & marketing banner.
   ========================================================= */

:root {
  /* Brand colors */
  --ink:        #15243B;   /* deep navy (logo outline / EVERGREEN wordmark) */
  --ink-2:      #0E1A2B;   /* darker navy for footer / overlays */
  --green:      #2E5A37;   /* forest green (pines / SURFACE SOLUTIONS) */
  --green-deep: #1F3F27;   /* deep pine */
  --green-bright:#3A7044;  /* hover green */
  --river:      #2F5DA0;   /* river blue accent */
  --river-deep: #244B82;
  --brass:      #B08A4F;   /* warm premium hairline accent */
  --brass-soft: #C9A86E;

  /* Neutrals */
  --cream:      #F6F3EC;   /* warm page background */
  --cream-2:    #EFEADE;   /* alt section */
  --fog:        #E4E8E3;   /* cool misty panel */
  --white:      #FFFFFF;
  --line:       #DED9CC;   /* borders on cream */
  --line-2:     #E8E3D7;

  /* Text */
  --text:       #15243B;   /* primary text */
  --muted:      #4C5A53;   /* secondary text (AA on cream) */
  --muted-2:    #6A7771;

  /* System */
  --shadow-sm: 0 2px 8px rgba(21,36,59,.06);
  --shadow:    0 12px 30px -12px rgba(21,36,59,.22);
  --shadow-lg: 0 26px 60px -22px rgba(21,36,59,.32);
  --radius:    14px;
  --radius-lg: 22px;
  --container:  1180px;

  --font-display: "Archivo", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--river-deep); text-decoration: none; }
a:hover { color: var(--river); }
button { font-family: inherit; cursor: pointer; }
:focus-visible {
  outline: 3px solid var(--river);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --------------------------- Typography -------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); text-transform: uppercase; letter-spacing: -0.005em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.12rem; font-weight: 700; }
p  { color: var(--muted); }
strong { color: var(--text); font-weight: 700; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--green);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--brass);
}
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--brass-soft); }

.lead { font-size: 1.2rem; color: var(--muted); max-width: 60ch; }

/* ---------------------------- Layout ----------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section.tight { padding: clamp(44px, 6vw, 72px) 0; }
.bg-cream2 {
  background-color: var(--cream-2);
  background-image:
    linear-gradient(rgba(239,234,222,.93), rgba(239,234,222,.95)),
    url("../Photos/evergreen-bg-white.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}
.bg-fog { background: var(--fog); }
.bg-white { background: var(--white); }
.bg-ink { background: var(--ink); color: var(--cream); }
.bg-green {
  background-color: var(--green-deep);
  background-image:
    linear-gradient(180deg, rgba(16,28,23,.72), rgba(13,23,19,.82)),
    url("../Photos/evergreen-bg-green.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  color: var(--cream);
}

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.12rem; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

/* ---------------------------- Buttons ---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  text-align: center;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 10px 22px -10px rgba(46,90,55,.7); }
.btn-primary:hover { background: var(--green-bright); color: #fff; box-shadow: 0 14px 26px -10px rgba(46,90,55,.8); }
.btn-blue { background: var(--river); color: #fff; box-shadow: 0 10px 22px -10px rgba(47,93,160,.7); }
.btn-blue:hover { background: var(--river-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: #fff; border-color: var(--green); color: var(--green); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--cream); color: var(--green-deep); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-lg { min-height: 60px; font-size: 1.1rem; padding: 0 36px; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* ----------------------------- Header ---------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff; /* solid so the logo's white edges blend away */
  border-bottom: 1px solid var(--line-2);
}
/* Header spans a bit wider than the 1180 body so all six tabs have room. */
.site-header .container { max-width: 1300px; }
.topbar {
  background: var(--ink);
  color: #d9e2ee;
  font-size: 0.88rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2px 18px; /* tight row-gap so wrapped lines don't spread apart */
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 1.3;
  flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--brass-soft); }
.topbar .tag { color: #b8c6d6; display: inline-flex; align-items: center; gap: 8px; line-height: 1.3; }
.topbar .tag svg { width: 16px; height: 16px; opacity: .85; flex: 0 0 auto; }
.topbar-links { display: flex; gap: 4px 18px; align-items: center; flex-wrap: wrap; line-height: 1.3; }
@media (max-width: 620px) {
  .topbar .container { justify-content: center; text-align: center; }
  .topbar .tag { display: none; } /* keep email + phone visible on tiny screens */
  .topbar-links { width: 100%; justify-content: center; gap: 4px 16px; }
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 84px;
}
.brand { display: flex; align-items: center; gap: 14px; }
/* multiply makes the logo's white background disappear into the white header */
.brand img { height: 56px; width: auto; mix-blend-mode: multiply; }
/* Wordmark: EVERGREEN over a bold SURFACE SOLUTIONS, centered and locked to
   equal width. The two lines share one letter-spacing (--wm-track) so they
   stay equal-width at any scale. */
.brand .wordmark { display: inline-flex; flex-direction: column; align-items: center; text-align: center; line-height: 1; --wm-track: 0.213em; }
.brand .wordmark .w1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--ink);
  text-transform: uppercase;
  white-space: nowrap;
}
.brand .wordmark .w2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: var(--wm-track);
  /* offset the trailing letter-space so the centered text stays balanced */
  margin-right: calc(-1 * var(--wm-track));
  color: var(--green);
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 4px;
}

.nav-links { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-top {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  padding: 9px 11px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease;
}
.nav-top:hover { background: var(--cream-2); color: var(--green-deep); }
.nav-top.active { color: var(--green); box-shadow: inset 0 -2px 0 0 var(--brass); }
.nav-top .chev { width: 14px; height: 14px; opacity: .55; transition: transform .2s ease, opacity .2s ease; }
.nav-item:hover .nav-top .chev,
.nav-item:focus-within .nav-top .chev { transform: rotate(180deg); opacity: 1; }

.nav-expand { display: none; } /* desktop: hover handles it */

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 244px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.dropdown::before { /* invisible bridge so the cursor can reach the menu */
  content: "";
  position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .97rem;
  color: var(--ink);
  padding: 11px 14px;
  border-radius: 9px;
  white-space: nowrap;
  transition: background-color .15s ease, color .15s ease;
}
.dropdown a:hover { background: var(--cream-2); color: var(--green-deep); }
.nav-links .nav-item:last-child .dropdown { left: auto; right: 0; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-quote { padding: 0 22px; min-height: 48px; font-size: 0.96rem; }

.nav-toggle {
  display: none;
  width: 50px; height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--ink); }

/* ------------------------------ Hero ----------------------------- */
/* Woodsy backgrounds: light sections use Photos/evergreen-bg-white.png
   (pale misty forest) under a light veil; dark sections (page headers,
   CTA, footer) use Photos/evergreen-bg-green.png (deep misty forest) under
   a dark veil with white text. Veils + background-color keep things legible
   and degrade gracefully if a photo is missing. */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  overflow: hidden;
}
.hero::before { /* the misty forest photo, bottom-aligned so full trees show, slightly darkened */
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: url("../Photos/evergreen-bg-white.png") center bottom / cover no-repeat;
  filter: saturate(1.05) brightness(.9) contrast(1.1);
}
.hero::after { /* veil: opaque on the left to protect the text, clearing to the trees on the right */
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg,
    rgba(246,243,236,.96) 0%,
    rgba(246,243,236,.74) 40%,
    rgba(246,243,236,.42) 70%,
    rgba(246,243,236,.26) 100%);
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--green); display: block; }
.hero .lead { margin-bottom: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; color: var(--ink); font-size: 0.98rem;
}
.hero-badge svg { width: 20px; height: 20px; color: var(--green); }

/* ------------------- Branded media placeholders ------------------ */
/* Woodsy gradient + pine ridge silhouette = intentional brand imagery
   that the owner can later swap for real project photos. */
.media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 300' preserveAspectRatio='none'%3E%3Cpath d='M0,300 L0,222 L55,236 L105,176 L165,220 L225,150 L300,210 L360,166 L430,120 L500,200 L560,150 L630,205 L700,135 L770,196 L840,160 L910,205 L980,140 L1050,200 L1120,160 L1200,205 L1200,300 Z' fill='%231f3f27'/%3E%3Cpath d='M0,300 L0,252 L70,262 L140,216 L210,256 L290,206 L360,250 L440,212 L520,256 L600,222 L680,256 L760,216 L840,256 L920,222 L1000,256 L1080,226 L1160,256 L1200,242 L1200,300 Z' fill='%23163020'/%3E%3C/svg%3E") bottom / 100% 70% no-repeat,
    radial-gradient(120% 95% at 72% 4%, #3a7044 0%, #1f3f27 42%, #15243b 100%);
  box-shadow: var(--shadow);
  min-height: 300px;
  display: flex;
  align-items: flex-end;
}
.media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 30%),
              linear-gradient(0deg, rgba(14,26,43,.55) 0%, rgba(14,26,43,0) 45%);
  pointer-events: none;
}
.media.tall { min-height: 440px; }
.media.short { min-height: 220px; }
.media-content {
  position: relative;
  z-index: 1;
  padding: 26px 28px;
  width: 100%;
}
.media-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}
.media-title {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.1;
  margin-top: 14px;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.media-note {
  color: rgba(255,255,255,.82);
  font-size: 0.9rem;
  margin-top: 8px;
}
.media .pine-mark {
  position: absolute; top: 20px; right: 22px;
  width: 40px; height: 40px; opacity: .9; z-index: 1;
}

/* ---------------------------- Cards ------------------------------ */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
.card:hover { box-shadow: var(--shadow); border-color: #cfe0d2; }

.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card .icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #eaf2ec, #dfeee2);
  color: var(--green);
  margin-bottom: 20px;
}
.service-card .icon svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { margin-bottom: 18px; }
.service-card .card-link {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green);
  display: inline-flex; align-items: center; gap: 8px;
}
.service-card .card-link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* List of features with check marks */
.checklist { list-style: none; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.checklist li strong { display:block; color: var(--text); }
.checklist svg { width: 22px; height: 22px; color: var(--green); flex: 0 0 auto; margin-top: 2px; }

/* Detailed service block (Log Home / Wash pages) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(34px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: 0; }
.service-detail.reverse .sd-media { order: 2; }
.service-detail .num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brass);
  font-size: 1rem;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.service-detail h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 14px; }

/* Process steps (Strip / Clean / Stain) */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 26px; }
.step {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
}
.step .step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  background: var(--green);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step h4 { color: var(--ink); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; font-family: var(--font-display); }
.step p { font-size: 0.98rem; }

/* Trust / stat bar */
.trust-bar { background: var(--ink); color: var(--cream); }
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px 24px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item svg { width: 34px; height: 34px; color: var(--brass-soft); flex: 0 0 auto; }
.trust-item .t-title { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.05rem; }
.trust-item .t-sub { font-size: 0.9rem; color: #b8c6d6; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem,4vw,3.2rem); color: var(--green); line-height: 1; }
.stat .label { color: var(--muted); margin-top: 8px; font-weight: 600; }

/* Process timeline (3 wide) */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.value-card { text-align: center; padding: 8px; }
.value-card .vc-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.value-card .vc-icon {
  width: 70px; height: 70px; margin: 0 auto 18px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}
.value-card .vc-icon svg { width: 36px; height: 36px; color: var(--brass-soft); }

/* ----------------------------- CTA band -------------------------- */
.cta-band {
  position: relative;
  background-color: var(--green-deep);
  background-image:
    linear-gradient(180deg, rgba(16,28,23,.74), rgba(13,23,19,.84)),
    url("../Photos/evergreen-bg-green.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}
.cta-band::after {
  content:"";
  position:absolute; left:0; right:0; bottom:0; height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 160' preserveAspectRatio='none'%3E%3Cpath d='M0,160 L0,96 L60,112 L120,60 L185,108 L250,46 L320,104 L385,64 L455,30 L520,98 L585,58 L650,104 L720,40 L785,96 L855,64 L925,104 L995,48 L1065,98 L1135,62 L1200,100 L1200,160 Z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
  pointer-events:none;
}
.cta-band .container { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: #fff; max-width: 760px; margin: 0 auto 16px; }
.cta-band p { color: #d3dce6; max-width: 600px; margin: 0 auto 30px; font-size: 1.12rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------------------------- Contact ---------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px,5vw,60px); align-items: start; }
.contact-info { display: grid; gap: 22px; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; }
.contact-line .ci-icon {
  width: 50px; height: 50px; flex: 0 0 auto;
  border-radius: 12px;
  background: linear-gradient(160deg,#eaf2ec,#dfeee2);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.contact-line .ci-icon svg { width: 24px; height: 24px; }
.contact-line .ci-label { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-line .ci-value { font-size: 1.1rem; color: var(--text); font-weight: 600; overflow-wrap: anywhere; }
.contact-line .ci-value a { color: var(--text); }
.contact-line .ci-value a:hover { color: var(--green); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--ink);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.field .req { color: var(--river); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(46,90,55,.12);
}
.form-note { font-size: 0.92rem; color: var(--muted-2); margin-top: 14px; text-align: center; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* Page hero (interior pages) — deep misty-forest header with white text. */
.page-hero {
  background-color: var(--green-deep);
  background-image:
    linear-gradient(180deg, rgba(16,28,23,.32) 0%, rgba(13,23,19,.48) 55%, rgba(11,20,16,.66) 100%),
    url("../Photos/evergreen-bg-green.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; padding: clamp(54px,7vw,88px) 24px clamp(58px,7vw,92px); }
.page-hero .eyebrow { color: var(--brass-soft); }
.page-hero .eyebrow::before { background: var(--brass-soft); }
.page-hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 18px rgba(0,0,0,.3); }
.page-hero p { color: #dbe6de; max-width: 60ch; margin-top: 18px; font-size: 1.18rem; }
.breadcrumb { font-size: 0.9rem; color: #a8bcae; margin-bottom: 22px; font-weight: 600; }
.breadcrumb a { color: #cfddd3; }
.breadcrumb a:hover { color: #fff; }

/* Anchor offset for sticky header */
.anchor { scroll-margin-top: 120px; }

/* Sub-nav chips on service pages */
.subnav { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 84px; z-index: 30; }
.subnav .container { display: flex; gap: 10px; overflow-x: auto; padding-top: 14px; padding-bottom: 14px; }
.subnav a {
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.subnav a:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* ----------------------------- Footer ---------------------------- */
.site-footer {
  background-color: var(--ink-2);
  background-image:
    linear-gradient(180deg, rgba(12,22,18,.93), rgba(10,18,15,.97)),
    url("../Photos/evergreen-bg-green.png");
  background-size: cover, cover;
  background-position: center, center bottom;
  background-repeat: no-repeat;
  color: #c3cedb;
  padding: 64px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .wordmark { font-family: var(--font-display); line-height: 1.05; display: inline-flex; flex-direction: column; align-items: flex-start; text-align: left; --wm-track: 0.203em; }
.footer-brand .wordmark .w1 { font-weight: 800; font-size: 1.5rem; line-height: 0.95; color: #fff; text-transform: uppercase; letter-spacing: 0.005em; white-space: nowrap; }
.footer-brand .wordmark .w2 { font-weight: 600; font-size: 0.715rem; line-height: 1; color: var(--green-bright); letter-spacing: var(--wm-track); margin-right: calc(-1 * var(--wm-track)); text-transform: uppercase; white-space: nowrap; margin-top: 5px; }
.footer-brand .tagline { color: var(--brass-soft); font-family: var(--font-display); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; margin-top: 16px; }
.footer-brand p { color: #9fb0c2; margin-top: 14px; max-width: 34ch; font-size: 0.98rem; }
.footer-col h4 { color: #fff; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; margin-bottom: 18px; font-family: var(--font-display); }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: #b6c2d0; font-size: 0.98rem; }
.footer-col a:hover { color: #fff; }
.footer-contact .fc-line { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 14px; color: #c3cedb; font-size: 0.98rem; }
.footer-contact svg { width: 20px; height: 20px; color: var(--green-bright); flex: 0 0 auto; margin-top: 2px; }
.footer-contact a { color: #c3cedb; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 44px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 0.9rem; color: #8294a6;
}

/* --------------------------- Utilities --------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ----------------------- Hub / sub-page cards -------------------- */
.hub-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.hub-card .media {
  border-radius: 0;
  box-shadow: none;
  min-height: 200px;
}
.hub-card .hub-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.hub-card .hub-body h3 { margin-bottom: 8px; }
.hub-card .hub-body p { margin-bottom: 18px; }
.hub-card .card-link {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green);
  display: inline-flex; align-items: center; gap: 8px;
}
.hub-card .card-link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.hub-card:hover .card-link svg { transform: translateX(4px); }

/* Estimate section reuses .contact-grid / .form-card (defined above) */
.estimate-intro { max-width: 60ch; }
.form-row-3 { display: grid; grid-template-columns: 1.5fr 0.7fr 0.9fr; gap: 18px; }
@media (max-width: 560px) { .form-row-3 { grid-template-columns: 1fr; } }

/* --------------------- Footer mini link row ---------------------- */
.footer-mini { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; margin-top: 38px; }
.footer-mini a { color: #b6c2d0; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; }
.footer-mini a:hover { color: #fff; }

/* ------------------ Location: service menus --------------------- */
.svc-menu { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 980px; margin: 0 auto; }
.svc-cat { position: relative; }
.svc-cat-top {
  width: 100%; display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: border-color .2s, box-shadow .2s;
}
.svc-cat-top:hover { border-color: #cfe0d2; box-shadow: var(--shadow); }
.svc-cat-ic { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg,#eaf2ec,#dfeee2); color: var(--green); flex: 0 0 auto; }
.svc-cat-ic svg { width: 22px; height: 22px; }
.svc-cat-label { flex: 1; text-align: left; }
.svc-cat-top .chev { width: 16px; height: 16px; opacity: .6; transition: transform .2s ease; }
.svc-cat-list {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 20;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 8px; display: flex; flex-direction: column; gap: 1px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.svc-cat-list a { padding: 11px 14px; border-radius: 9px; font-weight: 600; color: var(--ink); font-size: 0.98rem; }
.svc-cat-list a:hover { background: var(--cream-2); color: var(--green-deep); }
.svc-cat-all { color: var(--green) !important; display: flex; align-items: center; gap: 8px; margin-bottom: 4px; border-bottom: 1px solid var(--line-2); border-radius: 9px 9px 0 0; }
.svc-cat-all svg { width: 16px; height: 16px; }
@media (hover: hover) and (pointer: fine) {
  .svc-cat:hover .svc-cat-list { opacity: 1; visibility: visible; transform: none; }
  .svc-cat:hover .svc-cat-top .chev { transform: rotate(180deg); }
}
.svc-cat.open .svc-cat-list { opacity: 1; visibility: visible; transform: none; }
.svc-cat.open .svc-cat-top .chev { transform: rotate(180deg); }
@media (max-width: 820px) {
  .svc-menu { grid-template-columns: 1fr; max-width: 560px; }
  .svc-cat-list { position: static; box-shadow: none; border-top: none; border-radius: 0 0 var(--radius) var(--radius); margin-top: -6px; display: none; opacity: 1; visibility: visible; transform: none; }
  .svc-cat.open .svc-cat-list { display: flex; }
}

/* ----------------------- Location: towns + map ------------------ */
.town-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.town-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px;
  font-family: var(--font-display); font-weight: 700; color: var(--ink); box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s, color .2s, transform .2s;
}
.town-btn:hover { border-color: var(--green); color: var(--green-deep); box-shadow: var(--shadow); transform: translateY(-2px); }
.town-btn small { font-family: var(--font-body); font-weight: 600; color: var(--muted-2); font-size: 0.82rem; }
/* Centered variant (used for the "Also in <town>" sibling links) */
.town-grid-center { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 680px; margin: 0 auto; }
.town-grid-center .town-btn { flex: 0 1 280px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.radius-map { width: 100%; height: clamp(320px, 48vw, 460px); background: var(--fog); }
.map-fallback { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 24px; color: var(--muted); }
.map-fallback svg { width: 38px; height: 38px; color: var(--green); }
.map-fallback code { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px; font-size: 0.85em; }
.map-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin-top: 18px; }
.legend-item { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--muted); font-size: 0.95rem; }
.legend-dot { width: 16px; height: 16px; border-radius: 50%; display: inline-block; }
.legend-green { background: rgba(58,112,68,.4); border: 2px solid #2E5A37; }
.legend-blue { background: rgba(47,93,160,.12); border: 2px solid #2F5DA0; }

/* ----------------------------- Blog ----------------------------- */
.blog-empty { text-align: center; padding: 30px 20px; color: var(--muted); }
.blog-empty svg { width: 46px; height: 46px; color: var(--green); opacity: .55; margin: 0 auto 14px; }

/* ------------------------- Reviews widget ----------------------- */
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 26px; text-align: left; max-width: 560px; margin: 0 auto; min-height: 170px; }
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-avatar { width: 52px; height: 52px; border-radius: 50%; flex: 0 0 auto; object-fit: cover; }
.review-initials { display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg,#2e5a37,#1f3f27); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; }
.review-name { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.review-stars { display: flex; gap: 2px; margin-top: 3px; }
.review-stars .star { color: #d8dcd6; font-size: 1.05rem; line-height: 1; }
.review-stars .star.on { color: #F5B301; }
.review-text { color: var(--text); font-size: 1.05rem; line-height: 1.6; }
.review-more { color: var(--river-deep); font-weight: 700; white-space: nowrap; }
.review-dots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.review-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: #cdd5cf; cursor: pointer; padding: 0; }
.review-dot.on { background: var(--green); }

/* ---------------------- QR / linktree page ---------------------- */
.qr-body {
  background-color: var(--green-deep);
  background-image:
    linear-gradient(180deg, rgba(11,20,16,.7) 0%, rgba(13,24,19,.4) 32%, rgba(11,20,16,.66) 100%),
    url("../Photos/evergreen-bg-green.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed; /* keep the forest framed in the viewport as you scroll */
  min-height: 100vh;
}
.qr-wrap { max-width: 560px; margin: 0 auto; padding: 32px 20px 56px; }
.qr-card { text-align: center; }
.qr-logo img { width: 92px; height: 92px; border-radius: 20px; background: #fff; padding: 8px; box-shadow: var(--shadow); margin: 0 auto; }
.qr-name { display: flex; flex-direction: column; align-items: center; margin-top: 18px; line-height: 1; }
.qr-name .w1 { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: #fff; text-transform: uppercase; letter-spacing: 0.01em; }
.qr-name .w2 { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.2em; color: #fff; text-transform: uppercase; margin-top: 5px; }
.qr-tagline { color: var(--brass-soft); font-family: var(--font-display); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.8rem; margin-top: 14px; }
.qr-sub { color: #cdd9cf; margin-top: 6px; }
.qr-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.qr-btn {
  display: flex; align-items: center; gap: 14px; justify-content: flex-start;
  background: rgba(255,255,255,.96); color: var(--ink); border-radius: 14px; padding: 16px 20px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; box-shadow: var(--shadow);
  transition: transform .15s ease, background-color .2s ease, color .2s ease;
}
.qr-btn:hover { background: #fff; color: var(--green-deep); transform: translateY(-2px); }
.qr-btn-ic { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--green); }
.qr-btn-ic svg { width: 24px; height: 24px; }
.qr-socials { display: flex; justify-content: center; gap: 14px; margin-top: 22px; }
.qr-social { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; transition: background-color .2s, transform .15s; }
.qr-social:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.qr-social svg { width: 24px; height: 24px; }
.qr-section { margin-top: 42px; }
.qr-reviews { text-align: center; }
.qr-reviews .review-head { margin-bottom: 16px; }
.qr-reviews .eyebrow { display: inline-flex; }
.qr-reviews .eyebrow svg { width: 18px; height: 18px; }
.qr-body .section.bg-cream2 { border-radius: var(--radius-lg); margin-top: 42px; background-image: none; background-color: #fff; }
.qr-body .section { padding: 30px 22px; }
/* On the narrow QR column, keep the form single-column regardless of window
   width (the global breakpoints key off the viewport, not this 560px column). */
.qr-body .contact-grid,
.qr-body .form-row,
.qr-body .form-row-3 { grid-template-columns: 1fr; }
.qr-body .section-head { text-align: center; margin-bottom: 24px; }
.qr-body .estimate-intro { margin-left: auto; margin-right: auto; }
.qr-foot { text-align: center; color: #c3cedb; margin-top: 40px; display: flex; flex-direction: column; gap: 6px; align-items: center; }
.qr-foot .fc-line { display: flex; align-items: center; gap: 8px; }
.qr-foot svg { width: 18px; height: 18px; color: var(--green-bright); }
.qr-foot a { color: #dfe7e1; }
.qr-foot p { color: #8aa093; margin-top: 8px; font-size: 0.85rem; }

/* --------------------------- Responsive -------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-media-wrap { order: -1; }
}
/* Nav collapses to the hamburger early enough that the 6 tabs never overlap. */
@media (max-width: 1120px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .navbar .container { position: relative; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px 18px 16px;
    gap: 0;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }
  .nav-links.open .nav-item {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-2);
  }
  .nav-links.open .nav-top {
    flex: 1;
    padding: 15px 8px;
    font-size: 1.1rem;
    border-radius: 0;
  }
  .nav-links.open .nav-top.active { box-shadow: none; color: var(--green); }
  .nav-links.open .nav-top .chev { display: none; }
  .nav-links.open .nav-expand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: transparent;
    border: none;
    color: var(--ink);
  }
  .nav-links.open .nav-expand .chev { width: 22px; height: 22px; transition: transform .2s ease; }
  .nav-links.open .nav-expand[aria-expanded="true"] .chev { transform: rotate(180deg); }
  .nav-links.open .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    flex-basis: 100%; width: 100%;
    box-shadow: none; border: none; border-radius: 0;
    background: var(--cream);
    padding: 4px 6px 10px;
    margin-top: -4px;
    display: none;
    z-index: auto;
  }
  .nav-links.open .dropdown.open { display: flex; }
  .nav-links.open .dropdown::before { display: none; }
  .nav-links.open .dropdown a {
    padding: 12px 16px;
    font-size: 1rem;
    color: var(--muted);
    border-radius: 8px;
  }
  .nav-links.open .dropdown a:hover { color: var(--green-deep); }
  .nav-links .nav-item:last-child .dropdown { left: auto; right: auto; }
}
@media (max-width: 900px) {
  .trust-bar .container { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .service-detail, .service-detail.reverse .sd-media { grid-template-columns: 1fr; order: 0; }
  .service-detail .sd-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  body { font-size: 17px; }
  .grid-2, .grid-3, .stats, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-links .hide-sm { display: none; }
  .brand .wordmark { display: none; }
  .subnav { top: 76px; }
}
@media (max-width: 480px) {
  .btn { width: 100%; }
  .btn-row .btn { width: 100%; }
  .hero-badges { gap: 10px 16px; }
}

/* ------------------------ Reduced motion ------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .card, .service-card .card-link svg { transition: none !important; }
}
