/* ============================================================================
   Roth Archery & Equine — single-page site
   Plain CSS, no framework, no build step.
   Tokens pasted from docs/design/tokens.css (section 2, --roth-* namespace),
   per docs/design/design-system.md v1.0.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,400..700;1,400..700&family=Young+Serif&display=swap');

:root {
  /* palette — surfaces */
  --roth-parchment-50: #fbf7ee;
  --roth-parchment-100: #f5eedd;
  --roth-parchment-200: #ebdfc6;
  --roth-parchment-300: #dccca6;
  --roth-parchment-400: #bfa87b;

  /* palette — walnut ink & dark surfaces */
  --roth-walnut-200: #d6c9b1;
  --roth-walnut-300: #b6a68d;
  --roth-walnut-500: #7a6650;
  --roth-walnut-600: #63503a;
  --roth-walnut-700: #4d3b26;
  --roth-walnut-800: #3a2c1c;
  --roth-walnut-900: #291f14;

  /* palette — accents */
  --roth-saddle-100: #f0dcc8;
  --roth-saddle-400: #b56b35;
  --roth-saddle-500: #9a5526;
  --roth-saddle-600: #82461d;
  --roth-saddle-700: #6e3a17;
  --roth-forest-100: #dfe8d5;
  --roth-forest-500: #4f7a48;
  --roth-forest-600: #40633a;
  --roth-forest-700: #33502f;
  --roth-brass-100: #f0e3c0;
  --roth-brass-400: #b8933d;
  --roth-brass-500: #9e7c28;
  --roth-brass-700: #6f5416;
  --roth-river-100: #d9e5ec;
  --roth-river-700: #33566b;
  --roth-oxblood-100: #f0d8cf;
  --roth-oxblood-600: #92381f;
  --roth-oxblood-700: #7c2d1e;

  /* semantic aliases */
  --roth-canvas: var(--roth-parchment-100);
  --roth-surface: var(--roth-parchment-50);
  --roth-ink: var(--roth-walnut-900);
  --roth-ink-muted: var(--roth-walnut-600);
  --roth-line: var(--roth-parchment-300);
  --roth-line-strong: var(--roth-parchment-400);
  --roth-accent: var(--roth-saddle-600);
  --roth-accent-hover: var(--roth-saddle-700);
  --roth-equine: var(--roth-forest-600);
  --roth-equine-deep: var(--roth-forest-700);
  --roth-ornament: var(--roth-brass-500);
  --roth-error: var(--roth-oxblood-600);
  --roth-focus-ring: 2.5px solid var(--roth-saddle-500);

  /* fonts */
  --roth-font-display: "Young Serif", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --roth-font-sans: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --roth-font-mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;

  /* type scale — the single page reads at body-lg (18px) */
  --roth-text-display-2xl: 3.5rem;
  --roth-text-display-lg: 2.125rem;
  --roth-text-display-md: 1.625rem;
  --roth-text-body-lg: 1.125rem;
  --roth-text-body: 1rem;
  --roth-text-body-sm: 0.875rem;
  --roth-text-eyebrow: 0.75rem;
  --roth-text-micro: 0.6875rem;
  --roth-leading-body: 1.75;
  --roth-leading-display: 1.1;

  /* spacing — 4px grid */
  --roth-space-1: 4px;
  --roth-space-2: 8px;
  --roth-space-3: 12px;
  --roth-space-4: 16px;
  --roth-space-5: 24px;
  --roth-space-6: 32px;
  --roth-space-7: 48px;
  --roth-space-8: 64px;
  --roth-space-9: 96px;

  /* radii + shadows */
  --roth-radius-sm: 6px;
  --roth-radius-md: 10px;
  --roth-radius-lg: 16px;
  --roth-radius-full: 9999px;
  --roth-shadow-sm: 0 1px 2px rgba(41, 31, 20, 0.10);
  --roth-shadow-md: 0 2px 4px rgba(41, 31, 20, 0.08), 0 10px 28px rgba(41, 31, 20, 0.10);
  --roth-shadow-lg: 0 4px 10px rgba(41, 31, 20, 0.10), 0 24px 48px rgba(41, 31, 20, 0.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px; /* keep anchors clear of the sticky nav */
}

body {
  margin: 0;
  background-color: var(--roth-canvas);
  color: var(--roth-ink);
  font-family: var(--roth-font-sans);
  font-size: var(--roth-text-body-lg);
  line-height: var(--roth-leading-body);
}

/* faint paper-grain texture, <=3% opacity walnut noise (spec 5.2) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23g)'/%3E%3C/svg%3E");
}

/* keep real content above the grain */
.site-nav, header.hero, main, footer { position: relative; z-index: 1; }

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

h1, h2, h3 {
  font-family: var(--roth-font-display);
  font-weight: 400;
  line-height: var(--roth-leading-display);
  margin: 0;
}

p { margin: 0 0 var(--roth-space-4); }

a { color: var(--roth-accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--roth-accent-hover); }

:focus-visible {
  outline: var(--roth-focus-ring);
  outline-offset: 2px;
  border-radius: 2px;
}

.wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--roth-space-5);
}

/* ------------------------------------------------------------ sticky nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--roth-surface);
  border-bottom: 1px solid var(--roth-line);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--roth-space-4);
  min-height: 56px;
  flex-wrap: wrap;
  padding-top: var(--roth-space-2);
  padding-bottom: var(--roth-space-2);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--roth-space-3);
  color: var(--roth-ink);
  text-decoration: none;
  font-family: var(--roth-font-display);
  font-size: 1.25rem;
}
.nav-brand:hover { color: var(--roth-accent); }

.nav-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: var(--roth-space-1) var(--roth-space-2);
  border: 1.5px solid var(--roth-brass-500);
  border-radius: var(--roth-radius-sm);
  font-size: 0.8rem;
  color: var(--roth-brass-700);
  background: var(--roth-parchment-100);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: var(--roth-space-2);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.site-nav ul a {
  display: inline-block;
  padding: var(--roth-space-2) var(--roth-space-3);
  min-height: 44px;
  line-height: 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--roth-walnut-700);
  text-decoration: none;
}
.site-nav ul a:hover {
  color: var(--roth-accent);
  text-decoration: underline;
  text-decoration-color: var(--roth-saddle-400);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.site-nav .nav-contact {
  background: var(--roth-accent);
  color: #fff;
  border-radius: var(--roth-radius-md);
  padding: var(--roth-space-2) var(--roth-space-4);
}
.site-nav .nav-contact:hover {
  background: var(--roth-accent-hover);
  color: #fff;
  text-decoration: none;
}

/* Below ~720px the brand and links wrap onto two lines; space-between would
   leave both left-aligned, so center each row instead. */
@media (max-width: 719px) {
  .site-nav .wrap { justify-content: center; }
  .site-nav ul { width: 100%; justify-content: center; }
}

/* ------------------------------------------------------------------ hero */
header.hero {
  text-align: center;
  padding: var(--roth-space-8) 0 var(--roth-space-7);
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, var(--roth-text-display-2xl));
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.hero .motto {
  font-family: var(--roth-font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  letter-spacing: 0.01em;
  color: var(--roth-ink-muted);
  max-width: 46rem;
  margin: 0 auto;
  padding: var(--roth-space-5) 0;
}

.brass-rule {
  border: none;
  height: 1px;
  width: min(360px, 70%);
  margin: var(--roth-space-5) auto 0;
  background: var(--roth-brass-500);
}
.brass-rule.below { margin-top: 0; }

.hero blockquote {
  margin: var(--roth-space-6) auto 0;
  max-width: 64ch;
  font-size: var(--roth-text-body-lg);
  color: var(--roth-walnut-700);
  font-style: italic;
}
.hero blockquote footer {
  margin-top: var(--roth-space-2);
  font-style: normal;
  font-size: var(--roth-text-body-sm);
  color: var(--roth-ink-muted);
}

.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--roth-space-3);
  margin-top: var(--roth-space-6);
  flex-wrap: wrap;
}
.social-row a,
.social-row .social-item {
  display: inline-flex;
  align-items: center;
  gap: var(--roth-space-2);
  min-height: 44px;
  padding: var(--roth-space-2) var(--roth-space-3);
  color: var(--roth-walnut-600);
  font-weight: 600;
  font-size: var(--roth-text-body);
  text-decoration: none;
  border: 1px solid var(--roth-line);
  border-radius: var(--roth-radius-full);
  background: var(--roth-surface);
}
.social-row a:hover { color: var(--roth-accent); border-color: var(--roth-line-strong); }
.social-row svg { width: 18px; height: 18px; fill: currentColor; }
.social-row .social-note {
  flex-basis: 100%;
  text-align: center;
  font-family: var(--roth-font-mono);
  font-size: var(--roth-text-micro);
  color: var(--roth-walnut-600);
}

.hero .email-line {
  margin-top: var(--roth-space-4);
  font-size: var(--roth-text-body-sm);
  color: var(--roth-ink-muted);
}
.hero .email-line a { color: var(--roth-accent); }

.ghost-btn {
  display: inline-block;
  margin-top: var(--roth-space-4);
  padding: var(--roth-space-3) var(--roth-space-5);
  color: var(--roth-walnut-700);
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--roth-walnut-700);
  border-radius: var(--roth-radius-md);
  transition: background 150ms, color 150ms;
}
.ghost-btn:hover { background: var(--roth-walnut-900); color: var(--roth-parchment-50); }

/* --------------------------------------------------------------- figures */
figure.framed {
  margin: 0;
  background: var(--roth-surface);
  border: 1px solid var(--roth-line);
  border-radius: var(--roth-radius-lg);
  box-shadow: var(--roth-shadow-md);
  padding: var(--roth-space-3);
}
figure.framed img { border-radius: var(--roth-radius-md); width: 100%; object-fit: cover; }

/* hero image needs clear separation from the "Get in touch" button above it;
   type + two classes so it beats figure.framed's margin:0 shorthand */
figure.framed.hero-figure { margin-top: var(--roth-space-7); }
figure.framed figcaption {
  padding: var(--roth-space-3) var(--roth-space-2) var(--roth-space-1);
  font-size: var(--roth-text-body-lg);
  color: var(--roth-ink-muted);
  text-align: center;
}

figure.placeholder-figure {
  margin: 0;
  border: 2px dashed var(--roth-line-strong);
  border-radius: var(--roth-radius-lg);
  padding: var(--roth-space-3);
}
figure.placeholder-figure .placeholder-block {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border-radius: var(--roth-radius-md);
  background: var(--roth-forest-100);
  color: var(--roth-forest-700);
  font-family: var(--roth-font-display);
  font-size: 1.5rem;
}
figure.placeholder-figure figcaption {
  padding: var(--roth-space-3) var(--roth-space-2) var(--roth-space-1);
  font-size: var(--roth-text-body-lg);
  color: var(--roth-ink-muted);
  text-align: center;
}

/* -------------------------------------------------------------- sections */
main section { padding: var(--roth-space-9) 0 0; }
/* first section sits right under the hero, which already has bottom padding */
main section#shop { padding-top: var(--roth-space-6); }
main { padding-bottom: var(--roth-space-9); }

.eyebrow {
  font-size: var(--roth-text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--roth-brass-700);
  margin: 0 0 var(--roth-space-2);
}

section h2 {
  font-size: clamp(1.75rem, 4.5vw, var(--roth-text-display-lg));
  margin-bottom: var(--roth-space-3);
}

.title-rule {
  border: none;
  height: 1px;
  width: 88px;
  margin: 0 0 var(--roth-space-5);
  background: var(--roth-brass-500);
}

.lead { max-width: 62ch; }

/* ------------------------------------------------------------ vendor list */
.vendor-list {
  list-style: none;
  margin: var(--roth-space-6) 0 0;
  padding: 0;
  display: grid;
  gap: var(--roth-space-4);
}

.vendor-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--roth-space-4);
  align-items: center;
  background: var(--roth-surface);
  border: 1px solid var(--roth-line);
  border-radius: var(--roth-radius-md);
  box-shadow: var(--roth-shadow-sm);
  padding: var(--roth-space-4);
}

.vendor-thumb {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: var(--roth-radius-md);
  border: 1px solid var(--roth-line);
  background: var(--roth-parchment-200);
}

.vendor-thumb-pending {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border: 2px dashed var(--roth-line-strong);
  border-radius: var(--roth-radius-md);
  color: var(--roth-walnut-600);
  font-family: var(--roth-font-mono);
  font-size: var(--roth-text-micro);
  text-align: center;
  padding: var(--roth-space-2);
}

.vendor-row h3 { font-size: var(--roth-text-display-md); }
.vendor-row h3 a { color: var(--roth-ink); text-decoration-color: var(--roth-saddle-400); }
.vendor-row h3 a:hover { color: var(--roth-accent); }
.vendor-row p { margin: var(--roth-space-1) 0 0; font-size: var(--roth-text-body); color: var(--roth-ink-muted); }

.chip {
  display: inline-block;
  margin-top: var(--roth-space-2);
  font-family: var(--roth-font-mono);
  font-size: var(--roth-text-body-sm);
  color: var(--roth-brass-700);
  background: var(--roth-brass-100);
  border-radius: var(--roth-radius-sm);
  padding: 4px 9px;
}
.chip.pending { color: var(--roth-walnut-600); background: var(--roth-parchment-200); }

.link-pending {
  font-family: var(--roth-font-mono);
  font-size: var(--roth-text-body-sm);
  color: var(--roth-walnut-600);
  border-bottom: 1px dashed var(--roth-line-strong);
  cursor: not-allowed;
}

/* --------------------------------------------------------------- items */
.item-grid {
  margin-top: var(--roth-space-7);
  display: grid;
  gap: var(--roth-space-7);
}

.item-row {
  display: grid;
  gap: var(--roth-space-5);
  align-items: center;
}

.item-row h3 { font-size: var(--roth-text-display-md); margin-bottom: var(--roth-space-2); }
.item-row p { color: var(--roth-ink); }
.item-row .fine { font-size: var(--roth-text-body-sm); color: var(--roth-ink-muted); margin-bottom: 0; }

@media (min-width: 720px) {
  .item-row { grid-template-columns: 1fr 1fr; }
  .item-row.photo-right figure { order: 2; }
  .item-row.photo-right div { order: 1; }
}

.text-item {
  border-top: 1px solid var(--roth-line);
  padding-top: var(--roth-space-5);
}
.text-item h3 { font-size: var(--roth-text-display-md); margin-bottom: var(--roth-space-2); }

/* info callout (river = info only) */
.callout {
  background: var(--roth-river-100);
  color: var(--roth-river-700);
  border-left: 4px solid var(--roth-river-700);
  border-radius: var(--roth-radius-sm);
  padding: var(--roth-space-3) var(--roth-space-4);
  font-size: var(--roth-text-body-sm);
  margin: var(--roth-space-3) 0;
}
.callout strong { color: inherit; }

/* help callout */
.help-box {
  margin-top: var(--roth-space-7);
  background: var(--roth-saddle-100);
  border: 1px dashed var(--roth-saddle-400);
  border-radius: var(--roth-radius-md);
  padding: var(--roth-space-5);
  text-align: center;
}
.help-box h3 { font-size: var(--roth-text-display-md); margin-bottom: var(--roth-space-2); }
.help-box p { margin-bottom: var(--roth-space-3); }
.help-box a.btn { margin-top: 0; }

.btn {
  display: inline-block;
  background: var(--roth-accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--roth-radius-md);
  padding: var(--roth-space-3) var(--roth-space-5);
  font-size: var(--roth-text-body);
  font-family: var(--roth-font-sans);
  cursor: pointer;
  transition: background 150ms;
}
.btn:hover { background: var(--roth-accent-hover); color: #fff; }

/* coaching sub-section */
.coaching {
  margin-top: var(--roth-space-7);
  background: var(--roth-surface);
  border: 1px solid var(--roth-line);
  border-radius: var(--roth-radius-lg);
  padding: var(--roth-space-6);
  box-shadow: var(--roth-shadow-sm);
}
.coaching h3 { font-size: var(--roth-text-display-md); margin-bottom: var(--roth-space-5); }
.coaching-grid { display: grid; gap: var(--roth-space-6); }
@media (min-width: 720px) {
  .coaching-grid { grid-template-columns: 3fr 2fr; align-items: start; }
}
.coaching-grid > div > p:last-child { margin-bottom: 0; }
.coaching .donation {
  font-family: var(--roth-font-mono);
  font-size: var(--roth-text-body-sm);
  color: var(--roth-saddle-600);
}

/* ---------------------------------------------------------- horse divider */
/* left/right auto so this .wrap block stays centered (its own margin
   shorthand would otherwise override .wrap's margin: 0 auto) */
.horse-divider { margin: var(--roth-space-9) auto calc(-1 * var(--roth-space-6)); }
.horse-divider hr {
  border: none;
  height: 2px;
  width: min(680px, 90%);
  background: var(--roth-forest-500);
  margin: 0 auto var(--roth-space-3);
}
.horse-divider .ponies {
  text-align: center;
  font-size: 1.375rem;
  letter-spacing: 0.35em;
  /* letter-spacing adds a trailing gap after the last emoji; indent by the
     same amount so the row reads as truly centered */
  text-indent: 0.35em;
  overflow: hidden;
  white-space: nowrap;
}

/* -------------------------------------------------------- training section */
#training .eyebrow { color: var(--roth-forest-700); }
#training h2 { color: var(--roth-equine-deep); }
#training .title-rule { background: var(--roth-forest-500); }

.training-grid {
  display: grid;
  gap: var(--roth-space-5);
  margin-top: var(--roth-space-6);
}
@media (min-width: 720px) {
  .training-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.training-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--roth-space-3);
}
.training-list li {
  background: var(--roth-surface);
  border: 1px solid var(--roth-line);
  border-radius: var(--roth-radius-md);
  padding: var(--roth-space-4);
}
.training-list li strong {
  display: block;
  font-family: var(--roth-font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--roth-equine-deep);
  margin-bottom: var(--roth-space-1);
}
.training-list li span { font-size: var(--roth-text-body); color: var(--roth-ink-muted); }

.horse-care { margin-top: var(--roth-space-7); }
.horse-care h3 {
  font-size: var(--roth-text-display-md);
  color: var(--roth-equine-deep);
  margin-bottom: var(--roth-space-4);
}
.care-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--roth-space-4);
  counter-reset: care;
}
@media (min-width: 720px) { .care-steps { grid-template-columns: 1fr 1fr 1fr; } }
.care-steps li {
  background: var(--roth-surface);
  border: 1px solid var(--roth-line);
  border-top: 4px solid var(--roth-forest-500);
  border-radius: var(--roth-radius-md);
  padding: var(--roth-space-4);
}
.care-steps .care-num {
  font-family: var(--roth-font-mono);
  font-size: var(--roth-text-body-sm);
  color: var(--roth-forest-700);
}
.care-steps h4 {
  font-family: var(--roth-font-display);
  font-weight: 400;
  font-size: 1.25rem;
  margin: var(--roth-space-1) 0 var(--roth-space-2);
}
.care-steps p { font-size: var(--roth-text-body); color: var(--roth-ink-muted); margin: 0; }

.org-note { margin-top: var(--roth-space-5); font-size: var(--roth-text-body); color: var(--roth-ink-muted); }

/* ------------------------------------------------------------------ about */
.about-grid {
  display: grid;
  gap: var(--roth-space-6);
  margin-top: var(--roth-space-5);
}
@media (min-width: 720px) {
  .about-grid { grid-template-columns: 3fr 2fr; align-items: center; }
}

/* ---------------------------------------------------------------- contact */
#contact .contact-panel {
  background: var(--roth-surface);
  border: 1px solid var(--roth-line);
  border-radius: var(--roth-radius-lg);
  box-shadow: var(--roth-shadow-md);
  padding: var(--roth-space-6);
  margin-top: var(--roth-space-6);
  max-width: 640px;
}

.field { margin-bottom: var(--roth-space-4); }
.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--roth-walnut-700);
  margin-bottom: var(--roth-space-2);
}
.field input,
.field textarea {
  width: 100%;
  background: var(--roth-parchment-50);
  border: 1.5px solid var(--roth-line-strong);
  border-radius: var(--roth-radius-sm);
  padding: 10px 12px;
  font-family: var(--roth-font-sans);
  font-size: var(--roth-text-body);
  color: var(--roth-ink);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--roth-saddle-500);
  outline: var(--roth-focus-ring);
  outline-offset: 2px;
}
.field .hint {
  font-size: var(--roth-text-body-sm);
  color: var(--roth-ink-muted);
  margin: var(--roth-space-1) 0 0;
}

.mail-note {
  font-size: var(--roth-text-body-sm);
  color: var(--roth-ink-muted);
  margin-top: var(--roth-space-4);
}

.mono-caption {
  display: block;
  margin-top: var(--roth-space-3);
  font-family: var(--roth-font-mono);
  font-size: var(--roth-text-micro);
  color: var(--roth-walnut-600);
}

/* ----------------------------------------------------------------- footer */
footer.site-footer {
  background: var(--roth-walnut-800);
  color: var(--roth-walnut-200);
  padding: var(--roth-space-7) 0;
  font-size: var(--roth-text-body);
}
footer.site-footer a { color: var(--roth-parchment-100); }
footer.site-footer a:hover { color: var(--roth-brass-400); }
footer.site-footer a:focus-visible { outline-color: var(--roth-brass-400); }
footer .footer-brand {
  font-family: var(--roth-font-display);
  font-size: 1.25rem;
  color: var(--roth-parchment-100);
  margin-bottom: var(--roth-space-3);
}
footer .footer-social {
  display: flex;
  gap: var(--roth-space-4);
  flex-wrap: wrap;
  margin: var(--roth-space-3) 0;
  padding: 0;
  list-style: none;
}
footer .footer-social a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
footer .footer-social-note {
  margin: 0 0 var(--roth-space-3);
  font-family: var(--roth-font-mono);
  font-size: var(--roth-text-micro);
  color: var(--roth-walnut-300);
}
footer .credit {
  margin-top: var(--roth-space-4);
  font-size: var(--roth-text-body-sm);
  color: var(--roth-walnut-300);
}

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