/* ═══════════════════════════════════════════════════════════════════════════
   PAGE PARTS — furniture every multi-page site needs, in one place.

   Loaded between base.css and the site's own layout, so a layout can override
   any of it. Names no colour: everything here reads from theme tokens, which
   is why the same file serves a garden company, a law firm and an HVAC
   company without knowing which is which.
   ═══════════════════════════════════════════════════════════════════════════ */


/* The header is white-on-photo on the home page and dark-on-ground everywhere
   else, so the inner pages need it inverted. */
body.inner .top{position:static;background:var(--bg);border-bottom:1px solid var(--line)}
body.inner .brand{color:var(--ink)}
body.inner .top nav a{color:var(--body)}
body.inner .top nav a:hover{color:var(--accent-dark)}
body.inner .top nav a[aria-current]{color:var(--ink);border-bottom:1px solid var(--accent);padding-bottom:2px}
body.inner .top .call{color:var(--ink);border-bottom-color:var(--line)}

.phead{border-bottom:1px solid var(--line);background:var(--bg)}
.phead .in{max-width:1280px;margin-inline:auto;
  padding:clamp(48px,7vw,104px) clamp(20px,4vw,44px) clamp(40px,6vw,80px)}
.phead h1{font-size:clamp(2.1rem,1.4rem + 3.2vw,3.6rem);max-width:17ch;margin:0 0 24px}
.phead .lede{font-size:clamp(1.0625rem,1rem + .35vw,1.25rem);color:var(--body);max-width:56ch;margin:0}
.phead .eyebrow a{color:var(--accent-dark)}

.sec-label{font-family:var(--font-body);font-size:.8125rem;letter-spacing:.12em;
  text-transform:uppercase;color:var(--muted);font-weight:600;margin-bottom:36px}

/* three cards on the home page, linking out to the service pages */
.cards{display:grid;gap:2px;background:var(--line);border-block:1px solid var(--line)}
@media (min-width:820px){.cards{grid-template-columns:repeat(3,1fr)}}
.card{background:var(--bg);padding:clamp(28px,3.5vw,44px);text-decoration:none;color:inherit;
  display:flex;flex-direction:column;gap:12px;transition:background .18s}
.card:hover{background:var(--surface)}
.card .n{font-size:.75rem;letter-spacing:.1em;color:var(--muted)}
.card h3{font-size:clamp(1.25rem,1.05rem + .8vw,1.6rem);margin:0}
.card p{margin:0;color:var(--body);font-size:.9375rem;flex:1}
.card .go{color:var(--accent-dark);font-weight:600;font-size:.875rem;font-family:var(--font-body)}

/* the same three, as rows, on the services hub */
.rows{display:flex;flex-direction:column}
.row{display:grid;gap:10px 32px;padding:clamp(28px,3.5vw,44px) 0;border-top:1px solid var(--line);
  text-decoration:none;color:inherit;align-items:start}
.rows > .row:last-child{border-bottom:1px solid var(--line)}
@media (min-width:820px){.row{grid-template-columns:3.5rem minmax(0,1fr) auto;align-items:baseline}}
.row .n{font-size:.75rem;letter-spacing:.1em;color:var(--muted)}
.row h2{font-size:clamp(1.3rem,1.1rem + .9vw,1.75rem);margin:0 0 10px}
.row p{margin:0;color:var(--body);max-width:60ch}
.row .go{color:var(--accent-dark);font-weight:600;font-size:.875rem;white-space:nowrap;
  font-family:var(--font-body)}
a.row:hover h2{color:var(--accent-dark)}
.rows--plain .row{cursor:default}

/* contact */
.contact-grid{display:grid;gap:clamp(36px,5vw,72px)}
@media (min-width:900px){.contact-grid{grid-template-columns:minmax(0,1.25fr) minmax(0,.75fr)}}
.field{margin:0 0 22px;max-width:none}
.field label,.field .lbl{display:block;font-size:.875rem;color:var(--ink);margin-bottom:8px;
  font-weight:500}
.field input,.field textarea{width:100%;font:inherit;font-size:1rem;padding:13px 15px;
  border:1px solid var(--line);background:var(--card);color:var(--ink);border-radius:0;
  min-height:48px}
.field textarea{min-height:auto;resize:vertical}
.field input:focus-visible,.field textarea:focus-visible{outline:2px solid var(--accent-dark);
  outline-offset:1px;border-color:var(--accent-dark)}
.choices{display:flex;gap:20px;flex-wrap:wrap}
.choices label{display:inline-flex;align-items:center;gap:8px;font-weight:400;
  color:var(--body);min-height:44px;margin:0}
.choices input{width:auto;min-height:auto}
.fineprint{font-size:.875rem;color:var(--muted);max-width:46ch}
.aside{border-top:2px solid var(--ink);padding-top:24px}
.aside h2{font-size:1.4rem;margin-bottom:8px}
.aside h3{font-size:.8125rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);
  font-family:var(--font-body);font-weight:600;margin:28px 0 8px}
.aside p{color:var(--body);margin:0}
.bignum{font-family:var(--font-head);font-size:clamp(1.6rem,1.3rem + 1.4vw,2.2rem);
  color:var(--ink);text-decoration:none;font-variation-settings:'opsz' 96,'WONK' 1;
  display:inline-flex;align-items:center;min-height:44px}
.bignum:hover{color:var(--accent-dark)}
.next{margin:0;padding-left:1.15em;color:var(--body)}
.next li{padding:5px 0}

/* ── the /information/ page ─────────────────────────────────────────────────
   This is the client's own briefing: what governs a website in 2026, what we
   did about each item on their site, and where each rule actually comes from.
   Long-form, so it gets the narrowest measure on the site and the plainest
   treatment. */
.brief{max-width:840px}
.brief h1{font-size:clamp(2.1rem,1.4rem + 3.2vw,3.4rem);margin-bottom:20px}
.brief-lede{font-size:1.125rem;color:var(--body);margin-bottom:56px;max-width:60ch}
.brief h2{font-size:clamp(1.6rem,1.2rem + 1.6vw,2.2rem);margin:64px 0 20px;max-width:22ch}
.brief h3{font-size:clamp(1.3rem,1.1rem + .8vw,1.65rem);margin:52px 0 16px;
  font-family:var(--font-head);font-weight:400;letter-spacing:-.015em;
  font-variation-settings:'opsz' 72,'WONK' 1}
.brief h4{font-size:1rem;margin:28px 0 8px;font-family:var(--font-body);font-weight:600}
.brief p{color:var(--body);max-width:64ch}
.brief ul{color:var(--body);max-width:64ch;padding-left:1.15em}
.brief li{padding:5px 0}
.brief hr{border:0;border-top:1px solid var(--line);margin:56px 0}
.brief code{font-size:.9em;background:var(--surface);padding:2px 6px}
.brief a{color:var(--accent-dark)}
/* Sources and quoted regulator wording. A blockquote here is either Google's
   exact words or the citation line, and both need to look like evidence rather
   than emphasis. */
.brief blockquote{margin:24px 0;padding:16px 20px;background:var(--surface);
  border-left:3px solid var(--accent);color:var(--body);font-size:.9375rem;max-width:64ch}
.brief blockquote a{word-break:break-word}
