/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: #1c2316;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.68;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── TOKENS ─── */
:root {
  --green-deep:   #0F2418;
  --green-mid:    #1E3D2B;
  --green-accent: #5FAE3E;
  --amber:        #d48a00;
  --amber-light:  #f5a623;
  --amber-hover:  #b57500;
  --white:        #ffffff;
  --off-white:    #f7f5f0;
  --stone:        #eceae3;
  --text:         #1c2316;
  --text-muted:   #4d5545;
  --border:       #dcdbd4;
  --display:      'Barlow Condensed', sans-serif;
  --body:         'Barlow', sans-serif;
  --max:          1160px;
  --sv:           96px;
  --radius:       0px;
  --card-bg:      #0f241b;
  --card-border:  rgba(255,255,255,0.07);
}

/* ─── LAYOUT ─── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
p { text-wrap: pretty; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 {
  text-wrap: balance; font-family: var(--display); font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; text-transform: none; }
h1 { font-size: clamp(3.6rem, 7.2vw, 5.52rem); }
h2 { font-size: clamp(3.12rem, 5.4vw, 4.32rem); }
h3 { font-size: clamp(1.68rem, 2.4vw, 2.16rem); font-weight: 800; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--amber-light);
  flex-shrink: 0;
}
.eyebrow.dark { color: var(--green-mid); }
.eyebrow.dark::before { background: var(--amber); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.025em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
  padding: 14px 28px;
}
.btn-primary {
  background: var(--amber);
  color: #111;
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-hover);
  border-color: var(--amber-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(212,138,0,0.3);
}
.btn-call {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-call:hover {
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}
.btn-outline-green {
  background: transparent;
  color: #ffffff;
  border-color: var(--green-mid);
}
.btn-outline-green:hover {
  background: var(--green-mid);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--green-deep);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--stone);
  border-color: var(--stone);
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }


#site-header .wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* ─── HEADER ─── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  width: 100%;
  padding: 14px 0 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: padding 0.22s ease, background 0.22s ease;
}
#site-header.scrolled {
  padding-top: 10px;
  background: rgba(255,255,255,0.98);
}
#site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
  width: 100%;
  padding: 12px 0;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  line-height: 0;
  padding: 2px 0;
}
.logo::after {
  content: '';
  position: absolute;
  left: -10px;
  top: -6px;
  width: 42px;
  height: 42px;
  background: radial-gradient(circle, rgba(95,174,62,0.24) 0%, rgba(95,174,62,0.12) 38%, transparent 72%);
  pointer-events: none;
  z-index: -1;
}
.logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}
.logo-footer img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.75; }

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

#main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
  padding: 0 14px;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  position: relative;
}
.nav-link::before {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(.22,.8,.32,1);
}
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--green-mid);
  background: transparent;
  outline: none;
}
.nav-link:hover::before,
.nav-link:focus-visible::before,
.nav-link.active::before { transform: scaleX(1); }
.nav-link.active {
  color: var(--green-mid);
  background: rgba(22,43,25,0.05);
}

.nav-item-has-children {
  position: relative;
}
.nav-item-has-children > .nav-link::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 7px;
  vertical-align: middle;
  opacity: 0.52;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-item-has-children:hover > .nav-link::after,
.nav-item-has-children:focus-within > .nav-link::after,
.nav-item-has-children > .nav-link[aria-expanded="true"]::after {
  transform: rotate(-180deg);
  opacity: 0.88;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255,255,255,0.985);
  border: none;
  border-radius: 18px;
  box-shadow: 0 26px 56px rgba(18,28,15,0.14);
  min-width: 300px;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: rgba(255,255,255,0.985);
  border-top: 1px solid rgba(28,35,22,0.08);
  border-left: 1px solid rgba(28,35,22,0.08);
  transform: translateX(-50%) rotate(45deg);
}
.nav-item-has-children:hover .nav-dropdown,
.nav-item-has-children:focus-within .nav-dropdown,
.nav-item-has-children > .nav-link[aria-expanded="true"] + .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: var(--off-white);
  color: var(--green-mid);
  transform: translateX(2px);
  outline: none;
}
.nav-dropdown a svg { color: var(--amber); flex-shrink: 0; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #111;
  padding: 0 18px;
  white-space: nowrap;
  border: 1px solid var(--amber);
  border-radius: 14px;
  background: var(--amber);
  box-shadow: 0 12px 24px rgba(212,138,0,0.2);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.header-phone:hover,
.header-phone:focus-visible {
  background: var(--amber-hover);
  border-color: var(--amber-hover);
  box-shadow: 0 16px 28px rgba(181,117,0,0.26);
  transform: translateY(-1px);
  outline: none;
}
.header-phone svg { color: #111; }

.header-cta { display: none; }

#nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: 0 12px 20px rgba(18,28,15,0.05);
  cursor: pointer;
  padding: 0;
  color: var(--text);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
#nav-toggle:hover,
#nav-toggle:focus-visible {
  background: #fff;
  border-color: rgba(44,92,49,0.24);
  color: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(18,28,15,0.08);
  outline: none;
}
#mobile-nav {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  background: rgba(255,255,255,0.985);
  border: none;
  border-radius: 0;
  box-shadow: 0 24px 46px rgba(18,28,15,0.1);
  margin: 10px 20px 0;
  transition: max-height 0.32s ease, opacity 0.22s ease, transform 0.22s ease, margin-top 0.22s ease;
}
#mobile-nav.open {
  max-height: 85vh;
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav-link,
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  border: 0;
  text-align: left;
  transition: color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
  border-bottom: 1px solid rgba(28,35,22,0.06);
}
.mobile-nav-link:hover,
.mobile-nav-link:focus-visible,
.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible {
  color: var(--green-mid);
  background: var(--off-white);
  padding-left: 26px;
  outline: none;
}
.mobile-nav-link.active {
  color: var(--green-mid);
  background: rgba(22,43,25,0.05);
}
.mobile-nav-group { border-bottom: 1px solid rgba(28,35,22,0.06); }
.mobile-nav-group .mobile-nav-toggle { border-bottom: 0; }
.mobile-nav-toggle-icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  opacity: 0.72;
  margin-right: 3px;
}
.mobile-nav-group.open .mobile-nav-toggle-icon { transform: rotate(-135deg) translateY(-1px); }
.mobile-nav-panel {
  max-height: 0;
  overflow: hidden;
  background: rgba(247,245,240,0.74);
  transition: max-height 0.28s ease;
}
.mobile-nav-group.open .mobile-nav-panel { max-height: 320px; }
.mobile-nav-sub {
  padding-left: 38px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.mobile-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-mid);
  padding: 16px 22px;
  background: #f7f5f0;
  border-bottom: 1px solid rgba(28,35,22,0.06);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.mobile-phone-link svg { color: var(--amber); }

/* ─── HERO ─── */
#hero {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  width: 100%;
  min-height: clamp(680px, 82vh, 920px);
  display: flex;
  align-items: center;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-arborist-landscaping-tree-feature.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 64% center;
  animation: heroZoom 16s ease-in-out infinite alternate;
  will-change: transform;
  filter: saturate(0.88) brightness(0.9);
}


@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 42%, rgba(95,174,62,0.14) 0%, rgba(95,174,62,0.06) 24%, transparent 52%),
    linear-gradient(90deg, rgba(15,36,24,0.88) 0%, rgba(15,36,24,0.72) 35%, rgba(15,36,24,0.38) 65%, rgba(15,36,24,0.08) 100%),
    linear-gradient(to bottom, rgba(15,36,24,0.18) 0%, rgba(15,36,24,0.08) 42%, rgba(15,36,24,0.62) 100%);
}

#hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}

.hero-content {
  animation: fadeUp 0.65s ease both;
  max-width: 680px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  background: rgba(212,138,0,0.12);
  border: 1px solid rgba(212,138,0,0.32);
  padding: 6px 16px;
  margin-bottom: 24px;
}
.hero-kicker svg { flex-shrink: 0; opacity: 0.95; }

h1.hero-h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5.2vw, 4.1rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
h1.hero-h1 span { color: var(--green-accent); }

.hero-sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.84);
  line-height: 1.78;
  max-width: 34ch;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  row-gap: 10px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.81rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
}
.hero-trust-item svg { width: 12px; height: 12px; color: var(--green-accent); flex-shrink: 0; }

/* Hero Call Card */
.hero-card {
  background: rgba(7,18,13,0.82);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
  padding: 30px 26px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: fadeUp 0.65s 0.18s ease both;
}
.hero-card-headline {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero-card-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 22px;
  line-height: 1.55;
}
.hero-card-rows { display: flex; flex-direction: column; gap: 13px; margin-bottom: 22px; }
.hero-card-row { display: flex; align-items: flex-start; gap: 11px; }
.hcr-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  background: rgba(212,138,0,0.16);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.hcr-icon svg { width: 15px; height: 15px; color: var(--amber-light); }
.hcr-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1px;
}
.hcr-text span { font-size: 0.77rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.hero-card-phone {
  display: block;
  background: var(--amber);
  color: #111;
  text-align: center;
  padding: 14px;
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.18s;
}
.hero-card-phone:hover { background: var(--amber-hover); color: #111; }
.hero-card-note {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.28);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ─── TRUST STRIP ─── */
#trust-strip {
  background: linear-gradient(90deg, #0F2418 0%, #163523 50%, #1E3D2B 100%);
  width: 100%;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 100%;
  padding: 24px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 17px; height: 17px; color: var(--amber-light); }
.trust-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}
.trust-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.trust-text span {
  display: block;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.4;
}

/* ─── SECTION SHARED ─── */
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-intro { margin-left: auto; margin-right: auto; }
.section-title { color: var(--text); margin-bottom: 13px; text-transform: none; }
.section-intro {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 54ch;
}
.section-intro-wide { max-width: 660px; }

/* ─── INLINE CTA BAND ─── */
#inline-cta-band {
  background:
    radial-gradient(circle at 50% 34%, rgba(95,174,62,0.13) 0%, rgba(95,174,62,0.05) 20%, transparent 42%),
    linear-gradient(180deg, #0f2418 0%, #0c1d14 100%);
  padding: 112px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}
#inline-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 78% 84% at 50% 100%, rgba(8,24,18,0.46) 0%, transparent 64%),
    radial-gradient(ellipse 58% 54% at 0% 20%, rgba(29,74,53,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 58% 54% at 100% 18%, rgba(29,74,53,0.18) 0%, transparent 60%);
  pointer-events: none;
}
#inline-cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
  opacity: 0.42;
  pointer-events: none;
}
.inline-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.inline-cta-text {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inline-cta-text .eyebrow {
  color: var(--amber-light);
  margin-bottom: 22px;
}
.inline-cta-text .eyebrow::before {
  background: var(--amber-light);
}
.inline-cta-headline {
  font-size: clamp(3rem, 6vw, 5rem);
  color: #fff;
  margin-bottom: 0;
  text-transform: none;
  line-height: 0.94;
  letter-spacing: -0.038em;
}
.inline-cta-headline span {
  display: block;
  color: var(--green-accent);
}
.inline-cta-description {
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  max-width: 42ch;
  line-height: 1.8;
  margin: 28px auto 0;
}
.inline-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}
.inline-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* unified CTA width */
.inline-cta-buttons .btn {
  width: 340px;
  max-width: 92%;
  justify-content: center;
  border-radius: 16px;
  padding: 18px 36px;
  letter-spacing: 0.08em;
}

/* stronger primary emphasis */
.inline-cta-buttons .btn-primary {
  box-shadow: 0 18px 46px rgba(212,138,0,0.28);
}

/* quieter secondary */
.inline-cta-buttons .btn-outline-green {
  box-shadow: none;
  border-color: rgba(255,255,255,0.28);
}

/* consistent hover lift */
.inline-cta-buttons .btn:hover {
  transform: translateY(-2px);
}
.inline-cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(255,255,255,0.64);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}
.inline-cta-phone-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.inline-cta-phone-link:hover {
  color: rgba(255,255,255,0.92);
  transform: translateY(-1px);
}
.inline-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 10px;
}
.inline-cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.56);
}
.inline-cta-trust-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--amber);
  opacity: 0.95;
}
.inline-cta-delay-1 { transition-delay: 0.08s; }
.inline-cta-delay-2 { transition-delay: 0.18s; }
.inline-cta-delay-3 { transition-delay: 0.28s; }

@media (max-width: 860px) {
  #inline-cta-band {
    padding: 86px 0;
  }
  .inline-cta-description {
    max-width: 48ch;
  }
}

@media (max-width: 540px) {
  #inline-cta-band {
    padding: 72px 0;
  }
  .inline-cta-headline {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }
  .inline-cta-description {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.72;
  }
  .inline-cta-buttons,
  .inline-cta-buttons .btn {
    width: 100%;
  }
  .inline-cta-trust {
    gap: 10px 18px;
  }
}

/* ─── SERVICES ─── */
#services {
  background: var(--green-deep);
  padding: 112px 0 0;
  overflow: hidden;
  position: relative;
}

/* Layered organic texture overlay — richer depth */
#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 90% 55% at 8% 15%, rgba(44,92,49,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 65% 60% at 92% 85%, rgba(22,43,25,0.7) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(0,0,0,0.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Fine grain texture overlay — adds premium materiality */
#services::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.services-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────
   SECTION HEADER
───────────────────────────────────────────── */
.services-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 72px;
}

.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 18px;
}
.services-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--amber-light);
  flex-shrink: 0;
}

.services-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  line-height: 1.02;
  color: var(--white);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.services-headline em {
  font-style: normal;
  color: var(--amber-light);
}

.services-subtext {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.50);
  max-width: 440px;
}

.header-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
  padding-bottom: 4px;
}
.header-cta-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ─────────────────────────────────────────────
   PRIMARY PILLAR GRID
───────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;               /* tight seam between cards */
  margin-bottom: 3px;
}

/* ── PILLAR CARD ──
   Taller, more immersive presence.
   min-height raised from 500px → 680px.
───────────────────────────────────────────── */
.pillar-card {
  position: relative;
  background: var(--card-bg);
  
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 680px;
  cursor: pointer;
  transition:
    border-color 0.35s ease,
    transform 0.4s cubic-bezier(.22,.8,.32,1),
    box-shadow 0.4s cubic-bezier(.22,.8,.32,1);
}

/* Hover: subtle lift + shadow bloom */
.pillar-card:hover {
  border-color: rgba(245,166,35,0.35);
  transform: translateY(-4px);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.45),
    0 4px 16px rgba(0,0,0,0.25),
    0 0 0 1px rgba(245,166,35,0.12);
  z-index: 2;
}

/* Top amber accent line — sweeps in on hover */
.pillar-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.22,.8,.32,1);
  z-index: 10;
}
.pillar-card:hover::after { transform: scaleX(1); }

/* Card number — larger, pulled into the illustration zone as texture */
.pillar-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 10rem;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  transition: color 0.35s ease, transform 0.45s cubic-bezier(.22,.8,.32,1);
}
.pillar-card:hover .pillar-number {
  color: rgba(245,166,35,0.055);
  transform: translateY(-6px) scale(1.04);
}

/* ══════════════════════════════════════════════
   ILLUSTRATION ZONE
   Raised from 220px → 360px.
   This is now a visual panel, not an icon holder.
   Multi-layer background treatment creates depth
   even before custom artwork is placed.
══════════════════════════════════════════════ */
.pillar-icon-zone {
  flex-shrink: 0;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* Base tonal layer — each card gets a unique tint via modifier below */
  background: linear-gradient(
    175deg,
    rgba(44,92,49,0.55) 0%,
    rgba(25,45,28,0.85) 55%,
    rgba(18,35,20,0.95) 100%
  );
}

/* ── Per-card tonal shifts — gives each pillar a distinct atmosphere ── */
.pillar-card:nth-child(1) .pillar-icon-zone {
  background: linear-gradient(
    168deg,
    rgba(35,80,42,0.6) 0%,
    rgba(22,42,25,0.88) 50%,
    rgba(15,30,17,0.98) 100%
  );
}
.pillar-card:nth-child(2) .pillar-icon-zone {
  background: linear-gradient(
    172deg,
    rgba(28,68,50,0.55) 0%,
    rgba(20,40,28,0.88) 52%,
    rgba(14,28,20,0.98) 100%
  );
}
.pillar-card:nth-child(3) .pillar-icon-zone {
  background: linear-gradient(
    165deg,
    rgba(48,72,35,0.55) 0%,
    rgba(25,42,20,0.88) 52%,
    rgba(17,30,14,0.98) 100%
  );
}

/* Layer 1: Radial glow — warm centre bloom */
.pillar-icon-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 50% 42%, rgba(44,92,49,0.65) 0%, transparent 68%),
    radial-gradient(ellipse 55% 45% at 50% 50%, rgba(245,166,35,0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.45s ease;
  opacity: 0.8;
}
.pillar-card:hover .pillar-icon-zone::before { opacity: 1; }

/* Layer 2: Subtle diagonal light streak — premium refracted feel */
.pillar-icon-zone::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60%;
  height: 180%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,0.018) 48%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
  transform: skewX(-12deg);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pillar-card:hover .pillar-icon-zone::after {
  transform: skewX(-12deg) translateX(30px);
  opacity: 0.6;
}

/* ── Bottom fade — icon zone bleeds cleanly into card body ── */
.pillar-icon-zone-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent 0%, var(--card-bg) 100%);
  pointer-events: none;
  z-index: 3;
}

/* ── Illustration stage — centred artwork container ── */
.icon-stage {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px 40px 60px; /* extra bottom pad for fade overlap */
}

/* ── Service icon placeholder ──
   Replace .service-icon with your custom SVG or <img>.
   The animated ring + scale will carry forward. */
.service-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.045);
  border: 1.5px dashed rgba(255,255,255,0.13);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.5s cubic-bezier(.34,1.56,.64,1),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.5s ease;
}
/* Outer ring — faint halo */
.service-icon::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.45s ease, transform 0.5s cubic-bezier(.34,1.56,.64,1);
}
.pillar-card:hover .service-icon {
  transform: scale(1.12) translateY(-6px);
  background: rgba(245,166,35,0.09);
  border-color: rgba(245,166,35,0.28);
  box-shadow:
    0 0 0 12px rgba(245,166,35,0.04),
    0 24px 48px rgba(0,0,0,0.4),
    0 0 80px rgba(44,92,49,0.35);
}
.pillar-card:hover .service-icon::before {
  border-color: rgba(245,166,35,0.14);
  transform: scale(1.12);
}
/* Inner plus marker — visual cue for illustration placement */
.service-icon::after {
  content: '+';
  font-size: 1.6rem;
  color: rgba(255,255,255,0.14);
  font-weight: 300;
  line-height: 1;
  transition: color 0.35s ease;
}
.pillar-card:hover .service-icon::after {
  color: rgba(245,166,35,0.3);
}

/* ── CARD CONTENT ── */
.pillar-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 32px 40px;
  position: relative;
  z-index: 1;
}

/* Subtle top separator between zone and body */
.pillar-body::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: rgba(245,166,35,0.35);
  margin-bottom: 20px;
  transition: width 0.45s cubic-bezier(.22,.8,.32,1), background 0.35s ease;
}
.pillar-card:hover .pillar-body::before {
  width: 56px;
  background: rgba(245,166,35,0.7);
}

.pillar-category {
  font-family: var(--body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,166,35,0.65);
  margin-bottom: 10px;
}

.pillar-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.75rem, 2.4vw, 2.2rem);
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}
.pillar-card:hover .pillar-title {
  color: #fff;
}

.pillar-desc {
  font-size: 0.9rem;
  line-height: 1.68;
  color: rgba(255,255,255,0.46);
  flex: 1;
  margin-bottom: 32px;
  max-width: 28ch;
  transition: color 0.35s ease;
}
.pillar-card:hover .pillar-desc {
  color: rgba(255,255,255,0.58);
}

/* ── Pillar CTA ── */
.pillar-cta {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--amber-light);
  padding: 13px 22px;
  border: 1.5px solid rgba(245,166,35,0.25);
  align-self: flex-start;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
/* Amber fill sweep */
.pillar-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--amber);
  transform: translateX(-101%);
  transition: transform 0.38s cubic-bezier(.22,.8,.32,1);
}
.pillar-card:hover .pillar-cta::before { transform: translateX(0); }
.pillar-card:hover .pillar-cta {
  color: #111;
  border-color: var(--amber);
  box-shadow: 0 6px 24px rgba(212,138,0,0.28);
}
.pillar-cta span,
.pillar-cta svg { position: relative; z-index: 1; }

/* CTA arrow — bounces right on hover */
.cta-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
  flex-shrink: 0;
}
.pillar-card:hover .cta-arrow {
  transform: translateX(5px);
}

/* ─────────────────────────────────────────────
   SECONDARY SERVICES STRIP
───────────────────────────────────────────── */
#secondary-services {
  background: var(--off-white);
  padding: 80px 0 96px;
}

.secondary-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.secondary-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.secondary-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}
.secondary-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.secondary-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--green-deep);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.secondary-count {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: rgba(22,43,25,0.08);
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Secondary Grid ── */
.secondary-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

/* ── Secondary Card ── */
.secondary-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  position: relative;
  overflow: hidden;
}
.secondary-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.22,.8,.32,1);
}
.secondary-card:hover {
  border-color: rgba(30,64,34,0.25);
  box-shadow: 0 8px 32px rgba(22,43,25,0.08);
  transform: translateY(-2px);
}
.secondary-card:hover::after { transform: scaleX(1); }

/* ── Small Icon Placeholder ──
   Replace .secondary-icon with a 28–36px SVG icon. */
.secondary-icon {
  width: 44px;
  height: 44px;
  background: var(--stone);
  border: 1.5px dashed rgba(22,43,25,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.secondary-card:hover .secondary-icon {
  background: rgba(212,138,0,0.08);
  border-color: rgba(212,138,0,0.25);
  transform: scale(1.08);
}
.secondary-icon::after {
  content: '+';
  font-size: 1.1rem;
  color: rgba(22,43,25,0.22);
  font-weight: 300;
}

.secondary-service-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green-deep);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.secondary-service-desc {
  font-size: 0.83rem;
  line-height: 1.58;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 20px;
}

/* ── Secondary Arrow Link ── */
.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-top: auto;
  transition: color 0.2s ease, gap 0.28s cubic-bezier(.34,1.56,.64,1);
}
.secondary-card:hover .secondary-link {
  color: var(--amber-hover);
  gap: 13px;
}
.secondary-link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1);
}
.secondary-card:hover .secondary-link svg {
  transform: translateX(3px);
}

/* ─────────────────────────────────────────────
   BOTTOM CTA BAND (conversion anchor)
───────────────────────────────────────────── */
#services-cta-band {
  background: var(--amber);
  padding: 0;
  overflow: hidden;
  position: relative;
}
/* Subtle texture on amber band */
#services-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22,43,25,0.06) 0%, transparent 50%, rgba(22,43,25,0.04) 100%);
  pointer-events: none;
}

.cta-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 100px;
  position: relative;
  z-index: 1;
}

.cta-band-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--green-deep);
  letter-spacing: -0.01em;
}
.cta-band-text span {
  color: rgba(22,43,25,0.55);
  font-weight: 600;
}

.cta-band-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.025em;
  padding: 14px 26px;
  background: var(--green-deep);
  color: #fff;
  border: 2px solid var(--green-deep);
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-dark:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22,43,25,0.3);
}
.btn-dark svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.025em;
  padding: 14px 22px;
  background: transparent;
  color: var(--green-deep);
  border: 2px solid rgba(22,43,25,0.4);
  transition: border-color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-ghost-dark:hover {
  border-color: var(--green-deep);
  background: rgba(22,43,25,0.06);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 3px; }
  .pillar-card {
    min-height: auto;
    /* On mobile, reset the lift — stacked layout doesn't benefit from translateY */
    transition: border-color 0.3s ease;
  }
  .pillar-card:hover {
    transform: none;
    box-shadow: none;
  }
  .pillar-icon-zone { height: 280px; }
  .secondary-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header { grid-template-columns: 1fr; }
  .header-cta-group { align-items: flex-start; }
  .secondary-header { flex-direction: column; align-items: flex-start; gap: 0; }
  .secondary-count { display: none; }
  .cta-band-inner { grid-template-columns: 1fr; padding: 28px 32px; min-height: auto; gap: 20px; }
  .cta-band-actions { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  #services { padding: 72px 0 0; }
  .services-wrap, .secondary-wrap { padding: 0 20px; }
  .services-header { margin-bottom: 48px; }
  .secondary-grid { grid-template-columns: 1fr; }
  .pillar-body { padding: 24px 24px 32px; }
  .pillar-icon-zone { height: 240px; }
  .service-icon { width: 110px; height: 110px; }
  .pillar-title { font-size: 1.75rem; }
  .pillar-desc { max-width: none; }
  .cta-band-inner { padding: 24px 20px; }
}

/* ─── WHY US ─── */
#why {
  padding: 88px 0 72px;
  background: #ffffff;
  width: 100%;
}
#why .section-title { color: var(--text); }
#why .section-intro {
  color: var(--text-muted);
  max-width: 34ch;
}
#why .eyebrow { color: var(--green-mid); }
#why .eyebrow::before { background: var(--amber); }

.why-layout {
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.why-copy {
  max-width: 380px;
}

.why-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.why-proof-strip-inline {
  margin-top: 18px;
}

.why-proof-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0 26px;
}

.why-proof-row-spacer {
  min-height: 1px;
}

.why-proof-row .why-proof-strip {
  margin-top: 0;
}

.why-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 14px;
  background: #f5f2eb;
  border: 1px solid rgba(17,41,27,0.08);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.why-proof-item svg {
  width: 14px;
  height: 14px;
  color: var(--amber);
  flex-shrink: 0;
}



.why-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(17,41,27,0.12);
}

.why-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(17,41,27,0.12);
  background: transparent;
  box-shadow: none;
  min-height: 0;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.why-card::before,
.why-card::after {
  content: none;
}
.why-card:hover {
  transform: translateX(6px);
  border-color: rgba(212,138,0,0.55);
}

.why-num {
  position: relative;
  top: auto;
  left: auto;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1;
  color: rgba(28,35,22,0.32);
  font-weight: 800;
  letter-spacing: 0.08em;
  padding-top: 2px;
}

.why-card > div:last-child {
  position: relative;
  z-index: 1;
  padding: 0;
  max-width: 40ch;
}
.why-card h3 {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.why-card p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.72;
}



/* ─── WORK PHOTOS ─── */

#work-photos {
  padding: 132px 0 118px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 34%),
    linear-gradient(180deg, #050505 0%, #000000 100%);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  overflow: hidden;
}
.work-photos-wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}
.work-photos-header {
  text-align: center;
  margin-bottom: 64px;
}
.work-photos-rule {
  width: 88px;
  height: 2px;
  margin: 0 auto 26px;
  background: linear-gradient(90deg, rgba(212,138,0,0.2) 0%, var(--amber-light) 50%, rgba(212,138,0,0.2) 100%);
}
.work-photos-header .eyebrow {
  justify-content: center;
  color: var(--amber-light);
}
.work-photos-header .eyebrow::before {
  background: var(--amber-light);
}
.work-photos-header h2 {
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 0.96;
  color: #ffffff;
  text-transform: none;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.work-photos-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}
.work-photos-locations {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}
.work-photos-locations span {
  display: inline-flex;
  align-items: center;
}
.work-photos-locations span:not(:last-child)::after {
  content: '•';
  margin-left: 12px;
  color: rgba(212,138,0,0.65);
}

/* Reveal motion */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.22,.8,.32,1);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Elite gallery */
.work-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.wp-card {
  position: relative;
  min-height: 0;
}
.wp-card-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(255,255,255,0.08);
  isolation: isolate;
}
.wp-card-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.28) 40%, rgba(0,0,0,0.02) 66%),
    linear-gradient(to right, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,0) 74%, rgba(0,0,0,0.12) 100%);
  opacity: 0.96;
  transition: opacity 0.35s ease;
  z-index: 1;
}
.wp-card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.14);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
  pointer-events: none;
}
.wp-card-link:hover::before,
.wp-card-link:focus-visible::before {
  opacity: 1;
}
.wp-card-link:hover::after,
.wp-card-link:focus-visible::after {
  opacity: 1;
}
.wp-card-link:focus-visible {
  outline: 2px solid var(--amber-light);
  outline-offset: 4px;
}
.wp-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(1.02);
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(.22,.8,.32,1), filter 0.35s ease;
}
.wp-card-link:hover img,
.wp-card-link:focus-visible img {
  transform: scale(1.03);
  filter: contrast(1.07) saturate(1.04);
}
.wp-card--featured {
  grid-column: 1 / -1;
}
.wp-card--featured img {
  aspect-ratio: 16 / 7.8;
  min-height: 100%;
}
.wp-card-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px 20px 18px;
  pointer-events: none;
}
.wp-card--featured .wp-card-caption {
  padding: clamp(30px, 4vw, 46px);
}
.wp-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.66);
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.wp-card-meta::before {
  content: '';
  width: 22px;
  height: 1px;
  background: rgba(212,138,0,0.92);
}
.wp-card-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.3vw, 1.22rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: #ffffff;
  text-transform: none;
  max-width: 18ch;
}
.wp-card--featured .wp-card-title {
  font-size: clamp(2.25rem, 4.3vw, 4.2rem);
  max-width: 10ch;
  line-height: 0.94;
}
.wp-card-copy {
  margin-top: 10px;
  max-width: 38ch;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.76);
}
.work-photos-gallery-cta {
  margin-top: 64px;
  padding: 52px 36px 0;
  border-top: 1px solid rgba(255,255,255,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
}
.work-photos-gallery-cta-copy {
  max-width: 760px;
}
.work-photos-gallery-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(228,170,42,0.92);
}
.work-photos-gallery-kicker::before,
.work-photos-gallery-kicker::after {
  content: '';
  width: 26px;
  height: 1px;
  background: rgba(228,170,42,0.68);
}
.work-photos-gallery-cta-copy h3 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  line-height: 0.94;
}
.work-photos-gallery-cta-copy p {
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  margin: 0 auto;
}
.work-photos-gallery-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.work-photos-gallery-actions .btn,
.work-photos-gallery-actions .cta-phone-big {
  min-width: 260px;
}
.work-photos-gallery-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 22px;
}
.work-photos-gallery-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.54);
}
.work-photos-gallery-trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--amber);
  flex-shrink: 0;
}
.work-photos-gallery-service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin-top: 24px;
}
.work-photos-gallery-service-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* Trust line */
.work-photos-trust {
  text-align: center;
  margin-top: 46px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.work-photos-trust p {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  opacity: 0.9;
  line-height: 1.9;
}
.work-photos-trust strong {
  color: rgba(255,255,255,0.82);
  font-weight: 700;
}

/* ─── REFERRAL / TRUST ─── */
#trust-section {
  padding: var(--sv) 0;
  background: #fff;
  width: 100%;
}
.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.trust-text h2 { text-transform: none; margin-bottom: 16px; }
.trust-text p { font-size: 0.96rem; color: var(--text-muted); line-height: 1.68; margin-bottom: 14px; }
.trust-points { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.trust-point { display: flex; align-items: flex-start; gap: 12px; }
.tp-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.tp-icon svg { width: 12px; height: 12px; color: var(--amber-light); }
.tp-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.tp-text span { font-size: 0.83rem; color: var(--text-muted); line-height: 1.58; }
.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.trust-proof-shot {
  position: relative;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: var(--stone);
}
.trust-proof-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trust-proof-caption {
  margin-top: 12px;
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.creds-box {
  background: var(--green-deep);
  padding: 34px 30px;
}
.creds-box h3 {
  font-size: 1.28rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
  text-transform: none;
  letter-spacing: -0.01em;
}
.cred-list { display: flex; flex-direction: column; gap: 0; }
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cred-item:last-child { border-bottom: none; }
.cred-badge {
  background: var(--amber);
  color: #111;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 10px;
  flex-shrink: 0;
  white-space: nowrap;
  margin-top: 2px;
}
.cred-desc { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.55; }
.creds-cta { margin-top: 22px; width: 100%; text-align: center; padding: 15px; font-size: 0.94rem; }

/* ─── TRAQ HIGHLIGHT ─── */
#traq-highlight {
  padding: 48px 0;
  background: var(--stone);
  border-top: 3px solid var(--amber);
  width: 100%;
}
.traq-inner {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.traq-badge {
  flex-shrink: 0;
  background: var(--green-deep);
  color: var(--amber-light);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 12px 18px;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  line-height: 1.4;
}
.traq-text h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: none;
}
.traq-text p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.64; max-width: 62ch; }

/* ─── SERVICE AREA BAND ─── */
#service-area-band {
  background: var(--green-mid);
  padding: 32px 0;
  width: 100%;
}
.sab-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.sab-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  white-space: nowrap;
}
.sab-towns { display: flex; flex-wrap: wrap; gap: 8px; }
.sab-towns span {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.sab-towns span::after { content: '·'; margin-left: 8px; color: rgba(255,255,255,0.22); }
.sab-towns span:last-child::after { display: none; }

/* ─── FEATURED SERVICE ─── */
#featured {
  padding: var(--sv) 0;
  background: var(--off-white);
  width: 100%;
}
.featured-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
.featured-visual {
  background: var(--green-deep);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.featured-visual-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  background: rgba(255,255,255,0.08);
}
.featured-shot {
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.featured-shot::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.featured-shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,18,10,0.42) 0%, rgba(9,18,10,0.08) 42%, rgba(9,18,10,0.02) 100%);
}
.featured-shot.tall { grid-row: 1 / span 2; }
.featured-shot.before::before { background-image: url('../img/arborist-tree-removal.jpg'); background-position: center center; }
.featured-shot.climb::before { background-image: url('../img/bucket-truck-tree-pruning.jpg'); background-position: center center; }
.featured-shot.ground::before { background-image: url('../img/clean-job-site.jpg'); background-position: center center; }
.featured-proof-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8,20,10,0.84);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.featured-proof-badge span { color: rgba(255,255,255,0.62); font-weight: 600; letter-spacing: 0.02em; text-transform: none; }
.featured-text h2 { text-transform: none; margin-bottom: 15px; }
.featured-text p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.78; margin-bottom: 16px; }

/* ─── TESTIMONIALS ─── */
#testimonials {
  padding: var(--sv) 0;
  background: var(--green-deep);
  width: 100%;
}
#testimonials .section-title { color: #fff; }
#testimonials .eyebrow { color: var(--amber-light); }
#testimonials .eyebrow::before { background: var(--amber-light); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
}
.testi-card {
  background: rgba(255,255,255,0.03);
  padding: 28px 24px;
  position: relative;
  transition: background 0.2s;
}
.testi-card:hover { background: rgba(255,255,255,0.06); }
.testi-stars { color: var(--amber-light); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.78;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author { font-size: 0.84rem; font-weight: 700; color: #fff; }
.testi-location { font-size: 0.76rem; color: rgba(255,255,255,0.32); margin-top: 3px; }

/* ─── FAQ ─── */
#faq-preview {
  padding: clamp(92px, 10vw, 122px) 0;
  background:
    linear-gradient(180deg, #fbfaf7 0%, #f6f3ed 100%);
  width: 100%;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(42px, 5vw, 78px);
  align-items: start;
}
.faq-left {
  position: sticky;
  top: 122px;
}
.faq-left .section-title {
  max-width: 8ch;
  font-size: clamp(3.15rem, 5vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: #11180f;
  margin-bottom: 20px;
}
.faq-left p {
  max-width: 28ch;
  font-size: 1rem;
  color: #55604d;
  line-height: 1.82;
  margin-bottom: 28px;
}
.faq-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.faq-see-all:hover {
  color: var(--amber);
  gap: 12px;
  transform: translateX(2px);
}
.faq-see-all svg { width: 12px; height: 12px; }

.faq-list {
  width: 100%;
  max-width: 760px;
  border-top: 2px solid #171d14;
}
.faq-item {
  border-bottom: 1px solid rgba(28,35,22,0.12);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.faq-item:hover {
  border-bottom-color: rgba(28,35,22,0.22);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0 22px;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: start;
  column-gap: 18px;
}
.faq-question:focus-visible {
  outline: 2px solid var(--green-accent);
  outline-offset: 4px;
}
.faq-question-text {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.45vw, 1.42rem);
  font-weight: 700;
  color: #151b13;
  line-height: 1.18;
  text-transform: none;
  letter-spacing: -0.02em;
  transition: color 0.18s ease, transform 0.18s ease;
}
.faq-item:hover .faq-question-text,
.faq-item.open .faq-question-text {
  color: var(--green-mid);
}
.faq-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border: 1.5px solid rgba(28,35,22,0.14);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #55604d;
  margin-top: 2px;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.faq-icon svg { width: 12px; height: 12px; transition: transform 0.25s ease; }
.faq-item:hover .faq-icon {
  border-color: rgba(28,35,22,0.26);
  color: #1c2316;
}
.faq-item.open .faq-icon {
  border-color: var(--green-mid);
  background: var(--green-mid);
  color: #fff;
  transform: translateY(1px);
}
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.34s ease;
}
.faq-answer-inner {
  padding: 0 54px 24px 0;
}
.faq-answer p {
  font-size: 0.97rem;
  color: #55604d;
  line-height: 1.82;
  max-width: 58ch;
}

/* ─── SERVICE AREAS (SEO) ─── */
#service-areas-seo {
  padding: var(--sv) 0;
  background: var(--off-white);
  width: 100%;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: var(--border);
  border: 1px solid var(--border);
}
.area-card {
  background: #fff;
  padding: 26px 24px;
  transition: background 0.18s;
}
.area-card:hover { background: #faf9f6; }
.area-card h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 9px;
  text-transform: none;
}
.area-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.62; margin-bottom: 13px; }



/* ─── FINAL CTA ─── */
#final-cta {
  padding: 112px 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(212,138,0,0.12) 0%, transparent 32%),
    radial-gradient(circle at 82% 78%, rgba(255,255,255,0.05) 0%, transparent 24%),
    linear-gradient(180deg, #17331b 0%, #112514 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 20%, rgba(0,0,0,0.10) 100%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}
.final-cta-top {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}
.final-cta-inner h2 {
  color: #fff;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  max-width: 12ch;
  margin: 0 auto 16px;
  text-transform: none;
  letter-spacing: -0.02em;
}
.final-cta-inner .sub {
  color: rgba(255,255,255,0.74);
  font-size: 1rem;
  max-width: 58ch;
  margin: 0 auto;
  line-height: 1.8;
}
.final-cta-proofline {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-bottom: 26px;
}
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.final-cta-actions .btn {
  min-height: 58px;
  padding: 16px 30px;
}
.final-cta-actions .btn-primary {
  font-size: 1rem;
}
.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.cta-phone-big:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.34);
  transform: translateY(-1px);
}
.cta-phone-big svg {
  width: 16px;
  height: 16px;
  color: var(--amber-light);
  flex-shrink: 0;
}
.final-cta-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 780px;
  margin: 0 auto 26px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.68;
  text-align: center;
}
.final-cta-reassurance svg {
  width: 16px;
  height: 16px;
  color: var(--amber-light);
  flex-shrink: 0;
}
.cta-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.cta-trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  text-align: center;
}
.cta-trust-item svg {
  width: 12px;
  height: 12px;
  color: #5cdb8e;
  flex-shrink: 0;
}
.cta-area-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.56);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 900px) {
  .cta-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}



@media (max-width: 640px) {
  .faq-question {
    grid-template-columns: minmax(0, 1fr) 28px;
    column-gap: 14px;
    padding: 20px 0 18px;
  }
  .faq-question-text {
    font-size: 1.06rem;
    line-height: 1.22;
  }
  .faq-icon {
    width: 26px;
    height: 26px;
  }
  .faq-answer p {
    font-size: 0.94rem;
    line-height: 1.72;
  }
}

@media (max-width: 640px) {
  #final-cta {
    padding: 84px 0;
  }
  .final-cta-actions {
    flex-direction: column;
  }
  .final-cta-actions .btn,
  .cta-phone-big {
    width: 100%;
    justify-content: center;
  }
  .cta-trust-row {
    grid-template-columns: 1fr;
  }
}

/* ─── FOOTER ─── */
#site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.44);
  font-size: 0.81rem;
  padding: 0 0 26px;
  border-top: 3px solid var(--amber);
  width: 100%;
}
.footer-cta-band {
  padding: 54px 0 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.footer-cta-copy h2 {
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}
.footer-cta-copy p {
  color: rgba(255,255,255,0.56);
  font-size: 0.95rem;
  line-height: 1.72;
  max-width: 560px;
}
.footer-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1.15fr;
  gap: 42px;
  padding: 48px 0 34px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 22px;
}
.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-brand-text {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.26);
}
.footer-brand-tagline {
  margin-top: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.46);
  line-height: 1.62;
  max-width: 34ch;
}
.footer-trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.68);
  font-size: 0.82rem;
  font-weight: 600;
}
.footer-trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--amber-light);
  flex-shrink: 0;
}
.footer-col h4 {
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.48);
  margin-bottom: 10px;
  font-size: 0.84rem;
  line-height: 1.5;
  transition: color 0.15s;
}
.footer-col a:hover { color: rgba(255,255,255,0.86); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 3px;
  width: 14px;
  height: 14px;
}
.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
  font-size: 0.84rem;
  line-height: 1.62;
}
.footer-contact-item a:hover { color: rgba(255,255,255,0.86); }
.footer-estimate-btn {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.74rem;
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.15s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.62); }

/* ─── MOBILE FIXED ELEMENTS ─── */
#mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--amber);
  color: #111;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  text-decoration: none;
  box-shadow: 0 -2px 20px rgba(212,138,0,0.4);
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
#mobile-call-btn svg { width: 16px; height: 16px; }

#floating-estimate-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 820;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-deep);
  color: #fff;
  padding: 13px 20px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.07);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  transition: transform 0.18s, box-shadow 0.18s;
}
#floating-estimate-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,0,0,0.3); }
#floating-estimate-btn svg { width: 15px; height: 15px; color: var(--amber-light); }



/* ─── SERVICES — REFINED ─── */
#services {
  background: #f4f3ef;
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
#services::before,
#services::after { content: none; }

/* Unified wrapper */
.services-list-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
}

/* ── Section header ── */
.services-list-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding: 144px 0 44px;
  border-bottom: 1px solid rgba(28,35,22,0.07);
  isolation: isolate;
}
.services-header-art {
  position: absolute;
  /* Pull the tree mark higher so it visually bridges the trust strip and the services header */
  top: 18px;
  left: 48%;
  width: clamp(700px, 78vw, 980px);
  height: auto;
  aspect-ratio: 980 / 240;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, 22px) scale(0.94);
  transform-origin: center center;
  transition: opacity 780ms ease, transform 780ms cubic-bezier(.22,.8,.32,1);
  mask-image: radial-gradient(ellipse 84% 74% at 42% 46%, rgba(0,0,0,1) 42%, rgba(0,0,0,0.72) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: radial-gradient(ellipse 84% 74% at 42% 46%, rgba(0,0,0,1) 42%, rgba(0,0,0,0.72) 70%, rgba(0,0,0,0) 100%);
  mix-blend-mode: multiply;
  will-change: opacity, transform;
}
.services-list-header.art-in-view .services-header-art {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}
.services-header-art svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
}
.services-header-art .ring,
.services-header-art .branch,
.services-header-art .trunk,
.services-header-art .node {
  fill: none;
  stroke: rgba(22, 43, 25, 0.42);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  animation: none;
}
.services-header-art .ring {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}
.services-header-art .trunk,
.services-header-art .branch {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
}
.services-header-art .node {
  fill: rgba(22, 43, 25, 0.22);
  stroke: rgba(22, 43, 25, 0.38);
  opacity: 0;
}
.services-list-header.art-in-view .services-header-art .ring {
  animation:
    servicesLineDraw 9.5s cubic-bezier(.22,.8,.32,1) forwards,
    servicesFloat 14s ease-in-out 9.8s infinite alternate;
}
.services-list-header.art-in-view .services-header-art .ring-2 { animation-delay: 0.45s, 10.2s; }
.services-list-header.art-in-view .services-header-art .ring-3 { animation-delay: 0.9s, 10.6s; }
.services-list-header.art-in-view .services-header-art .trunk,
.services-list-header.art-in-view .services-header-art .branch {
  animation:
    servicesLineDraw 7.4s cubic-bezier(.22,.8,.32,1) forwards,
    servicesFloat 12s ease-in-out 8.2s infinite alternate;
}
.services-list-header.art-in-view .services-header-art .trunk { animation-delay: 0.1s, 8.4s; }
.services-list-header.art-in-view .services-header-art .branch-1 { animation-delay: 0.7s, 8.8s; }
.services-list-header.art-in-view .services-header-art .branch-2 { animation-delay: 1.05s, 9.15s; }
.services-list-header.art-in-view .services-header-art .branch-3 { animation-delay: 1.35s, 9.45s; }
.services-list-header.art-in-view .services-header-art .node {
  animation:
    servicesNodeFade 2.6s ease-out forwards,
    servicesPulse 6.5s ease-in-out 2.7s infinite;
  animation-delay: 1.4s, 4.2s;
}
.services-header-copy,
.services-header-cta {
  position: relative;
  z-index: 1;
}
.services-list-eyebrow {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.services-list-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.2rem, 5.4vw, 4.9rem);
  line-height: 0.92;
  color: var(--green-deep);
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.services-list-intro { max-width: 66ch; }
.services-list-intro p {
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(28,35,22,0.62);
  max-width: 60ch;
}
.services-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.services-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  padding: 0 12px;
  background: rgba(22,43,25,0.055);
  color: var(--green-mid);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.services-trust-pill svg {
  width: 11px;
  height: 11px;
  color: var(--amber);
  flex-shrink: 0;
}
.services-header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding-bottom: 6px;
}
.services-header-note {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(28,35,22,0.36);
}

/* ── Primary services: 3-column grid ── */
.svc-primary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border-bottom: 1px solid rgba(28,35,22,0.06);
}

/* Each primary card is a flex column so the CTA always pins to the same row */
.svc-primary-item {
  padding: 36px 32px 32px;
  /* Dividers: subtle, not heavy */
  border-right: 1px solid rgba(28,35,22,0.055);
  border-top: 1px solid rgba(28,35,22,0.055);
  display: flex;
  flex-direction: column;
  transition: background 0.2s ease;
}
.svc-primary-item:last-child { border-right: none; }
.svc-primary-item:hover { background: rgba(255,255,255,0.46); }

/* Larger icon for stronger visual anchor */
.svc-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--green-deep);
  color: var(--amber-light);
  margin-bottom: 18px;
}
.svc-icon svg { width: 30px; height: 30px; }

.svc-primary-item h3 {
  font-family: var(--display);
  font-size: clamp(1.32rem, 1.8vw, 1.62rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--green-deep);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* flex: 1 pushes the CTA to the bottom regardless of copy length */
.svc-primary-item p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: rgba(28,35,22,0.60);
  flex: 1;
  /* Cap width so long lines wrap cleanly at ~2 lines on desktop */
  max-width: 34ch;
  margin-bottom: 24px;
}

/* CTA always sits at the bottom of each flex column */
.svc-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  background: var(--green-deep);
  color: var(--amber-light);
  border: 1px solid var(--green-deep);
  border-radius: 999px;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: auto;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 10px 22px rgba(15,36,24,0.12);
}
.svc-primary-cta:hover,
.svc-primary-cta:focus-visible {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: #f7c557;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(15,36,24,0.16);
  outline: none;
}
.svc-primary-cta span { font-size: 0.88rem; line-height: 1; }

/* ── Additional services ── */
.svc-additional-divider {
  display: block;
  margin-top: 42px;
  margin-bottom: 22px;
}
.svc-additional-divider-line {
  display: none;
}
.svc-additional-divider-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28,35,22,0.38);
  white-space: nowrap;
}

.svc-additional-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(18px, 2.2vw, 28px);
  row-gap: 0;
  align-items: stretch;
}
.svc-additional-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 0 6px 0 0;
  background: transparent;
}
.svc-additional-item:hover { background: transparent; }

.svc-additional-item h3 {
  font-family: var(--display);
  font-size: clamp(1.04rem, 1.2vw, 1.18rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--green-deep);
  text-transform: none;
  margin-bottom: 10px;
  max-width: 12ch;
}
.svc-additional-item p {
  font-size: 0.84rem;
  line-height: 1.58;
  color: rgba(28,35,22,0.62);
  flex: 1;
  margin-bottom: 14px;
  max-width: 24ch;
}
.svc-additional-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  background: var(--green-deep);
  color: var(--amber-light);
  border: 1px solid var(--green-deep);
  border-radius: 999px;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: auto;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 10px 22px rgba(15,36,24,0.12);
}
.svc-additional-cta:hover,
.svc-additional-cta:focus-visible {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: #f7c557;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(15,36,24,0.16);
  outline: none;
}
.svc-additional-cta span { font-size: 0.88rem; line-height: 1; }

/* ── Old classes — hide orphaned elements if any remain ── */
.service-list-panel,
.service-row-primary,
.service-row-secondary,
.services-visual-break,
.additional-services-shell,
.additional-services-panel { display: none; }

/* ── Responsive ── */
@media (max-width: 960px) {
  #services { padding: 60px 0 48px; }
  .services-list-wrap { padding: 0 28px; }
  .services-list-header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
    padding: 122px 0 36px;
  }
  .services-header-art {
    top: 20px;
    width: clamp(560px, 92vw, 820px);
    left: 48%;
  }
  .services-header-cta { align-items: flex-start; }
  .svc-primary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-primary-item:nth-child(2) { border-right: none; }
  .svc-primary-item:nth-child(3) {
    grid-column: 1 / -1;
    border-right: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
  }
  .svc-primary-item:nth-child(3) p { margin-bottom: 0; max-width: none; }
  .svc-primary-item p { max-width: none; }
  .svc-additional-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; row-gap: 28px; }
  .svc-additional-divider { margin-top: 42px; margin-bottom: 22px; }
}
@media (max-width: 640px) {
  #services { padding: 48px 0 40px; }
  .services-list-wrap { padding: 0 20px; }
  .services-list-title { font-size: 2.7rem; }
  .services-list-header {
    padding: 98px 0 28px;
  }
  .services-header-art {
    top: 10px;
    width: clamp(420px, 122vw, 620px);
    left: 46%;
  }
  .svc-primary-grid { grid-template-columns: 1fr; }
  .svc-primary-item { border-right: none; padding: 28px 0 26px; }
  .svc-primary-item p { max-width: none; }
  .svc-primary-item:nth-child(3) {
    grid-column: auto;
    display: flex;
    flex-direction: column;
  }
  .svc-primary-item:nth-child(3) p { margin-bottom: 24px; }
  .svc-additional-grid { grid-template-columns: 1fr; row-gap: 28px; }
  .svc-additional-item { padding: 0; border-right: none; }
  .svc-additional-divider { margin-top: 32px; margin-bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .services-header-art {
    transition: none;
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
  .services-header-art .ring,
  .services-header-art .branch,
  .services-header-art .trunk,
  .services-header-art .node {
    animation: none !important;
    stroke-dashoffset: 0;
    opacity: 1;
    transform: none !important;
  }
}

/* ── Hide old secondary-services section ── */
#secondary-services { display: none; }


/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes servicesLineDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes servicesNodeFade {
  0% { opacity: 0; transform: scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes servicesFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(5px); }
}

@keyframes servicesPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.95; }
}



/* ─── RESPONSIVE ─── */
@media (max-width: 1040px) {
  :root { --sv: 68px; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: none; }
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .trust-strip-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item {
    padding: 22px 22px;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-last-child(-n + 2) { border-bottom: none; }
  .featured-layout { grid-template-columns: 1fr; gap: 40px; }
  .featured-visual { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-left { position: static; top: auto; }
  .faq-left .section-title { max-width: 10ch; }
  .faq-list { max-width: 100%; }
  .faq-answer-inner { padding-right: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-cta-actions { justify-content: flex-start; }
  .trust-layout { grid-template-columns: 1fr; gap: 40px; }
  /* inline-cta responsive handled within component styles */
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .work-photos-wrap { padding: 0 28px; }
  .work-photos-grid { gap: 20px; }
}
@media (max-width: 980px) {
  .work-photos-grid { grid-template-columns: 1fr 1fr; }
  .wp-card--featured { grid-column: 1 / -1; }
  .wp-card--featured img { aspect-ratio: 16 / 9; }
}
@media (max-width: 760px) {
  #main-nav { display: none; }
  .header-right { gap: 10px; }
  #nav-toggle { display: inline-flex; }
  #mobile-call-btn { display: flex; }
  #floating-estimate-btn { display: none; }
  .header-phone { display: none; }
  #site-header { padding-top: 10px; }
  #site-header .inner {
    min-height: 74px;
    padding: 10px 12px 10px 16px;
    border-radius: 18px;
  }
  .logo {
    padding: 1px 0;
  }
  .logo img {
    height: auto;
    max-height: 46px;
  }
  #mobile-nav { margin: 8px 20px 0; }
  body { padding-bottom: 54px; }
}
@media (max-width: 640px) {
  :root { --sv: 52px; }
  .wrap { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-row2 { grid-template-columns: 1fr; }
  .why-proof-strip { gap: 8px; }
  .why-proof-item { width: 100%; justify-content: flex-start; }
  .why-card { grid-template-columns: 52px minmax(0, 1fr); gap: 14px; padding: 22px 0; }
  .why-card > div:last-child { max-width: none; }
  .areas-grid { grid-template-columns: 1fr; }
  .work-photos-wrap { padding: 0 20px; }
  #work-photos { padding: 72px 0 64px; }
  .work-photos-grid { grid-template-columns: 1fr; gap: 18px; }
  .wp-card--featured { grid-column: span 1; }
  .wp-card--featured img { aspect-ratio: 16 / 10; }
  .wp-card-title { max-width: 100%; }
  .wp-card--featured .wp-card-caption { padding: 24px 20px 22px; }
  .work-photos-gallery-cta { margin-top: 44px; padding: 34px 0 0; }
  .work-photos-gallery-actions,
  .work-photos-gallery-trust,
  .work-photos-gallery-service-list { width: 100%; }
  .work-photos-gallery-actions { flex-direction: column; }
  .work-photos-gallery-actions .btn,
  .work-photos-gallery-actions .cta-phone-big { width: 100%; justify-content: center; min-width: 0; }
  .work-photos-gallery-service-list { justify-content: center; gap: 10px; }
  .work-photos-trust { margin-top: 40px; padding-top: 32px; }
  h1.hero-h1 { font-size: 2.35rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .final-cta-grid { grid-template-columns: 1fr; gap: 14px; }
  .final-cta-card { padding: 24px 22px; }
  .final-cta-card .btn, .final-cta-card .cta-phone-big { width: 100%; justify-content: center; }
  .final-cta-reassurance { padding: 16px 18px; font-size: 0.84rem; }
  .cta-phone-big { display: none; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item {
    padding: 20px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .trust-item:last-child { border-bottom: none; }
  .traq-inner { flex-direction: column; gap: 14px; }
  .sab-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-cta-actions { width: 100%; }
  .footer-cta-actions .btn { width: 100%; justify-content: center; }
  .testi-grid { grid-template-columns: 1fr; }
  .trust-proof-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .trust-proof-grid { grid-template-columns: 1fr; }
}

/* spacing between main 3 services */
/* removed stale rule */

@media (max-width: 720px) {
  .work-photos-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }
  .wp-card--featured {
    grid-column: span 1;
  }
  .wp-card--featured img {
    aspect-ratio: 16 / 10;
  }
  .work-photos-gallery-cta {
    margin-top: 34px;
    padding-top: 26px;
  }
  .work-photos-wrap {
    padding: 0 20px;
  }
}


/* ───────── MINIMAL FOOTER ───────── */
#site-footer{
  background:#0b0b0b;
  padding:120px 20px 80px;
  text-align:center;
}
.minimal-footer{
  max-width:720px;
  margin:0 auto;
}
.minimal-footer-logo{
  width:60px;
  margin:0 auto 28px;
  filter:none;
}
.minimal-footer-text{
  font-size:16px;
  line-height:1.6;
  color:#9a9a9a;
  margin-bottom:28px;
}
.minimal-footer-copy{
  font-size:13px;
  letter-spacing:0.08em;
  color:#6a6a6a;
}



/* ───────── ELITE CONSISTENCY OVERRIDES ───────── */
:root {
  --green-deep: #11291b;
  --green-mid: #2f6b2c;
  --green-accent: #76b82f;
  --amber: #d59612;
  --amber-light: #e4aa2a;
  --amber-hover: #bc8210;
  --off-white: #f5f2eb;
  --stone: #ebe6dc;
  --text: #182016;
  --text-muted: #54604f;
  --border: rgba(24,32,22,0.10);
  --radius: 18px;
  --shadow-soft: 0 18px 46px rgba(16,40,26,0.08);
  --shadow-strong: 0 28px 70px rgba(8,20,13,0.18);
}

html { font-size: 17px; }
body {
  color: var(--text);
  background: #fbfaf7;
  letter-spacing: -0.01em;
}
section { position: relative; }
.wrap { max-width: 1200px; }

h1, h2, h3 {
  letter-spacing: -0.03em;
}

.btn,
.header-phone,
.hero-card-phone,
.svc-primary-cta,
.btn-dark,
.btn-ghost-dark,
#floating-estimate-btn,
#mobile-call-btn,
.faq-question,
.services-trust-pill,
.trust-item,
.hero-card,
.hero-kicker {
  border-radius: 18px;
}

.btn {
  min-height: 54px;
  padding: 15px 28px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-primary,
.header-phone,
.hero-card-phone,
#floating-estimate-btn {
  box-shadow: 0 14px 34px rgba(216,146,10,0.22);
}
.btn-primary:hover,
.header-phone:hover,
.hero-card-phone:hover,
#floating-estimate-btn:hover {
  box-shadow: 0 18px 40px rgba(216,146,10,0.28);
}
.btn-call,
.btn-outline-green,
.btn-ghost-dark {
  border-width: 1.5px;
}

#site-header {
  background: rgba(251,250,247,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
#site-header .inner {
  min-height: 84px;
  background: rgba(251,250,247,0.78);
}
.nav-link {
  font-weight: 800;
  letter-spacing: 0.02em;
}
.nav-link.active {
  color: #2f6b2c;
  background: rgba(118,184,47,0.10);
}
.nav-link::before {
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
}

#hero {
  padding: 96px 0 108px;
  min-height: clamp(720px, 84vh, 940px);
}
.hero-photo {
  filter: saturate(0.78) brightness(0.92) contrast(1.02);
}
.hero-overlay {
  background:
    radial-gradient(circle at 72% 32%, rgba(118,184,47,0.10) 0%, rgba(118,184,47,0.04) 20%, transparent 46%),
    linear-gradient(90deg, rgba(17,41,27,0.92) 0%, rgba(17,41,27,0.76) 34%, rgba(17,41,27,0.40) 66%, rgba(17,41,27,0.10) 100%),
    linear-gradient(to bottom, rgba(17,41,27,0.18) 0%, rgba(17,41,27,0.08) 42%, rgba(17,41,27,0.70) 100%);
}
.hero-kicker {
  background: rgba(216,146,10,0.10);
  border: 1px solid rgba(216,146,10,0.24);
  color: var(--amber-light);
  padding: 8px 18px;
}
h1.hero-h1 {
  font-size: clamp(2.9rem, 5.6vw, 4.55rem);
  line-height: 0.92;
  margin-bottom: 22px;
}
h1.hero-h1 span { color: #76b82f; text-shadow: 0 0 24px rgba(118,184,47,0.08); }
.hero-sub {
  font-size: 1.04rem;
  max-width: 36ch;
  color: rgba(255,255,255,0.80);
}
.hero-actions {
  gap: 14px;
  margin-bottom: 24px;
}
.hero-card {
  background: rgba(8,20,13,0.72);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-strong);
  padding: 34px 30px;
}
.hero-card-headline { font-size: 1.42rem; }
.hero-card-sub { color: rgba(255,255,255,0.54); }
.hcr-icon {
  background: rgba(216,146,10,0.14);
}
.hero-card-note {
  color: rgba(255,255,255,0.48);
}

#trust-strip {
  background: linear-gradient(90deg, #11291b 0%, #1a3b25 50%, #28542c 100%);
}
.trust-strip-inner {
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.trust-item {
  background: transparent;
  padding: 26px 26px;
  border-right: 0;
}
.trust-icon {
  background: rgba(118,184,47,0.10);
}
.trust-text strong { font-size: 0.92rem; }
.trust-text span { color: rgba(255,255,255,0.72); }

#inline-cta-band,
#services,
#final-cta {
  background-color: var(--green-deep);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0) 100%);
}
.inline-cta-headline {
  font-size: clamp(3.6rem, 5vw, 5rem);
  letter-spacing: -0.03em;
}
.inline-cta-headline span {
  color: #8ac64a;
}
.inline-cta-description {
  color: rgba(255,255,255,0.72);
}
.inline-cta-trust-item,
.inline-cta-phone-link {
  color: rgba(255,255,255,0.68);
}
.inline-cta-buttons .btn {
  min-width: 270px;
}

#services {
  padding-top: 124px;
}
.services-list-eyebrow {
  color: var(--amber-light);
}
.services-list-title {
  font-size: clamp(3.35rem, 5.6vw, 5.1rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
}
.services-title-accent {
  color: var(--green-accent);
}

.services-list-intro p {
  color: rgba(24,32,22,0.68);
}
.services-trust-pill {
  background: rgba(16,40,26,0.06);
  border: 1px solid rgba(16,40,26,0.08);
}
.svc-primary-grid {
  border-bottom: 1px solid rgba(24,32,22,0.08);
}
.svc-primary-item {
  padding: 40px 34px 34px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.svc-primary-item:hover {
  background: rgba(255,255,255,0.58);
  transform: translateY(-2px);
}
.svc-icon {
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.svc-primary-item h3 {
  letter-spacing: -0.02em;
}
.svc-primary-item p {
  color: rgba(24,32,22,0.66);
}
.svc-primary-cta {
  height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  box-shadow: none;
}

#why {
  background: #fbfaf7;
}
#why .section-title,
#faq-preview .section-title,
#final-cta h2 {
  letter-spacing: -0.03em;
}

.faq-question {
  border-radius: 0;
}
.faq-answer-inner {
  color: rgba(24,32,22,0.72);
}

#final-cta {
  overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 72% at 0% 100%, rgba(118,184,47,0.10) 0%, transparent 58%),
    radial-gradient(ellipse 58% 58% at 100% 0%, rgba(213,150,18,0.08) 0%, transparent 48%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
}
.final-cta-top .eyebrow {
  color: var(--amber-light);
}
.final-cta-top .eyebrow::before {
  background: var(--amber-light);
}
.final-cta-top h2 {
  font-size: clamp(2.8rem, 4.5vw, 4rem);
}
.final-cta-top .sub,
.cta-area-note,
.final-cta-proofline {
  color: rgba(255,255,255,0.74);
}
.final-cta-actions {
  gap: 14px;
}
.cta-phone-big {
  border-radius: 18px;
}
.cta-trust-item {
  color: rgba(255,255,255,0.80);
}
.cta-trust-item svg {
  color: var(--green-accent);
}

#site-footer {
  background: linear-gradient(180deg, #0d1e13 0%, #11291b 100%);
  padding: 88px 20px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.minimal-footer {
  max-width: 820px;
}
.minimal-footer-logo {
  width: 72px;
  margin-bottom: 22px;
  opacity: 0.96;
  filter: none;
}
.minimal-footer-text {
  max-width: 46ch;
  margin: 0 auto 24px;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.68);
}
.minimal-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.minimal-footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.minimal-footer-links a:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}
.minimal-footer-copy {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.48);
  text-transform: uppercase;
}

#floating-estimate-btn,
#mobile-call-btn {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .trust-item { padding: 22px 22px; }
}

@media (max-width: 860px) {
  #hero { padding: 86px 0 92px; }
  h1.hero-h1 { font-size: 2.7rem; }
  .inline-cta-headline,
  .final-cta-top h2,
  .services-list-title { font-size: clamp(2.45rem, 9vw, 3.3rem); }
  .minimal-footer-links { flex-direction: column; }
  .minimal-footer-links a { width: 100%; }
}


/* ───────── FINAL BUTTON SYSTEM OVERRIDES ───────── */
.btn,
.header-phone,
.hero-card-phone,
.svc-primary-cta,
.svc-additional-cta,
.btn-dark,
.btn-ghost-dark,
.btn-call,
.btn-outline-green,
.btn-white,
#floating-estimate-btn,
#mobile-call-btn,
.cta-phone-big {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn svg,
.header-phone svg,
.hero-card-phone svg,
.svc-primary-cta svg,
.svc-additional-cta svg,
.btn-dark svg,
.btn-ghost-dark svg,
.btn-call svg,
.btn-outline-green svg,
.btn-white svg,
#floating-estimate-btn svg,
#mobile-call-btn svg,
.cta-phone-big svg,
.svc-primary-cta span,
.svc-additional-cta span {
  color: currentColor;
}

.btn-primary,
.header-phone,
.hero-card-phone,
#mobile-call-btn,
.btn-white {
  background: linear-gradient(180deg, #e4aa2a 0%, #d59612 100%);
  color: #182016;
  border-color: #c78b12;
  box-shadow: 0 18px 40px rgba(197,136,17,0.26);
}

.btn-primary:hover,
.header-phone:hover,
.hero-card-phone:hover,
#mobile-call-btn:hover,
.btn-white:hover,
.btn-primary:focus-visible,
.header-phone:focus-visible,
.hero-card-phone:focus-visible,
#mobile-call-btn:focus-visible,
.btn-white:focus-visible {
  background: linear-gradient(180deg, #edb43a 0%, #de9a17 100%);
  border-color: #de9a17;
  color: #182016;
  box-shadow: 0 22px 46px rgba(197,136,17,0.33);
  transform: translateY(-2px);
  outline: none;
}

.svc-primary-cta,
.svc-additional-cta,
.btn-dark,
.btn-ghost-dark,
.btn-call,
.btn-outline-green,
#floating-estimate-btn,
.cta-phone-big {
  background: #11291b;
  color: #e4aa2a;
  border-color: rgba(228,170,42,0.28);
  box-shadow: 0 18px 42px rgba(8,20,13,0.18);
}

.svc-primary-cta:hover,
.svc-additional-cta:hover,
.btn-dark:hover,
.btn-ghost-dark:hover,
.btn-call:hover,
.btn-outline-green:hover,
#floating-estimate-btn:hover,
.cta-phone-big:hover,
.svc-primary-cta:focus-visible,
.svc-additional-cta:focus-visible,
.btn-dark:focus-visible,
.btn-ghost-dark:focus-visible,
.btn-call:focus-visible,
.btn-outline-green:focus-visible,
#floating-estimate-btn:focus-visible,
.cta-phone-big:focus-visible {
  background: #183724;
  color: #f0b53a;
  border-color: rgba(240,181,58,0.42);
  box-shadow: 0 22px 48px rgba(8,20,13,0.24);
  transform: translateY(-2px);
  outline: none;
}

.svc-primary-cta,
.svc-additional-cta {
  min-height: 50px;
  padding: 0 22px;
}

.svc-additional-cta {
  letter-spacing: 0.1em;
}

.cta-phone-big {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

#floating-estimate-btn {
  padding: 14px 22px;
}

#mobile-call-btn {
  border-radius: 22px 22px 0 0;
}


/* --- Brinton Builds subtle footer credit --- */
.bb-credit{
  display:inline-flex;
  align-items:center;
  gap:6px;
  opacity:.45;
  transition:opacity .25s ease, transform .25s ease;
}
.bb-credit:hover{
  opacity:.85;
  transform:translateY(-1px);
}
.bb-mark{
  height:16px;
  width:auto;
  opacity:.7;
  filter:grayscale(100%) contrast(1.1);
}


/* --- CTA consistency fix: service callout buttons use the same yellow system as other primary CTAs --- */
.svc-primary-cta,
.svc-additional-cta {
  background: #d48a00 !important;
  color: #111111 !important;
  border: 2px solid #d48a00 !important;
  box-shadow: 0 12px 24px rgba(212,138,0,0.20) !important;
}

.svc-primary-cta:hover,
.svc-primary-cta:focus-visible,
.svc-additional-cta:hover,
.svc-additional-cta:focus-visible {
  background: #b57500 !important;
  color: #111111 !important;
  border-color: #b57500 !important;
  box-shadow: 0 16px 28px rgba(181,117,0,0.26) !important;
  transform: translateY(-1px);
  outline: none;
}

.svc-primary-cta span,
.svc-additional-cta span {
  color: inherit !important;
}




/* ChatGPT visibility fix: services section was rendering too dark and losing content behind decorative layers */
#services {
  background: #f4f4ef !important;
  padding: 72px 0 56px !important;
  position: relative !important;
  overflow: hidden !important;
}
#services::before,
#services::after {
  content: none !important;
}
.services-list-wrap,
.services-list-header,
.svc-primary-grid,
.svc-additional-grid,
.svc-additional-divider {
  position: relative;
  z-index: 2;
}
.services-list-header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 42px;
  padding: 88px 0 34px !important;
  border-bottom: 1px solid rgba(24,32,22,0.08) !important;
}
.services-header-art {
  z-index: 0 !important;
  opacity: 0.34 !important;
  mix-blend-mode: normal !important;
  transform: translate(-52%, -55%) !important;
}
.services-header-copy,
.services-header-cta,
.svc-primary-item,
.svc-additional-item {
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  visibility: visible !important;
}
.services-list-eyebrow {
  color: var(--amber) !important;
}
.services-list-title,
.svc-primary-item h3,
.svc-additional-item h3 {
  color: var(--green-deep) !important;
}
.services-list-intro p,
.svc-primary-item p,
.svc-additional-item p,
.svc-additional-divider-label,
.services-header-note {
  color: rgba(24,32,22,0.72) !important;
}
.services-trust-pill {
  background: rgba(16,40,26,0.06) !important;
  border: 1px solid rgba(16,40,26,0.08) !important;
  color: var(--green-mid) !important;
}
.svc-primary-grid {
  border-bottom: 1px solid rgba(24,32,22,0.08) !important;
}
.svc-primary-item {
  padding: 38px 34px 34px !important;
  background: transparent !important;
  border-top: 1px solid rgba(24,32,22,0.08) !important;
  border-right: 1px solid rgba(24,32,22,0.08) !important;
}
.svc-primary-item:hover {
  background: rgba(255,255,255,0.62) !important;
  transform: translateY(-2px);
}
.svc-icon {
  background: var(--green-deep) !important;
  color: var(--amber-light) !important;
  border-radius: 16px !important;
}
.svc-primary-cta {
  background: var(--green-deep) !important;
  color: rgba(245,240,228,0.96) !important;
  border-color: var(--green-deep) !important;
}
.svc-additional-grid {
  row-gap: 26px !important;
}
@media (max-width: 960px) {
  #services {
    padding: 60px 0 48px !important;
  }
  .services-list-header {
    grid-template-columns: 1fr !important;
    align-items: start !important;
    gap: 18px !important;
    padding: 72px 0 30px !important;
  }
  .services-header-art {
    width: min(760px, 96vw) !important;
    transform: translate(-50%, -54%) !important;
  }
}
@media (max-width: 640px) {
  #services {
    padding: 48px 0 40px !important;
  }
  .services-list-header {
    padding: 56px 0 26px !important;
  }
}

/* --- Brinton Builds subtle footer credit --- */
.bb-credit{
  display:inline-flex;
  align-items:center;
  gap:6px;
  opacity:.45;
  transition:opacity .25s ease, transform .25s ease;
}
.bb-credit:hover{
  opacity:.85;
  transform:translateY(-1px);
}
.bb-mark{
  height:16px;
  width:auto;
  opacity:.7;
  filter:grayscale(100%) contrast(1.1);
}




@media (max-width: 768px){
  .header-phone{
    display:none !important;
  }
}

/* --- Brinton Builds subtle footer credit --- */
.bb-credit{
  display:inline-flex;
  align-items:center;
  gap:6px;
  opacity:.45;
  transition:opacity .25s ease, transform .25s ease;
}
.bb-credit:hover{
  opacity:.85;
  transform:translateY(-1px);
}
.bb-mark{
  height:16px;
  width:auto;
  opacity:.7;
  filter:grayscale(100%) contrast(1.1);
}




/* Brinton update: unify hero + need-help buttons to match reference */
.btn,
.header-phone,
.hero-card-phone,
.svc-primary-cta,
.svc-additional-cta,
.btn-dark,
.btn-ghost-dark,
.btn-call,
.btn-outline-green,
.btn-white,
#floating-estimate-btn,
#mobile-call-btn,
.cta-phone-big,
.footer-call-btn,
.footer-estimate-btn {
  min-height: 56px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions .btn,
.work-photos-gallery-actions .btn {
  min-width: 286px;
  justify-content: center;
}

.btn-primary,
.header-phone,
.hero-card-phone,
#mobile-call-btn,
.btn-white,
.footer-call-btn {
  background: #dca21b;
  color: #182016;
  border: 1px solid #dca21b;
  box-shadow: 0 14px 32px rgba(197,136,17,0.18);
}

.btn-primary:hover,
.header-phone:hover,
.hero-card-phone:hover,
#mobile-call-btn:hover,
.btn-white:hover,
.footer-call-btn:hover,
.btn-primary:focus-visible,
.header-phone:focus-visible,
.hero-card-phone:focus-visible,
#mobile-call-btn:focus-visible,
.btn-white:focus-visible,
.footer-call-btn:focus-visible {
  background: #c99114;
  border-color: #c99114;
  color: #182016;
  box-shadow: 0 18px 36px rgba(197,136,17,0.24);
  transform: translateY(-1px);
  outline: none;
}

.btn-call,
.btn-outline-green,
.svc-primary-cta,
.svc-additional-cta,
.btn-dark,
.btn-ghost-dark,
#floating-estimate-btn,
.cta-phone-big,
.footer-estimate-btn {
  background: rgba(255,255,255,0.02);
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.24);
  box-shadow: none;
}

.btn-call:hover,
.btn-outline-green:hover,
.svc-primary-cta:hover,
.svc-additional-cta:hover,
.btn-dark:hover,
.btn-ghost-dark:hover,
#floating-estimate-btn:hover,
.cta-phone-big:hover,
.footer-estimate-btn:hover,
.btn-call:focus-visible,
.btn-outline-green:focus-visible,
.svc-primary-cta:focus-visible,
.svc-additional-cta:focus-visible,
.btn-dark:focus-visible,
.btn-ghost-dark:focus-visible,
#floating-estimate-btn:focus-visible,
.cta-phone-big:focus-visible,
.footer-estimate-btn:focus-visible {
  background: #dca21b;
  color: #182016;
  border-color: #dca21b;
  box-shadow: 0 18px 36px rgba(197,136,17,0.24);
  transform: translateY(-1px);
  outline: none;
}

.hero-actions .btn-call,
.work-photos-gallery-actions .btn-call {
  background: rgba(7,18,13,0.08);
  border-color: rgba(255,255,255,0.26);
}

.hero-actions .btn-call:hover,
.hero-actions .btn-call:focus-visible,
.work-photos-gallery-actions .btn-call:hover,
.work-photos-gallery-actions .btn-call:focus-visible {
  background: #dca21b;
  border-color: #dca21b;
  color: #182016;
}

.hero-actions svg,
.work-photos-gallery-actions svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .hero-actions .btn,
  .work-photos-gallery-actions .btn {
    min-width: 0;
    width: 100%;
  }
}



/* Brinton update: establish clearer CTA hierarchy in the services section */
#services .services-header-button,
#services .svc-additional-cta.is-primary{
  background: #d48a00 !important;
  color: #111111 !important;
  border: 2px solid #d48a00 !important;
  box-shadow: 0 14px 28px rgba(212,138,0,0.20) !important;
}

#services .services-header-button:hover,
#services .services-header-button:focus-visible,
#services .svc-additional-cta.is-primary:hover,
#services .svc-additional-cta.is-primary:focus-visible{
  background: #b57500 !important;
  color: #111111 !important;
  border-color: #b57500 !important;
  box-shadow: 0 18px 34px rgba(181,117,0,0.26) !important;
  transform: translateY(-1px);
  outline: none;
}

#services .svc-additional-cta.is-secondary{
  background: rgba(255,255,255,0.92) !important;
  color: #143c2a !important;
  border: 1.5px solid rgba(20,60,42,0.18) !important;
  box-shadow: none !important;
}

#services .svc-additional-cta.is-secondary:hover,
#services .svc-additional-cta.is-secondary:focus-visible{
  background: #d48a00 !important;
  color: #111111 !important;
  border-color: #d48a00 !important;
  box-shadow: 0 14px 28px rgba(212,138,0,0.18) !important;
  transform: translateY(-1px);
  outline: none;
}

#services .svc-additional-cta.is-primary span,
#services .svc-additional-cta.is-secondary span{
  color: inherit !important;
}

#services .svc-primary-item .svc-additional-cta,
#services .svc-additional-item .svc-additional-cta{
  min-height: 52px;
  padding: 0 22px;
}

#services .svc-additional-item .svc-additional-cta{
  letter-spacing: 0.095em;
}

@media (max-width: 860px){
  #services .services-header-button,
  #services .svc-primary-item .svc-additional-cta,
  #services .svc-additional-item .svc-additional-cta{
    width: 100%;
    justify-content: center;
  }
}



/* Brinton update: remove templated service borders for a cleaner editorial layout */
#services .svc-primary-grid {
  border-bottom: none !important;
}

#services .svc-primary-item {
  border-top: none !important;
  border-right: none !important;
  background: transparent !important;
}

#services .svc-primary-item:last-child {
  border-right: none !important;
}

#services .svc-primary-item:hover {
  background: rgba(255,255,255,0.38) !important;
}

@media (max-width: 960px) {
  #services .svc-primary-item,
  #services .svc-primary-item:nth-child(2),
  #services .svc-primary-item:nth-child(3) {
    border-top: none !important;
    border-right: none !important;
  }
}

@media (max-width: 720px) {
  #services .svc-primary-item {
    border-top: none !important;
    border-right: none !important;
  }
}



/* ─── ELITE FOOTER REFINEMENT ─── */
.elite-footer {
  font-family: var(--body);
  background:
    radial-gradient(ellipse at top left, rgba(95,174,62,0.06) 0%, transparent 42%),
    linear-gradient(180deg, #0a1812 0%, #08140f 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.elite-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0) 24%),
    radial-gradient(circle at 80% 0%, rgba(212,138,0,0.06) 0%, transparent 28%);
  pointer-events: none;
}
.elite-footer-main {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 68px 24px 50px;
}
.elite-footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,1.12fr) minmax(160px,0.72fr) minmax(230px,0.86fr) minmax(300px,1fr);
  gap: 44px 56px;
  align-items: start;
}
.elite-footer-form-wrap {
  min-width: 0;
}
.elite-footer-form-intro {
  margin: 0 0 18px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245,242,235,0.62);
}
.elite-footer-form {
  display: grid;
  gap: 12px;
}
.elite-footer-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.elite-footer-field,
.elite-footer-select,
.elite-footer-textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.05);
  color: #f5f2eb;
  font: inherit;
  font-size: 0.92rem;
  line-height: 1.4;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.elite-footer-field::placeholder,
.elite-footer-textarea::placeholder {
  color: rgba(245,242,235,0.38);
}
.elite-footer-select {
  appearance: none;
}
.elite-footer-select option {
  color: #111;
}
.elite-footer-textarea {
  min-height: 124px;
  resize: vertical;
}
.elite-footer-field:focus,
.elite-footer-select:focus,
.elite-footer-textarea:focus {
  outline: none;
  border-color: rgba(212,138,0,0.75);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 4px rgba(212,138,0,0.12);
}
.elite-footer-form-submit {
  justify-content: center;
  width: 100%;
  border: 0;
}
.elite-footer-form-note {
  margin: 2px 0 0;
  font-size: 0.76rem;
  line-height: 1.55;
  color: rgba(245,242,235,0.38);
}
.elite-footer-brand {
  max-width: 460px;
}
.elite-footer-brand-name {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2vw, 1.85rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #f5f2eb;
}
.elite-footer-brand-copy {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.9;
  color: rgba(245,242,235,0.72);
}
.elite-footer-label {
  margin: 0 0 18px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.34);
}
.elite-footer-nav,
.elite-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.elite-footer-link,
.elite-footer-phone,
.elite-footer-credit a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  transition:
    color 0.24s ease,
    opacity 0.24s ease,
    transform 0.24s cubic-bezier(.22,.8,.32,1);
}
.elite-footer-link {
  position: relative;
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(245,242,235,0.64);
  padding: 4px 0;
}
.elite-footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: rgba(212,138,0,0.8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s cubic-bezier(.22,.8,.32,1);
}
.elite-footer-link:hover,
.elite-footer-link:focus-visible {
  color: rgba(255,255,255,0.94);
  transform: translateX(3px);
  outline: none;
}
.elite-footer-link:hover::after,
.elite-footer-link:focus-visible::after {
  transform: scaleX(1);
}
.elite-footer-phone {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.82);
  padding: 4px 0 2px;
}
.elite-footer-phone:hover,
.elite-footer-phone:focus-visible {
  color: #fff;
  transform: translateX(3px);
  outline: none;
}
.elite-footer-location {
  margin: 2px 0 0;
  font-size: 0.92rem;
  line-height: 1.78;
  color: rgba(245,242,235,0.48);
  max-width: 26ch;
}
.elite-footer-email {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 2px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245,242,235,0.56);
  text-decoration: none;
  word-break: break-word;
  transition:
    color 0.24s ease,
    opacity 0.24s ease,
    transform 0.24s cubic-bezier(.22,.8,.32,1);
}
.elite-footer-email:hover,
.elite-footer-email:focus-visible {
  color: rgba(255,255,255,0.9);
  transform: translateX(3px);
  outline: none;
}
.elite-footer-cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-size: 0.95rem;
  font-weight: 700;
  color: #d7a63d;
  text-decoration: none;
  transition:
    color 0.24s ease,
    transform 0.24s cubic-bezier(.22,.8,.32,1),
    letter-spacing 0.24s ease;
}
.elite-footer-cta .elite-footer-arrow {
  display: inline-block;
  transition: transform 0.24s cubic-bezier(.22,.8,.32,1);
}
.elite-footer-cta:hover,
.elite-footer-cta:focus-visible {
  color: #f0bb4c;
  transform: translateX(4px);
  letter-spacing: 0.01em;
  outline: none;
}
.elite-footer-cta:hover .elite-footer-arrow,
.elite-footer-cta:focus-visible .elite-footer-arrow {
  transform: translateX(3px);
}
.elite-footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 24px 22px;
}
.elite-footer-bottom-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
}
.elite-footer-meta {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(245,242,235,0.28);
}
.elite-footer-meta.is-quiet {
  color: rgba(245,242,235,0.22);
}
.elite-footer-credit a {
  color: rgba(245,242,235,0.44);
}
.elite-footer-credit a:hover,
.elite-footer-credit a:focus-visible {
  color: rgba(255,255,255,0.82);
  transform: translateY(-1px);
  outline: none;
}
@media (max-width: 920px) {
  .elite-footer-main {
    padding: 58px 24px 44px;
  }
  .elite-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 40px;
  }
  .elite-footer-brand,
  .elite-footer-form-wrap {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .elite-footer-main {
    padding: 50px 20px 38px;
  }
  .elite-footer-grid,
  .elite-footer-form-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .elite-footer-bottom {
    padding: 16px 20px 20px;
  }
  .elite-footer-bottom-inner {
    justify-content: flex-start;
  }
}


/* ───────── ELITE CONSISTENCY OVERRIDES ───────── */
:root {
  --green-deep: #11291b;
  --green-mid: #2f6b2c;
  --green-accent: #76b82f;
  --amber: #d59612;
  --amber-light: #e4aa2a;
  --amber-hover: #bc8210;
  --off-white: #f5f2eb;
  --stone: #ebe6dc;
  --text: #182016;
  --text-muted: #54604f;
  --border: rgba(24,32,22,0.10);
  --radius: 18px;
  --shadow-soft: 0 18px 46px rgba(16,40,26,0.08);
  --shadow-strong: 0 28px 70px rgba(8,20,13,0.18);
}

html { font-size: 17px; }
body {
  color: var(--text);
  background: #fbfaf7;
  letter-spacing: -0.01em;
}
section { position: relative; }
.wrap { max-width: 1200px; }

h1, h2, h3 {
  letter-spacing: -0.03em;
}

.btn,
.header-phone,
.hero-card-phone,
.svc-primary-cta,
.btn-dark,
.btn-ghost-dark,
#floating-estimate-btn,
#mobile-call-btn,
.faq-question,
.services-trust-pill,
.trust-item,
.hero-card,
.hero-kicker {
  border-radius: 18px;
}

.btn {
  min-height: 54px;
  padding: 15px 28px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-primary,
.header-phone,
.hero-card-phone,
#floating-estimate-btn {
  box-shadow: 0 14px 34px rgba(216,146,10,0.22);
}
.btn-primary:hover,
.header-phone:hover,
.hero-card-phone:hover,
#floating-estimate-btn:hover {
  box-shadow: 0 18px 40px rgba(216,146,10,0.28);
}
.btn-call,
.btn-outline-green,
.btn-ghost-dark {
  border-width: 1.5px;
}

#site-header {
  background: rgba(251,250,247,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
#site-header .inner {
  min-height: 84px;
  background: rgba(251,250,247,0.78);
}
.nav-link {
  font-weight: 800;
  letter-spacing: 0.02em;
}
.nav-link.active {
  color: #2f6b2c;
  background: rgba(118,184,47,0.10);
}
.nav-link::before {
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
}

#hero {
  padding: 96px 0 108px;
  min-height: clamp(720px, 84vh, 940px);
}
.hero-photo {
  filter: saturate(0.78) brightness(0.92) contrast(1.02);
}
.hero-overlay {
  background:
    radial-gradient(circle at 72% 32%, rgba(118,184,47,0.10) 0%, rgba(118,184,47,0.04) 20%, transparent 46%),
    linear-gradient(90deg, rgba(17,41,27,0.92) 0%, rgba(17,41,27,0.76) 34%, rgba(17,41,27,0.40) 66%, rgba(17,41,27,0.10) 100%),
    linear-gradient(to bottom, rgba(17,41,27,0.18) 0%, rgba(17,41,27,0.08) 42%, rgba(17,41,27,0.70) 100%);
}
.hero-kicker {
  background: rgba(216,146,10,0.10);
  border: 1px solid rgba(216,146,10,0.24);
  color: var(--amber-light);
  padding: 8px 18px;
}
h1.hero-h1 {
  font-size: clamp(2.9rem, 5.6vw, 4.55rem);
  line-height: 0.92;
  margin-bottom: 22px;
}
h1.hero-h1 span { color: #76b82f; text-shadow: 0 0 24px rgba(118,184,47,0.08); }
.hero-sub {
  font-size: 1.04rem;
  max-width: 65ch;
  color: rgba(255,255,255,0.80);
}
.hero-actions {
  gap: 14px;
  margin-bottom: 24px;
}
.hero-card {
  background: rgba(8,20,13,0.72);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-strong);
  padding: 34px 30px;
}
.hero-card-headline { font-size: 1.42rem; }
.hero-card-sub { color: rgba(255,255,255,0.54); }
.hcr-icon {
  background: rgba(216,146,10,0.14);
}
.hero-card-note {
  color: rgba(255,255,255,0.48);
}

#trust-strip {
  background: linear-gradient(90deg, #11291b 0%, #1a3b25 50%, #28542c 100%);
}
.trust-strip-inner {
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.trust-item {
  background: transparent;
  padding: 26px 26px;
  border-right: 0;
}
.trust-icon {
  background: rgba(118,184,47,0.10);
}
.trust-text strong { font-size: 0.92rem; }
.trust-text span { color: rgba(255,255,255,0.72); }

#inline-cta-band,
#services,
#final-cta {
  background-color: var(--green-deep);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0) 100%);
}
.inline-cta-headline {
  font-size: clamp(2.8rem, 4.1vw, 3.9rem);
  letter-spacing: -0.03em;
}
.inline-cta-headline span {
  color: #8ac64a;
}
.inline-cta-description {
  color: rgba(255,255,255,0.72);
}
.inline-cta-trust-item,
.inline-cta-phone-link {
  color: rgba(255,255,255,0.68);
}
.inline-cta-buttons .btn {
  min-width: 270px;
}

#services {
  padding-top: 124px;
}
.services-list-eyebrow {
  color: var(--amber-light);
}
.services-list-title {
  font-size: clamp(3.35rem, 5.6vw, 5.1rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
}
.services-list-intro p {
  color: rgba(24,32,22,0.68);
}
.services-trust-pill {
  background: rgba(16,40,26,0.06);
  border: 1px solid rgba(16,40,26,0.08);
}
.svc-primary-grid {
  border-bottom: 1px solid rgba(24,32,22,0.08);
}
.svc-primary-item {
  padding: 40px 34px 34px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.svc-primary-item:hover {
  background: rgba(255,255,255,0.58);
  transform: translateY(-2px);
}
.svc-icon {
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.svc-primary-item h3 {
  letter-spacing: -0.02em;
}
.svc-primary-item p {
  color: rgba(24,32,22,0.66);
}
.svc-primary-cta {
  height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  box-shadow: none;
}

#why {
  background: #fbfaf7;
}
#why .section-title,
#faq-preview .section-title,
#final-cta h2 {
  letter-spacing: -0.03em;
}

.faq-question {
  border-radius: 0;
}
.faq-answer-inner {
  color: rgba(24,32,22,0.72);
}

#final-cta {
  overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 72% at 0% 100%, rgba(118,184,47,0.10) 0%, transparent 58%),
    radial-gradient(ellipse 58% 58% at 100% 0%, rgba(213,150,18,0.08) 0%, transparent 48%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
}
.final-cta-top .eyebrow {
  color: var(--amber-light);
}
.final-cta-top .eyebrow::before {
  background: var(--amber-light);
}
.final-cta-top h2 {
  font-size: clamp(2.8rem, 4.5vw, 4rem);
}
.final-cta-top .sub,
.cta-area-note,
.final-cta-proofline {
  color: rgba(255,255,255,0.74);
}
.final-cta-actions {
  gap: 14px;
}
.cta-phone-big {
  border-radius: 18px;
}
.cta-trust-item {
  color: rgba(255,255,255,0.80);
}
.cta-trust-item svg {
  color: var(--green-accent);
}

#site-footer {
  background: linear-gradient(180deg, #0d1e13 0%, #11291b 100%);
  padding: 88px 20px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.minimal-footer {
  max-width: 820px;
}
.minimal-footer-logo {
  width: 72px;
  margin-bottom: 22px;
  opacity: 0.96;
  filter: none;
}
.minimal-footer-text {
  max-width: 46ch;
  margin: 0 auto 24px;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.68);
}
.minimal-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.minimal-footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.minimal-footer-links a:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}
.minimal-footer-copy {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.48);
  text-transform: uppercase;
}

#floating-estimate-btn,
#mobile-call-btn {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .trust-item { padding: 22px 22px; }
}

@media (max-width: 860px) {
  #hero { padding: 86px 0 92px; }
  h1.hero-h1 { font-size: 2.7rem; }
  .inline-cta-headline,
  .final-cta-top h2,
  .services-list-title { font-size: clamp(2.45rem, 9vw, 3.3rem); }
  .minimal-footer-links { flex-direction: column; }
  .minimal-footer-links a { width: 100%; }
}


/* --- Brinton Builds subtle footer credit --- */
.bb-credit{
  display:inline-flex;
  align-items:center;
  gap:6px;
  opacity:.45;
  transition:opacity .25s ease, transform .25s ease;
}
.bb-credit:hover{
  opacity:.85;
  transform:translateY(-1px);
}
.bb-mark{
  height:16px;
  width:auto;
  opacity:.7;
  filter:grayscale(100%) contrast(1.1);
}
