/* ============================================================
   Wag & Wash Pet Grooming Spa — site.css
   One stylesheet for the whole site. Coral, mint and sunshine
   yellow from her grooming aprons; ink text on every tint.
   ============================================================ */

:root {
  --coral: #F26B5B;
  --coral-hover: #EE5B4A;
  --coral-soft: #FDE1DC;
  --coral-deep: #B83A2C;

  --mint: #BFE8D8;
  --mint-soft: #E6F6F0;
  --teal: #1F6F5C;

  --sun: #FFD166;
  --sun-soft: #FFF1C9;

  --ink: #2A211F;
  --muted: #5E514D;
  --cream: #FFF8F1;
  --white: #FFFFFF;
  --line: rgba(42, 33, 31, 0.12);

  --link: var(--coral-deep);
  --focus: var(--teal);

  --r-sm: 14px;
  --r: 24px;
  --r-lg: 36px;
  --pill: 999px;

  --shadow: 0 12px 32px rgba(42, 33, 31, 0.10);
  --shadow-soft: 0 6px 18px rgba(42, 33, 31, 0.07);

  --font: "Avenir Next Rounded", "Arial Rounded MT Bold", "Nunito", "Segoe UI", "Helvetica Neue", system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 6rem;
  scroll-behavior: smooth;
}

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

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  margin: 0 0 0.6em;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.015em;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2.1rem, 4.2vw + 0.9rem, 3.5rem); }
h2 { font-size: clamp(1.65rem, 2.4vw + 0.8rem, 2.5rem); }
h3 { font-size: clamp(1.2rem, 0.8vw + 0.95rem, 1.45rem); }
h4 { font-size: 1.1rem; }

p, ul, ol, dl { margin: 0 0 1em; }
ul, ol { padding-left: 1.25rem; }

a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.15em;
}
a:hover { text-decoration-thickness: 3px; }

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

.skip {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--pill);
  font-weight: 800;
  text-decoration: none;
}
.skip:focus { top: 1rem; }

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

/* ---------- Layout ---------- */
.wrap {
  width: min(var(--wrap), 100% - 2 * var(--gutter));
  margin-inline: auto;
}
.wrap--narrow { width: min(52rem, 100% - 2 * var(--gutter)); }

.band {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  color: var(--ink);
  --link: var(--coral-deep);
  --focus: var(--teal);
}
.band--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.band--cream { background: var(--cream); }
.band--white { background: var(--white); }
.band--mint { background: var(--mint); --link: var(--ink); --focus: var(--ink); }
.band--mint-soft { background: var(--mint-soft); }
.band--sun { background: var(--sun); --link: var(--ink); --focus: var(--ink); }
.band--sun-soft { background: var(--sun-soft); }
.band--coral { background: var(--coral); --link: var(--ink); --focus: var(--ink); }
.band--coral-soft { background: var(--coral-soft); }
.band--ink {
  background: var(--ink);
  color: var(--cream);
  --link: var(--sun);
  --focus: var(--sun);
}
.band--ink .muted { color: rgba(255, 248, 241, 0.78); }

.section-head { max-width: 48rem; margin-bottom: clamp(1.5rem, 4vw, 2.75rem); }
.section-head p:last-child { margin-bottom: 0; }

.lede { font-size: clamp(1.15rem, 0.5vw + 1rem, 1.35rem); color: var(--muted); }
.band--ink .lede { color: rgba(255, 248, 241, 0.85); }
.muted { color: var(--muted); }
.small { font-size: 0.95rem; }
.center { text-align: center; }
.center .btn-row { justify-content: center; }

.prose { max-width: 46rem; }
.prose h2 { margin-top: 2.25rem; }
.prose h3 { margin-top: 1.75rem; }
.prose > :first-child { margin-top: 0; }
.prose ul li { margin-bottom: 0.35em; }

.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.split {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 820px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split--wide-text { grid-template-columns: 1.2fr 0.8fr; }
  .split--flip .split__media { order: 2; }
}
.split__media { width: 100%; max-width: 520px; margin-inline: auto; }
.split__text > :last-child { margin-bottom: 0; }

/* ---------- Header & nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 241, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  min-height: 74px;
  padding-block: 0.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 44px;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.05;
}
.brand__name {
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}
.brand__name em { font-style: normal; color: var(--coral-deep); }
.brand__sub {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 0.15rem;
}
.brand--footer { color: var(--cream); }
.brand--footer .brand__name em { color: var(--coral); }
.brand--footer .brand__sub { color: var(--mint); }

.nav-toggle {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
  margin: -1px;
  overflow: hidden;
}
.nav-toggle__label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0.5rem 1.1rem;
  border: 2px solid var(--ink);
  border-radius: var(--pill);
  font-weight: 800;
  cursor: pointer;
  user-select: none;
}
.nav-toggle__label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}
.nav-toggle:focus-visible + .nav-toggle__label {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}
.nav-toggle:checked + .nav-toggle__label { background: var(--ink); color: var(--cream); }

.nav { display: none; flex-basis: 100%; }
.nav-toggle:checked ~ .nav { display: block; }
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav__link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 1rem;
  border-radius: var(--pill);
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  transition: background-color 0.2s;
}
.nav__link:hover { background: var(--mint-soft); }
.nav__link[aria-current="page"] { background: var(--ink); color: var(--cream); }

@media (min-width: 1024px) {
  .nav-toggle__label { display: none; }
  .nav { display: block; flex-basis: auto; }
  .nav__list { flex-direction: row; padding: 0; gap: 0.1rem; }
  .nav__link { padding: 0.5rem 0.8rem; font-size: 0.95rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.6rem;
  border-radius: var(--pill);
  border: 2px solid transparent;
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); text-decoration: none; }

.btn--primary { background: var(--coral); color: var(--ink); border-color: var(--coral); }
.btn--primary:hover { background: var(--coral-hover); border-color: var(--coral-hover); }

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

.btn--ink { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--ink:hover { background: #3d322f; border-color: #3d322f; }

.btn--light { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--light:hover { background: var(--white); }

.band--ink .btn--outline { color: var(--cream); border-color: var(--cream); }
.band--ink .btn--outline:hover { background: var(--cream); color: var(--ink); }

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

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

/* ---------- Home hero ---------- */
.hero {
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 5rem);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(191, 232, 216, 0.94), rgba(255, 241, 201, 0.88) 55%, rgba(253, 225, 220, 0.92));
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 820px) {
  .hero__inner { grid-template-columns: 1.15fr 0.85fr; }
}
.hero__panel {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}
.hero__panel > :last-child { margin-bottom: 0; }
.hero__lead {
  font-size: clamp(1.15rem, 0.5vw + 1rem, 1.35rem);
  font-weight: 800;
  color: var(--teal);
}
.hero__note {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.98rem;
}
.hero__photo {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-bottom: 0; }
.page-hero__text { max-width: 50rem; margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.page-hero__text > :last-child { margin-bottom: 0; }
.page-hero__photo {
  margin-bottom: calc(-1 * clamp(2rem, 5vw, 4rem));
  position: relative;
  z-index: 2;
}
.after-hero { padding-top: calc(clamp(2rem, 5vw, 4rem) + clamp(2rem, 5vw, 4rem)); }

/* ---------- Photo frames ---------- */
.frame {
  overflow: hidden;
  background: var(--mint-soft);
  width: 100%;
}
.photo, .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.frame--blob {
  aspect-ratio: 1;
  border-radius: 58% 42% 48% 52% / 46% 54% 46% 54%;
}
.frame--blob-alt {
  aspect-ratio: 1;
  border-radius: 42% 58% 55% 45% / 55% 45% 55% 45%;
}
.frame--wide {
  aspect-ratio: 21 / 9;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
@media (max-width: 700px) { .frame--wide { aspect-ratio: 4 / 3; } }
.frame--tall { aspect-ratio: 4 / 5; border-radius: var(--r-lg); }
.frame--square { aspect-ratio: 1; border-radius: var(--r); }

.placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  border: 2px dashed var(--line);
  background: repeating-linear-gradient(135deg, rgba(42,33,31,0.04) 0 12px, transparent 12px 24px);
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  height: 100%;
  color: var(--ink);
  --link: var(--coral-deep);
  --focus: var(--teal);
}
.card > :last-child { margin-bottom: 0; }
.card--mint { background: var(--mint-soft); }
.card--sun { background: var(--sun-soft); }
.card--coral { background: var(--coral-soft); }
.card--outline { background: transparent; border: 2px solid var(--line); }
.card--lift { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card--lift:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__title { margin-bottom: 0.5rem; }
.card--pad-sm { padding: 1.25rem 1.5rem; }
.card__mark {
  width: 44px;
  height: 44px;
  border-radius: 50% 40% 55% 45% / 45% 55% 40% 60%;
  margin-bottom: 1.1rem;
}
.card__mark--coral { background: var(--coral); }
.card__mark--mint { background: var(--mint); }
.card__mark--sun { background: var(--sun); }

/* ---------- Price rows (name / price / description) ---------- */
.menu-list { display: grid; gap: 1rem; }
.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "name price"
    "desc desc";
  gap: 0.25rem 1.5rem;
  align-items: baseline;
  background: var(--white);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
}
.menu-row__name { grid-area: name; margin: 0; font-size: 1.2rem; }
.menu-row__price {
  grid-area: price;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--coral-deep);
  white-space: nowrap;
}
.menu-row__desc { grid-area: desc; margin: 0.25rem 0 0; color: var(--muted); }
.menu-row__note { grid-area: desc; margin: 0.25rem 0 0; color: var(--muted); }
.menu-row--soft { background: var(--mint-soft); }

/* ---------- Service detail blocks ---------- */
.service { padding-block: clamp(2rem, 5vw, 3.5rem); border-top: 1px solid var(--line); }
.service:first-of-type { border-top: 0; padding-top: 0; }
.service__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.25rem 1.5rem;
  align-items: baseline;
  margin-bottom: 0.75rem;
}
.service__head h2 { margin: 0; }
.service__price { font-weight: 900; font-size: 1.3rem; color: var(--coral-deep); white-space: nowrap; }
.service__lead { font-weight: 700; font-size: 1.15rem; }
.service__price-line {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--pill);
  background: var(--sun-soft);
  font-weight: 700;
}

/* ---------- Testimonials ---------- */
.quote {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--ink);
}
.quote::before {
  content: "";
  width: 36px;
  height: 14px;
  border-radius: var(--pill);
  background: var(--coral);
}
.quote__text {
  margin: 0;
  font-size: clamp(1.1rem, 0.4vw + 1rem, 1.3rem);
  font-weight: 700;
  line-height: 1.45;
}
.quote__by { margin: 0; color: var(--muted); font-weight: 700; }
.quote--inline {
  border-left: 6px solid var(--coral);
  border-radius: 0 var(--r) var(--r) 0;
  background: var(--coral-soft);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.quote--inline::before { display: none; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 700px) { .gallery { grid-template-columns: 1fr; } }
.gallery__item {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--mint-soft);
}
.gallery__item:nth-child(3n + 1) { border-radius: var(--r-lg) var(--r) var(--r) var(--r-lg); }
.gallery__item:nth-child(3n) { border-radius: var(--r) var(--r-lg) var(--r-lg) var(--r); }
.gallery__item img { transition: transform 0.4s ease; }
.gallery__item:hover img { transform: scale(1.03); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 1rem; }
.faq__item {
  background: var(--white);
  border-radius: var(--r);
  padding: 1.5rem 1.75rem;
}
.faq__q { margin: 0 0 0.5rem; font-size: 1.15rem; }
.faq__a { margin: 0; }
.faq__group { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.faq__group h2 { margin-bottom: 1.25rem; }

/* ---------- Hours ---------- */
.hours {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.4rem 1.5rem;
  margin: 0;
}
.hours dt { font-weight: 800; }
.hours dd { margin: 0; }
.hours dd.closed { color: var(--muted); }

/* ---------- Contact layout ---------- */
.contact-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  grid-template-areas:
    "call"
    "msg"
    "book";
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
    grid-template-areas:
      "call msg"
      "book msg";
    align-items: start;
  }
}
.contact-grid__call { grid-area: call; }
.contact-grid__msg { grid-area: msg; }
.contact-grid__book { grid-area: book; }
.contact-line {
  display: block;
  font-size: clamp(1.4rem, 1vw + 1rem, 1.9rem);
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 0.5rem;
  min-height: 44px;
  line-height: 44px;
}
.contact-line:hover { color: var(--coral-deep); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1rem; margin-top: 1rem; }
.field label { display: block; font-weight: 800; margin-bottom: 0.35rem; }
.field input, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 2px solid rgba(42, 33, 31, 0.28);
  border-radius: var(--r-sm);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus-visible, .field textarea:focus-visible { border-color: var(--teal); }

/* ---------- Products ---------- */
.product {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.25rem 1.25rem;
  align-items: baseline;
}
.product__head h2 { margin: 0; font-size: 1.4rem; }
.product__price { font-weight: 900; font-size: 1.3rem; color: var(--coral-deep); white-space: nowrap; }
.product__lead { font-weight: 700; margin: 0; }
.product p:last-of-type { margin-bottom: 0; }
.product .btn { align-self: flex-start; margin-top: 0.5rem; }

/* ---------- Lists ---------- */
.plain { list-style: none; padding: 0; margin: 0; }
.dotlist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.25rem;
}
.dotlist li { display: inline-flex; align-items: center; }
.dotlist li + li::before { content: "·"; margin: 0 0.35rem; opacity: 0.7; }
.dotlist a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.25rem;
  text-decoration: none;
  font-weight: 700;
}
.dotlist a:hover { text-decoration: underline; }

.pill-list { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; padding: 0; margin: 0; }
.pill-list li {
  background: var(--white);
  border-radius: var(--pill);
  padding: 0.65rem 1.2rem;
  font-weight: 700;
}
.band--mint .pill-list li, .band--sun .pill-list li { background: var(--cream); }

.address { font-style: normal; }
.address p:last-child { margin-bottom: 0; }

.article-body { max-width: 46rem; margin-inline: auto; }
.article-body h2 { margin-top: 2.5rem; }
.article-body .lede { margin-bottom: 2rem; }

.signature { font-weight: 800; color: var(--teal); margin-top: 1.5rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  --link: var(--cream);
  --focus: var(--sun);
  padding-block: clamp(2.5rem, 5vw, 4rem) 2rem;
}
.site-footer a { color: var(--link); }
.site-footer__grid { display: grid; gap: 2rem; }
@media (min-width: 820px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
}
.site-footer__col > :last-child { margin-bottom: 0; }
.site-footer__legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 248, 241, 0.2);
  font-size: 0.92rem;
  color: rgba(255, 248, 241, 0.78);
}
.site-footer__legal p:last-child { margin-bottom: 0; }

/* ---------- Motion off ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .btn:hover, .card--lift:hover { transform: none; }
  .gallery__item:hover img { transform: none; }
}

/* ── BATCH 13sep — the footer nav sits on one row, and wraps evenly when it cannot.
   render-check's rule: one row is no fault at all; two or more rows must differ by
   no more than one item (scripts/render-check.mjs:227-238). Her footer nav is ten
   items inside a narrow .site-footer__col, so it broke 4 + 5 + 1 at every width.
   The repair loop declines this class by design — "how many to a row is a choice a
   person makes" (RenderedFaultRepair) — so it is made here, deliberately, and the
   counts below are engineered rather than hoped for: 10 on one row on a desktop,
   5 + 5 on a tablet, and five even rows of 2 on a phone, where ten across would
   either orphan an item or push the page sideways. */
.site-footer__col:has(.dotlist) { grid-column: 1 / -1; }
.dotlist { justify-content: center; }
@media (max-width: 899px) {
  .dotlist { display: grid; grid-template-columns: repeat(5, auto); justify-items: center; }
  .dotlist li + li::before { content: none; }
}
@media (max-width: 479px) {
  .dotlist { grid-template-columns: repeat(2, auto); }
}

/* The section mark. `aria-current="true"` is the shop journey (a single product,
   the cart, the checkout) and the blog (a post, the archives) keeping their menu
   item lit — WAI-ARIA's value for "the current item within a set". Twinned from
   this build's own current-page rules above, declarations unchanged. */
.nav__link[aria-current="true"] { background: var(--ink); color: var(--cream); }

