:root {
  --forest: #123c2f;
  --forest-deep: #09251d;
  --forest-soft: #dfe9e3;
  --orange: #f47b20;
  --orange-dark: #c6530d;
  --ink: #101513;
  --body: #313a35;
  --paper: #f6f6f1;
  --white: #ffffff;
  --line: #cbd3ce;
  --shadow: 0 18px 42px rgba(9, 37, 29, .12);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--body);
  background: var(--paper);
  font: 400 1rem/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; width: 100%; height: auto; }
a { color: var(--forest); text-decoration-thickness: .09em; text-underline-offset: .18em; }
a:hover { color: var(--orange-dark); }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .75rem 1rem; background: var(--white); color: var(--ink); }
.skip-link:focus { top: 1rem; }
.wrap { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.eyebrow { margin: 0 0 .7rem; color: var(--orange-dark); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { color: var(--ink); font-family: Bitter, Georgia, serif; line-height: 1.12; letter-spacing: -.018em; margin: 0; }
h1 { font-size: clamp(2.15rem, 5vw, 3.35rem); max-width: 15ch; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.35rem); max-width: 23ch; }
h3 { font-size: 1.25rem; }
p { margin: .75rem 0 0; }
.lede { font-size: clamp(1.05rem, 1.8vw, 1.25rem); line-height: 1.55; max-width: 64ch; }
.small { font-size: .875rem; line-height: 1.5; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(246,246,241,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-row { min-height: 78px; display: flex; align-items: center; gap: 1.25rem; }
.brand { color: var(--forest-deep); text-decoration: none; font: 800 1.08rem/1 Bitter, Georgia, serif; letter-spacing: -.01em; }
.brand span { display: block; color: var(--orange-dark); font: 700 .68rem/1.25 Inter, sans-serif; letter-spacing: .1em; margin-top: .35rem; text-transform: uppercase; }
.nav { margin-left: auto; display: flex; align-items: center; gap: .15rem; }
.nav a { padding: .65rem .72rem; color: var(--ink); font-weight: 700; text-decoration: none; border-radius: 9px; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--forest); background: var(--forest-soft); }
.header-phone { margin-left: .5rem; }
.menu-button { display: none; margin-left: auto; min-height: 46px; padding: .55rem .8rem; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 10px; font-weight: 800; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .72rem 1.05rem; border: 2px solid var(--forest); border-radius: 10px; background: var(--forest); color: var(--white); font-weight: 800; text-decoration: none; transition: transform .16s ease, background .16s ease, border-color .16s ease; }
.button:hover { color: var(--white); background: var(--forest-deep); border-color: var(--forest-deep); transform: translateY(-1px); }
.button:active { transform: translateY(1px); }
.button.orange { background: var(--orange); border-color: var(--orange); color: #1b120a; }
.button.orange:hover { background: #ff8b34; border-color: #ff8b34; color: #1b120a; }
.button.outline { background: transparent; color: var(--forest); }
.button.outline:hover { color: var(--white); background: var(--forest); }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.35rem; }
.hero { padding: clamp(2.4rem, 7vw, 5.25rem) 0 3.25rem; background: linear-gradient(135deg, var(--forest-deep) 0 56%, var(--forest) 100%); color: var(--white); overflow: hidden; }
.hero h1, .hero h2 { color: var(--white); }
.hero .eyebrow { color: #ffae72; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(330px, .78fr); align-items: center; gap: clamp(2rem, 5vw, 4.5rem); }
.hero-copy { position: relative; z-index: 1; }
.hero-copy .lede { color: #e6efea; }
.hero-media { min-height: 420px; border-radius: 24px; overflow: hidden; box-shadow: 0 26px 60px rgba(0,0,0,.28); transform: rotate(1.2deg); }
.hero-media img { height: 100%; min-height: 420px; object-fit: cover; }
.image-note { margin: .55rem 0 0; color: #dce8e1; font-size: .8rem; }
.quote-panel { margin-top: -1.35rem; position: relative; z-index: 4; }
.quote-card { display: grid; grid-template-columns: .75fr 1.25fr; gap: 2rem; padding: clamp(1.25rem, 3vw, 2rem); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.quote-card h2 { font-size: clamp(1.45rem, 2.5vw, 1.95rem); }
.section { padding: clamp(3.8rem, 8vw, 6.6rem) 0; }
.section.compact { padding-block: 2.8rem; }
.section.white { background: var(--white); }
.section.dark { background: var(--forest-deep); color: #e7eee9; }
.section.dark h2, .section.dark h3 { color: var(--white); }
.section-head { display: grid; grid-template-columns: .75fr 1.25fr; gap: 2.25rem; align-items: end; margin-bottom: 2rem; }
.section-head p { max-width: 66ch; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { padding: 1.35rem; background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 8px 22px rgba(9,37,29,.06); }
.card p { margin-top: .5rem; }
.card .mini { display: inline-block; margin-bottom: .85rem; padding: .28rem .55rem; color: var(--forest-deep); background: var(--forest-soft); border-radius: 99px; font-size: .78rem; font-weight: 800; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split.reverse .media { order: 2; }
.media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media img { aspect-ratio: 4/3; object-fit: cover; }
.check-list { margin: 1.25rem 0 0; padding: 0; list-style: none; display: grid; gap: .7rem; }
.check-list li { padding-left: 1.7rem; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange-dark); font-weight: 900; }
.safety { padding: 1.1rem 1.2rem; background: #fff4e9; border-left: 5px solid var(--orange); border-radius: 8px; color: #422611; }
.proof-strip { display: grid; grid-template-columns: 1.2fr repeat(2, .8fr); gap: 1px; background: #345a4c; border: 1px solid #345a4c; border-radius: 15px; overflow: hidden; }
.proof-strip > div { padding: 1.3rem; background: var(--forest); color: #eff6f1; }
.proof-strip strong { display: block; color: var(--white); font-size: 1.05rem; }
.process { counter-reset: process; display: grid; gap: .8rem; }
.step { display: grid; grid-template-columns: 50px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.step::before { counter-increment: process; content: counter(process); display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--white); background: var(--forest); font-weight: 850; }
.service-row { display: grid; grid-template-columns: minmax(220px,.65fr) 1.35fr; gap: 2rem; padding: 1.6rem 0; border-top: 1px solid var(--line); }
.service-row h2 { font-size: clamp(1.45rem, 2.6vw, 2rem); }
.service-row:first-of-type { border-top: 0; }
.service-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.service-meta div { padding: 1rem; background: var(--white); border: 1px solid var(--line); border-radius: 10px; }
.service-meta strong { display: block; color: var(--forest-deep); }
details { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 0 1rem; }
details + details { margin-top: .7rem; }
summary { cursor: pointer; padding: 1rem 2.2rem 1rem 0; color: var(--ink); font-weight: 800; position: relative; }
summary::after { content: "+"; position: absolute; right: .2rem; color: var(--orange-dark); font-size: 1.4rem; }
details[open] summary::after { content: "−"; }
details p { padding: 0 0 1rem; margin-top: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.gallery-item { grid-column: span 6; margin: 0; overflow: hidden; border-radius: 15px; background: var(--white); border: 1px solid var(--line); }
.gallery-item.wide { grid-column: span 12; }
.gallery-item img { aspect-ratio: 16/9; object-fit: cover; }
.gallery-item figcaption { padding: 1rem; }
.gallery-item strong { display: block; color: var(--ink); }
.county-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.county-bar div { padding: 1rem; text-align: center; color: var(--white); background: var(--forest); border-radius: 10px; font-weight: 800; }
.cta { padding: clamp(2rem, 5vw, 3.5rem); background: var(--orange); color: #201208; border-radius: 20px; }
.cta h2 { color: #1d120a; }
.page-hero { padding: 3.6rem 0 3rem; background: var(--forest-deep); color: var(--white); }
.page-hero h1 { color: var(--white); }
.page-hero .lede { color: #e6efea; }
.subnav { background: var(--white); border-bottom: 1px solid var(--line); }
.subnav .wrap { display: flex; gap: .5rem; overflow-x: auto; padding-block: .65rem; }
.subnav a { flex: 0 0 auto; padding: .45rem .7rem; border-radius: 8px; color: var(--forest); font-weight: 750; text-decoration: none; }
.subnav a:hover { background: var(--forest-soft); }
.site-footer { background: #061b15; color: #cddbd4; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(2, .8fr); gap: 2rem; padding: 3.2rem 0 2rem; }
.site-footer h2, .site-footer h3 { color: var(--white); }
.site-footer h2 { font-size: 1.5rem; }
.site-footer h3 { font: 800 .78rem/1 Inter, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.site-footer a { color: #f6b07c; }
.footer-nav { display: grid; gap: .45rem; margin-top: 1rem; }
.footer-bottom { padding: 1rem 0 1.4rem; border-top: 1px solid #214438; font-size: .84rem; }
.demo-note { color: #a9bcb3; }

@media (max-width: 900px) {
  .menu-button { display: inline-flex; align-items: center; }
  .header-phone { display: none; }
  .nav { display: none; position: absolute; left: 1rem; right: 1rem; top: 68px; padding: .7rem; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
  .nav.open { display: grid; }
  .nav a { padding: .8rem; }
  .hero-grid, .quote-card, .section-head, .split, .service-row, .footer-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 310px; transform: none; }
  .hero-media img { min-height: 310px; }
  .split.reverse .media { order: 0; }
  .cards { grid-template-columns: 1fr 1fr; }
  .section-head { gap: .75rem; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .wrap { width: min(calc(100% - 1.25rem), var(--max)); }
  .header-row { min-height: 68px; }
  .brand { font-size: .98rem; }
  .hero { padding-top: 2.5rem; }
  .hero-grid { gap: 1.5rem; }
  .hero-media, .hero-media img { min-height: 245px; }
  .quote-panel { margin-top: 0; padding-top: 1rem; }
  .cards, .service-meta, .county-bar { grid-template-columns: 1fr; }
  .section { padding-block: 3.6rem; }
  .gallery-item, .gallery-item.wide { grid-column: span 12; }
  .button { width: 100%; }
  .actions { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* Original supplied artwork stays crisp against light surfaces. */
.brand { flex: 0 1 240px; }
.brand img { width: 240px; max-width: 100%; height: auto; }
.header-row { min-height: 106px; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { width: 100px; flex: 0 0 100px; padding: .6rem; background: white; border-radius: 12px; }
.contact-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.contact-option { min-width: 0; padding: 1.3rem; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.contact-option .button { margin-top: 1.2rem; width: 100%; }
.contact-option h3 { line-height: 1.25; }
.button.messenger { background: #1762d1; border-color: #1762d1; }
.button.messenger:hover { background: #10499f; border-color: #10499f; }
.quote-card { grid-template-columns: .8fr 1.6fr; align-items: center; }
.split > .contact-options { grid-template-columns: 1fr; }
@media (max-width: 900px) {
  .quote-card { grid-template-columns: 1fr; }
  .nav { top: 100%; }
  .brand { flex-basis: 220px; }
}
@media (max-width: 620px) {
  .header-row { min-height: 86px; gap: .75rem; }
  .brand { flex-basis: 190px; }
  .contact-options { grid-template-columns: 1fr; }
}
