/* Local business template. One file, no frameworks, no external requests.
   Everything a client would ever ask to change lives in :root. */

:root {
  --accent: #3F6B34;
  --accent-dark: #33572a;
  --ink: #14181d;
  --body: #4a5560;
  --line: #e2e7ec;
  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --radius: 10px;
  --wrap: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 5.5vw, 3.4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); letter-spacing: -.01em; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
a { color: var(--accent-dark); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap.narrow { max-width: 760px; }

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ink);
  color: #fff; padding: 10px 16px; z-index: 100;
}
.skip:focus { left: 0; }

/* header ------------------------------------------------------------ */
.bar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.bar-in { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand {
  font-weight: 800; font-size: 1.15rem; color: var(--ink);
  text-decoration: none; letter-spacing: -.02em; margin-right: auto;
}
.bar nav { display: flex; gap: 26px; }
.bar nav a {
  color: var(--body); text-decoration: none; font-size: .95rem; font-weight: 500;
}
.bar nav a:hover { color: var(--accent-dark); }

/* buttons ----------------------------------------------------------- */
.btn {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 12px 22px; border-radius: var(--radius); text-decoration: none;
  font-weight: 650; font-size: 1rem; border: 2px solid var(--accent);
  cursor: pointer; transition: background .15s, transform .15s;
  font-family: inherit;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 8px 16px; font-size: .95rem; white-space: nowrap; }
.btn-lg { padding: 15px 30px; font-size: 1.08rem; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--bg-alt); border-color: var(--body); color: var(--ink); }

/* hero -------------------------------------------------------------- */
.hero {
  padding: clamp(56px, 9vw, 104px) 0;
  background:
    radial-gradient(900px 420px at 82% -18%, color-mix(in srgb, var(--accent) 16%, transparent), transparent),
    var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .1em; font-size: .78rem;
  font-weight: 700; color: var(--accent-dark); margin-bottom: .8rem;
}
.hero .lede { font-size: 1.2rem; max-width: 58ch; }
.lede { font-size: 1.12rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 0; }
.trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 28px;
  padding: 0; margin: 32px 0 0; font-size: .95rem; font-weight: 550; color: var(--ink);
}
.trust li::before { content: "✓"; color: var(--accent); font-weight: 800; margin-right: 8px; }

/* sections ---------------------------------------------------------- */
.band { padding: clamp(48px, 7vw, 84px) 0; }
/* the sticky bar is 68px tall — without this, nav jumps hide the heading */
section[id] { scroll-margin-top: 84px; }
.band.alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
.sub { margin-top: -.4rem; margin-bottom: 2rem; }

.grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  margin-top: 32px;
}
.card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.band.alt .card { background: #fff; }
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }

.two-col {
  display: grid; gap: clamp(28px, 5vw, 56px);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}
.points { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.points li {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: 16px 20px; color: var(--ink); font-weight: 550;
}

.gallery {
  display: grid; gap: 14px; margin-top: 32px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.gallery figure { margin: 0; }
.gallery img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--bg-alt);
}
.gallery figcaption { font-size: .9rem; margin-top: 8px; }

blockquote.review {
  margin: 0; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.stars { color: #f0a500; letter-spacing: 2px; font-size: 1rem; }
blockquote.review p { margin: .7rem 0 1rem; color: var(--ink); }
blockquote.review cite { font-style: normal; font-weight: 650; font-size: .93rem; }
.areas { font-size: 1.08rem; max-width: 70ch; }

details {
  border-bottom: 1px solid var(--line); padding: 18px 0;
}
details summary {
  cursor: pointer; font-weight: 650; color: var(--ink); font-size: 1.05rem;
  list-style: none; display: flex; justify-content: space-between; gap: 16px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; color: var(--accent); font-weight: 800; }
details[open] summary::after { content: "–"; }
details p { margin: .8rem 0 0; }

/* contact ----------------------------------------------------------- */
.facts { display: grid; grid-template-columns: 92px 1fr; gap: 10px 16px; margin: 24px 0 0; }
.facts dt { font-weight: 700; color: var(--ink); }
.facts dd { margin: 0; }
.form { display: grid; gap: 14px; background: var(--bg-alt); padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); }
.form label { display: grid; gap: 6px; font-weight: 650; color: var(--ink); font-size: .95rem; }
.form input, .form textarea {
  font: inherit; font-weight: 400; padding: 11px 13px; border: 1px solid var(--line);
  border-radius: 8px; background: #fff; color: var(--ink); width: 100%;
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.fineprint { font-size: .88rem; margin: 0; }
.reach { align-content: start; }
.reach-lede { font-weight: 700; color: var(--ink); margin: 0; }
.reach .btn { text-align: center; }

/* footer ------------------------------------------------------------ */
footer { background: var(--ink); color: #b6c0ca; padding: 44px 0 96px; }
.foot { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.foot strong { color: #fff; }
footer a { color: #fff; }
.copy { grid-column: 1 / -1; font-size: .85rem; border-top: 1px solid #2a3138; padding-top: 18px; margin: 0; }

/* sticky mobile call bar --------------------------------------------- */
.callbar { display: none; }
@media (max-width: 760px) {
  .bar nav { display: none; }
  .callbar {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--accent); color: #fff; text-align: center; text-decoration: none;
    padding: 15px; font-weight: 700; font-size: 1.05rem;
    box-shadow: 0 -2px 16px rgba(0,0,0,.16);
  }
  body { padding-bottom: 56px; }
  footer { padding-bottom: 44px; }
  .facts { grid-template-columns: 1fr; gap: 2px 0; }
  .facts dd { margin-bottom: 10px; }
}

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