/* defer.css — everything below the fold. Preloaded and applied async, so a
   slow network shows a correctly rendered top of page rather than nothing. */

/* ---------- generic blocks ---------- */
.lede { font-size: 1.08rem; max-width: 62ch; }
.muted { color: var(--grey-600); }
.center { text-align: center; }
.section-head { max-width: 66ch; margin-bottom: 26px; }
.section-alt { background: var(--grey-100); }
.section-dark { background: var(--ink); color: #DCE3DC; }
.section-dark h2, .section-dark h3 { color: var(--white); }

/* ---------- card grids ---------- */
.grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .grid-2, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .35em; }
.card-body p { color: var(--grey-600); font-size: .96rem; flex: 1; }
.card-price {
  display: inline-block; margin: 0 0 10px;
  font-size: .82rem; font-weight: 800; letter-spacing: .03em;
  color: var(--green-800); background: var(--green-50);
  border-radius: 999px; padding: 4px 12px; align-self: flex-start;
}
.card-link {
  margin-top: 12px; font-weight: 800; text-decoration: none; color: var(--green-800);
  display: inline-flex; align-items: center; min-height: var(--tap);
}
.card-link::after { content: " \2192"; margin-left: 6px; }
.card a.card-cover { text-decoration: none; color: inherit; }

/* ---------- feature / include lists ---------- */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
@media (min-width: 760px) { .feature-list { grid-template-columns: repeat(2, 1fr); gap: 22px 32px; } }
.feature-list h3 { margin-bottom: .25em; font-size: 1.06rem; }
.feature-list h3::before {
  content: ""; display: inline-block; width: 10px; height: 10px; margin-right: 9px;
  background: var(--green-500); border-radius: 2px; transform: rotate(45deg);
}
.feature-list p { margin: 0; color: var(--grey-600); font-size: .96rem; }

/* ---------- numbered process ---------- */
.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; gap: 20px; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { counter-increment: step; padding-top: 46px; position: relative; }
.steps li::before {
  content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-800); color: var(--white);
  font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.steps h3 { margin-bottom: .3em; font-size: 1.06rem; }
.steps p { margin: 0; color: var(--grey-600); font-size: .96rem; }

/* ---------- price callout ---------- */
/* Tinted panel, not a side-tab callout. The 1px border matches .card and
   .link-grid so the price block reads as part of the same system. */
.price-note {
  background: var(--green-50);
  border: 1px solid var(--grey-200);
  padding: 16px 18px; border-radius: var(--radius);
  margin: 0 0 8px;
}
.price-note strong { color: var(--green-900); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; max-width: 78ch; }
.faq details {
  border: 1px solid var(--grey-200); border-radius: var(--radius);
  background: var(--white); overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 15px 46px 15px 18px; min-height: var(--tap);
  font-weight: 700; color: var(--ink); position: relative;
  display: flex; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--green-700); line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] summary { background: var(--green-50); }
.faq .faq-answer { padding: 4px 18px 18px; color: var(--grey-600); }
.faq .faq-answer p:last-child { margin-bottom: 0; }

/* ---------- areas ---------- */
.area-block { border-top: 1px solid var(--grey-200); padding-top: 30px; margin-top: 30px; }
.area-block:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.area-head { display: grid; gap: 18px; align-items: start; }
@media (min-width: 800px) { .area-head { grid-template-columns: 320px 1fr; gap: 28px; } }
.area-head img { border-radius: var(--radius); }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0 0; padding: 0; }
.chips li {
  font-size: .82rem; font-weight: 600; color: var(--grey-600);
  background: var(--grey-100); border: 1px solid var(--grey-200);
  border-radius: 999px; padding: 4px 11px;
}
.zips { font-size: .88rem; color: var(--grey-600); margin-top: 10px; }

.link-grid { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 8px; }
@media (min-width: 620px) { .link-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .link-grid { grid-template-columns: repeat(3, 1fr); } }
.link-grid a {
  display: flex; align-items: center; min-height: var(--tap);
  padding: 10px 15px; background: var(--white);
  border: 1px solid var(--grey-200); border-radius: var(--radius);
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem;
}
.link-grid a:hover, .link-grid a:focus { border-color: var(--green-500); background: var(--green-50); color: var(--green-800); }

.nearby { background: var(--grey-100); padding: 38px 0; }
.nearby h2 { font-size: 1.25rem; }
.nearby-more { margin: 0; font-size: .95rem; color: var(--grey-600); line-height: 2.6; }
/* Inline-in-sentence links, same treatment as .lead-form-alt: an inline-block
   line box gets them to a 44px touch height without breaking the prose. */
.nearby-more a { display: inline-block; min-height: 44px; line-height: 44px; font-weight: 700; }

/* ---------- contact strip ---------- */
.contact-strip { background: var(--green-900); color: #DDE5DD; padding: 38px 0; }
.contact-strip h2 { color: var(--white); }
.contact-strip p { max-width: 54ch; }
.contact-strip-inner { display: grid; gap: 22px; }
@media (min-width: 880px) {
  .contact-strip-inner { grid-template-columns: 1.3fr 1fr; align-items: center; gap: 44px; }
}
.strip-hours { font-size: .9rem; color: var(--green-200); margin-bottom: 0; }
.strip-actions { display: flex; flex-direction: column; gap: 10px; }
.contact-strip .btn-ghost { color: var(--white); border-color: var(--white); }
.contact-strip .btn-ghost:hover, .contact-strip .btn-ghost:focus { background: var(--white); color: var(--ink); }
.contact-strip .btn-call { background: var(--green-500); color: var(--ink); }
.contact-strip .btn-call:hover, .contact-strip .btn-call:focus { background: var(--green-200); color: var(--ink); }
.strip-text { color: var(--green-200); font-size: .92rem; text-align: center; min-height: var(--tap); display: flex; align-items: center; justify-content: center; }

/* ---------- lead form ---------- */
.lead-form-wrap { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 22px 18px; box-shadow: var(--shadow); }
@media (min-width: 620px) { .lead-form-wrap { padding: 28px; } }
.lead-form h2 { font-size: 1.4rem; margin-bottom: .3em; }
.lead-form-intro { color: var(--grey-600); font-size: .96rem; }
.lead-form label { display: block; margin: 14px 0 5px; font-weight: 700; font-size: .94rem; color: var(--ink); }
.lead-form input, .lead-form textarea {
  width: 100%; padding: 13px 14px;
  font-family: inherit;
  font-size: 16px;                 /* 16px stops iOS zooming on focus. Not optional. */
  color: var(--ink);
  border: 1px solid var(--grey-400); border-radius: var(--radius);
  background: var(--white);
}
.lead-form input:focus, .lead-form textarea:focus { border-color: var(--green-700); }
.lead-form textarea { resize: vertical; min-height: 108px; }
.lead-form .btn-submit {
  width: 100%; margin-top: 18px; min-height: var(--tap);
  background: var(--green-800); color: var(--white);
  border: none; border-radius: var(--radius);
  font-size: 1.06rem; font-weight: 800; font-family: inherit; cursor: pointer;
}
.lead-form .btn-submit:hover { background: var(--green-900); }
.lead-form .btn-submit[disabled] { opacity: .62; cursor: progress; }
.lead-form-alt { margin: 14px 0 0; font-size: .92rem; color: var(--grey-600); text-align: center; line-height: 2.6; }
/* These two sit inside a sentence, so they cannot be block buttons. Giving them
   an inline-block box with a real line box gets them to a 44px touch height
   without breaking the sentence they live in. */
.lead-form-alt a { display: inline-block; min-height: 44px; line-height: 44px; font-weight: 700; }
.lead-status { border-radius: var(--radius); padding: 22px; }
.lead-success { background: var(--green-50); border: 1px solid var(--green-500); }
.lead-success h2 { margin-bottom: .3em; color: var(--green-900); }
.lead-success p:last-child { margin-bottom: 0; }
.lead-error { background: #FDF2F2; border: 1px solid #C0392B; color: #8A2A20; font-weight: 600; }

.contact-layout { display: grid; gap: 28px; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; } }
.contact-detail { list-style: none; margin: 0 0 20px; padding: 0; }
.contact-detail li { padding: 12px 0; border-bottom: 1px solid var(--grey-200); }
.contact-detail li:last-child { border-bottom: 0; }
.contact-detail strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; color: var(--grey-600); margin-bottom: 3px; }
.contact-detail a { font-weight: 700; font-size: 1.08rem; text-decoration: none; display: inline-flex; align-items: center; min-height: var(--tap); }

/* ---------- gallery ---------- */
.gallery { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

/* ---------- service page layout ---------- */
.svc-layout { display: grid; gap: 30px; }
@media (min-width: 980px) { .svc-layout { grid-template-columns: 1fr 380px; gap: 44px; align-items: start; } }
.svc-aside { position: static; }
@media (min-width: 980px) { .svc-aside { position: sticky; top: 88px; } }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin-top: 1.6em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .45em; }

/* ---------- about ---------- */
.stat-row { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat-row li { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 16px; text-align: center; }
.stat-row b { display: block; font-size: 1.5rem; color: var(--green-800); line-height: 1.15; }
.stat-row span { font-size: .84rem; color: var(--grey-600); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #B9C2B9; padding: 44px 0 22px; font-size: .95rem; }
.footer-grid { display: grid; gap: 30px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; } }
.footer-brand img { width: 120px; height: auto; margin-bottom: 12px; }
.footer-legal-name { font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.footer-head { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--green-200); margin-bottom: 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 2px; }
.site-footer a { color: #D3DAD3; text-decoration: none; display: inline-flex; align-items: center; min-height: var(--tap); }
.site-footer a:hover, .site-footer a:focus { color: var(--white); text-decoration: underline; }
.footer-phone { font-size: 1.24rem; font-weight: 800; color: var(--white) !important; }
.social { display: flex; gap: 16px; margin-top: 12px; }
.hours { margin-top: 14px; color: #B9C2B9; }
.hours-note { font-size: .87rem; color: var(--grey-400); }
.footer-bottom {
  margin-top: 32px; padding-top: 18px; border-top: 1px solid #2A2E2A;
  display: flex; flex-wrap: wrap; gap: 6px 22px; justify-content: space-between;
  font-size: .86rem; color: var(--grey-400);
}
.footer-bottom p { margin: 0; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 60px 0; }
.notfound .link-grid { max-width: 760px; margin-inline: auto; text-align: left; }
