/* styles.css · structure and skin only; no copy lives here (SOP-build).
   Tokens carried over from the existing brand documents (F-001).
   System font stack throughout: the site makes no external requests. */

:root {
  --green: #5cbe12;
  --green-ink: #35750a;
  --blue: #2fb4ff;
  --band: #0b0e08;
  --paper: #f4f5ef;
  --ink: #1a1e13;
  --muted: #575e4b;
  --card: #ffffff;
  --line: #dcdfd2;
}
body.commercial {
  --green: #3c9a43;
  --green-ink: #24632a;
  --band: #101315;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
.wrap { max-width: 66rem; margin: 0 auto; padding: 0 1.25rem; }
h1, h2, h3, .brand-name, .idea, .discount-label {
  font-family: "Arial Black", "Avenir Next Heavy", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.12;
}
a:focus-visible, .btn-call:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* header */
.site-head { background: var(--band); }
.head-row { display: flex; align-items: center; gap: 1.25rem; padding-top: 0.8rem; padding-bottom: 0.8rem; flex-wrap: wrap; }
.brand { margin: 0; display: flex; flex-direction: column; }
.brand-name { color: #fff; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.02em; }
.brand-tag { color: var(--green); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.22em; font-weight: 700; }
.site-nav { display: flex; gap: 1.1rem; margin-left: auto; }
.site-nav a, .nav-here {
  color: #e8ebdf; text-decoration: none; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 0.3rem 0;
}
.site-nav a { opacity: 0.8; }
.site-nav a:hover { opacity: 1; text-decoration: underline; }
.nav-here { border-bottom: 2px solid var(--green); font-weight: 700; }
.head-phone { color: #fff; font-weight: 700; text-decoration: none; white-space: nowrap; }
.head-phone:hover { color: var(--green); }

/* hero */
.hero { background: var(--band); color: #fff; padding: 4rem 0 3.5rem; }
.hero h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); margin: 0 0 1rem; text-transform: uppercase; }
.hero-sub { font-size: 1.15rem; max-width: 42rem; color: #d9ddd0; margin: 0 0 1.9rem; }
.cta-row { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.btn-call {
  display: inline-block; background: var(--green); color: var(--band);
  font-family: "Arial Black", Arial, sans-serif; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.04em; text-decoration: none;
  padding: 1.05rem 1.8rem; border-radius: 6px; font-size: 1.05rem;
}
.btn-call:hover { filter: brightness(1.08); }
.hero-phone { color: #fff; font-size: 1.25rem; font-weight: 700; text-decoration: none; }
.hero-phone:hover { color: var(--green); }
.sms-link { display: inline-block; margin-top: 1rem; color: #b9c0ac; font-size: 0.95rem; }
.sms-link:hover { color: #fff; }

/* section rhythm */
main section { padding: 3.25rem 0; }
main h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); text-transform: uppercase; margin: 0 0 1.4rem; }

.positioning {
  margin: 0; padding: 0.95rem 1.25rem; text-align: center;
  background: var(--green); color: var(--band); font-weight: 700;
}

/* problem */
.problem p { max-width: 44rem; }
.problem .empathy { border-left: 4px solid var(--green); padding-left: 1.1rem; color: var(--muted); }
.problem .idea { font-size: 1.35rem; max-width: 34rem; margin-top: 1.6rem; }

/* services */
.services { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.card-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
}
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 1.15rem 1.25rem; }
.card h3 { margin: 0 0 0.45rem; font-size: 1rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.services-closing { margin: 1.6rem 0 0; font-weight: 700; }

/* recurring (commercial) */
.recurring p { max-width: 44rem; font-size: 1.1rem; }

/* plan */
.steps {
  list-style: none; counter-reset: step; margin: 0; padding: 0;
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
}
.steps li { counter-increment: step; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 2rem; color: var(--green-ink);
}
.steps h3 { margin: 0.15rem 0 0.35rem; font-size: 1.05rem; }
.steps p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* promise */
.promise { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.promise ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; max-width: 46rem; }
.promise li { position: relative; padding-left: 1.7rem; }
.promise li::before {
  content: "\2713";
  position: absolute; left: 0;
  color: var(--green-ink); font-weight: 900;
}

/* proof */
.ba-pair { margin: 0 0 1.5rem; display: grid; gap: 0.6rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.ba-pair img { width: 100%; height: auto; border-radius: 8px; display: block; }
.ba-pair figcaption { grid-column: 1 / -1; color: var(--muted); font-size: 0.9rem; }

/* stakes */
.stakes { background: var(--band); color: #e7eadf; }
.stakes h2 { color: #fff; }
.stakes ul { margin: 0; padding-left: 1.2rem; max-width: 44rem; display: grid; gap: 0.8rem; }
.stakes li::marker { color: var(--green); }

/* success */
.success p { max-width: 42rem; font-size: 1.08rem; margin: 0.4rem 0; }
.success p:last-child {
  font-family: "Arial Black", Arial, sans-serif; font-weight: 900;
  font-size: 1.3rem; margin-top: 1.2rem; line-height: 1.2;
}

/* reviews (renders only when real reviews exist, D-014) */
.review { margin: 0 0 1.4rem; border-left: 4px solid var(--green); padding-left: 1.1rem; }
.review cite { color: var(--muted); font-style: normal; font-weight: 700; }

/* authority */
.authority { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.authority ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0.65rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  max-width: 52rem;
}
.authority li { position: relative; padding-left: 1.7rem; }
.authority li::before {
  content: "\2713";
  position: absolute; left: 0;
  color: var(--green-ink); font-weight: 900;
}

/* ethos */
.verse {
  margin: 0 0 1.2rem; padding: 1.3rem 1.5rem;
  background: var(--card); border-left: 5px solid var(--green);
  border-radius: 0 8px 8px 0; font-size: 1.25rem; max-width: 44rem;
}
.verse p { margin: 0 0 0.5rem; }
.verse cite { color: var(--muted); font-style: normal; font-weight: 700; font-size: 0.95rem; }
.ethos > .wrap > p:last-child, .ethos p:last-of-type { max-width: 44rem; }

/* discount */
.discount { background: var(--green-ink); color: #fff; text-align: center; }
.discount-label { font-size: clamp(1.15rem, 3vw, 1.5rem); text-transform: uppercase; margin: 0 0 1.3rem; }
.discount .btn-call { background: #fff; color: var(--green-ink); }

/* area */
.area .towns { color: var(--muted); max-width: 46rem; }
.area .area-invite { font-weight: 700; margin-top: 1.1rem; }

/* crosslink */
.crosslink { padding: 2.25rem 0; text-align: center; border-top: 1px solid var(--line); }
.crosslink a { color: var(--green-ink); font-weight: 700; }

/* footer */
.site-foot { background: var(--band); color: #cfd4c2; padding: 2.5rem 0 3rem; font-size: 0.92rem; }
.foot-legal { color: #fff; font-weight: 700; margin: 0 0 0.5rem; }
.foot-line { margin: 0.25rem 0; }
.site-foot a { color: #fff; }
.site-foot a:hover { color: var(--green); }

/* sticky mobile call bar (D-018), safe-area aware */
.sticky-call { display: none; }
@media (max-width: 47rem) {
  body { padding-bottom: calc(4.4rem + env(safe-area-inset-bottom)); }
  .head-phone { display: none; }
  .sticky-call {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    display: flex; gap: 0.6rem;
    padding: 0.6rem 0.9rem calc(0.6rem + env(safe-area-inset-bottom));
    background: var(--band);
    border-top: 1px solid #2a2f22;
  }
  .sticky-tel, .sticky-sms {
    text-align: center; text-decoration: none;
    font-family: "Arial Black", Arial, sans-serif; font-weight: 900;
    text-transform: uppercase; font-size: 0.95rem;
    padding: 0.9rem 0.5rem; border-radius: 6px;
  }
  .sticky-tel { flex: 1.4; background: var(--green); color: var(--band); }
  .sticky-sms { flex: 1; color: #fff; border: 1px solid #3a4030; }
}
