/* Cain's Junk Removal Services LLC
   One stylesheet, mobile-first. Palette is lifted from the logo and the
   lettering on their trailer: lime green, yellow, near-black. */

/* ---------- tokens ---------- */

:root {
  /* Brand */
  --green: #7dc242;          /* logo disc, shirt, trailer lettering */
  --green-deep: #3e6b15;     /* text weight on light backgrounds (5.6:1 on white) */
  --green-dark: #2c4d0f;
  --yellow: #f5c242;         /* "JUNK REMOVAL" wordmark */
  --ink: #141414;            /* logo shield, trailer body */
  --ink-soft: #232323;

  /* Neutrals */
  --white: #ffffff;
  --paper: #f6f7f4;
  --line: #e2e5dd;
  --gray: #5d635a;
  --gray-light: #8b9186;

  /* Type */
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;

  /* Space */
  --gutter: 1.25rem;
  --max: 1180px;
  --radius: 14px;
  --radius-sm: 8px;

  /* Darkens the hero photo enough to hold white text at AA over any part of it */
  --hero-scrim: linear-gradient(105deg,
    rgba(20, 20, 20, .94) 0%, rgba(20, 20, 20, .86) 45%, rgba(20, 20, 20, .62) 100%);

  --shadow: 0 1px 2px rgba(20, 20, 20, .06), 0 8px 24px rgba(20, 20, 20, .08);
  --shadow-lg: 0 2px 4px rgba(20, 20, 20, .08), 0 18px 48px rgba(20, 20, 20, .16);
}

/* ---------- 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: .01ms !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 800;
}

h1 { font-size: clamp(2.1rem, 6.2vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 4.4vw, 2.7rem); }
h3 { font-size: clamp(1.18rem, 2.4vw, 1.4rem); letter-spacing: -.01em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--green-deep); text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:hover { color: var(--green-dark); }

:focus-visible {
  outline: 3px solid var(--green-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Anything clickable says so. */
button, summary, [role="button"], label[for], .btn, .card-link { cursor: pointer; }
button[disabled], .btn[disabled], [aria-disabled="true"] { cursor: not-allowed; }
input, textarea, select { cursor: auto; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--white);
  padding: .85rem 1.25rem; z-index: 200; border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus { left: 0; color: var(--white); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- layout ---------- */

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

section { padding-block: clamp(3rem, 7vw, 5.5rem); }

.section-head { max-width: 46rem; margin-bottom: 2.25rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: var(--green-deep); margin-bottom: .7rem;
}
.on-dark .eyebrow { color: var(--green); }

.lead { font-size: clamp(1.05rem, 1.7vw, 1.2rem); color: var(--gray); }
.on-dark .lead { color: #c3c8bd; }

.tint { background: var(--paper); }

.on-dark { background: var(--ink); color: var(--white); }
.on-dark h2, .on-dark h3 { color: var(--white); }
.on-dark a { color: var(--green); }

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px; padding: .8rem 1.6rem;
  border: 2px solid transparent; border-radius: 999px;
  font: inherit; font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em;
  text-decoration: none; text-align: center;
  transition: transform .12s ease, background-color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--green); color: var(--ink); }
.btn-primary:hover { background: #8fd451; color: var(--ink); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-soft); color: var(--white); }

.btn-ghost { background: transparent; color: var(--ink); border-color: currentColor; }
.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* Ghost buttons sitting on a dark background need to invert — otherwise the
   default near-black text disappears into the photo behind the hero. */
.on-dark .btn-ghost,
.hero .btn-ghost,
.page-head .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}
.on-dark .btn-ghost:hover,
.hero .btn-ghost:hover,
.page-head .btn-ghost:hover {
  background: var(--white); color: var(--ink); border-color: var(--white);
}

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

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

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

.header-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 74px;
  /* The open mobile nav is a flex child that has to drop onto its own full-width
     row below the logo — without wrap it squeezes in beside it as a column. */
  flex-wrap: wrap;
}

.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; flex-shrink: 0; }
.brand img { width: 52px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-weight: 800; font-size: 1.06rem; color: var(--ink); letter-spacing: -.02em;
}
.brand-tag {
  font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-deep);
}

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; padding: 0;
  background: transparent; border: 2px solid var(--line); border-radius: var(--radius-sm);
  color: var(--ink);
}
.nav-toggle:hover { border-color: var(--ink); }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.header-actions { display: flex; align-items: center; gap: .6rem; }
.header-cta { display: none; }

.site-nav { display: none; width: 100%; flex-basis: 100%; order: 3; }
.site-nav.open { display: block; }

.site-nav ul {
  list-style: none; margin: 0; padding: .5rem 0 1.25rem;
  border-top: 1px solid var(--line);
}
.site-nav li + li { border-top: 1px solid var(--line); }
.site-nav a {
  display: block; padding: .95rem .25rem; min-height: 48px;
  font-weight: 700; color: var(--ink); text-decoration: none;
}
.site-nav a:hover { color: var(--green-deep); }
.site-nav a[aria-current="page"] { color: var(--green-deep); }
.site-nav .nav-cta { margin-top: .9rem; }
.site-nav .nav-cta a {
  background: var(--green); border-radius: 999px; text-align: center; color: var(--ink);
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; margin-left: auto; width: auto; flex-basis: auto; order: 0; }
  .site-nav ul {
    display: flex; align-items: center; gap: .35rem;
    padding: 0; border-top: 0;
  }
  .site-nav li + li { border-top: 0; }
  .site-nav a { padding: .55rem .8rem; min-height: 44px; display: flex; align-items: center; border-radius: var(--radius-sm); }
  .site-nav a:hover { background: var(--paper); }
  .site-nav a[aria-current="page"] { background: var(--paper); }
  .site-nav .nav-cta { display: none; }
  .header-cta { display: inline-flex; }
}

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

.hero {
  position: relative; isolation: isolate;
  padding-block: clamp(3.5rem, 9vw, 7rem);
  background: var(--ink); color: var(--white);
}
/* The hero photo is a CSS background, so it can't use <picture>. Swap the
   source by viewport instead — a phone has no business downloading the 1800px
   file.

   These URLs live here rather than in a style="" attribute on the element:
   the site ships `style-src 'self'` with no 'unsafe-inline', which blocks
   inline style attributes outright. Putting them inline silently killed the
   hero in production while it worked fine locally. */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: var(--hero-scrim), url("/img/hero-loaded-trailer-800.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 700px) {
  .hero::after {
    background-image: var(--hero-scrim), url("/img/hero-loaded-trailer-1200.jpg");
  }
}
@media (min-width: 1250px) {
  .hero::after {
    background-image: var(--hero-scrim), url("/img/hero-loaded-trailer-1800.jpg");
  }
}
.hero-inner { max-width: 42rem; }

/* The H1 is a full sentence carrying the service + service area, so it wants a
   smaller ceiling than a short punchy headline would. */
.hero h1 {
  color: var(--white); text-wrap: balance;
  font-size: clamp(1.95rem, 5vw, 3.15rem);
}

.hero-sub {
  font-size: clamp(1.08rem, 2vw, 1.28rem); color: #d6dbd0;
  margin-bottom: 1.5rem; max-width: 34rem;
}
.hero-sub strong { color: var(--yellow); font-weight: 800; }

/* The brand line. Sits directly above the CTAs so it reads into the phone
   number rather than competing with the H1. */
.hero-kicker {
  font-size: clamp(1.25rem, 2.7vw, 1.7rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.2;
  color: var(--white); margin-bottom: 1.6rem;
}
.hero-kicker .shark { color: var(--green); white-space: nowrap; }

.hero .btn-row { margin-bottom: 1.4rem; }

.hero-note { font-size: .95rem; color: #aab0a2; margin: 0; }

/* trust strip */
.trust {
  background: var(--green); color: var(--ink);
  padding-block: 1rem;
}
.trust ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: .5rem 1.75rem;
  grid-template-columns: repeat(2, 1fr);
  font-weight: 800; font-size: .93rem; letter-spacing: -.01em;
}
.trust li { display: flex; align-items: center; gap: .5rem; }
.trust svg { width: 19px; height: 19px; flex-shrink: 0; }
@media (min-width: 760px) {
  .trust ul { grid-template-columns: repeat(4, auto); justify-content: space-between; }
}

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

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 620px) {
  .grid-2, .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 940px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; display: flex; flex-direction: column;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.tint .card { background: var(--white); }
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--gray); font-size: .98rem; }

.card-link { text-decoration: none; color: inherit; }
.card-link:hover {
  border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px);
  color: inherit;
}
.card-link .more {
  margin-top: auto; padding-top: .9rem;
  font-weight: 800; font-size: .93rem; color: var(--green-deep);
  display: inline-flex; align-items: center; gap: .35rem;
}

.card-icon {
  width: 46px; height: 46px; margin-bottom: 1rem;
  display: grid; place-items: center;
  background: var(--green); border-radius: 12px; color: var(--ink);
}
.card-icon svg { width: 25px; height: 25px; }

/* ---------- steps ---------- */

.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.steps li { position: relative; padding-top: 3.6rem; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 2.7rem; height: 2.7rem; display: grid; place-items: center;
  background: var(--green); color: var(--ink);
  border-radius: 50%; font-weight: 800; font-size: 1.2rem;
}
.steps h3 { margin-bottom: .35rem; }
.steps p { color: var(--gray); margin: 0; }
.on-dark .steps p { color: #c3c8bd; }

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

.gallery { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .gallery { grid-template-columns: repeat(3, 1fr); } }

.shot {
  margin: 0; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--white);
}
.shot img { width: 100%; }
.shot figcaption {
  padding: .85rem 1.05rem; font-size: .93rem; font-weight: 700; color: var(--ink);
  border-top: 1px solid var(--line);
}
.shot figcaption span { display: block; font-weight: 500; color: var(--gray); font-size: .88rem; }

.badge-ba {
  display: inline-block; margin-bottom: .3rem;
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-deep);
}

/* two-up before/after pair */
.pair { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 660px) { .pair { grid-template-columns: 1fr 1fr; } }
.pair figure { margin: 0; }
.pair img { border-radius: var(--radius); border: 1px solid var(--line); width: 100%; }
.pair figcaption {
  margin-top: .6rem; font-weight: 800; font-size: .85rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gray);
}
.on-dark .pair figcaption { color: var(--green); }
.on-dark .pair img { border-color: #333; }

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

.split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .split.media-first > :first-child { order: 2; }
}
.split img { border-radius: var(--radius); }

/* ---------- testimonials ---------- */

.quotes { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .quotes { grid-template-columns: repeat(2, 1fr); } }

.quote {
  margin: 0; padding: 1.7rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; flex-direction: column;
}
.on-dark .quote { background: var(--ink-soft); border-color: #333; }

.stars { color: var(--green); letter-spacing: .12em; font-size: 1.02rem; margin-bottom: .8rem; }

.quote blockquote { margin: 0 0 1.1rem; font-size: 1.02rem; }
.quote figcaption { margin-top: auto; font-weight: 800; font-size: .95rem; }
.quote figcaption span { display: block; font-weight: 500; color: var(--gray); font-size: .87rem; }
.on-dark .quote figcaption span { color: var(--gray-light); }

.rating-line {
  display: inline-flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  font-weight: 800;
}
.rating-line .score { font-size: 1.5rem; color: var(--green); }

/* ---------- service area ---------- */

.areas { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .55rem; }
.areas li {
  padding: .42rem .9rem; background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; font-size: .92rem; font-weight: 600;
}
.on-dark .areas li { background: var(--ink-soft); border-color: #333; }

/* ---------- price list ---------- */

.pricing { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .pricing { grid-template-columns: repeat(3, 1fr); } }

.plan {
  border: 2px solid var(--line); border-radius: var(--radius); padding: 1.75rem;
  background: var(--white); display: flex; flex-direction: column;
}
.plan.featured { border-color: var(--green); box-shadow: var(--shadow); }
.plan .term {
  font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-deep); margin-bottom: .5rem;
}
.plan h3 { margin-bottom: .3rem; }
.plan .note { color: var(--gray); font-size: .96rem; margin-bottom: 1.3rem; }
.plan ul { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .55rem; }
.plan li { display: flex; gap: .55rem; align-items: flex-start; font-size: .97rem; }
.plan li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: .25rem; color: var(--green-deep); }
.plan .btn { margin-top: auto; }

.tag-featured {
  align-self: flex-start; margin-bottom: .8rem;
  background: var(--green); color: var(--ink); border-radius: 999px;
  padding: .25rem .75rem; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
}

/* ---------- service list ---------- */

.svc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
@media (min-width: 620px) { .svc-list { grid-template-columns: repeat(2, 1fr); } }
.svc-list li {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: .9rem 1.1rem; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-weight: 600;
}
.svc-list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: .28rem; color: var(--green-deep); }

/* ---------- CTA band ---------- */

.cta-band { background: var(--green); color: var(--ink); text-align: center; }
.cta-band h2 { color: var(--ink); }
.cta-band p { color: #2f4a15; font-size: 1.1rem; max-width: 38rem; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.6rem; }
.cta-band .btn-dark:hover { background: #000; }

/* ---------- forms ---------- */

.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 620px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}

.field label {
  display: block; font-weight: 700; font-size: .95rem; margin-bottom: .35rem;
}
.field .hint { font-weight: 500; color: var(--gray); font-size: .87rem; }

.field input, .field textarea, .field select {
  width: 100%; min-height: 50px; padding: .7rem .9rem;
  font: inherit; color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line); border-radius: var(--radius-sm);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--green-deep); outline: none;
  box-shadow: 0 0 0 3px rgba(62, 107, 21, .16);
}
.field input:invalid:not(:placeholder-shown) { border-color: #b3261e; }

.form-status {
  margin-top: 1.1rem; padding: .95rem 1.15rem; border-radius: var(--radius-sm);
  font-weight: 700; display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: #eaf6df; color: var(--green-dark); border: 1px solid var(--green); }
.form-status.err { background: #fdecea; color: #8c1d18; border: 1px solid #f0b4ae; }

.consent { font-size: .88rem; color: var(--gray); }

/* ---------- fastest-path callout ---------- */

/* The hero CTA promises "send a photo". Web3Forms only does attachments on a
   paid plan, and texting is the better path anyway — it lands on the phone the
   Cains actually answer, not an inbox. This makes good on the promise. */
.fast-path {
  border: 2px solid var(--green); border-radius: var(--radius);
  background: var(--paper); padding: 1.6rem; margin-bottom: 2.5rem;
}
.fast-path h2 { font-size: clamp(1.4rem, 2.6vw, 1.75rem); margin-bottom: .5rem; }
.fast-path p { color: var(--gray); font-size: .99rem; margin-bottom: 1.25rem; }
.fast-path .btn { min-height: 48px; padding-inline: 1.35rem; }

/* ---------- contact details ---------- */

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.35rem; }
.contact-list dt, .contact-item-label {
  font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-deep); margin-bottom: .2rem;
}
.contact-item-value { font-size: 1.12rem; font-weight: 700; }
.contact-item-value-sm { font-size: 1rem; }
.contact-item-value a { color: var(--ink); text-decoration: none; }
.contact-item-value a:hover { color: var(--green-deep); text-decoration: underline; }

.hours { width: 100%; border-collapse: collapse; font-size: .98rem; }
.hours th, .hours td { text-align: left; padding: .5rem 0; border-bottom: 1px solid var(--line); }
.hours th { font-weight: 700; }
.hours td { text-align: right; color: var(--gray); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }

/* ---------- prose (legal pages) ---------- */

.prose { max-width: 44rem; }
.prose h2 { margin-top: 2.25rem; font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
.prose h2:first-of-type { margin-top: 0; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .45rem; }
.prose .updated { color: var(--gray); font-size: .95rem; }

/* ---------- page header ---------- */

.page-head { background: var(--ink); color: var(--white); padding-block: clamp(2.75rem, 6vw, 4.25rem); }
.page-head h1 { color: var(--white); margin-bottom: .5rem; }
.page-head p { color: #c3c8bd; max-width: 42rem; font-size: 1.1rem; margin: 0; }

.crumbs { font-size: .88rem; margin-bottom: .9rem; color: var(--gray-light); }
.crumbs a { color: var(--green); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

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

.site-footer { background: var(--ink); color: #b9bfb2; padding-block: 3.25rem 2rem; font-size: .96rem; }
.site-footer a { color: #dfe3d9; text-decoration: none; }
.site-footer a:hover { color: var(--green); text-decoration: underline; }

.footer-grid { display: grid; gap: 2.25rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer-brand img { width: 76px; margin-bottom: .9rem; }
.footer-brand p { max-width: 26rem; }

.site-footer h2 {
  font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); margin-bottom: .9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }

.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #2e2e2e;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .89rem;
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.1rem; list-style: none; margin: 0; padding: 0; }

/* ---------- utilities ----------
   The CSP blocks inline style="" attributes, so one-off spacing lives here
   instead. Keep this list short — if something needs more than spacing, it
   wants a real class. */

.m0 { margin: 0; }
.mt-1 { margin-top: 1rem; }
.mt-125 { margin-top: 1.25rem; }
.mt-15 { margin-top: 1.5rem; }
.mt-175 { margin-top: 1.75rem; }
.mt-2 { margin-top: 2rem; }
.mb-175 { margin-bottom: 1.75rem; }

.card-paper { background: var(--paper); }

/* A single testimonial, centered, rather than the usual two-up grid */
.quotes-single { grid-template-columns: 1fr; max-width: 44rem; margin-inline: auto; }

/* ---------- 404 ---------- */

.notfound { text-align: center; padding-block: clamp(4rem, 12vw, 8rem); }
.notfound img { width: 130px; margin: 0 auto 1.75rem; }
.notfound .lead { max-width: 34rem; margin: 0 auto 2rem; }
.notfound .btn-row { justify-content: center; }
