/* ==========================================================================
   Estate Sale Connect — Design System
   Warm, editorial, restrained. Built around trust and legibility rather than
   decoration: hairline rules over drop shadows, one accent colour for actions,
   real line icons instead of emoji, and left-aligned editorial hierarchy.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Warm neutrals — paper and ink, never grey */
  --paper:        #FDF9F0;
  --paper-raised: #FFFFFF;
  --paper-sunk:   #F6F0E3;
  --paper-deep:   #ECE3D1;

  --ink:      #1B2620;
  --ink-body: #3D4A42;
  --ink-mute: #5F6C64;
  --ink-faint:#616E66;

  --rule:       #E4DCCA;
  --rule-strong:#CEC4AD;

  /* Brand — deep moss green (structure, headers, dark bands) */
  --brand-900: #1B3325;
  --brand-800: #24432F;
  --brand-700: #2E5439;
  --brand-600: #3A6746;
  --brand-500: #4E8159;
  --brand-100: #D5E6DA;
  --brand-50:  #EAF3EC;

  /* Accent — marigold. Warm, saturated, and the only colour that means "act". */
  --accent-800: #8A4C08;
  --accent-700: #9A5408;
  --accent-600: #BC6B0E;
  --accent-500: #E08B26;
  --accent-400: #EFA945;
  --accent-100: #FBE6C6;
  --accent-50:  #FDF5E8;

  /* Secondary — clay, a second warm note */
  --sage-700: #9C4A35;
  --sage-600: #B85C46;
  --sage-100: #F7DFD7;
  --sage-50:  #FDF3F0;

  /* Semantic */
  --ok-700:  #1F5537;
  --ok-600:  #2E6B47;
  --ok-100:  #D3E7DA;
  --ok-50:   #EDF5EF;
  --err-700: #8E2F22;
  --err-600: #A93A2A;
  --err-100: #F6DCD6;
  --err-50:  #FDF2EF;

  /* Type */
  --font-display: 'Fraunces', ui-serif, Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --font-sans: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --step--2: clamp(0.75rem, 0.73rem + 0.1vw, 0.8125rem);
  --step--1: clamp(0.875rem, 0.86rem + 0.1vw, 0.9375rem);
  --step-0:  clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  --step-1:  clamp(1.125rem, 1.08rem + 0.25vw, 1.25rem);
  --step-2:  clamp(1.35rem, 1.25rem + 0.5vw, 1.6rem);
  --step-3:  clamp(1.6rem, 1.43rem + 0.85vw, 2.05rem);
  --step-4:  clamp(1.9rem, 1.63rem + 1.35vw, 2.6rem);
  --step-5:  clamp(2.3rem, 1.87rem + 2.1vw, 3.25rem);
  --step-6:  clamp(2.7rem, 2.05rem + 3.2vw, 4.1rem);

  /* Space */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 2.5rem;   --sp-8: 3rem;
  --sp-9: 4rem;     --sp-10: 5rem;    --sp-11: 6.5rem;  --sp-12: 8rem;

  /* Form */
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-full: 999px;

  --shadow-sm: 0 1px 2px rgba(60,45,20,.06), 0 1px 3px rgba(60,45,20,.05);
  --shadow-md: 0 2px 4px rgba(60,45,20,.05), 0 6px 16px rgba(60,45,20,.07);
  --shadow-lg: 0 4px 8px rgba(60,45,20,.05), 0 18px 44px rgba(60,45,20,.10);

  --header-h: 68px;
  --measure: 68ch;
  --ease: cubic-bezier(.2,.7,.3,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink-body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
table { border-collapse: collapse; width: 100%; }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

h1 { font-size: var(--step-6); font-variation-settings: 'opsz' 144, 'SOFT' 20; }
h2 { font-size: var(--step-4); font-variation-settings: 'opsz' 72, 'SOFT' 15; }
h3 { font-size: var(--step-2); line-height: 1.2; letter-spacing: -0.012em; }
h4 { font-size: var(--step-1); line-height: 1.3; letter-spacing: -0.008em; }

p { text-wrap: pretty; }

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

strong { font-weight: 650; color: var(--ink); }

.lede {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--ink-body);
  max-width: 58ch;
}

/* Editorial eyebrow — small caps label above a heading, with a rule */
.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-700);
  margin-bottom: var(--sp-4);
}
.eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
  max-width: 5rem;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before {
  content: '';
  flex: 1; height: 1px; background: var(--rule); max-width: 5rem;
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.container--wide   { max-width: 1340px; }
.container--narrow { max-width: 760px; }

.section { padding-block: var(--sp-10); }
.section--tight { padding-block: var(--sp-8); }
.section--loose { padding-block: var(--sp-11); }
.section--sunk  { background: var(--paper-sunk); }
.section--deep  { background: var(--brand-900); color: var(--brand-100); }
.section--deep h2, .section--deep h3 { color: #fff; }

.section__head { max-width: 60ch; margin-bottom: var(--sp-8); }
.section__head p { margin-top: var(--sp-4); font-size: var(--step-1); color: var(--ink-mute); }

@media (min-width: 900px) {
  .section { padding-block: var(--sp-11); }
  .section--loose { padding-block: var(--sp-12); }
}

.rule { height: 1px; background: var(--rule); border: 0; }

/* --------------------------------------------------------------------------
   5. Header + navigation
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute; left: var(--sp-4); top: var(--sp-4);
  z-index: 200;
  padding: var(--sp-3) var(--sp-5);
  background: var(--brand-900); color: #fff;
  border-radius: var(--r-md); font-weight: 600;
  transform: translateY(-160%);
  transition: transform .18s var(--ease-out);
}
.skip-link:focus-visible { transform: translateY(0); color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(253, 249, 240, .88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.site-header[data-scrolled='true'] {
  border-bottom-color: var(--rule);
  background: rgba(253, 249, 240, .95);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-5); height: 100%;
}

.brand { display: inline-flex; align-items: baseline; gap: .4rem; text-decoration: none; }
.brand__mark {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: -0.02em; color: var(--brand-700);
  font-variation-settings: 'opsz' 48, 'SOFT' 20;
}
.brand__mark em { font-style: normal; color: var(--accent-700); }
.brand:hover .brand__mark { color: var(--brand-800); }

.nav { display: none; align-items: center; gap: var(--sp-6); }
.nav a:not(.btn) {
  color: var(--ink-body); text-decoration: none;
  font-size: var(--step--1); font-weight: 500;
  position: relative; padding-block: .35rem;
}
.nav a:not(.btn)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--accent-600);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ease-out);
}
.nav a:not(.btn):hover { color: var(--ink); }
.nav a:not(.btn):hover::after,
.nav a:not(.btn)[aria-current='page']::after { transform: scaleX(1); }
.nav a:not(.btn)[aria-current='page'] { color: var(--ink); }

.nav__divider { width: 1px; height: 20px; background: var(--rule-strong); }

/* Mobile menu */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-right: -10px;
  border-radius: var(--r-md); color: var(--ink);
}
.nav-toggle:hover { background: var(--paper-sunk); }
.nav-toggle__bars { display: block; width: 20px; height: 14px; position: relative; }
.nav-toggle__bars span {
  position: absolute; left: 0; width: 100%; height: 1.75px;
  background: currentColor; border-radius: 2px;
  transition: transform .25s var(--ease-out), opacity .18s;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6.1px; }
.nav-toggle__bars span:nth-child(3) { top: 12.2px; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars span:nth-child(1) { transform: translateY(6.1px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars span:nth-child(3) { transform: translateY(-6.1px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}

.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: var(--sp-6) var(--sp-5) var(--sp-9);
  display: flex; flex-direction: column; gap: var(--sp-1);
  overflow-y: auto;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
}
.mobile-nav[data-open='true'] { transform: none; opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--step-2); font-weight: 600;
  color: var(--ink); text-decoration: none;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--rule);
}
.mobile-nav a:last-of-type { border-bottom: 0; }
.mobile-nav .btn { margin-top: var(--sp-5); justify-content: center; }
@media (min-width: 900px) { .mobile-nav { display: none; } }
body[data-nav-open='true'] { overflow: hidden; }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2);
  padding: 0.8rem 1.4rem;
  min-height: 48px;
  border-radius: var(--r-md);
  font-size: var(--step--1); font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color .18s, border-color .18s, color .18s, transform .12s;
}
.btn:active { transform: translateY(1px); }
.btn svg { flex: none; }

.btn--primary { background: var(--accent-500); color: var(--ink); }
.btn--primary:hover { background: var(--accent-400); color: var(--ink); }

.btn--dark { background: var(--brand-800); color: #fff; }
.btn--dark:hover { background: var(--brand-900); color: #fff; }

.btn--secondary {
  background: var(--paper-raised); color: var(--ink);
  border-color: var(--rule-strong);
}
.btn--secondary:hover { background: var(--paper-sunk); border-color: var(--brand-500); color: var(--ink); }

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

.btn--onDark { background: #fff; color: var(--brand-900); }
.btn--onDark:hover { background: var(--brand-50); color: var(--brand-900); }

.btn--outlineDark { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--outlineDark:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.6); }

.btn--lg { padding: 1rem 1.75rem; min-height: 54px; font-size: var(--step-0); }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled='true'] { opacity: .55; cursor: not-allowed; transform: none; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: var(--step--1);
  text-decoration: none; color: var(--accent-700);
}
.link-arrow svg { transition: transform .2s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(3px); }
.link-arrow:hover { text-decoration: underline; text-underline-offset: 4px; }

/* --------------------------------------------------------------------------
   7. Forms
   -------------------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.field__label {
  font-size: var(--step--1); font-weight: 600; color: var(--ink);
  display: flex; align-items: baseline; gap: var(--sp-2);
}
.field__optional { font-weight: 400; color: var(--ink-faint); font-size: var(--step--2); }
.field__hint { font-size: var(--step--2); color: var(--ink-mute); }

.field input[type='text'], .field input[type='email'], .field input[type='tel'],
.field input[type='password'], .field input[type='url'], .field input[type='number'],
.field select, .field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  min-height: 48px;
  background: var(--paper-raised);
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-md);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field textarea { min-height: 110px; resize: vertical; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A6E64' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.4rem;
}

.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--brand-500); }

.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: none;
  border-color: var(--accent-600);
  box-shadow: 0 0 0 3px var(--accent-100);
}

.field__error {
  display: none;
  font-size: var(--step--2); font-weight: 500; color: var(--err-700);
  align-items: center; gap: .35rem;
}
.field.is-invalid .field__error { display: flex; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea {
  border-color: var(--err-600);
  background: var(--err-50);
}
.field.is-invalid input:focus-visible,
.field.is-invalid select:focus-visible,
.field.is-invalid textarea:focus-visible { box-shadow: 0 0 0 3px var(--err-100); }

.field-row { display: grid; gap: 0 var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 560px) {
  .field-row--2 { grid-template-columns: 1fr 1fr; }
  .field-row--3 { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* Checkbox / radio */
.check {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  padding: var(--sp-3) 0; cursor: pointer;
}
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent-600); flex: none; cursor: pointer; }
.check span { font-size: var(--step--1); color: var(--ink-body); }

/* Notices */
.notice {
  display: none;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  border: 1px solid;
  font-size: var(--step--1);
  margin-bottom: var(--sp-5);
}
.notice[data-show='true'] { display: flex; }
.notice svg { flex: none; margin-top: 2px; }
.notice--ok  { background: var(--ok-50);  border-color: var(--ok-100);  color: var(--ok-700); }
.notice--err { background: var(--err-50); border-color: var(--err-100); color: var(--err-700); }
.notice--info{ background: var(--sage-50);border-color: var(--sage-100);color: var(--sage-700); }
.notice strong { color: inherit; }

/* Spinner */
.spinner {
  width: 16px; height: 16px; flex: none;
  border: 2px solid currentColor;
  border-top-color: transparent;
  opacity: .7;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   8. Cards, badges, misc
   -------------------------------------------------------------------------- */
.card {
  background: #FFFDF8;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.card--pad-lg { padding: var(--sp-7); }
.card--flat { box-shadow: none; }
.card--raised { box-shadow: var(--shadow-md); border-color: transparent; }

.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .7rem;
  border-radius: var(--r-full);
  font-size: var(--step--2); font-weight: 600;
  letter-spacing: .02em;
  background: var(--sage-100); color: var(--sage-700);
}
.badge--free { background: var(--ok-100); color: var(--ok-700); }
.badge--accent { background: var(--accent-100); color: var(--accent-800); }

.icon-tile {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex: none;
  border-radius: var(--r-md);
  background: var(--accent-50);
  color: var(--accent-800);
  border: 1px solid var(--accent-100);
}
.icon-tile svg { width: 21px; height: 21px; }

/* Numbered editorial steps */
.step-num {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--accent-600);
  font-variation-settings: 'opsz' 48;
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-4);
}

/* --------------------------------------------------------------------------
   9. Prose — blog posts and legal pages
   -------------------------------------------------------------------------- */
.prose { max-width: var(--measure); font-size: var(--step-1); line-height: 1.72; color: var(--ink-body); }
.prose > * + * { margin-top: var(--sp-5); }
.prose h2 {
  font-size: var(--step-3); margin-top: var(--sp-9); margin-bottom: var(--sp-4);
  padding-top: var(--sp-5); border-top: 1px solid var(--rule);
}
.prose h3 { font-size: var(--step-2); margin-top: var(--sp-7); margin-bottom: var(--sp-3); }
.prose h4 { font-size: var(--step-1); margin-top: var(--sp-6); margin-bottom: var(--sp-2); }
.prose ul, .prose ol { padding-left: 1.35rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-top: var(--sp-2); padding-left: .25rem; }
.prose li::marker { color: var(--accent-600); }
.prose blockquote {
  border-left: 2px solid var(--accent-600);
  padding-left: var(--sp-5);
  font-style: italic;
  color: var(--ink);
}
.prose table { margin-block: var(--sp-6); font-size: var(--step--1); }
.prose th, .prose td { padding: var(--sp-3) var(--sp-4); text-align: left; border-bottom: 1px solid var(--rule); }
.prose th { font-weight: 650; color: var(--ink); background: var(--paper-sunk); }
.prose img { border-radius: var(--r-md); margin-block: var(--sp-6); }
.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .875em; background: var(--paper-sunk);
  padding: .15em .4em; border-radius: var(--r-sm);
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* --------------------------------------------------------------------------
   10. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--brand-900);
  color: var(--brand-100);
  padding-block: var(--sp-9) var(--sp-6);
  margin-top: var(--sp-10);
}
.site-footer a { color: var(--brand-100); text-decoration: none; font-size: var(--step--1); }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.site-footer__grid {
  display: grid; gap: var(--sp-7);
  grid-template-columns: 1fr;
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr; gap: var(--sp-8); } }
.site-footer h3 {
  font-family: var(--font-sans);
  font-size: var(--step--2); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: var(--sp-4);
}
.site-footer ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.site-footer__brand .brand__mark { color: #fff; font-size: 1.4rem; }
.site-footer__brand p { color: rgba(255,255,255,.6); font-size: var(--step--1); margin-top: var(--sp-3); max-width: 34ch; }
.site-footer__base {
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  justify-content: space-between; align-items: center;
  padding-top: var(--sp-5);
  font-size: var(--step--2); color: rgba(255,255,255,.5);
}

/* --------------------------------------------------------------------------
   11. Utilities & accessibility
   -------------------------------------------------------------------------- */
.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;
}

:focus-visible {
  outline: 2px solid var(--accent-600);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

.grid { display: grid; gap: var(--sp-6); }
.grid > * { min-width: 0; }
@media (min-width: 700px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.text-mute { color: var(--ink-mute); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
