/* Foltz Photos.
 *
 * Palette is basalt + lamplight: a warm near-black with a green cast (the
 * volcanic rock this house sits on) rather than a neutral #111, and a desert
 * ochre for the one accent. The reason to avoid neutral grey is practical as
 * well as regional — a photo grid puts every hue on screen at once, and a
 * dead-neutral chrome makes warm photos read as colour-cast. A ground with a
 * declared temperature stops competing with the pictures.
 *
 * Type is three system roles, no webfont: a serif for identity, the UI sans
 * for interface, and mono for anything that is data (dates, counts, bytes).
 * No network font, on purpose — this is a private family library and a
 * fonts.googleapis.com request would report every visit to a third party.
 */

:root {
  --ink:      #12140F;  /* page ground */
  --ink-2:    #1B1E17;  /* raised: bars, cards, menus */
  --ink-3:    #262A21;  /* hover, borders */
  --ink-4:    #363B2E;  /* strong border, disabled */
  --bone:     #E8E4D9;  /* primary text */
  --dust:     #97957F;  /* secondary text */
  --dust-dim: #6C6B5C;  /* tertiary */
  --ember:    #D9A441;  /* the accent. selection, focus, favorite */
  --ember-dk: #8A6620;
  --rust:     #C05F3C;  /* destructive only */

  --serif: ui-serif, Georgia, "Iowan Old Style", "Times New Roman", serif;
  --sans:  ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono:  ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;

  --topbar-h: 56px;
  --nav-h: 58px;
  --rail-w: 46px;
  --gut: 3px;

  --r-sm: 3px;
  --r-md: 8px;
  --r-lg: 14px;

  --ease: cubic-bezier(.22, .68, .3, 1);
}

* { box-sizing: border-box; }

/* Every overlay here is laid out with display:grid/flex, and any `display`
 * declaration outranks the UA stylesheet's `[hidden] { display: none }`.
 * Without this rule the lightbox, modal and drop target all paint at once on
 * first load. Keep it above everything that sets `display`. */
[hidden] { display: none !important; }

html, body {
  margin: 0;
  height: 100%;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}

button, input, a { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: var(--ember); }

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

.vh {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.mono { font-family: var(--mono); font-size: 12px; letter-spacing: .01em; }

/* ---------- wordmark ---------- */

.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.015em;
  margin: 0;
}
.wordmark-sm { font-size: 19px; white-space: nowrap; }

/* ---------- sign-in ---------- */

.gate {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
  /* A single low ember glow off the bottom-left, like a lamp out of frame. */
  background:
    radial-gradient(120vmax 90vmax at 8% 118%, rgba(217, 164, 65, .10), transparent 62%),
    var(--ink);
}
.gate-inner { text-align: center; max-width: 30rem; }
.gate .wordmark { font-size: clamp(2.4rem, 9vw, 3.6rem); }
.gate-copy { color: var(--dust); margin: .6rem 0 2rem; }
.gate-note {
  margin-top: 1.5rem; color: var(--rust); font-size: 13px;
}

/* ---------- buttons ---------- */

.btn {
  border: 1px solid transparent;
  border-radius: var(--r-md);
  padding: 10px 18px;
  background: var(--ink-3);
  color: var(--bone);
  text-decoration: none;
  display: inline-block;
  transition: background .14s var(--ease), border-color .14s var(--ease);
}
.btn:hover { background: var(--ink-4); }
.btn-sm { padding: 7px 13px; font-size: 14px; }
.btn-primary { background: var(--ember); color: #1A1405; font-weight: 600; }
.btn-primary:hover { background: #E8B457; }
.btn-ghost { background: transparent; border-color: var(--ink-4); }
.btn-ghost:hover { background: var(--ink-3); }
.btn-danger { background: transparent; border-color: var(--rust); color: var(--rust); }
.btn-danger:hover { background: var(--rust); color: var(--bone); }
.btn[disabled] { opacity: .45; pointer-events: none; }

.iconbtn {
  background: transparent; border: 0; color: var(--bone);
  width: 40px; height: 40px; border-radius: var(--r-md);
  font-size: 18px; line-height: 1; display: grid; place-items: center;
  text-decoration: none;
  transition: background .14s var(--ease), color .14s var(--ease);
}
.iconbtn:hover { background: rgba(232, 228, 217, .12); }
.iconbtn-sm { width: 30px; height: 30px; font-size: 14px; }
.iconbtn-danger:hover { background: var(--rust); }
.iconbtn.is-on { color: var(--ember); }

/* ---------- app frame ---------- */

.app { min-height: 100dvh; }

.topbar {
  position: fixed; inset: 0 0 auto 0; height: var(--topbar-h); z-index: 30;
  display: flex; align-items: center; gap: 14px;
  padding: 0 14px;
  padding-top: env(safe-area-inset-top);
  height: calc(var(--topbar-h) + env(safe-area-inset-top));
  background: rgba(27, 30, 23, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-3);
}
.search { flex: 1; min-width: 0; max-width: 26rem; }
.search input {
  width: 100%; background: var(--ink); border: 1px solid var(--ink-3);
  border-radius: 999px; padding: 8px 15px; color: var(--bone);
}
.search input::placeholder { color: var(--dust-dim); }
.search input:focus { border-color: var(--ink-4); outline-offset: 0; }
.topbar-right { display: flex; align-items: center; gap: 8px; position: relative; }

.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--ink-4); background: var(--ink-3);
  font-size: 13px; font-weight: 600; color: var(--dust);
  display: grid; place-items: center; padding: 0;
}
.avatar:hover { border-color: var(--ember); color: var(--bone); }

.menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 40;
  min-width: 15rem;
  background: var(--ink-2); border: 1px solid var(--ink-3);
  border-radius: var(--r-md); padding: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
}
.menu-head { padding: 10px 12px 8px; border-bottom: 1px solid var(--ink-3); }
.menu-name { display: block; }
.menu-email { display: block; color: var(--dust); word-break: break-all; }
.menu-stats { padding: 9px 12px; color: var(--dust); border-bottom: 1px solid var(--ink-3); }
.menu-item {
  display: block; width: 100%; text-align: left;
  background: transparent; border: 0; padding: 10px 12px;
  border-radius: var(--r-sm); color: var(--bone);
}
.menu-item:hover { background: var(--ink-3); }

/* Nav: bottom tabs on a phone, left rail on a desktop. */
.nav {
  position: fixed; inset: auto 0 0 0; z-index: 30;
  display: flex; justify-content: space-around; align-items: stretch;
  height: calc(var(--nav-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(27, 30, 23, .92);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--ink-3);
}
.nav-item {
  flex: 1; background: transparent; border: 0; color: var(--dust-dim);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  font-size: 11px; letter-spacing: .02em;
  border-top: 2px solid transparent;
  transition: color .14s var(--ease);
}
.nav-ico { font-size: 17px; line-height: 1; }
.nav-item:hover { color: var(--dust); }
.nav-item.is-current { color: var(--ember); }

.main {
  padding-top: calc(var(--topbar-h) + env(safe-area-inset-top));
  padding-bottom: calc(var(--nav-h) + env(safe-area-inset-bottom) + 12px);
  padding-right: var(--rail-w);
  outline: none;
}

.crumb {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 16px 16px 6px;
}
.crumb h2 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin: 0; }
.crumb .sub { color: var(--dust); font-size: 13px; }

.notice {
  margin: 10px 16px; padding: 10px 13px;
  border: 1px solid var(--ink-3); border-left: 2px solid var(--ember);
  border-radius: var(--r-sm); color: var(--dust); font-size: 13px;
}

/* ---------- month sections + grid ---------- */

.month { margin: 0 0 6px; }
.month-head {
  position: sticky; top: calc(var(--topbar-h) + env(safe-area-inset-top));
  z-index: 10;
  display: flex; align-items: baseline; gap: 10px;
  padding: 14px 16px 8px;
  background: linear-gradient(var(--ink) 62%, transparent);
}
.month-head h3 {
  font-family: var(--serif); font-weight: 400; font-size: 20px; margin: 0;
  letter-spacing: -.01em;
}
.month-head .count { font-family: var(--mono); font-size: 11px; color: var(--dust-dim); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: var(--gut);
  padding: 0 var(--gut);
}
@media (min-width: 700px) { .grid { grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); } }

/* The stripe lives on the tile, not on the placeholder, so a lazy-loaded
 * thumbnail has a skeleton behind it from the moment it is laid out. With it
 * on .tile-ph only, every tile below the fold was a blank dark square until
 * its image finished loading — or, for video, until an error fired. */
.tile {
  position: relative; aspect-ratio: 1; overflow: hidden;
  border-radius: var(--r-sm);
  background: repeating-linear-gradient(135deg, var(--ink-2) 0 8px, #1F2319 8px 16px);
  border: 0; padding: 0; display: block; width: 100%;
  cursor: pointer;
}
.tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0; transition: opacity .3s var(--ease), transform .35s var(--ease);
}
.tile img.is-loaded { opacity: 1; }
.tile:hover img { transform: scale(1.045); }

/* Video and un-thumbnailed files get an honest placeholder rather than a
   broken image: the backend does not make thumbnails for video yet. */
.tile-ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--dust-dim); font-size: 22px;
}
.tile-badge {
  position: absolute; left: 6px; bottom: 6px;
  background: rgba(18, 20, 15, .78); color: var(--bone);
  border-radius: 999px; padding: 2px 7px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .04em;
}
.tile-fav {
  position: absolute; right: 5px; top: 5px; color: var(--ember);
  font-size: 15px; text-shadow: 0 1px 4px rgba(0, 0, 0, .8);
  pointer-events: none;
}
.tile-check {
  position: absolute; left: 6px; top: 6px;
  width: 21px; height: 21px; border-radius: 50%;
  border: 2px solid rgba(232, 228, 217, .8);
  background: rgba(18, 20, 15, .45);
  display: grid; place-items: center; color: transparent; font-size: 12px;
  opacity: 0; transition: opacity .12s var(--ease);
}
.tile:hover .tile-check, .is-selecting .tile-check { opacity: 1; }
.tile.is-sel .tile-check { background: var(--ember); border-color: var(--ember); color: #1A1405; opacity: 1; }
.tile.is-sel img { transform: scale(.9); border-radius: var(--r-sm); }
.tile.is-sel { outline: 2px solid var(--ember); outline-offset: -2px; }

/* ---------- album cards ---------- */

.albums {
  display: grid; gap: 14px; padding: 8px 16px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.album {
  background: transparent; border: 0; padding: 0; text-align: left; cursor: pointer;
}
.album-cover {
  aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden;
  background: var(--ink-2); border: 1px solid var(--ink-3);
  display: grid; place-items: center; color: var(--dust-dim); font-size: 26px;
  transition: border-color .14s var(--ease);
}
.album:hover .album-cover { border-color: var(--ember-dk); }
.album-cover img { width: 100%; height: 100%; object-fit: cover; }
.album-name { margin-top: 8px; display: block; }
.album-meta { color: var(--dust-dim); font-family: var(--mono); font-size: 11px; }

/* ---------- the time rail (signature) ---------- */

.rail {
  position: fixed; z-index: 25;
  top: calc(var(--topbar-h) + env(safe-area-inset-top));
  bottom: calc(var(--nav-h) + env(safe-area-inset-bottom));
  right: 0; width: var(--rail-w);
  display: flex; flex-direction: column;
  padding: 8px 0;
  border-left: 1px solid var(--ink-3);
  background: linear-gradient(to left, var(--ink), rgba(18, 20, 15, .4));
  touch-action: none;
}
.rail-tick {
  flex: 1 1 0; min-height: 3px;
  position: relative; display: flex; align-items: center; justify-content: flex-end;
  padding-right: 7px; border: 0; background: transparent; cursor: pointer;
}
/* The bar length encodes how many photos that month holds — the rail is an
   index and a histogram at once, which is the whole reason it earns its width. */
.rail-bar {
  height: 2px; background: var(--dust-dim); border-radius: 1px;
  width: calc(6px + var(--d) * 26px);
  transition: background .14s var(--ease);
}
.rail-tick:hover .rail-bar, .rail-tick.is-current .rail-bar { background: var(--ember); }
.rail-year {
  position: absolute; right: 7px; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 9px; color: var(--dust-dim);
  letter-spacing: .04em; background: var(--ink); padding: 1px 3px;
}
.rail-tick.is-current .rail-year { color: var(--ember); }
.rail-flag {
  position: fixed; right: calc(var(--rail-w) + 8px); z-index: 26;
  background: var(--ember); color: #1A1405;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  padding: 4px 9px; border-radius: var(--r-sm);
  transform: translateY(-50%); pointer-events: none; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .5);
}

/* ---------- selection bar ---------- */

.selbar {
  position: fixed; z-index: 35;
  left: 50%; transform: translateX(-50%);
  bottom: calc(var(--nav-h) + env(safe-area-inset-bottom) + 12px);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  max-width: calc(100vw - 24px);
  padding: 9px 12px;
  background: var(--ink-2); border: 1px solid var(--ink-4);
  border-radius: var(--r-lg);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .6);
}
.sel-count { color: var(--dust); }
.selbar-actions { display: flex; gap: 6px; flex-wrap: wrap; }

/* ---------- lightbox ---------- */

.viewer {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(9, 10, 7, .97);
  display: grid; grid-template-rows: 1fr auto;
}
.viewer-stage { display: grid; place-items: center; overflow: hidden; padding: 12px; }
.viewer-stage img, .viewer-stage video {
  max-width: 100%; max-height: 100%; object-fit: contain; display: block;
}
.viewer-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 76px; border: 0; border-radius: var(--r-md);
  background: rgba(27, 30, 23, .5); color: var(--bone);
  font-size: 30px; line-height: 1;
  transition: background .14s var(--ease), opacity .2s var(--ease);
}
.viewer-nav:hover { background: rgba(38, 42, 33, .9); }
.viewer-prev { left: 8px; }
.viewer-next { right: 8px; }
.viewer.is-idle .viewer-nav, .viewer.is-idle .viewer-bar { opacity: 0; }
.viewer-bar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 12px 14px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--ink-3);
  background: var(--ink-2);
  transition: opacity .25s var(--ease);
}
.viewer-meta { flex: 1; min-width: 12rem; }
.viewer-caption {
  width: 100%; background: transparent; border: 0;
  border-bottom: 1px solid transparent; padding: 3px 0;
  font-family: var(--serif); font-size: 17px; color: var(--bone);
}
.viewer-caption:hover { border-bottom-color: var(--ink-4); }
.viewer-caption:focus { border-bottom-color: var(--ember); outline: none; }
.viewer-caption::placeholder { color: var(--dust-dim); font-style: italic; }
.viewer-facts { color: var(--dust-dim); margin-top: 4px; }
.viewer-actions { display: flex; gap: 2px; }

/* ---------- upload tray ---------- */

.tray {
  position: fixed; z-index: 45;
  right: calc(var(--rail-w) + 10px);
  bottom: calc(var(--nav-h) + env(safe-area-inset-bottom) + 12px);
  width: min(21rem, calc(100vw - 24px));
  background: var(--ink-2); border: 1px solid var(--ink-4);
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .6);
}
.tray-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 8px 8px 13px; border-bottom: 1px solid var(--ink-3);
}
.tray-title { font-size: 13px; }
.tray-list { list-style: none; margin: 0; padding: 4px; max-height: 15rem; overflow-y: auto; }
.tray-row {
  display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center;
  padding: 6px 9px; font-size: 12px;
}
.tray-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--dust); }
.tray-state { font-family: var(--mono); font-size: 10px; color: var(--dust-dim); }
.tray-row.is-done .tray-state { color: var(--ember); }
.tray-row.is-err .tray-state { color: var(--rust); }
.tray-row.is-err .tray-name { color: var(--rust); }

.drop {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(18, 20, 15, .88);
  display: grid; place-items: center;
  padding: 20px;
}
.drop-inner {
  border: 2px dashed var(--ember); border-radius: var(--r-lg);
  padding: clamp(2rem, 12vh, 5rem) clamp(2rem, 12vw, 6rem);
  font-family: var(--serif); font-size: clamp(1.2rem, 4vw, 1.9rem); color: var(--ember);
}

/* ---------- empty states ---------- */

.empty {
  text-align: center; padding: clamp(3rem, 16vh, 7rem) 24px;
  color: var(--dust);
}
.empty h3 {
  font-family: var(--serif); font-weight: 400; font-size: 22px;
  color: var(--bone); margin: 0 0 6px;
}
.empty p { margin: 0 0 20px; }

.sentinel { height: 1px; }

.spinner {
  margin: 24px auto; width: 22px; height: 22px;
  border: 2px solid var(--ink-4); border-top-color: var(--ember);
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- modal + toast ---------- */

.modal {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(9, 10, 7, .74);
  display: grid; place-items: center; padding: 20px;
}
.modal-card {
  width: min(28rem, 100%);
  background: var(--ink-2); border: 1px solid var(--ink-4);
  border-radius: var(--r-lg); padding: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .65);
}
.modal-title { font-family: var(--serif); font-weight: 400; font-size: 21px; margin: 0 0 8px; }
.modal-body { color: var(--dust); margin: 0 0 18px; }
.modal-body:empty { display: none; }
.modal-label { display: block; font-size: 13px; color: var(--dust); margin-bottom: 6px; }
.modal-input {
  width: 100%; background: var(--ink); border: 1px solid var(--ink-4);
  border-radius: var(--r-sm); padding: 10px 12px; color: var(--bone);
  margin-bottom: 18px;
}
.modal-list { max-height: 15rem; overflow-y: auto; margin-bottom: 18px; }
.modal-opt {
  display: block; width: 100%; text-align: left; background: transparent;
  border: 1px solid transparent; border-radius: var(--r-sm);
  padding: 10px 12px; color: var(--bone);
}
.modal-opt:hover { background: var(--ink-3); }
.modal-opt .m { color: var(--dust-dim); font-family: var(--mono); font-size: 11px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 8px; }

.toast {
  position: fixed; z-index: 90;
  left: 50%; transform: translateX(-50%);
  bottom: calc(var(--nav-h) + env(safe-area-inset-bottom) + 74px);
  background: var(--ink-2); border: 1px solid var(--ink-4);
  border-radius: 999px; padding: 9px 18px; font-size: 13px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .55);
  max-width: calc(100vw - 32px);
}
.toast.is-err { border-color: var(--rust); color: var(--rust); }

/* ---------- desktop ---------- */

@media (min-width: 860px) {
  .nav {
    inset: calc(var(--topbar-h) + env(safe-area-inset-top)) auto 0 0;
    width: 190px; height: auto; flex-direction: column; justify-content: flex-start;
    padding: 14px 10px; gap: 2px;
    border-top: 0; border-right: 1px solid var(--ink-3);
    background: transparent; backdrop-filter: none;
  }
  .nav-item {
    flex: 0 0 auto; flex-direction: row; justify-content: flex-start; gap: 12px;
    padding: 10px 14px; font-size: 14px; border-radius: var(--r-md);
    border-top: 0;
  }
  .nav-item.is-current { background: var(--ink-2); }
  .nav-ico { font-size: 15px; width: 18px; text-align: center; }
  .main { padding-left: 190px; padding-bottom: 24px; }
  .selbar { bottom: 20px; left: calc(50% + 95px); }
  .tray { bottom: 20px; }
  .rail { bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .tile:hover img { transform: none; }
}

/* ---------- support: what this month costs ----------
 *
 * Deliberately quiet. This is a family photo library, not a funding page: the
 * panel states a real number and offers a way to help, then gets out of the
 * way. It never nags, it is never a modal, and it shows a total only — who
 * gave what is not recorded, so it cannot be displayed.
 */

.support {
  margin: 14px 16px 4px;
  padding: 14px 16px;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-md);
}
.support-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.support-title {
  font-family: var(--serif); font-weight: 400; font-size: 17px; margin: 0;
}
.support-toggle {
  background: transparent; border: 0; color: var(--dust-dim);
  font-size: 12px; padding: 2px 4px; border-radius: var(--r-sm);
}
.support-toggle:hover { color: var(--bone); }

.support-meter {
  height: 6px; margin: 11px 0 9px;
  background: var(--ink); border: 1px solid var(--ink-3);
  border-radius: 999px; overflow: hidden;
}
.support-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--ember-dk), var(--ember));
  border-radius: 999px;
  transition: width .5s var(--ease);
}
.support.is-covered .support-fill { background: var(--ember); }

.support-line { margin: 0; font-size: 13px; color: var(--dust); }
.support-line strong { color: var(--bone); font-weight: 600; }

.support-detail {
  margin: 10px 0 0; padding-top: 10px;
  border-top: 1px solid var(--ink-3);
  display: grid; grid-template-columns: 1fr auto; gap: 3px 12px;
  color: var(--dust-dim);
}
.support-detail dt { margin: 0; }
.support-detail dd { margin: 0; text-align: right; color: var(--dust); }

.support-actions {
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
  margin-top: 12px;
}
.support-monthly {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--dust);
}
.support-monthly input { accent-color: var(--ember); }
