/* ==========================================================================
   Shalom Table — marketing site
   Visual language mirrors the app design authority:
   Docs/Initial_Design/Mockups/Shalom_Table_All_Screens.dc.html
   Tokens are the locked STDesignSystem tokens from the master architecture plan.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  color-scheme: light dark;

  /* Brand — locked tokens */
  --burgundy: #7B2D3B;
  --burgundy-deep: #5E2230;
  --burgundy-darkest: #511D29;
  --burgundy-wash: #F6ECEE;
  --cream: #FAF6ED;
  --cream-deep: #F5EDDC;
  --parchment: #ECE4D3;
  --card: #FFFDF8;
  --border: #E8E0D0;
  --border-strong: #DCD2BC;
  --gold: #A98940;
  --gold-bright: #E8B44A;
  --gold-muted: #C9A85C;
  --ink: #2B2721;
  --ink-soft: #5A5142;
  --ink-muted: #6E6455;
  --ink-faint: #857C6E;
  --sienna: #8A4B23;
  --green: #4C7A4C;

  /* Semantic — remapped wholesale in dark mode */
  --bg: var(--cream);
  --bg-alt: var(--cream-deep);
  --surface: var(--card);
  --surface-sunken: #F4EEE0;
  --rule: var(--border);
  --rule-strong: var(--border-strong);
  --text: var(--ink);
  --text-secondary: var(--ink-soft);
  --text-body: var(--ink-muted);
  --text-faint: var(--ink-faint);
  --accent: var(--burgundy);
  --accent-hover: var(--burgundy-deep);
  --accent-wash: var(--burgundy-wash);
  --eyebrow: var(--gold);
  --on-accent: var(--cream);
  --shadow-soft: 0 1px 2px rgba(43, 39, 33, .04), 0 8px 24px rgba(43, 39, 33, .05);
  --shadow-lift: 0 2px 4px rgba(43, 39, 33, .05), 0 14px 36px rgba(43, 39, 33, .09);
  --focus: #7B2D3B;

  /* Type */
  --font-serif: Lora, Georgia, "Times New Roman", serif;
  --font-hebrew: "Frank Ruhl Libre", "SBL Hebrew", "Times New Roman", serif;
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Metrics */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --measure: 68ch;
  --page: 1120px;
  --page-narrow: 760px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #17140F;
    --bg-alt: #1B1712;
    --surface: #241F18;
    --surface-sunken: #1F1B15;
    --rule: #3A332A;
    --rule-strong: #4A443C;
    --text: #F0E8D8;
    --text-secondary: #D6CCB8;
    --text-body: #B5A992;
    --text-faint: #9C9180;
    --accent: #D8B9BF;
    --accent-hover: #EBD3D7;
    --accent-wash: #33232A;
    --eyebrow: var(--gold-muted);
    --on-accent: #1B1712;
    --shadow-soft: 0 1px 2px rgba(0, 0, 0, .3), 0 8px 24px rgba(0, 0, 0, .28);
    --shadow-lift: 0 2px 4px rgba(0, 0, 0, .34), 0 14px 36px rgba(0, 0, 0, .4);
    --focus: #E8C87E;
  }
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.22;
  color: var(--text);
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 1.35rem + 3.2vw, 3.5rem); letter-spacing: -.012em; }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + .5vw, 1.35rem); }
h4 { font-size: 1.0625rem; }

p { margin: 0 0 1.1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

ul, ol { max-width: var(--measure); padding-inline-start: 1.35em; }
li { margin-bottom: .5em; }
li:last-child { margin-bottom: 0; }

a {
  color: var(--accent);
  text-decoration-color: color-mix(in srgb, currentColor 42%, transparent);
  text-underline-offset: .18em;
  transition: color .16s ease, text-decoration-color .16s ease;
}
a:hover { color: var(--accent-hover); text-decoration-color: currentColor; }

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

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

abbr[title] { text-decoration: underline dotted; cursor: help; }

code, kbd {
  font-family: var(--font-mono);
  font-size: .9em;
  background: var(--surface-sunken);
  border: 1px solid var(--rule);
  border-radius: 5px;
  padding: .1em .38em;
}

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 2.5rem 0;
}

/* Hebrew always carries its own font and direction */
.he, [lang="he"] {
  font-family: var(--font-hebrew);
  font-size: 1.08em;
  line-height: 1.8;
}

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

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 100;
  background: var(--burgundy);
  color: #FAF6ED;
  padding: .7em 1.25em;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { transform: translate(-50%, 0); color: #FAF6ED; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--page);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

.wrap--narrow { max-width: var(--page-narrow); }

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

.band { background: var(--bg-alt); border-block: 1px solid var(--rule); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--eyebrow);
  margin: 0 0 .6rem;
}

.lede {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1rem + .55vw, 1.3rem);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 46ch;
}

.meta {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--text-faint);
  margin: 0;
}

/* --------------------------------------------------------------------------
   4. Header & navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--rule);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 66px;
  padding-block: .6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-serif);
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.brand:hover { color: var(--text); }
.brand img { width: 32px; height: 32px; border-radius: 8px; }

.nav { display: flex; align-items: center; gap: clamp(.5rem, 2vw, 1.6rem); }
.nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(.35rem, 1.6vw, 1.35rem);
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
}
.nav li { margin: 0; }
.nav a {
  display: inline-block;
  font-size: .93rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  padding: .45rem .25rem;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--accent); }
.nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 650;
  border-bottom-color: var(--accent);
}

/* Narrow screens: stack the header and stop it eating the viewport */
@media (max-width: 640px) {
  .site-header { position: static; }
  .site-header__inner {
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    min-height: 0;
    padding-block: .7rem .5rem;
  }
  .nav ul { justify-content: center; gap: .1rem .7rem; }
  .nav a { font-size: .875rem; padding: .35rem .15rem; }
}

/* --------------------------------------------------------------------------
   5. Buttons & badges
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 52px;
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.btn--primary {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #FAF6ED;
}
.btn--primary:hover { background: var(--burgundy-deep); border-color: var(--burgundy-deep); color: #FAF6ED; }

.btn--ghost {
  background: var(--surface);
  border-color: var(--rule-strong);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.6rem;
}

/* Store badge placeholder — deliberately NOT a link. The app is unreleased. */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem 1.3rem .85rem;
  border: 1.5px dashed var(--rule-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-body);
  max-width: 100%;
}
.store-badge__mark {
  flex: none;
  width: 30px;
  height: 30px;
  color: var(--text-faint);
}
.store-badge__text { display: flex; flex-direction: column; line-height: 1.3; }
.store-badge__top {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.store-badge__main { font-size: 1rem; font-weight: 600; color: var(--text-secondary); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .34rem .8rem;
  border-radius: 999px;
  border: 1px solid var(--rule-strong);
  background: var(--surface);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.pill--accent {
  background: var(--accent-wash);
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--rule);
  padding-block: clamp(3rem, 8vw, 6rem);
}

/* One subtle candlelight bloom. Static — no animation. */
.hero::before {
  content: "";
  position: absolute;
  inset-inline-start: 50%;
  top: -18%;
  width: min(900px, 130%);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(232, 180, 74, .16), transparent 62%);
  pointer-events: none;
}

.hero__inner { position: relative; text-align: center; }

.hero__mark {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lift);
}

.hero h1 { margin-bottom: .55em; }

.hero .lede { margin-inline: auto; max-width: 40ch; }

.hero .btn-row { justify-content: center; }

.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin: 1.9rem 0 0;
  padding: 0;
  list-style: none;
  max-width: none;
}
.hero__assurances li { margin: 0; }

/* Preview of the app's Today card — the site's one piece of product imagery */
.today-card {
  max-width: 480px;
  margin: clamp(2.5rem, 6vw, 3.5rem) auto 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #7B2D3B 0%, #5E2230 70%, #511D29 100%);
  color: #FAF6ED;
  padding: 1.6rem 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  text-align: start;
}
.today-card::after {
  content: "";
  position: absolute;
  inset-inline-end: -30px;
  top: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 180, 74, .22), transparent 70%);
  pointer-events: none;
}
.today-card__eyebrow {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: #C9A85C;
  margin: 0 0 .4rem;
}
.today-card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0;
  color: #FAF6ED;
}
.today-card__sub { font-size: .85rem; opacity: .78; margin: .15rem 0 0; }
.today-card__times {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.2rem;
}
.today-card__times > div + div {
  border-inline-start: 1px solid rgba(250, 246, 237, .25);
  padding-inline-start: 1.5rem;
}
.today-card__label { font-size: .78rem; opacity: .72; }
.today-card__time {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
}
.today-card__foot {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: space-between;
  align-items: center;
  font-size: .84rem;
  opacity: .9;
}
.today-card__provenance {
  margin: .7rem 0 0;
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .03em;
  color: rgba(250, 246, 237, .62);
}
.today-card__caption {
  max-width: 480px;
  margin: .8rem auto 0;
  text-align: center;
}

/* --------------------------------------------------------------------------
   7. Cards & grids
   -------------------------------------------------------------------------- */

.grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: none;
}
.grid > li { margin: 0; }

/* Four-item sets read better as a 2x2 than as 3 + orphan */
@media (min-width: 720px) {
  .grid--pairs, .contact-grid--pairs { grid-template-columns: 1fr 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.55rem 1.5rem;
  box-shadow: var(--shadow-soft);
}
.card h3 { margin-bottom: .4rem; }
.card p { font-size: .96rem; color: var(--text-body); }
.card .meta { margin-top: .9rem; }

.card__glyph {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--accent-wash);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.section-head { margin-bottom: 2.2rem; max-width: 58ch; }
.section-head p { color: var(--text-body); }

/* Feature rows — alternating, editorial */
.feature {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature:nth-of-type(even) .feature__media { order: -1; }
}
.feature + .feature { margin-top: clamp(2.5rem, 6vw, 4.5rem); }
.feature__body h3 { font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem); }
.feature__body p { color: var(--text-body); }

.feature__media {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: .92rem;
}
.mini-row + .mini-row { margin-top: .55rem; }
.mini-row strong { display: block; font-weight: 600; }
.mini-row span { font-size: .82rem; color: var(--text-faint); }
.mini-row--selected {
  border-color: var(--accent);
  border-width: 1.5px;
  background: var(--accent-wash);
}

.liturgy {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 1.1rem 1.2rem;
}
.liturgy p { margin-bottom: .55rem; max-width: none; }
.liturgy .he { font-size: 1.22rem; color: var(--text); }
.liturgy .translit { font-size: .92rem; color: var(--text-body); font-style: italic; }
.liturgy .english { font-size: .92rem; color: var(--text-body); margin-bottom: 0; }

/* Callouts */
.note {
  border-inline-start: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.3rem;
  margin: 1.75rem 0;
}
.note p { color: var(--text-body); }
.note > :first-child { margin-top: 0; }
.note--caution { border-inline-start-color: var(--sienna); }
.note h3, .note h4 { margin-bottom: .35rem; }

/* --------------------------------------------------------------------------
   8. Long-form documents (privacy, terms)
   -------------------------------------------------------------------------- */

.doc { padding-block: clamp(2.5rem, 6vw, 4rem); }
.doc h2 {
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule);
  font-size: clamp(1.3rem, 1.15rem + .8vw, 1.65rem);
}
.doc h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 2rem; }
.doc h3 { margin-top: 1.9rem; font-size: 1.12rem; }
.doc p, .doc li { color: var(--text-body); }
.doc li::marker { color: var(--text-faint); }

.doc__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: .9rem 0 0;
  margin: 0;
  list-style: none;
  max-width: none;
}
.doc__meta li { margin: 0; }

.toc {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  margin: 2rem 0 0;
}
.toc h2 {
  border: 0;
  margin: 0 0 .7rem;
  padding: 0;
  font-size: .95rem;
  font-family: var(--font-ui);
  font-weight: 650;
  letter-spacing: .02em;
}
.toc ol { margin: 0; padding-inline-start: 1.3rem; }
.toc li { margin-bottom: .3rem; font-size: .95rem; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0;
  font-size: .94rem;
}
.table-scroll { overflow-x: auto; margin: 1.4rem 0; }
.table-scroll table { margin: 0; min-width: 34rem; }
th, td {
  text-align: start;
  padding: .75rem .9rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
  color: var(--text-body);
}
th {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--rule-strong);
}
tbody tr:last-child td { border-bottom: 0; }

/* --------------------------------------------------------------------------
   9. FAQ
   -------------------------------------------------------------------------- */

.faq { margin-top: 1.6rem; }

.faq details {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: .7rem;
  overflow: hidden;
}
.faq details[open] { border-color: var(--rule-strong); }

.faq summary {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: 1.05rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  margin-inline-start: auto;
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  flex: none;
  transition: transform .18s ease;
}
.faq details[open] summary::after { content: "\2212"; }
.faq summary:hover { color: var(--accent); }

.faq__body {
  padding: 0 1.25rem 1.2rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.1rem;
  margin-top: -1px;
}
.faq__body p, .faq__body li { color: var(--text-body); font-size: .98rem; }
.faq__body > :last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   10. Contact / support blocks
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  max-width: none;
}
.contact-grid > li { margin: 0; }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 1.4rem 0 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding-inline-start: 2.9rem;
  margin-bottom: 1.1rem;
  color: var(--text-body);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  inset-inline-start: 0;
  top: -.05em;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-wash);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: .82rem;
  font-weight: 600;
}
.steps strong { color: var(--text); }

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  margin-top: auto;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.site-footer h2 {
  font-family: var(--font-ui);
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: .8rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .45rem; }
.site-footer a { font-size: .95rem; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer p { font-size: .92rem; color: var(--text-body); }

.site-footer__bar {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.5rem;
  justify-content: space-between;
  align-items: baseline;
}
.site-footer__bar p { margin: 0; font-size: .85rem; color: var(--text-faint); }

.attribution {
  font-size: .82rem;
  color: var(--text-faint);
  max-width: var(--measure);
}
.attribution a { color: var(--text-faint); }

/* --------------------------------------------------------------------------
   12. Utilities
   -------------------------------------------------------------------------- */

body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1 0 auto; }

.center { text-align: center; }
.center p, .center .lede { margin-inline: auto; }
.mt-0 { margin-top: 0; }

@media print {
  .site-header, .site-footer, .skip-link, .btn-row { display: none; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a::after { content: " (" attr(href) ")"; font-size: .85em; }
}
