/* components.css — header, footer, buttons, cards, forms, media.
 * No raw colour values. Everything comes from tokens.css.
 */

/* --- buttons --------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  min-height: 48px;
  padding: var(--space-xs) var(--space-m);
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--primary {
  background: var(--action);
  color: var(--action-text);
}
.btn--primary:hover { background: var(--action-hover); color: var(--action-text); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--action-text);
}
.btn--whatsapp:hover { background: var(--whatsapp-hover); color: var(--action-text); }

.btn--ghost {
  background: transparent;
  color: var(--action);
  border-color: var(--border);
}
.btn--ghost:hover { background: var(--blue-050); color: var(--action-hover); }

.btn--on-ink {
  background: transparent;
  color: var(--text-on-ink);
  border-color: var(--border-ink);
}
.btn--on-ink:hover {
  background: var(--text-on-ink);
  color: var(--bg-ink);
  border-color: var(--text-on-ink);
}

.btn--block { width: 100%; }

.btn svg { flex: none; width: 20px; height: 20px; fill: currentColor; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

/* --- site header ----------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-s);
  min-height: 84px;
  padding-block: var(--space-2xs);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  text-decoration: none;
  color: var(--navy-800);
}
.brand__mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.brand__text { min-width: 0; }
.brand__name {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.brand__tag {
  display: block;
  margin-top: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* The supplied logo is a full lockup — name, truck and tagline stacked — so at
   header size only the truck stays legible. The name is set as real text
   beside it instead of being shrunk into an unreadable picture. */
@media (min-width: 480px) {
  .brand__mark { width: 68px; height: 68px; }
  .brand__name { font-size: 1.15rem; }
}
@media (min-width: 900px) {
  .brand__mark { width: 76px; height: 76px; }
  .brand__name { font-size: 1.22rem; }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3xs);
  min-height: 44px;
  padding: var(--space-2xs) var(--space-xs);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav {
  display: none;
  flex: 1;
}
.nav[data-open="true"] {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: var(--space-s) var(--gutter) var(--space-m);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-m);
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  display: block;
  padding: var(--space-2xs) 0;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}
.nav__link:hover { color: var(--action); }
.nav__link[aria-current="page"] {
  color: var(--action);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

.header-cta { display: none; white-space: nowrap; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav { display: block; }
  .nav__list { flex-direction: row; align-items: center; gap: var(--space-s); justify-content: flex-end; }
  .header-cta { display: inline-flex; }
}

/* Six nav links, a brand lockup and a button share one row from 900px up.
   The gap only widens once there is room, or the nav crowds the button. */
@media (min-width: 1080px) {
  .nav__list { gap: var(--space-m); }
}

/* --- hero ------------------------------------------------------------ */

.hero {
  position: relative;
  background: var(--bg-ink);
  color: var(--text-on-ink);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 55%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--scrim-hero);
}

.hero__inner {
  position: relative;
  padding-block: clamp(3rem, 11vw, 6.5rem);
}

.hero__content { max-width: 40rem; }

.hero h1 { color: var(--text-on-ink); }

.hero__lead {
  max-width: 34rem;
  color: var(--text-on-ink-muted);
  font-size: var(--step-1);
  line-height: var(--leading-snug);
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs) var(--space-s);
  margin: var(--space-m) 0 var(--space-l);
  padding: 0;
  list-style: none;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--text-on-ink);
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: var(--space-3xs);
}
.hero__points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--focus);
}

/* --- price cards ----------------------------------------------------- */

.price-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-m);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
}

.price-card__size {
  font-size: var(--step-1);
  font-weight: 800;
  margin-bottom: var(--space-3xs);
}

.price-card__from {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.price-card__amount {
  font-size: var(--step-3);
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy-800);
}

.price-card__note {
  margin-top: var(--space-2xs);
  margin-bottom: var(--space-m);
  font-size: var(--step--1);
  color: var(--text-muted);
}

.price-card .btn { margin-top: auto; }

.price-note {
  padding: var(--space-s) var(--space-m);
  background: var(--blue-050);
  border-left: 4px solid var(--action);
  border-radius: var(--radius-m);
  font-size: var(--step--1);
}
.price-note p { max-width: none; margin-bottom: 0; }

/* --- service cards --------------------------------------------------- */

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
}

.card__media {
  background: var(--grey-100);
}
/* The ratio sits on the image, not the container: as a column flex item the
   container's height comes from its content, so aspect-ratio there is ignored
   and portrait photographs made the three cards different heights. */
.card__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card__body { padding: var(--space-m); }
.card__body > :last-child { margin-bottom: 0; }
.card__body p { color: var(--text-muted); font-size: var(--step--1); }

/* --- split feature --------------------------------------------------- */

.split {
  display: grid;
  gap: var(--space-l);
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .split--reverse .split__media { order: 2; }
}

.split__media img {
  width: 100%;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}

.tick-list {
  margin: 0 0 var(--space-m);
  padding: 0;
  list-style: none;
}
.tick-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: var(--space-2xs);
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 1.1rem;
  height: 0.55rem;
  border-left: 3px solid var(--action);
  border-bottom: 3px solid var(--action);
  transform: rotate(-45deg);
}
.section--ink .tick-list li::before {
  border-color: var(--focus);
}

/* --- area list ------------------------------------------------------- */

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  margin: 0;
  padding: 0;
  list-style: none;
}
.area-list li {
  padding: var(--space-3xs) var(--space-xs);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: var(--step--1);
  font-weight: 600;
}

/* --- gallery --------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: var(--space-s);
}

.gallery__item {
  margin: 0;
  overflow: hidden;
  background: var(--grey-100);
  border-radius: var(--radius-m);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.gallery__item--wide { grid-column: span 1; }
@media (min-width: 720px) {
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--wide img { aspect-ratio: 16 / 9; }
}

/* --- form ------------------------------------------------------------ */

.form {
  padding: var(--space-m);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}
@media (min-width: 640px) {
  .form { padding: var(--space-l); }
}

.field { margin-bottom: var(--space-s); }

.field label {
  display: block;
  margin-bottom: var(--space-3xs);
  font-size: var(--step--1);
  font-weight: 700;
}

.field .hint {
  display: block;
  margin-top: var(--space-3xs);
  font-size: var(--step--1);
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: var(--space-2xs) var(--space-xs);
  background: var(--bg);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-m);
  color: var(--text);
  font: inherit;
}
.field textarea { min-height: 110px; resize: vertical; }

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: var(--ring);
  outline-offset: 1px;
  border-color: var(--action);
}

.field-row { display: grid; gap: var(--space-s); }
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.form__foot {
  margin-top: var(--space-m);
  font-size: var(--step--1);
  color: var(--text-muted);
}
.form__foot p { max-width: none; }

/* --- contact rows ---------------------------------------------------- */

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-list li + li {
  margin-top: var(--space-s);
  padding-top: var(--space-s);
  border-top: 1px solid var(--border);
}
.section--ink .contact-list li + li { border-top-color: var(--border-ink); }

.contact-list dt,
.contact-list .label {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.section--ink .contact-list .label { color: var(--text-on-ink-muted); }

.contact-list .value {
  font-size: var(--step-1);
  font-weight: 700;
}
.contact-list .value a { text-decoration: none; }
.contact-list .value a:hover { text-decoration: underline; }
.section--ink .contact-list .value a { color: var(--text-on-ink); }

/* --- footer ---------------------------------------------------------- */

.site-footer {
  background: var(--bg-ink-deep);
  color: var(--text-on-ink-muted);
  padding-block: var(--space-xl) var(--space-m);
  font-size: var(--step--1);
}

.site-footer h2 {
  font-size: var(--step-0);
  color: var(--text-on-ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer__grid {
  display: grid;
  gap: var(--space-l);
}
@media (min-width: 720px) {
  .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

.site-footer a {
  color: var(--text-on-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
.site-footer a:hover { color: var(--focus); }

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-list li + li { margin-top: var(--space-2xs); }

.site-footer__bottom {
  margin-top: var(--space-l);
  padding-top: var(--space-m);
  border-top: 1px solid var(--border-ink);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs) var(--space-m);
  justify-content: space-between;
}
.site-footer__bottom p { max-width: none; margin: 0; }

/* --- sticky mobile call bar ------------------------------------------ */

.action-bar {
  position: sticky;
  bottom: 0;
  z-index: 40;
  display: flex;
  gap: var(--space-2xs);
  padding: var(--space-2xs);
  background: var(--bg);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-up);
}
.action-bar .btn { flex: 1; min-height: 46px; padding-inline: var(--space-s); }

@media (min-width: 900px) {
  .action-bar { display: none; }
}

/* --- gallery triggers and lightbox ------------------------------------ */

.gallery__trigger {
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  border: 0;
  cursor: zoom-in;
}

.gallery__item figcaption {
  padding: var(--space-2xs) var(--space-3xs) 0;
  font-size: var(--step--1);
  line-height: var(--leading-snug);
  color: var(--text-muted);
}

/* `display: flex` here beats the user-agent [hidden] { display: none } rule,
   so the overlay must be hidden explicitly or it covers the page permanently. */
.lightbox[hidden] { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-m);
  background: var(--scrim-lightbox);
}

.lightbox__figure {
  max-width: min(1000px, 100%);
  max-height: 100%;
  margin: 0;
  overflow: auto;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: 78vh;
  margin-inline: auto;
  border-radius: var(--radius-m);
}

.lightbox__figure figcaption {
  padding-top: var(--space-s);
  color: var(--text-on-ink-muted);
  font-size: var(--step--1);
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: var(--space-s);
  right: var(--space-s);
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid var(--border-ink);
  border-radius: 50%;
  color: var(--text-on-ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover {
  background: var(--text-on-ink);
  color: var(--bg-ink);
}


/* --- reviews ---------------------------------------------------------- */
/* Two scoreboards and a list of verbatim reviews. Both are fed from data
   files by js/site.js - see reviews.html for why none of it is marked up as
   schema.org Review or aggregateRating. */

/* The two cards hold different amounts - Wise Move publishes four category
   scores, Google publishes none - so they take their natural heights rather
   than stretching the short one to match. See the grid rule below. */
.score-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-m);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
}

/* Applied to the grid that holds them, not with :has(), so the rule works on
   whatever a customer is browsing on. */
.score-cards { align-items: start; }

.score-card__source {
  color: var(--text-muted);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score-card__value {
  margin: var(--space-3xs) 0 0;
  color: var(--navy-800);
  font-size: var(--step-4);
  font-weight: 800;
  line-height: var(--leading-tight);
}

/* "out of 10" rides at body size beside a very large number, so the number is
   what the eye lands on and the scale is still stated. */
.score-card__of {
  color: var(--text-muted);
  font-size: var(--step-0);
  font-weight: 600;
  white-space: nowrap;
}

.score-card__count {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--step--1);
}

.score-card__note {
  margin: var(--space-2xs) 0 0;
  color: var(--text-muted);
  font-size: var(--step--1);
}

.score-card__link {
  margin-top: var(--space-s);
  padding-top: var(--space-s);
  border-top: 1px solid var(--border);
  font-weight: 600;
}

/* The per-category bars make one card taller than the other, so the link is
   pushed to the bottom and the two cards line up along their last row. */
.score-card__bars {
  margin: var(--space-s) 0 0;
  padding: 0;
  list-style: none;
}
.score-card__bars:empty { margin: 0; }

.score-bar {
  display: grid;
  grid-template-columns: 8.5rem 1fr 2.2rem;
  align-items: center;
  gap: var(--space-2xs);
  font-size: var(--step--1);
}
.score-bar + .score-bar { margin-top: var(--space-3xs); }

.score-bar__name { color: var(--text-muted); }

.score-bar__track {
  height: 6px;
  background: var(--grey-100);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.score-bar__fill {
  display: block;
  height: 100%;
  background: var(--blue-600);
  border-radius: var(--radius-pill);
}

.score-bar__score {
  color: var(--text);
  font-weight: 700;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Widths are classes rather than inline styles: style-src in the site's CSP
   carries no 'unsafe-inline', so a style="" attribute would be dropped.
   See docker/nginx.conf. */
.score-bar__fill--0 { width: 0%; }
.score-bar__fill--5 { width: 5%; }
.score-bar__fill--10 { width: 10%; }
.score-bar__fill--15 { width: 15%; }
.score-bar__fill--20 { width: 20%; }
.score-bar__fill--25 { width: 25%; }
.score-bar__fill--30 { width: 30%; }
.score-bar__fill--35 { width: 35%; }
.score-bar__fill--40 { width: 40%; }
.score-bar__fill--45 { width: 45%; }
.score-bar__fill--50 { width: 50%; }
.score-bar__fill--55 { width: 55%; }
.score-bar__fill--60 { width: 60%; }
.score-bar__fill--65 { width: 65%; }
.score-bar__fill--70 { width: 70%; }
.score-bar__fill--75 { width: 75%; }
.score-bar__fill--80 { width: 80%; }
.score-bar__fill--85 { width: 85%; }
.score-bar__fill--90 { width: 90%; }
.score-bar__fill--95 { width: 95%; }
.score-bar__fill--100 { width: 100%; }

.review-list {
  margin: var(--space-l) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-m);
}

@media (min-width: 860px) {
  /* align-items lets each card end where its text ends. Stretching them to
     match their neighbour leaves a two-line review sitting in a half-empty
     box, which reads as a missing photograph rather than a short review. */
  .review-list { grid-template-columns: repeat(2, 1fr); align-items: start; }
}

.review-card {
  padding: var(--space-m);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-2xs);
}

/* The score sits in a disc rather than inside the text, so a reader scanning
   the column can see at a glance that the low ones were not left out. */
.review-card__score {
  display: grid;
  place-items: center;
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--blue-025);
  border-radius: 50%;
  color: var(--navy-800);
  font-size: var(--step-0);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.review-card__who {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.review-card__name { font-weight: 700; }

.review-card__place {
  color: var(--text-muted);
  font-size: var(--step--1);
}

.review-card__job {
  margin: 0 0 var(--space-2xs);
  color: var(--text-muted);
  font-size: var(--step--1);
  font-style: italic;
}

.review-card__text {
  margin: 0 0 var(--space-2xs);
  font-size: var(--step--1);
}
.review-card__text:last-of-type { margin-bottom: 0; }

.review-card__reply {
  margin-top: var(--space-s);
  padding-left: var(--space-s);
  border-left: 3px solid var(--blue-100);
}

.review-card__reply p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--step--1);
}

.review-card__reply-from {
  display: block;
  margin-bottom: var(--space-3xs);
  color: var(--accent-text);
  font-size: var(--step--1);
  font-weight: 700;
}

.review-card__when {
  margin: var(--space-s) 0 0;
  color: var(--text-muted);
  font-size: var(--step--1);
}


/* --- breadcrumb -------------------------------------------------------- */
/* Area pages only. It is a real navigation aid on a page a visitor usually
   lands on from a search result rather than from the home page, and it backs
   the BreadcrumbList markup that Google renders in place of a bare URL. */

.breadcrumb {
  padding-block: var(--space-s);
  border-bottom: 1px solid var(--border);
  font-size: var(--step--1);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li { color: var(--text-muted); }

.breadcrumb li + li::before {
  content: "/";
  margin-right: var(--space-2xs);
  color: var(--grey-300);
}

.breadcrumb a { color: var(--action); }

.breadcrumb [aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}


/* Links to the area pages, on the home page and the services page. A row of
   pills rather than a bullet list: it reads as navigation, which is what it
   is, and it survives being centred inside .u-center. */
.area-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2xs);
  margin: var(--space-m) 0 0;
  padding: 0;
  list-style: none;
}

.area-links a {
  display: inline-block;
  padding: var(--space-2xs) var(--space-s);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--action);
  font-size: var(--step--1);
  font-weight: 600;
  text-decoration: none;
}

.area-links a:hover {
  border-color: var(--action);
  background: var(--blue-050);
}


/* --- FAQ --------------------------------------------------------------- */
/* <details> rather than a JavaScript accordion: it opens without script, it
   is keyboard-operable and announced correctly for free, and Ctrl+F finds
   text inside a closed one in current browsers. */

.faq {
  margin-top: var(--space-m);
  border-top: 1px solid var(--border);
}

.faq__item { border-bottom: 1px solid var(--border); }

.faq__item summary {
  padding: var(--space-s) var(--space-l) var(--space-s) 0;
  position: relative;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: var(--space-s);
  color: var(--action);
  font-size: var(--step-1);
  line-height: 1;
}
.faq__item[open] summary::after { content: "3"; }

.faq__item summary:hover { color: var(--action); }
.faq__item summary:focus-visible { outline: var(--ring); outline-offset: 2px; }

.faq__answer { padding-bottom: var(--space-s); }
.faq__answer p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--step--1);
}


/* The build credit. Sits at the end of the footer's bottom row, muted enough
   that it reads as a signature rather than as another piece of the business's
   own information. */
.site-footer__credit { color: var(--text-on-ink-muted); }
.site-footer__credit a { color: var(--text-on-ink); }
.site-footer__credit a:hover { color: var(--focus); }
