:root {
  --ink: #17211b;
  --muted: #53615a;
  --line: #d8ddd7;
  --paper: #fbfbf8;
  --soft: #eef2ed;
  --green: #255942;
  --green-dark: #153526;
  --blue: #1f5d73;
  --gold: #c89a3c;
  --white: #fff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--white); padding: .75rem; z-index: 20; }
.skip-link:focus { left: 1rem; top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 251, 248, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.topbar, .desktop-nav, .section, .hero, .page-hero, .page-title, .cta-band, .footer-grid, .mission {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}
.topbar { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 1rem; text-decoration: none; color: var(--ink); }
.brand-logo { width: 300px; max-width: 30vw; height: auto; }
.brand-text strong { display: block; font-size: clamp(1.35rem, 2vw, 1.9rem); line-height: 1.05; }
.brand-text small { display: block; color: var(--muted); font-size: clamp(.98rem, 1.25vw, 1.15rem); line-height: 1.25; margin-top: .2rem; }
.phone-link, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .7rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}
.phone-link, .button.primary { background: var(--green); color: var(--white); }
.button.secondary { background: var(--white); color: var(--green-dark); border-color: var(--green); }
.desktop-nav { display: flex; gap: .25rem; padding: 0 0 .75rem; }
.desktop-nav a, .mobile-menu nav a { padding: .55rem .7rem; text-decoration: none; border-radius: 6px; color: var(--ink); font-weight: 700; }
.desktop-nav a[aria-current="page"], .desktop-nav a:hover, .mobile-menu a:hover { background: var(--soft); color: var(--green-dark); }
.mobile-menu { display: none; }
.mobile-menu summary { cursor: pointer; min-height: 44px; padding: .6rem .8rem; border: 1px solid var(--line); border-radius: 6px; font-weight: 700; }
.mobile-menu nav { position: absolute; right: 1rem; top: 70px; width: min(320px, calc(100vw - 32px)); display: grid; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: .5rem; box-shadow: 0 18px 40px rgba(0,0,0,.14); }
.hero, .page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .85fr);
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
}
.hero-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 560px;
  width: min(1180px, calc(100% - 32px));
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background-color: #0b1410;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2rem;
}
.hero-preload {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 14, 10, .84), rgba(6, 14, 10, .62) 54%, rgba(6, 14, 10, .22));
}
.hero-banner .hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(1.25rem, 4vw, 3rem);
  color: var(--white);
}
.hero-banner h1 { max-width: 30ch; }
.hero-banner .eyebrow,
.hero-banner .lead {
  color: #edf4ef;
}
.hero-copy, .page-hero > div:first-child { max-width: 720px; }
.eyebrow { color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: 0; font-size: .88rem; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 1rem; }
h1 { font-size: clamp(2rem, 4vw, 3.9rem); max-width: 20ch; }
.page-title h1, .page-hero h1 { max-width: 20ch; font-size: clamp(1.9rem, 3.5vw, 3.15rem); }
h2 { font-size: clamp(1.55rem, 2.5vw, 2.4rem); }
h3 { font-size: 1.15rem; }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.35rem); color: var(--muted); max-width: 760px; }
.hero-media, .hero-image, .page-hero-image, .rounded-image {
  border-radius: 8px;
  overflow: hidden;
}
.hero-image, .page-hero-image, .rounded-image { width: 100%; object-fit: cover; aspect-ratio: 4 / 3; background: var(--soft); }
.chris-photo { aspect-ratio: 2 / 3; object-fit: cover; max-height: 720px; justify-self: center; }
.hero-image { aspect-ratio: 16 / 9; }
.section, .page-title { padding: 3rem 0; }
.intro, .split, .contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }
.contact-panel, .card, .testimonial-card, .quote-form, figure {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
}
.card-grid, .content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.text-link { font-weight: 700; }
.tick-list { padding-left: 1.2rem; }
.area-list { display: flex; flex-wrap: wrap; gap: .65rem; }
.area-list span { background: var(--soft); border: 1px solid var(--line); border-radius: 999px; padding: .45rem .7rem; font-weight: 700; }
.process ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 0; counter-reset: step; list-style: none; }
.process li { background: var(--white); border-left: 4px solid var(--gold); padding: 1rem; border-radius: 6px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; align-items: start; }
.all-testimonials { grid-template-columns: repeat(3, 1fr); }
.testimonial-card { display: grid; grid-template-columns: 1fr; grid-template-rows: auto auto; gap: 0; padding: 0; overflow: hidden; align-items: start; align-content: start; }
.all-testimonials .testimonial-card { grid-template-columns: 1fr; }
.testimonial-image { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; background: var(--soft); }
.all-testimonials .testimonial-image { width: 100%; }
.testimonial-card div { display: block; padding: 1rem; align-self: start; }
.service-label { color: var(--blue); font-weight: 700; margin: 0 0 .5rem; }
blockquote { margin: 0; }
.byline { color: var(--muted); font-weight: 700; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
figure { margin: 0; padding: 0; overflow: hidden; }
figcaption { padding: 1rem; font-weight: 700; }
.gallery-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--soft); }
.cta-band {
  margin-block: 3rem;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.cta-band p { color: #e9efe9; margin: 0; }
.cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.quote-form { display: grid; gap: 1rem; }
label { display: grid; gap: .35rem; font-weight: 700; }
input, select, textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .7rem;
  font: inherit;
  background: var(--white);
}
textarea { resize: vertical; }
.site-footer { background: #111b16; color: var(--white); margin-top: 3rem; padding: 3rem 0 1.5rem; }
.site-footer a { color: #dfece2; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer h2 { font-size: 1.05rem; }
.site-footer ul { padding-left: 1.1rem; }
.mission { border-top: 1px solid rgba(255,255,255,.18); color: #d1ddd5; padding-top: 1rem; margin-top: 2rem; }
.website-credit {
  width: min(1180px, calc(100% - 32px));
  margin: 1rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  text-align: center;
}
.website-credit a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  color: #dfece2;
  text-decoration: none;
}
.website-credit img {
  width: 150px;
  height: auto;
}
@media (max-width: 920px) {
  .desktop-nav, .phone-link { display: none; }
  .mobile-menu { display: block; }
  .hero, .page-hero, .intro, .split, .contact-layout { grid-template-columns: 1fr; }
  .card-grid, .content-grid, .all-testimonials, .gallery-grid, .process ol, .footer-grid { grid-template-columns: 1fr 1fr; }
  h1 { max-width: 20ch; }
}
@media (max-width: 640px) {
  .topbar, .desktop-nav, .section, .hero, .page-hero, .page-title, .cta-band, .footer-grid, .mission { width: min(100% - 24px, 1180px); }
  .brand small { display: none; }
  .brand-logo { width: 170px; max-width: 45vw; }
  .brand-text strong { font-size: 1.1rem; }
  .brand-text small { font-size: .85rem; }
  .hero, .page-hero { padding: 2rem 0; }
  .hero-banner {
    min-height: 500px;
    padding: 0;
  }
  .hero-banner { background-size: cover; }
  .hero-overlay { background: rgba(6, 14, 10, .72); }
  .card-grid, .content-grid, .testimonial-grid, .all-testimonials, .gallery-grid, .process ol, .footer-grid { grid-template-columns: 1fr; }
  .testimonial-card { grid-template-columns: 1fr; }
  .cta-band { display: grid; padding: 1.25rem; }
  .button { width: 100%; }
}
