/* ==========================================================================
   Ferguson Digital Inc. — "Prairie Utility"
   --------------------------------------------------------------------------
   Rules of the house:
     · One accent colour. Oxidized elevator red. Nothing else competes.
     · No gradients. No box-shadows. No border-radius.
     · Left-aligned. Centred text is reserved for nothing.
     · Rules (hairlines and heavy lines) do the structural work that
       cards and shadows would do on a generic site.
     · Monospace is for labels and data. Never for prose.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Paper & ink -------------------------------------------------------- */
  --paper:       #f4f1ea;  /* warm newsprint */
  --paper-sunk:  #eae4d8;  /* recessed bands */
  --paper-raise: #fbf9f5;  /* lifted panels */
  --ink:         #16130f;  /* warm near-black */
  --ink-2:       #554e44;  /* secondary prose */
  --ink-3:       #8a8175;  /* meta, labels */
  --rule:        #d3ccbe;  /* hairline */
  --rule-heavy:  #16130f;  /* structural line */

  /* The one accent ----------------------------------------------------- */
  --accent:      #bf3a1f;
  --accent-deep: #932a13;
  --on-accent:   #fbf9f5;

  /* Type --------------------------------------------------------------- */
  --display: "IBM Plex Sans Condensed", "Arial Narrow", "Helvetica Neue", sans-serif;
  --body:    "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, "Cascadia Mono", "Consolas", monospace;

  /* Fluid type scale. Display runs hot; body stays readable. */
  --t-display: clamp(3.25rem, 9vw, 7.5rem);
  --t-h2:      clamp(2rem, 4.2vw, 3.25rem);
  --t-h3:      clamp(1.25rem, 2vw, 1.6rem);
  --t-lead:    clamp(1.0625rem, 1.4vw, 1.3125rem);
  --t-body:    1.0625rem;
  --t-small:   0.9375rem;
  --t-label:   0.75rem;

  /* Measure & rhythm --------------------------------------------------- */
  --measure:   62ch;
  --shell:     78rem;
  --gutter:    clamp(1.25rem, 5vw, 4rem);
  --band:      clamp(4rem, 9vw, 8rem);   /* vertical band padding */

  --line-hair: 1px solid var(--rule);
  --line-bold: 2px solid var(--rule-heavy);

  color-scheme: light dark;
}

/* Dark mode is a real mode here, not an inversion filter. The paper goes to
   a warm coal; the accent brightens slightly so it survives on dark. */
@media (prefers-color-scheme: dark) {
  :root {
    --paper:       #14120f;
    --paper-sunk:  #0d0c0a;
    --paper-raise: #1e1b17;
    --ink:         #f0ebe1;
    --ink-2:       #b3aa9c;
    --ink-3:       #7e7568;
    --rule:        #332e28;
    --rule-heavy:  #f0ebe1;
    --accent:      #e05433;
    --accent-deep: #f0714e;
    --on-accent:   #14120f;
  }
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--t-body);
  line-height: 1.6;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0;
}

p { margin: 0 0 1.1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

/* Focus is visible and unmistakable. Never remove it. */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  font-family: var(--mono);
  font-size: var(--t-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 100;
}
.skip:focus { left: 0; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.band { padding-block: var(--band); }
.band--sunk { background: var(--paper-sunk); }

/* The inverted band is ALWAYS dark — it must not follow the theme, or in dark
   mode it flips to a light band while its child text stays light-on-light.
   So it re-declares the whole token set locally with literal values. Every
   component inside it (.btn, .label, .lead, .hours) then works unmodified. */
.band--ink {
  background: #14120f;
  color: #f0ebe1;
  --paper:      #14120f;
  --ink:        #f0ebe1;
  --ink-2:      #b3aa9c;
  --ink-3:      #7e7568;
  --rule:       #3a342c;
  --rule-heavy: #f0ebe1;
  --accent:     #e05433;
  --accent-deep:#f0714e;
  --on-accent:  #14120f;
}

.rule-top { border-top: var(--line-bold); }

/* The universal small-caps monospace label. Used everywhere a section,
   field, or datum needs naming. This is the site's connective tissue. */
.label {
  display: block;
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin: 0 0 1.5rem;
}
.label--accent { color: var(--accent); }

.lead {
  font-size: var(--t-lead);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 46ch;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.5rem;
  font-family: var(--mono);
  font-size: var(--t-small);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: background-color 120ms linear, color 120ms linear, border-color 120ms linear;
}
.btn:hover, .btn:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}
.btn--accent:hover, .btn--accent:focus-visible {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: var(--on-accent);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

/* --------------------------------------------------------------------------
   5. Masthead
   -------------------------------------------------------------------------- */

.masthead {
  border-bottom: var(--line-bold);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
/* The period is the whole logo. Cheap, memorable, ours. */
.wordmark::after {
  content: ".";
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav a {
  font-family: var(--mono);
  font-size: var(--t-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding-block: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 120ms linear, color 120ms linear;
}
.nav a:hover, .nav a:focus-visible { border-bottom-color: var(--accent); }

.nav__phone {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 46rem) {
  .nav__links { display: none; }
}

/* --------------------------------------------------------------------------
   6. Hero — headline left, spec block right. No centring, no image needed.
   -------------------------------------------------------------------------- */

.hero {
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(3rem, 6vw, 5rem);
  border-bottom: var(--line-bold);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

@media (max-width: 62rem) {
  .hero__grid { grid-template-columns: 1fr; align-items: start; }
}

.hero__title {
  font-size: var(--t-display);
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__where {
  font-family: var(--mono);
  font-size: var(--t-small);
  color: var(--ink-2);
  max-width: 44ch;
  line-height: 1.7;
}

/* Nameplate block — a mono definition list under a heavy rule. Used for any
   short run of label/value pairs. */
.spec {
  border-top: var(--line-bold);
  padding-top: 1.25rem;
}

/* Hero variant: the phone number set as the nameplate itself. */
.callplate .label { margin-bottom: 0.75rem; }

.callplate__num {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
  width: fit-content;
  margin-bottom: 1.75rem;
  border-bottom: 3px solid transparent;
}
.callplate__num:hover,
.callplate__num:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.spec dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem 1.25rem;
  font-family: var(--mono);
  font-size: var(--t-label);
  line-height: 1.5;
}
.spec dt {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  white-space: nowrap;
}
.spec dd { margin: 0; color: var(--ink); }

/* --------------------------------------------------------------------------
   7. Service index — numbered full-width rows. The anti-card.
   -------------------------------------------------------------------------- */

.index { border-bottom: var(--line-bold); }

.index__row {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) minmax(0, 1.15fr) 3rem;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: var(--line-hair);
  text-decoration: none;
  color: inherit;
  transition: background-color 130ms linear, padding-inline 130ms linear;
}
.index__row:last-child { border-bottom: 0; }

/* Hover fills the whole row and inhales slightly. Tactile, mechanical,
   nothing like a card lifting on a shadow. */
.index__row:hover,
.index__row:focus-visible {
  background: var(--ink);
  color: var(--paper);
  padding-inline: 1.25rem;
  outline: none;
}
.index__row:hover .index__desc,
.index__row:focus-visible .index__desc { color: #b3aa9c; }
.index__row:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }

.index__num {
  font-family: var(--mono);
  font-size: var(--t-label);
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
}

.index__name {
  font-family: var(--display);
  font-size: var(--t-h3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.05;
}

.index__desc {
  color: var(--ink-2);
  font-size: var(--t-small);
  line-height: 1.5;
  transition: color 130ms linear;
  max-width: none;
  margin: 0;
}

.index__go {
  font-family: var(--mono);
  font-size: 1.125rem;
  text-align: right;
  color: var(--accent);
}

@media (max-width: 52rem) {
  .index__row {
    grid-template-columns: 3rem 1fr;
    row-gap: 0.5rem;
  }
  .index__desc { grid-column: 2; }
  .index__go   { display: none; }
}

/* Portfolio variant of the same row. No leading numeral — the domain does that
   job — because these are evidence, not a menu. Nothing here is for sale on
   this page, so there is deliberately no price and no buy affordance. */
/* The host column is a fixed width, not `auto`. With `auto` it sizes to each
   domain's length, which changes how the fr columns divide the remainder and
   leaves the description column ragged from row to row. */
.index__row--work {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr) 13rem;
}

/* Portfolio row with nowhere to click through to. Kills the hover affordance
   so it doesn't read as a broken link. */
.index__row--static { cursor: default; }
.index__row--static:hover { background: transparent; color: inherit; padding-inline: 0; }
.index__row--static:hover .index__desc { color: var(--ink-2); }

.index__host {
  font-family: var(--mono);
  font-size: var(--t-label);
  letter-spacing: 0.06em;
  color: var(--accent);
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 52rem) {
  .index__row--work { grid-template-columns: 1fr; }
  .index__row--work .index__desc { grid-column: 1; }
  .index__host { text-align: left; }
}

/* --------------------------------------------------------------------------
   8. Counters — the two storefronts. Split, full-bleed, hard rule between.
   -------------------------------------------------------------------------- */

.counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: var(--line-bold);
}
@media (max-width: 52rem) {
  .counters { grid-template-columns: 1fr; }
}

.counter {
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4.5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  text-decoration: none;
  color: inherit;
  border-right: var(--line-bold);
  transition: background-color 130ms linear;
}
.counter:last-child { border-right: 0; }
@media (max-width: 52rem) {
  .counter { border-right: 0; border-bottom: var(--line-bold); }
  .counter:last-child { border-bottom: 0; }
}

.counter:hover, .counter:focus-visible { background: var(--paper-raise); outline: none; }
.counter:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }

.counter__host {
  font-family: var(--mono);
  font-size: var(--t-label);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.counter__title {
  font-size: var(--t-h2);
  margin-bottom: 1rem;
}

.counter__body {
  color: var(--ink-2);
  font-size: var(--t-small);
  margin-bottom: 2rem;
  max-width: 42ch;
}

.counter__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  font-family: var(--mono);
  font-size: var(--t-label);
  letter-spacing: 0.04em;
  color: var(--ink-2);
  columns: 2;
  column-gap: 1.5rem;
}
.counter__list li { padding-block: 0.3rem; break-inside: avoid; }
.counter__list li::before { content: "· "; color: var(--accent); }

.counter__go {
  margin-top: auto;
  font-family: var(--mono);
  font-size: var(--t-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-top: var(--line-hair);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.counter:hover .counter__go span:last-child { color: var(--accent); }

/* --------------------------------------------------------------------------
   9. Plain-talk band — the "why us", written like a person
   -------------------------------------------------------------------------- */

.talk__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 5rem);
}
@media (max-width: 58rem) {
  .talk__grid { grid-template-columns: 1fr; }
}

.talk__title { font-size: var(--t-h2); }

.points {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: pt;
}
.points li {
  counter-increment: pt;
  border-top: var(--line-hair);
  padding-block: 1.5rem;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
}
.points li::before {
  content: "0" counter(pt);
  font-family: var(--mono);
  font-size: var(--t-label);
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 0.35rem;
}
.points h3 {
  font-size: 1.1875rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}
.points p { color: var(--ink-2); font-size: var(--t-small); margin: 0; }

/* --------------------------------------------------------------------------
   10. Coverage strip
   -------------------------------------------------------------------------- */

.coverage__towns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  margin-top: 2rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.15;
}
.coverage__towns span::after {
  content: "·";
  color: var(--accent);
  margin-inline: 0.6em;
}
.coverage__towns span:last-child::after { content: ""; margin: 0; }

/* --------------------------------------------------------------------------
   11. Contact
   -------------------------------------------------------------------------- */

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 58rem) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* The phone number is the loudest thing in this section. The email is a step
   down — sized off its own character count so a long address can't overrun
   the column and collide with the buttons beside it. */
.contact__big {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: block;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  margin-bottom: 0.35rem;
  border-bottom: 3px solid transparent;
}

.contact__big--email {
  font-size: clamp(1.375rem, 2.6vw, 2rem);
  letter-spacing: -0.01em;
}
.contact__big:hover, .contact__big:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.hours {
  font-family: var(--mono);
  font-size: var(--t-small);
  line-height: 1.9;
  color: var(--ink-2);
  border-top: var(--line-hair);
  padding-top: 1.25rem;
  margin-top: 2rem;
}
.hours strong { color: var(--ink); font-weight: 500; }

/* --------------------------------------------------------------------------
   12. Colophon (footer)
   -------------------------------------------------------------------------- */

.colophon {
  border-top: var(--line-bold);
  padding-block: 3rem 2.5rem;
  font-family: var(--mono);
  font-size: var(--t-label);
  line-height: 1.8;
  color: var(--ink-3);
}

.colophon__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.colophon h4 {
  font-family: var(--mono);
  font-size: var(--t-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.colophon a { text-decoration: none; }
.colophon a:hover { color: var(--accent); }

.colophon ul { list-style: none; margin: 0; padding: 0; }

.colophon__legal {
  border-top: var(--line-hair);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   13. Interior pages
   -------------------------------------------------------------------------- */

/* Quieter than the homepage hero — an interior page has already won the click,
   so it gets on with the argument instead of shouting the headline again. */
.pagehero {
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: var(--line-bold);
}

.pagehero__title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: var(--t-label);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-bottom: 1.75rem;
}
.crumb a { text-decoration: none; }
.crumb a:hover { color: var(--accent); }
.crumb__sep { color: var(--accent); }

/* Two-column body: sticky sidenote on the left, prose on the right. */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 58rem) {
  .split { grid-template-columns: 1fr; }
  .split__aside { position: static !important; }
}
.split__aside { position: sticky; top: 6.5rem; }

/* Included/excluded checklist. Rules only — no bullets, no icons. */
.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 40rem) { .checks { columns: 1; } }

.checks li {
  break-inside: avoid;
  border-top: var(--line-hair);
  padding-block: 0.85rem;
  font-size: var(--t-small);
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.5rem;
}
.checks li::before {
  content: "+";
  font-family: var(--mono);
  font-weight: 600;
  color: var(--accent);
}
.checks--out li::before { content: "\2212"; color: var(--ink-3); }

/* Price plate. Deliberately looks like a posted rate, not a pricing card. */
.plate {
  border: 2px solid var(--rule-heavy);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.plate + .plate { margin-top: 1.25rem; }

.plate__rate {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.plate__rate small {
  font-family: var(--mono);
  font-size: var(--t-small);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink-3);
}
.plate__note { font-size: var(--t-small); color: var(--ink-2); margin: 0; }

/* Full-width call to a storefront from inside a service page. */
.handoff {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 2px solid var(--rule-heavy);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  text-decoration: none;
  color: inherit;
  transition: background-color 130ms linear, color 130ms linear;
}
.handoff:hover, .handoff:focus-visible {
  background: var(--ink);
  color: var(--paper);
  outline: none;
}
.handoff:hover .handoff__note { color: #b3aa9c; }
.handoff__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--t-h3);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.handoff__note { font-size: var(--t-small); color: var(--ink-2); margin: 0; max-width: 48ch; }
.handoff__go {
  font-family: var(--mono);
  font-size: var(--t-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  white-space: nowrap;
}

.prose h3 {
  font-size: var(--t-h3);
  text-transform: uppercase;
  margin: 2.5rem 0 0.85rem;
}
.prose h3:first-child { margin-top: 0; }
.prose p { color: var(--ink-2); }

/* --------------------------------------------------------------------------
   14. Utilities
   -------------------------------------------------------------------------- */

.stack > * + * { margin-top: 1.25rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Marks content that still needs a real value from Scott. Loud on purpose —
   you should not be able to ship the site without noticing these.
   Delete this rule (and the class) once every placeholder is filled. */
.todo {
  background: var(--accent);
  color: var(--on-accent);
  padding: 0 0.35em;
  font-family: var(--mono);
  font-weight: 600;
}
