/* ==========================================================================
   J&K Stump Grinding — site styles
   Palette taken from the client's existing brand: warm near-black brown
   (#241700) with a chartreuse accent (#CCC000) and the circular badge logo.
   Authored by hand; no framework, no build step.
   ========================================================================== */

:root {
  --brand-900: #1A1000;   /* utility bar, footer */
  --brand-800: #241700;   /* header, dark sections — sampled from the logo plate */
  --brand-700: #33230A;
  --brand-600: #4A3418;
  --lime:      #CCC000;   /* sampled from the client's CTA button */
  --lime-dark: #AFA400;
  --lime-soft: #F4F1CE;
  --forest:    #2E4A2C;
  --forest-lt: #3F6339;
  --wood:      #C9A173;
  --wood-dark: #A87F51;
  --bark:      #3D2C1E;
  --cream:     #FBF8F1;
  --sand:      #F3EEE2;
  --line:      #E6DFD0;
  --line-dark: rgba(255,255,255,.16);
  --ink:       #1E1808;
  --muted:     #6B6152;

  --f-display: 'Archivo Black', 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --f-head: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --sh-sm: 0 1px 2px rgba(26,16,0,.07), 0 2px 6px rgba(26,16,0,.05);
  --sh-md: 0 6px 18px rgba(26,16,0,.10);
  --sh-lg: 0 22px 50px rgba(26,16,0,.18);
  --ease: cubic-bezier(.22,1,.36,1);
  --wrap: 1180px;
  --nav-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--forest); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--lime-dark); }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2 { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; line-height: 1.02; letter-spacing: -.01em; color: var(--brand-800); }
h3, h4 { font-family: var(--f-head); font-weight: 700; line-height: 1.2; letter-spacing: -.012em; color: var(--brand-800); }
h1 { font-size: clamp(34px, 5vw, 58px); }
h2 { font-size: clamp(28px, 3.9vw, 46px); }
h3 { font-size: clamp(19px, 1.7vw, 23px); }
h4 { font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
p { margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.container--narrow { max-width: 820px; }
.center { text-align: center; }
.muted { color: var(--muted); }

.skip-link {
  position: absolute; left: 12px; top: 0; z-index: 200;
  transform: translateY(-140%); transition: transform .18s var(--ease);
  background: var(--lime); color: var(--brand-800); padding: 10px 18px;
  border-radius: 0 0 var(--r-sm) var(--r-sm); font-weight: 700;
}
.skip-link:focus { transform: translateY(0); color: var(--brand-800); }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 4px; }

/* ── Buttons ───────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-head); font-weight: 700; font-size: 15px; letter-spacing: .04em; text-transform: uppercase;
  padding: 15px 26px; border-radius: var(--r-sm); border: 2px solid transparent;
  cursor: pointer; text-align: center; line-height: 1.2;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--lime); color: var(--brand-800); box-shadow: 0 8px 20px rgba(204,192,0,.26); }
.btn--primary:hover { background: var(--lime-dark); color: var(--brand-900); box-shadow: 0 12px 26px rgba(204,192,0,.32); }
.btn--dark { background: var(--brand-800); color: var(--cream); }
.btn--dark:hover { background: var(--brand-700); color: #fff; }
.btn--outline { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.05); }
.btn--outline:hover { background: #fff; color: var(--brand-800); border-color: #fff; }
.btn--ghost { border-color: rgba(255,255,255,.32); color: #fff; background: transparent; }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn--sm { padding: 11px 18px; font-size: 13.5px; }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--block { width: 100%; }
.btnrow { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }

.eyebrow {
  display: inline-block; font-family: var(--f-head); font-size: 12px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--forest); margin-bottom: 16px;
}
.eyebrow--light { color: var(--lime); }

/* ── Top bar + nav ─────────────────────────────────────────────────── */

.topbar { background: var(--brand-900); color: rgba(255,255,255,.72); font-size: 13.5px; }
.topbar__in { display: flex; align-items: center; gap: 26px; height: 40px; justify-content: flex-end; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar__item svg { width: 15px; height: 15px; color: var(--lime); }
.topbar__in > .topbar__item:first-child { margin-right: auto; }
.topbar__phone { color: #fff; font-weight: 600; }
.topbar__phone:hover { color: var(--lime); }

.nav {
  position: sticky; top: 0; z-index: 90; background: var(--brand-800);
  border-bottom: 3px solid var(--lime);
  transition: box-shadow .2s var(--ease);
}
.nav.is-stuck { box-shadow: var(--sh-lg); }
.nav__in { display: flex; align-items: center; gap: 20px; height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.brand__mark { width: 56px; height: 56px; border-radius: 10px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-family: var(--f-display); font-size: 21px; font-weight: 400; letter-spacing: .01em; color: #fff; }
.brand__text em { font-style: normal; font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--lime); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 2px; margin-left: 14px; }
.nav__links a {
  font-family: var(--f-head); font-size: 14px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  white-space: nowrap; color: rgba(255,255,255,.86); padding: 10px 11px; border-radius: var(--r-sm);
  transition: background .16s var(--ease), color .16s var(--ease);
}
.nav__links a:hover { background: rgba(255,255,255,.08); color: #fff; }
.nav__links a[aria-current="page"] { color: var(--lime); background: rgba(204,192,0,.12); }
.nav__cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav__cta .btn { white-space: nowrap; }
.nav__toggle {
  display: none; margin-left: auto; background: var(--lime); color: var(--brand-800); border: 0;
  width: 48px; height: 48px; border-radius: var(--r-sm); align-items: center; justify-content: center; cursor: pointer;
}
.nav__toggle svg { width: 24px; height: 24px; }

/* Desktop hover submenus (Services / Areas) */
.nav__item.has-sub { position: relative; display: inline-flex; }
.nav__item.has-sub > a { display: inline-flex; align-items: center; gap: 5px; }
.nav__item.has-sub > a svg { width: 13px; height: 13px; opacity: .7; transition: transform .18s var(--ease); }
.nav__item.has-sub:hover > a svg, .nav__item.has-sub:focus-within > a svg { transform: rotate(180deg); }
.submenu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 280px; z-index: 95;
  display: flex; flex-direction: column; padding: 10px;
  background: var(--brand-900); border: 1px solid var(--line-dark); border-top: 3px solid var(--lime);
  border-radius: 0 0 var(--r-md) var(--r-md); box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s linear .18s;
}
.nav__item.has-sub:hover .submenu, .nav__item.has-sub:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s linear 0s;
}
.submenu::before { content: ''; position: absolute; top: -13px; left: 0; right: 0; height: 13px; }
.submenu a { padding: 11px 14px; border-radius: var(--r-sm); font-size: 14px; text-transform: none; letter-spacing: .01em; }
.submenu__all { margin-top: 6px; border-top: 1px solid var(--line-dark); color: var(--lime) !important; display: inline-flex; align-items: center; gap: 8px; }
.submenu__all svg { width: 15px; height: 15px; }

/* ── Fullscreen mobile menu ────────────────────────────────────────── */

.mobilemenu {
  display: flex; flex-direction: column;
  position: fixed; inset: 0; z-index: 120;
  background: var(--brand-900); color: #fff;
  opacity: 0; visibility: hidden; transform: translateY(-8px); pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s linear .22s;
}
.mobilemenu.is-open {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s linear 0s;
}
.mobilemenu__head {
  position: sticky; top: 0; z-index: 5; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; min-height: 72px; background: var(--brand-900); border-bottom: 1px solid var(--line-dark);
}
.mobilemenu__close {
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.08); color: #fff; display: grid; place-items: center;
}
.mobilemenu__close svg { width: 22px; height: 22px; }
.mobilemenu__scroll { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 10px 22px 26px; }
.mobilemenu .mm-link {
  display: block; padding: 16px 4px; font-family: var(--f-head); font-weight: 700; font-size: 19px;
  color: rgba(255,255,255,.92); border-bottom: 1px solid var(--line-dark);
}
.mobilemenu .mm-link[aria-current="page"] { color: var(--lime); }
.mobilemenu .mm-sub { display: flex; flex-wrap: wrap; gap: 6px 14px; padding: 10px 4px 16px; border-bottom: 1px solid var(--line-dark); }
.mobilemenu .mm-sub a { font-size: 14.5px; color: rgba(255,255,255,.62); padding: 4px 0; }
.mobilemenu .mm-sub a:hover { color: var(--lime); }
.mobilemenu__foot {
  position: sticky; bottom: 0; z-index: 5; display: grid; gap: 10px;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
  background: var(--brand-900); border-top: 1px solid var(--line-dark);
  box-shadow: 0 -8px 20px rgba(0,0,0,.25);
}
.mobilemenu__foot .btn { width: 100%; }

/* ── Hero ──────────────────────────────────────────────────────────── */

.hero { position: relative; background: var(--brand-900); color: #fff; overflow: hidden; }
/* The photo layer sits under the scrim and over the illustrated fallback:
   drop a real job photo at /assets/img/hero-bg.jpg and it takes over with no
   code change; while the file is absent the gradients below show through. */
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(26,16,0,.95) 0%, rgba(26,16,0,.80) 44%, rgba(26,16,0,.42) 100%),
    url('/assets/img/hero-bg.jpg') center/cover no-repeat,
    radial-gradient(880px 520px at 76% 22%, rgba(46,74,44,.62), transparent 64%),
    radial-gradient(680px 420px at 6% 94%, rgba(204,192,0,.13), transparent 62%),
    linear-gradient(160deg, #1A1000 0%, #33230A 55%, #1A1000 100%);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0; opacity: .3;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 2px, transparent 2px 9px);
}
.hero__in {
  position: relative; padding: clamp(72px, 9vw, 132px) 22px clamp(76px, 9vw, 136px);
}
.hero__copy { max-width: 730px; }
.hero h1 { color: #fff; }
.hero h1 .hl { color: var(--lime); }
.hero__sub { max-width: 54ch; margin-top: 22px; font-size: clamp(17px, 1.5vw, 19.5px); color: rgba(255,255,255,.84); }
.hero__sub a { color: #fff; text-decoration: underline; text-decoration-color: var(--lime); text-underline-offset: 3px; }
.hero__sub a:hover { color: var(--lime); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line-dark); }
.hero__chips li { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.88); }
.hero__chips svg { width: 15px; height: 15px; color: var(--lime); flex: none; }


/* ── Trust bar ─────────────────────────────────────────────────────── */

.trustbar { background: var(--brand-700); color: #fff; }
.trustbar__in { display: grid; grid-template-columns: repeat(4, 1fr); }
.trustbar__item { padding: 26px 18px; text-align: center; border-right: 1px solid var(--line-dark); }
.trustbar__item:last-child { border-right: 0; }
.trustbar__item strong { display: block; font-family: var(--f-display); font-size: clamp(18px, 2vw, 24px); color: var(--lime); white-space: nowrap; }
.trustbar__item strong span { display: inline; font: inherit; color: inherit; margin: 0; }
.trustbar__item > span { display: block; font-size: 13.5px; color: rgba(255,255,255,.72); margin-top: 5px; }

/* ── Sections ──────────────────────────────────────────────────────── */

.section { padding: clamp(62px, 8vw, 104px) 0; }
.section--alt { background: var(--sand); }
.section--dark { background: var(--brand-800); color: rgba(255,255,255,.82); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section__head { max-width: 720px; margin-bottom: 46px; }
.section__head--light .section__lead { color: rgba(255,255,255,.74); }
.center .section__head, .section__head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section__lead { font-size: 18px; color: var(--muted); margin-top: 16px; }
.section__foot { margin-top: 44px; display: flex; justify-content: center; }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Service cards ─────────────────────────────────────────────────── */

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px 28px; box-shadow: var(--sh-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--lime); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px;
  border-radius: 12px; background: var(--brand-800); color: var(--lime); margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card a h3 { transition: color .16s var(--ease); }
.card a:hover h3 { color: var(--lime-dark); }
.card p { color: var(--muted); font-size: 15.8px; }
.card__list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.card__list li { display: flex; gap: 9px; font-size: 14.6px; color: var(--ink); }
.card__list svg { width: 15px; height: 15px; color: var(--forest); flex: none; margin-top: 4px; }
.card__link {
  margin-top: auto; padding-top: 20px; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-head); font-weight: 700; font-size: 13.5px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--brand-800);
}
.card__link:hover { color: var(--lime-dark); }
.card__link svg { width: 17px; height: 17px; transition: transform .18s var(--ease); }
.card__link:hover svg { transform: translateX(4px); }

/* ── Steps ─────────────────────────────────────────────────────────── */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { position: relative; padding-top: 30px; border-top: 2px solid var(--line-dark); }
.step__num {
  position: absolute; top: -19px; left: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; background: var(--lime); color: var(--brand-800);
  font-family: var(--f-display); font-size: 14px;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 15.6px; color: rgba(255,255,255,.74); }

/* ── Why ───────────────────────────────────────────────────────────── */

.why { background: #fff; border-radius: var(--r-lg); padding: 28px 24px; border: 1px solid var(--line); }
.why__icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--lime-soft); color: var(--brand-700); margin-bottom: 16px; }
.why__icon svg { width: 24px; height: 24px; }
.why h3 { margin-bottom: 9px; }
.why p { font-size: 15.4px; color: var(--muted); }

/* ── Work / gallery ────────────────────────────────────────────────── */

.work__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.work__item:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.work__item img { width: 100%; height: 224px; object-fit: cover; background: var(--brand-800); }
.work__item figcaption { padding: 22px 24px 26px; }
.work__meta { display: block; font-family: var(--f-head); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--lime-dark); margin-bottom: 8px; }
.work__item h3 { margin-bottom: 8px; }
.work__item p { font-size: 15.2px; color: var(--muted); }

/* ── Quotes ────────────────────────────────────────────────────────── */

.quote {
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--lime);
  border-radius: var(--r-md); padding: 28px 26px; box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
}
.stars { display: inline-flex; gap: 3px; color: var(--lime-dark); margin-bottom: 14px; }
.stars svg { width: 17px; height: 17px; }
.quote p { font-size: 17.5px; line-height: 1.6; color: var(--ink); font-weight: 500; }
.quote cite { margin-top: auto; padding-top: 18px; font-style: normal; display: flex; flex-direction: column; }
.quote cite strong { font-family: var(--f-head); font-size: 15px; color: var(--brand-800); }
.quote cite span { font-size: 13.5px; color: var(--muted); }

/* ── Service area ──────────────────────────────────────────────────── */

.area { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: start; }
.area__copy p { color: var(--muted); font-size: 17px; margin-bottom: 24px; }
.area__cities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 16px; }
.area__cities li { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--ink);
  padding: 9px 12px; background: var(--sand); border-radius: var(--r-sm); }
.area__cities svg { width: 14px; height: 14px; color: var(--forest); flex: none; }

/* ── FAQ ───────────────────────────────────────────────────────────── */

.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.faq__item[open] { border-color: var(--lime); box-shadow: var(--sh-sm); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 20px 22px; display: flex; align-items: center; gap: 16px;
  font-family: var(--f-head); font-weight: 700; font-size: 17px; color: var(--brand-800);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev { margin-left: auto; color: var(--lime-dark); display: inline-flex; transition: transform .22s var(--ease); }
.faq__chev svg { width: 20px; height: 20px; }
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__body { padding: 0 22px 22px; }
.faq__body p { color: var(--muted); font-size: 16px; }

/* ── Detail rows (services page) ───────────────────────────────────── */

.detail { display: flex; flex-direction: column; gap: 18px; }
.detail__row {
  display: grid; grid-template-columns: 76px 1fr; gap: 24px; scroll-margin-top: 130px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 30px;
}
.detail__mark span {
  display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px;
  border-radius: 14px; background: var(--brand-800); color: var(--lime); font-family: var(--f-display); font-size: 19px;
}
.detail__body h3 { margin-bottom: 10px; }
.detail__body p { color: var(--muted); }
.detail__list { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 16px 0 4px; }
.detail__list li { display: inline-flex; align-items: center; gap: 8px; font-size: 14.6px; }
.detail__list svg { width: 15px; height: 15px; color: var(--forest); }

.factor { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; }
.factor h3 { font-size: 18px; margin-bottom: 8px; }
.factor p { font-size: 15.4px; color: var(--muted); }
.note { display: flex; gap: 10px; align-items: center; margin-top: 26px; padding: 16px 20px;
  background: var(--brand-800); color: #fff; border-radius: var(--r-md); font-size: 15.5px; }
.note svg { width: 18px; height: 18px; color: var(--lime); flex: none; }

/* ── About ─────────────────────────────────────────────────────────── */

.about { display: grid; grid-template-columns: 1.15fr .85fr; gap: 52px; align-items: start; }
.about__copy p { font-size: 17.5px; color: var(--ink); margin-bottom: 18px; }
.about__copy .btn { margin-top: 12px; }
.about__card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }
.about__card img { width: 100%; background: var(--brand-800); }
.about__facts { padding: 8px 24px 22px; }
.about__facts li { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.about__facts li:last-child { border-bottom: 0; }
.about__facts strong { font-family: var(--f-head); color: var(--brand-800); }
.about__facts span { color: var(--muted); text-align: right; }

/* ── Page hero (subpages) ──────────────────────────────────────────── */

.pagehero {
  background:
    radial-gradient(720px 380px at 84% 8%, rgba(46,74,44,.55), transparent 64%),
    linear-gradient(160deg, #1A1000, #33230A);
  color: #fff; padding: clamp(46px, 6vw, 78px) 0 clamp(52px, 6vw, 82px);
  border-bottom: 3px solid var(--lime);
}
.pagehero h1 { color: #fff; font-size: clamp(30px, 4.2vw, 50px); }
.pagehero__lead { margin-top: 18px; max-width: 62ch; font-size: 18px; color: rgba(255,255,255,.8); }
.crumbs { font-size: 13.5px; color: rgba(255,255,255,.58); margin-bottom: 20px; display: flex; gap: 8px; }
.crumbs a { color: rgba(255,255,255,.84); }
.crumbs a:hover { color: var(--lime); }

/* ── CTA banner ────────────────────────────────────────────────────── */

.cta { background: linear-gradient(120deg, var(--brand-700), var(--brand-900) 74%); color: #fff; border-top: 3px solid var(--lime); }
.cta__in {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: clamp(44px, 5.5vw, 68px) 22px;
}
.cta h2 { color: #fff; max-width: 22ch; }
.cta p { margin-top: 14px; max-width: 56ch; color: rgba(255,255,255,.78); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; flex: none; }

/* ── Contact ───────────────────────────────────────────────────────── */

.contact { display: grid; grid-template-columns: 1.25fr .75fr; gap: 44px; align-items: start; }
.contact h2 { margin-bottom: 10px; }
.form { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field > span { font-size: 14px; font-weight: 600; color: var(--brand-800); }
.field em { font-style: normal; color: var(--lime-dark); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; font-size: 16px; transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--lime-dark); box-shadow: 0 0 0 3px rgba(204,192,0,.22);
}
.field input.is-invalid, .field textarea.is-invalid { border-color: #B33A2B; box-shadow: 0 0 0 3px rgba(179,58,43,.12); }
.form__note { display: flex; gap: 9px; align-items: flex-start; font-size: 14.6px; color: var(--muted); }
.form__note svg { width: 16px; height: 16px; color: var(--forest); flex: none; margin-top: 4px; }
.form__status { font-size: 15px; font-weight: 600; min-height: 22px; }
.form__status.is-ok { color: var(--forest); }
.form__status.is-err { color: #B33A2B; }

.contact__side { display: flex; flex-direction: column; gap: 18px; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; }
.panel h3 { font-size: 18px; margin-bottom: 14px; }
.panel__big { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-display);
  font-size: 22px; color: var(--brand-800); }
.panel__big svg { width: 21px; height: 21px; color: var(--lime-dark); }
.panel__big:hover { color: var(--lime-dark); }
.panel__line { display: flex; align-items: center; gap: 10px; margin-top: 12px; font-size: 15.4px; color: var(--muted); }
.panel__line svg { width: 17px; height: 17px; color: var(--forest); flex: none; }
.panel__hours li { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.panel__hours li:last-child { border-bottom: 0; }
.panel__hours li span:last-child { color: var(--muted); }
.panel--accent { background: var(--brand-800); color: rgba(255,255,255,.8); border-color: transparent; }
.panel--accent h3 { color: var(--lime); }

/* ── Footer ────────────────────────────────────────────────────────── */

.footer { background: var(--brand-900); color: rgba(255,255,255,.68); padding: clamp(52px, 6vw, 76px) 0 0; border-top: 3px solid var(--lime); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 42px; }
.footer h4 { color: var(--lime); margin-bottom: 18px; }
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text em { color: var(--lime); }
.footer__blurb { margin: 20px 0; font-size: 15.4px; max-width: 42ch; }
.footer__nap { display: flex; flex-direction: column; gap: 10px; }
.footer__nap a, .footer__nap span { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.84); font-size: 15.2px; }
.footer__nap svg { width: 17px; height: 17px; color: var(--lime); flex: none; }
.footer__nap a:hover { color: var(--lime); }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; padding: 9px 16px; border: 1px solid var(--line-dark); border-radius: var(--r-sm); }
.footer__social a:hover { border-color: var(--lime); color: var(--lime); }
.footer__list li, .footer__hours li { padding: 7px 0; font-size: 15px; }
.footer__list a { color: rgba(255,255,255,.72); }
.footer__list a:hover { color: var(--lime); }
.footer__hours li { display: flex; justify-content: space-between; gap: 12px; }
.footer__hours li span:last-child { color: rgba(255,255,255,.5); white-space: nowrap; }
.footer__bar {
  margin-top: 52px; padding-top: 22px; padding-bottom: 26px; border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; gap: 16px; font-size: 13.8px; color: rgba(255,255,255,.48);
}
.footer__bar p { margin: 0; }
.footer__credit a { color: rgba(255,255,255,.7); }
.footer__credit a:hover { color: var(--lime); }

/* ── Service / city page layout (sticky rail) ──────────────────────── */

.svcpage { display: grid; grid-template-columns: 1.6fr .8fr; gap: 48px; align-items: start; }
.svcpage__main h2 { font-size: clamp(22px, 2.6vw, 30px); margin: 38px 0 16px; }
.svcpage__main > p { color: var(--ink); font-size: 17px; }
.svcpage__intro { font-size: 19px !important; font-weight: 500; }
.svcpage__main a { text-decoration: underline; text-decoration-color: var(--lime); text-underline-offset: 3px; }
.included { display: grid; gap: 10px; margin: 6px 0 8px; }
.included li { display: flex; gap: 11px; align-items: flex-start; padding: 13px 16px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-sm); font-size: 15.6px; }
.included svg { width: 17px; height: 17px; color: var(--forest); flex: none; margin-top: 4px; }
.whenlist { margin-top: 6px; }

.rail { position: sticky; top: calc(var(--nav-h) + 20px); display: flex; flex-direction: column; gap: 18px; }
.railcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--sh-sm); }
.railcard h3 { margin-bottom: 10px; }
.railcard > p { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.railcard .btn + .btn { margin-top: 10px; }
.railcard__trust { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.railcard__trust li { display: flex; gap: 10px; align-items: center; font-size: 14.4px; font-weight: 500; }
.railcard__trust svg { width: 16px; height: 16px; color: var(--forest); flex: none; }
.railcard--dark { background: var(--brand-800); border-color: transparent; color: rgba(255,255,255,.8); }
.railcard--dark h3 { color: var(--lime); }
.railcard__links { display: grid; gap: 4px; }
.railcard__links a { display: flex; align-items: center; gap: 9px; padding: 8px 4px; font-size: 15px; color: rgba(255,255,255,.82); }
.railcard__links a:hover { color: var(--lime); }
.railcard__links svg { width: 14px; height: 14px; color: var(--lime); flex: none; }

/* Cross-link tiles */
.also {
  display: flex; align-items: center; gap: 16px; padding: 20px 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.also:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: var(--lime); }
.also__icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 11px; background: var(--brand-800); color: var(--lime); flex: none; }
.also__icon svg { width: 22px; height: 22px; }
.also__text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.also__text strong { font-family: var(--f-head); font-size: 16px; color: var(--brand-800); }
.also__text span { font-size: 13.6px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.also > svg { width: 18px; height: 18px; margin-left: auto; color: var(--lime-dark); flex: none; }

/* Areas hub */
.countyblock { margin-bottom: 52px; }
.countyblock h2 { margin-bottom: 24px; }
.areatile {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--sh-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.areatile:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--lime); }
.areatile__county { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-head);
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--forest); margin-bottom: 12px; }
.areatile__county svg { width: 13px; height: 13px; }
.areatile h3 { margin-bottom: 8px; }
.areatile p { font-size: 14.8px; color: var(--muted); }
.areatile .card__link { margin-top: auto; padding-top: 18px; }
.area__city--linked { padding: 0 !important; background: none !important; }
.area__city--linked a { display: flex; align-items: center; gap: 8px; width: 100%; padding: 9px 12px;
  background: var(--lime-soft); border-radius: var(--r-sm); color: var(--ink); font-weight: 600; font-size: 15px;
  transition: background .16s var(--ease); }
.area__city--linked a:hover { background: var(--lime); }
.area__city--linked svg { width: 14px; height: 14px; color: var(--forest); flex: none; }

/* Gallery photo wall */
.wall__item { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); border: 1px solid var(--line); }
.wall__item img { width: 100%; height: 300px; object-fit: cover; transition: transform .35s var(--ease); }
.wall__item:hover img { transform: scale(1.04); }

/* Prose pages (privacy / terms) */
.prose h2 { font-family: var(--f-head); text-transform: none; font-size: 22px; font-weight: 700; margin: 34px 0 10px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink); }
.prose a { text-decoration: underline; text-decoration-color: var(--lime); text-underline-offset: 3px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.no-observer .reveal { opacity: 1; transform: none; }

.footer__h4-gap { margin-top: 26px; }

@view-transition { navigation: auto; }

/* ── Sticky mobile call bar ────────────────────────────────────────── */

.mobilebar { display: none; }

/* ── Responsive ────────────────────────────────────────────────────── */

@media (max-width: 1180px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .svcpage { grid-template-columns: 1fr; }
  .rail { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 42px; }
  .about, .area, .contact { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 860px) {
  body { font-size: 16.5px; }
  .topbar__item--hide { display: none; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .trustbar__in { grid-template-columns: repeat(2, 1fr); }
  .trustbar__item:nth-child(2) { border-right: 0; }
  .trustbar__item:nth-child(1), .trustbar__item:nth-child(2) { border-bottom: 1px solid var(--line-dark); }
  .cta__in { flex-direction: column; align-items: flex-start; }
  .area__cities { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  :root { --nav-h: 72px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .detail__row { grid-template-columns: 1fr; gap: 14px; padding: 24px 22px; }
  .topbar__in { justify-content: space-between; gap: 12px; font-size: 12.8px; }
  .brand__mark { width: 48px; height: 48px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; gap: 6px; }
  .btn { width: 100%; }
  .btn--sm { width: auto; }
  .hero__cta .btn, .cta__actions .btn, .btnrow .btn { width: 100%; }

  /* Sticky call bar — phones only, where tap-to-call is the whole point. */
  .mobilebar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: fixed;
    left: 0; right: 0; bottom: 0; z-index: 95; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(26,16,0,.97); backdrop-filter: blur(8px); border-top: 1px solid var(--line-dark);
  }
  .mobilebar__btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--f-head); font-weight: 700; font-size: 14px; letter-spacing: .05em;
    text-transform: uppercase; padding: 14px 10px; border-radius: var(--r-sm);
  }
  .mobilebar__btn svg { width: 17px; height: 17px; }
  .mobilebar__btn--call { background: var(--lime); color: var(--brand-800); }
  .mobilebar__btn--quote { background: rgba(255,255,255,.1); color: #fff; border: 1px solid var(--line-dark); }
  body { padding-bottom: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .btn:hover, .card:hover, .work__item:hover, .also:hover, .areatile:hover { transform: none; }
  .reveal { opacity: 1; transform: none; }
  .wall__item:hover img { transform: none; }
}

@media print {
  .topbar, .nav, .mobilebar, .cta { display: none !important; }
  body { background: #fff; color: #000; }
}
