/* ============================================================
   Perry's Lawn Care — Manassas, VA
   Identity: precision groundskeeping. Square corners, hairline
   rules, a hard "cut edge" motif. Palette sampled from Perry's
   own photos: white gravel, dark mulch, fresh turf, dusk sky.
   ============================================================ */

/* === defensive base — injected by harden_css.py; do not hand-edit === */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { scroll-padding-top: calc(var(--nav-h, 72px) + 1rem); }
img, svg, video, iframe, canvas, table { display: block; max-width: 100%; }
p, li, h1, h2, h3, h4, blockquote, td, dd, dt { overflow-wrap: anywhere; }
form[style*="min-height"] { align-content: center; }
/* === end defensive base === */

:root {
  /* ink + structure */
  --ink:        #0f1512;   /* near-black, green-shifted */
  --slate:      #26312c;
  --slate-2:    #3b4a43;

  /* the trade */
  --turf:       #3f7d38;   /* fresh cut grass */
  --turf-deep:  #2b5726;
  --turf-soft:  #8fb383;
  --mulch:      #3a2a21;   /* dark hardwood mulch */

  /* surfaces */
  --gravel:     #edeee9;   /* the white gravel in the beds */
  --paper:      #f8f9f6;
  --stone:      #cfd3ca;
  --stone-2:    #9aa196;
  --sky:        #8fa7b5;   /* dusk sky */

  /* action */
  --signal:     #b53324;
  --signal-2:   #97281b;

  --wrap: 1200px;
  --pad: clamp(1.25rem, 5vw, 3.5rem);
  --nav-h: 72px;

  --fnt-display: 'Bricolage Grotesque', 'Trebuchet MS', sans-serif;
  --fnt-body: 'Instrument Sans', 'Helvetica Neue', sans-serif;

  --edge: 1px solid var(--stone);
  --shadow: 0 1px 0 rgba(15, 21, 18, .06), 0 18px 40px -28px rgba(15, 21, 18, .45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--fnt-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, .display {
  font-family: var(--fnt-display);
  font-optical-sizing: auto;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
a { color: inherit; }
img, picture { display: block; }

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

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

/* ---- the "cut edge" eyebrow: a hard turf bar + tracked micro-label ---- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--slate-2);
}
.eyebrow::before {
  content: '';
  width: 30px; height: 3px;
  background: var(--turf);
  flex: none;
}
.eyebrow.on-dark { color: var(--stone); }
.eyebrow.on-dark::before { background: var(--turf-soft); }

/* ---- buttons: square, deliberate, no gloss ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--fnt-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease,
              border-color .18s ease, transform .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--signal); color: #fff; }
.btn-primary:hover { background: var(--signal-2); }

.btn-ghost {
  background: transparent;
  color: var(--gravel);
  border-color: rgba(237, 238, 233, .42);
}
.btn-ghost:hover { border-color: var(--gravel); background: rgba(237, 238, 233, .1); }

.btn-dark { background: var(--ink); color: var(--gravel); }
.btn-dark:hover { background: var(--slate); }

.btn-quiet {
  background: transparent;
  color: var(--ink);
  border-color: var(--stone);
}
.btn-quiet:hover { border-color: var(--ink); }

.btn-block { width: 100%; }
.btn[disabled] { opacity: 1; cursor: default; transform: none; }

/* ============================== NAV ============================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--nav-h);
  background: rgba(15, 21, 18, .95);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(237, 238, 233, .13);
}
.nav-in {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--gravel);
  margin-right: auto;
}
.brand svg { width: 30px; height: 30px; flex: none; }
.brand-txt { display: grid; line-height: 1; }
.brand-txt b {
  font-family: var(--fnt-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -.02em;
}
.brand-txt span {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone-2);
  margin-top: .18rem;
}

.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  color: var(--stone);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  padding-block: .3rem;
  border-bottom: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.nav-links a:hover { color: #fff; border-bottom-color: var(--turf); }
.nav .btn { padding: .68rem 1.1rem; font-size: .85rem; }

.burger {
  display: none;
  width: 42px; height: 38px;
  background: transparent;
  border: 1px solid rgba(237, 238, 233, .3);
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger i {
  display: block;
  width: 18px; height: 2px;
  background: var(--gravel);
  position: relative;
}
.burger i::before, .burger i::after {
  content: ''; position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--gravel);
}
.burger i::before { top: -6px; }
.burger i::after { top: 6px; }

@media (max-width: 880px) {
  :root { --nav-h: 60px; }
  .burger { display: grid; }
  .nav-links {
    display: none;               /* hard-hidden until toggled */
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid rgba(237, 238, 233, .14);
    padding: .5rem var(--pad) 1.4rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: .95rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(237, 238, 233, .1);
  }
  .nav-links a:hover { border-bottom-color: rgba(237, 238, 233, .1); }
  .nav-links .btn { margin-top: 1rem; }
}

/* ============================== HERO ============================== */
.hero {
  position: relative;
  container-type: inline-size;         /* hero type scales to its own width */
  min-height: calc(100svh - var(--nav-h) - 4px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  /* the source is an overcast dusk shot — lift it so the beds read through */
  filter: brightness(1.16) saturate(1.06);
}
/* Dark enough on the left for white text, light enough on the right that the
   house and the mulched beds are still the thing you notice. */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(97deg, rgba(15, 21, 18, .92) 0%, rgba(15, 21, 18, .8) 32%,
                    rgba(15, 21, 18, .42) 64%, rgba(15, 21, 18, .14) 100%),
    linear-gradient(to top, rgba(15, 21, 18, .6) 0%, rgba(15, 21, 18, 0) 40%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(2rem, 5cqi, 3.5rem) var(--pad);
  display: flex;
  flex-direction: column;
  gap: clamp(.85rem, 2.4cqi, 1.5rem);
  color: var(--gravel);
}
.hero h1 {
  font-size: clamp(2.4rem, 11.5cqi, 5.6rem);
  font-weight: 800;
  line-height: .95;
  max-width: 15ch;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  color: var(--turf-soft);
}
.hero-sub {
  font-size: clamp(1rem, 2.3cqi, 1.2rem);
  line-height: 1.55;
  max-width: 46ch;
  color: rgba(237, 238, 233, .88);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; }

.hero-proof {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.4rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--stone);
}
.hero-proof li { display: flex; align-items: center; gap: .5rem; }
.hero-proof li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--turf-soft);
  flex: none;
}

@media (max-width: 700px) {
  /* vertical wash: text sits low, so keep the bottom dark and let the top of
     the frame stay bright enough to actually see the house */
  .hero::after {
    background:
      linear-gradient(to top, rgba(15, 21, 18, .93) 0%, rgba(15, 21, 18, .86) 42%,
                      rgba(15, 21, 18, .64) 72%, rgba(15, 21, 18, .4) 100%);
  }
  .hero-media img { object-position: 50% 50%; }
  .hero-cta .btn { width: 100%; }
  .hero h1 { max-width: none; }
}

/* ========================== SECTION SHELL ========================== */
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-dark { background: var(--ink); color: var(--gravel); }
.section-gravel { background: var(--gravel); }

.section-head {
  display: grid;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: var(--edge);
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}
.section-dark .section-head { border-top-color: rgba(237, 238, 233, .18); }
.section-head h2 { font-size: clamp(1.85rem, 4.4vw, 3rem); }
.section-head .lede {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--slate-2);
  max-width: 52ch;
}
.section-dark .section-head .lede { color: rgba(237, 238, 233, .74); }

@media (min-width: 900px) {
  .section-head {
    grid-template-columns: 1.05fr .95fr;
    align-items: end;
    gap: 2.5rem;
  }
}

/* ============================ SERVICES ============================ */
.services {
  display: grid;
  gap: 1px;
  background: var(--stone);
  border: var(--edge);
}
@media (min-width: 700px) { .services { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .services { grid-template-columns: repeat(4, 1fr); } }

.svc {
  background: var(--paper);
  padding: clamp(1.5rem, 2.6vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: background-color .2s ease;
}
.svc:hover { background: #fff; }
.svc-num {
  font-family: var(--fnt-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--turf);
  letter-spacing: .04em;
}
.svc h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
.svc p { font-size: .95rem; color: var(--slate-2); }
.svc-link {
  margin-top: auto;
  padding-top: .9rem;
  border-top: 1px dashed var(--stone);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.svc-link:hover { color: var(--signal); }
.svc-link::after { content: '\2192'; transition: transform .18s ease; }
.svc-link:hover::after { transform: translateX(4px); }

.price-note {
  margin-top: 1.75rem;
  padding: 1.25rem clamp(1.25rem, 2.4vw, 1.75rem);
  background: var(--ink);
  color: var(--gravel);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  border-radius: 2px;
}
.price-note p { font-size: .97rem; flex: 1 1 26ch; color: rgba(237, 238, 233, .88); }
.price-note b { color: #fff; font-weight: 600; }

/* ============================== WORK ============================== */
.work-grid { display: grid; gap: clamp(1rem, 2.4vw, 1.75rem); }
@media (min-width: 800px) { .work-grid { grid-template-columns: 1fr 1fr; } }

/* grid, not block: it stacks picture + caption, and it keeps the <picture> the
   image's own measuring box rather than the whole figure (caption included). */
.shot { margin: 0; display: grid; gap: .85rem; align-content: start; }
.shot picture {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  background: var(--slate);
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot figcaption {
  padding-top: .85rem;
  border-top: 1px solid rgba(237, 238, 233, .2);
  font-size: .9rem;
  color: rgba(237, 238, 233, .8);
  display: grid;
  gap: .2rem;
}
.shot figcaption b {
  font-family: var(--fnt-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--gravel);
}

/* ============================= PROCESS ============================= */
.steps {
  display: grid;
  gap: 1px;
  background: var(--stone);
  border: var(--edge);
}
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--gravel);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  display: grid;
  gap: .6rem;
  align-content: start;
}
.step-n {
  font-family: var(--fnt-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: .85;
  color: var(--turf-soft);
  letter-spacing: -.04em;
}
.step h3 { font-size: 1.25rem; }
.step p { font-size: .95rem; color: var(--slate-2); }

/* ============================== AREAS ============================== */
/* The chips row from the contact aside, one size up. Deliberately NOT a
   1px-gap grid: that paints the container background through the empty tail of
   a short last row, which reads as a broken grey block at every column count
   the town list doesn't divide evenly into. A wrapping chip list just ends.
   Selectors are `ul.areas` so they outrank .chips whatever the source order. */
ul.areas { gap: .5rem; }
ul.areas > li {
  background: var(--paper);
  padding: .6rem .9rem;
  font-size: .92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .55rem;
}
ul.areas > li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--turf);
  flex: none;
}
ul.areas > li.is-home {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  font-weight: 600;
}
ul.areas > li.is-home::before { background: var(--turf-soft); }

.areas-note {
  margin-top: 1.25rem;
  font-size: .95rem;
  color: var(--slate-2);
}
.areas-note a { color: var(--ink); font-weight: 600; text-underline-offset: 3px; }

/* ============================= CTA BAND ============================= */
.cta {
  position: relative;
  background: var(--turf-deep);
  color: #fff;
  overflow: hidden;
}
/* subtle mown-stripe texture — no image request */
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    104deg,
    rgba(255, 255, 255, .045) 0 42px,
    rgba(255, 255, 255, 0) 42px 84px);
  pointer-events: none;
}
.cta-in { position: relative; display: grid; gap: 1.75rem; }
.cta-copy { display: grid; gap: 1.25rem; justify-items: start; }
.cta h2 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); color: #fff; max-width: 26ch; }
.cta p { color: rgba(255, 255, 255, .86); max-width: 50ch; }
.cta .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .5); }
.cta .btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* Two columns from tablet up: copy left, the actions pulled right and stacked.
   Left-aligned single-column left ~700px of empty green on a wide desktop. */
@media (min-width: 900px) {
  .cta-in {
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    column-gap: clamp(2rem, 5vw, 4.5rem);
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    justify-self: end;
    min-width: 270px;
  }
}
@media (max-width: 560px) { .cta-actions .btn { width: 100%; } }

/* ============================== FOOTER ============================== */
.footer {
  background: var(--ink);
  color: var(--stone);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(237, 238, 233, .14);
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
}
.footer h4 {
  font-family: var(--fnt-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone-2);
  margin: 0 0 .9rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer a { color: var(--stone); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-blurb { max-width: 40ch; color: var(--stone-2); margin-top: 1rem; }
.footer .brand { margin-right: 0; }
.footer-legal {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  font-size: .82rem;
  color: var(--stone-2);
}

/* ============================== CONTACT ============================== */
.contact-layout { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 940px) {
  .contact-layout { grid-template-columns: 1.15fr .85fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
}

.card {
  background: #fff;
  border: var(--edge);
  border-radius: 2px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
}

#estimate-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-2);
}
.field input, .field textarea, .field select {
  font-family: var(--fnt-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 2px;
  padding: .8rem .9rem;
  width: 100%;
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--turf);
  box-shadow: 0 0 0 3px rgba(63, 125, 56, .16);
}
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

.form-note { font-size: .85rem; color: var(--stone-2); }
.form-status {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 2px;
  border-left: 3px solid var(--turf);
  background: var(--gravel);
  font-size: .97rem;
  color: var(--ink);
}
.form-status b { display: block; font-family: var(--fnt-display); font-size: 1.1rem; margin-bottom: .2rem; }
.form-status.is-error { border-left-color: var(--signal); }
.is-sent .field, .is-sent .field-row, .is-sent .form-note, .is-sent .turnstile-box { display: none; }

.aside-block { display: grid; gap: .9rem; }
.aside-block + .aside-block {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: var(--edge);
}
.aside-block h3 { font-size: 1.15rem; }
/* :not(.chips) — a bare `.aside-block ul` outranks `.chips` on specificity and
   would flatten the chip row into full-width grid tracks. */
.aside-block ul:not(.chips) { margin: 0; padding-left: 1.1rem; display: grid; gap: .5rem; }
.aside-block li { font-size: .95rem; color: var(--slate-2); }
.aside-block p { font-size: .95rem; color: var(--slate-2); }

.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .45rem; }
.chips li {
  background: var(--gravel);
  border: 1px solid var(--stone);
  border-radius: 2px;
  padding: .35rem .7rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--slate);
}

/* page header for interior pages */
.page-head {
  background: var(--ink);
  color: var(--gravel);
  padding-block: clamp(3rem, 7vw, 5rem);
}
.page-head h1 {
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  color: #fff;
  margin-top: 1rem;
  max-width: 24ch;
}
.page-head .lede {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(237, 238, 233, .82);
  max-width: 54ch;
}

/* ============================ SCROLL REVEAL ============================ */
/* Below-the-fold only. Never tag the hero or the header with this: an
   above-the-fold element parked at zero opacity cannot paint until the reveal
   script runs, which wrecks mobile LCP (the LCP guard strips it as a backstop).
   Keep dot-prefixed tokens out of this comment — the guard reads the text
   between rules as part of the selector and would strip whatever it finds. */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2, .7, .3, 1),
              transform .7s cubic-bezier(.2, .7, .3, 1);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* === site credit (injected by credit_footer.py); do not hand-edit === */
.site-credit {
  margin: 2.25rem 0 0;
  padding-inline: 1.25rem;
  font-size: .73rem;
  line-height: 1.5;
  letter-spacing: .06em;
  text-align: center;
  opacity: .65;
}
.site-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(128, 128, 128, .5);
  border-bottom: 1px solid color-mix(in srgb, currentColor 45%, transparent);
  transition: border-bottom-color .25s ease;
}
.site-credit a:hover,
.site-credit a:focus-visible { border-bottom-color: currentColor; }
@media (prefers-reduced-motion: reduce) {
  .site-credit a { transition: none; }
}

/* Shares the footer's own copyright row: sits opposite it rather than adding a
   third line under the page. The parent is reached with :has() so no client
   class name has to be guessed, and the rule cannot fire on a footer that has
   no inline credit in it. */
.site-credit--inline {
  margin: 0;
  padding: 0;
  text-align: right;
}
footer :has(> .site-credit--inline) {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .35rem 1.5rem;
}
/* === end site credit === */
