/*
Theme Name: Arab Cultural Center
Theme URI: https://www.arabculturalcenter.org/
Author: Arab Cultural Center editorial desk
Description: Editorial theme for arabculturalcenter.org. Hairline-ruled contents index, numbered entries and a details rail — a reading surface with a printed-index character rather than a stock blog layout.
Version: 1.0
License: Proprietary
Text Domain: acc-archive
*/

/* ============================================================
   1. Fonts — self-hosted, latin subset, variable
   ============================================================ */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('assets/fonts/bricolage.woff2') format('woff2-variations');
  font-weight: 400 800;
  font-stretch: 75% 100%;
  font-display: swap;
}
@font-face {
  font-family: 'Literata';
  src: url('assets/fonts/literata.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: 'Fragment Mono';
  src: url('assets/fonts/fragmentmono.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

/* ============================================================
   2. Tokens — palette family "olive-madder"
   Dark olive-ink ground (hue ~78°), warm bone text, madder kicker,
   faience link. Deliberately outside every registered fleet pair.
   ============================================================ */
:root {
  --ink:        #14170f;   /* page ground */
  --ink-raise:  #1b2015;   /* panel / row hover */
  --ink-sink:   #0e100a;   /* masthead + footer */
  --rule:       #333b28;   /* hairline */
  --rule-soft:  #242a1c;
  --bone:       #e9e5d8;   /* primary text */
  --bone-dim:   #a8ad92;   /* metadata */
  --bone-faint: #6f755c;
  --madder:     #d4674c;   /* kickers, entry numbers, current state */
  --faience:    #7fa9bf;   /* links */
  --paper:      #f2efe4;   /* inverted surfaces (article body) */
  --paper-ink:  #1a1d13;

  --shell:  clamp(1rem, 4vw, 4.5rem);
  --max:    82rem;
  --measure: 38rem;

  --step--1: clamp(.78rem, .75rem + .15vw, .86rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.09rem);
  --step-1:  clamp(1.2rem, 1.1rem + .5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3:  clamp(2rem, 1.5rem + 2.4vw, 3.6rem);
  --step-4:  clamp(2.6rem, 1.6rem + 4.6vw, 5.6rem);

  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* ============================================================
   3. Reset + base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: 'Literata', Georgia, serif;
  font-size: var(--step-0);
  line-height: 1.65;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--faience); text-decoration: none; }
h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Helvetica Neue', sans-serif;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0;
  text-wrap: balance;
}

/* the shared metadata voice — small caps mono, used everywhere */
.meta {
  font-family: 'Fragment Mono', ui-monospace, monospace;
  font-size: var(--step--1);
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--bone-dim);
  font-weight: 400;
}

.shell { max-width: var(--max); margin-inline: auto; padding-inline: var(--shell); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--madder); color: var(--ink-sink);
  padding: .6rem 1rem; z-index: 99; font-family: 'Fragment Mono', monospace;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--madder); outline-offset: 3px; }

/* ============================================================
   4. Masthead — a catalogue header bar, not a nav+logo strip
   ============================================================ */
.masthead {
  background: var(--ink-sink);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 40;
}
.masthead__in {
  max-width: var(--max); margin-inline: auto; padding: .85rem var(--shell);
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.4rem);
}
.brand { display: flex; align-items: center; gap: .7rem; flex: 0 0 auto; }
.brand__mark { width: 30px; height: 30px; flex: 0 0 auto; }
.brand__name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1.02rem; letter-spacing: .01em;
  color: var(--bone); text-transform: uppercase; line-height: 1;
}
.brand__name em { font-style: normal; color: var(--madder); }

.nav { margin-left: auto; }
.nav ul { display: flex; gap: clamp(.9rem, 2vw, 1.9rem); list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav a {
  font-family: 'Fragment Mono', monospace; font-size: var(--step--1);
  letter-spacing: .08em; text-transform: uppercase; color: var(--bone-dim);
  padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.nav a:hover, .nav a:focus-visible { color: var(--bone); border-bottom-color: var(--madder); }
.nav .current-menu-item > a, .nav .current_page_item > a { color: var(--madder); border-bottom-color: var(--madder); }
.nav__idx { color: var(--bone-faint); }

.nav-toggle { display: none; }
@media (max-width: 860px) {
  .masthead__in { flex-wrap: wrap; }
  .nav-toggle {
    display: block; margin-left: auto; background: none; border: 1px solid var(--rule);
    color: var(--bone); font-family: 'Fragment Mono', monospace; font-size: var(--step--1);
    letter-spacing: .1em; text-transform: uppercase; padding: .4rem .7rem; cursor: pointer;
  }
  .nav { flex-basis: 100%; margin-left: 0; max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
  .nav[data-open="true"] { max-height: 22rem; }
  .nav ul { flex-direction: column; gap: 0; padding-top: .6rem; }
  .nav li { border-top: 1px solid var(--rule-soft); }
  .nav a { display: block; padding: .7rem 0; border-bottom: none; }
}

/* ============================================================
   5. Frontispiece — the collection statement
   ============================================================ */
.frontis { border-bottom: 1px solid var(--rule); position: relative; overflow: hidden; }
.frontis__media { position: absolute; inset: 0; z-index: 0; }
.frontis__media img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.frontis__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--ink) 34%, rgba(20,23,15,.86) 62%, rgba(20,23,15,.55) 100%);
}
.frontis__in {
  position: relative; z-index: 1;
  max-width: var(--max); margin-inline: auto; padding: clamp(2.6rem, 7vw, 5.4rem) var(--shell);
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(1.6rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .frontis__in { grid-template-columns: 1fr; } }
.frontis h1 { font-size: var(--step-4); text-transform: uppercase; letter-spacing: -.035em; }
.frontis h1 span { display: block; }
.frontis h1 .is-accent { color: var(--madder); }
/* The qualifying clause completes the H1 without competing with the display
   line — set at reading size, in the metadata voice. */
.frontis h1 .frontis__sub {
  font-family: 'Fragment Mono', ui-monospace, monospace;
  font-size: var(--step--1); font-weight: 400;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--bone-dim); line-height: 1.5;
  margin-top: 1.1rem; padding-top: .8rem;
  border-top: 1px solid var(--rule); max-width: 30rem;
}
.frontis__lede { max-width: var(--measure); }
.frontis__lede p { margin: 0 0 1rem; color: #cfcbba; }
.frontis__lede p:last-child { margin-bottom: 0; }
.frontis__tag {
  display: inline-block; margin-bottom: 1.1rem; padding-left: 1.1rem;
  border-left: 2px solid var(--madder);
}

/* ============================================================
   6. Section head — rule + label + counter
   ============================================================ */
.sechead {
  display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
  padding: 1.5rem 0 .8rem; border-bottom: 2px solid var(--rule);
}
.sechead__label { color: var(--madder); }
.sechead__count { margin-left: auto; }
.sechead h2 { font-size: var(--step-2); text-transform: uppercase; }

/* ============================================================
   7. The contents index — the signature component
   ============================================================ */
.index { border-bottom: 1px solid var(--rule); }
.idx { width: 100%; border-collapse: collapse; }
.idx thead th {
  text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--rule);
  font-family: 'Fragment Mono', monospace; font-size: var(--step--1);
  letter-spacing: .1em; text-transform: uppercase; color: var(--bone-faint); font-weight: 400;
  white-space: nowrap;
}
.idx tbody tr { border-bottom: 1px solid var(--rule-soft); transition: background .18s var(--ease); }
.idx tbody tr:hover { background: var(--ink-raise); }
.idx td { padding: 1rem .9rem; vertical-align: top; }
.idx__id { font-family: 'Fragment Mono', monospace; font-size: var(--step--1); color: var(--madder); white-space: nowrap; }
.idx__date { font-family: 'Fragment Mono', monospace; font-size: var(--step--1); color: var(--bone-dim); white-space: nowrap; }
.idx__title a {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700;
  font-size: var(--step-1); color: var(--bone); line-height: 1.15; display: block;
  letter-spacing: -.015em;
}
.idx__title a:hover, .idx__title a:focus-visible { color: var(--madder); }
.idx__title p { margin: .45rem 0 0; color: var(--bone-dim); font-size: .93rem; line-height: 1.5; max-width: 46rem; }
.idx__tax { font-family: 'Fragment Mono', monospace; font-size: var(--step--1); color: var(--faience); white-space: nowrap; }
/* The cell has to carry the image width PLUS the row padding, and the image
   needs max-width:none or the global `img { max-width:100% }` clamps it to the
   padded content box and the square goes oblong. */
.idx__thumb { width: 74px; padding-left: 0 !important; }
.idx__thumb img { width: 74px; height: 74px; max-width: none; object-fit: cover; filter: saturate(.72); }

/* the row-reveal signature: a madder rule that draws in from the left */
.idx tbody tr td:first-child { position: relative; }
.idx tbody tr td:first-child::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--madder); transform: scaleY(0); transform-origin: top;
  transition: transform .22s var(--ease);
}
.idx tbody tr:hover td:first-child::before { transform: scaleY(1); }

@media (max-width: 780px) {
  .idx thead { position: absolute; left: -9999px; }
  .idx tbody tr { display: grid; grid-template-columns: auto 1fr; gap: .2rem .8rem; padding: 1rem 0; }
  .idx td { padding: 0; }
  .idx__thumb { grid-row: span 3; width: 62px; }
  .idx__thumb img { width: 62px; height: 62px; }
  .idx__id, .idx__date, .idx__tax { display: inline-block; margin-right: .8rem; }
  .idx__title { grid-column: 2; }
}

/* ============================================================
   8. Finding aid — the historical-entities rail
   ============================================================ */
.finding { display: grid; grid-template-columns: minmax(0, 15rem) minmax(0, 1fr); border-bottom: 1px solid var(--rule); }
@media (max-width: 820px) { .finding { grid-template-columns: 1fr; } }
.finding__intro { padding: 2rem clamp(1rem, 3vw, 2rem) 2rem 0; border-right: 1px solid var(--rule); }
@media (max-width: 820px) { .finding__intro { border-right: none; border-bottom: 1px solid var(--rule); padding-right: 0; } }
.finding__intro h2 { font-size: var(--step-2); text-transform: uppercase; margin-bottom: .9rem; }
.finding__intro p { font-size: .9rem; color: var(--bone-dim); margin: 0; }
.finding__list { display: flex; flex-direction: column; }
.finding__row {
  display: grid; grid-template-columns: 8.5rem 1fr; gap: 1.2rem; align-items: baseline;
  padding: 1.15rem clamp(1rem, 3vw, 2rem); border-bottom: 1px solid var(--rule-soft);
  transition: background .18s var(--ease);
}
.finding__row:last-child { border-bottom: none; }
.finding__row:hover { background: var(--ink-raise); }
@media (max-width: 560px) { .finding__row { grid-template-columns: 1fr; gap: .3rem; } }
.finding__row h3 { font-size: 1.06rem; font-weight: 700; letter-spacing: 0; }
.finding__row h3 a { color: var(--bone); }
.finding__row h3 a:hover { color: var(--madder); }
.finding__row p { margin: .3rem 0 0; font-size: .9rem; color: var(--bone-dim); }

/* ============================================================
   9. Publishing notice — site-specific, NOT a stock callout box
   A ruled ledger strip across the full width with a mono label column.
   ============================================================ */
.notice { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--ink-sink); }
.notice__in {
  max-width: var(--max); margin-inline: auto; padding: 1.4rem var(--shell);
  display: grid; grid-template-columns: 9rem 1fr; gap: clamp(1rem, 3vw, 2rem); align-items: start;
}
@media (max-width: 620px) { .notice__in { grid-template-columns: 1fr; gap: .5rem; } }
.notice__label { color: var(--madder); border-top: 2px solid var(--madder); padding-top: .45rem; }
.notice p { margin: 0; font-size: .92rem; color: var(--bone-dim); max-width: 60rem; }
.notice a { color: var(--faience); text-decoration: underline; text-underline-offset: .18em; }

/* ============================================================
   10. Article — inverted to paper, the reading surface
   ============================================================ */
.record { background: var(--paper); color: var(--paper-ink); }
.record__head {
  background: var(--ink); color: var(--bone);
  border-bottom: 1px solid var(--rule); padding: clamp(2rem, 5vw, 3.4rem) 0 clamp(1.6rem, 4vw, 2.6rem);
}
.record__head .shell { display: grid; gap: 1rem; }
.record__slug { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: baseline; }
.record__slug .is-id { color: var(--madder); }
.record h1 { font-size: var(--step-3); text-transform: uppercase; max-width: 22ch; }
.record__standfirst { font-size: var(--step-1); color: #cfcbba; max-width: var(--measure); margin: 0; line-height: 1.45; }
.record__figure { border-top: 1px solid var(--rule); }
.record__figure img { width: 100%; max-height: 26rem; object-fit: cover; }

.record__body { padding: clamp(2rem, 5vw, 3.6rem) 0 clamp(2.5rem, 6vw, 4rem); }
.record__body .shell { display: grid; grid-template-columns: minmax(0, var(--measure)) minmax(0, 15rem); gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .record__body .shell { grid-template-columns: 1fr; } }
.prose { font-size: 1.06rem; line-height: 1.72; }
.prose > * + * { margin-top: 1.15em; }
.prose p { margin: 0; }
.prose h2 {
  font-size: var(--step-2); text-transform: uppercase; margin-top: 2.4em; letter-spacing: -.02em;
  padding-top: .55em; border-top: 2px solid var(--paper-ink); max-width: 24ch;
}
.prose h3 { font-size: var(--step-1); margin-top: 1.9em; letter-spacing: -.01em; }
.prose a { color: #8a4a34; text-decoration: underline; text-underline-offset: .18em; text-decoration-thickness: 1px; }
.prose a:hover { background: #e6dfcb; }
.prose ul, .prose ol { padding-left: 1.15rem; margin-block: 1.15em; }
.prose li + li { margin-top: .5em; }
.prose li::marker { color: #8a4a34; }
.prose img { margin-block: 1.6em; }
.prose figure { margin: 1.8em 0; }
.prose figcaption { font-family: 'Fragment Mono', monospace; font-size: var(--step--1); color: #6d6a58; margin-top: .6em; letter-spacing: .04em; }
.prose blockquote {
  margin: 1.8em 0; padding: 0 0 0 1.4rem; border-left: 2px solid #8a4a34;
  font-size: 1.14rem; line-height: 1.55;
}
.prose blockquote p { margin: 0; }
.prose strong { font-weight: 700; }

/* first-paragraph treatment: the site's reading signature */
.prose > p:first-of-type { font-size: 1.16rem; line-height: 1.6; }
.prose > p:first-of-type::first-line { font-variant-caps: all-small-caps; letter-spacing: .04em; }

/* side rail — article details, not a widget sidebar */
.rail { position: sticky; top: 5rem; display: grid; gap: 1.4rem; }
@media (max-width: 900px) { .rail { position: static; } }
.rail__block { border-top: 2px solid var(--paper-ink); padding-top: .6rem; }
.rail__block .meta { color: #6d6a58; }
.rail__block h2 { font-family: 'Fragment Mono', monospace; font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; color: #6d6a58; font-weight: 400; }
.rail dl { margin: .7rem 0 0; display: grid; grid-template-columns: auto 1fr; gap: .35rem .9rem; font-size: .88rem; }
.rail dt { font-family: 'Fragment Mono', monospace; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: #6d6a58; }
.rail dd { margin: 0; }
.rail ul { list-style: none; margin: .7rem 0 0; padding: 0; }
.rail li { padding: .5rem 0; border-bottom: 1px solid #ddd7c4; font-size: .92rem; line-height: 1.35; }
.rail li:last-child { border-bottom: none; }
.rail a { color: #8a4a34; }
.rail a:hover { text-decoration: underline; }

/* FAQ — a numbered ruled register, not a card accordion */
.faq { margin-top: 2.8em; }
.faq h2 { font-size: var(--step-2); text-transform: uppercase; padding-top: .55em; border-top: 2px solid var(--paper-ink); }
.faq__item { border-bottom: 1px solid #ddd7c4; }
.faq__item summary {
  cursor: pointer; list-style: none; padding: .95rem 0; display: grid;
  grid-template-columns: 3rem 1fr auto; gap: .8rem; align-items: baseline;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.06rem; line-height: 1.3;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-family: 'Fragment Mono', monospace; color: #8a4a34; font-size: 1.1rem; }
.faq__item[open] summary::after { content: '\2212'; }
.faq__n { font-family: 'Fragment Mono', monospace; font-size: var(--step--1); color: #8a4a34; letter-spacing: .06em; }
/* The question is an <h3> for the heading outline (QA m1). It is a grid item in
   the summary row, so it must drop the UA heading margin and font sizing and
   take the summary's instead — otherwise the row grows and the type jumps. */
.faq__q { margin: 0; font: inherit; letter-spacing: inherit; }
.faq__a { padding: 0 0 1.1rem 3.8rem; }
.faq__a p { margin: 0 0 .8em; }
.faq__a p:last-child { margin-bottom: 0; }
@media (max-width: 560px) { .faq__a { padding-left: 0; } }

/* ============================================================
   11. Related reading
   ============================================================ */
.related { background: var(--ink); color: var(--bone); border-top: 1px solid var(--rule); padding: clamp(2rem, 5vw, 3rem) 0; }
.related__list { display: grid; gap: 0; margin-top: .4rem; }
.related__item { display: grid; grid-template-columns: 5.5rem 1fr; gap: 1.2rem; padding: 1rem 0; border-bottom: 1px solid var(--rule-soft); align-items: baseline; }
.related__item:last-child { border-bottom: none; }
.related__item h3 { font-size: 1.06rem; font-weight: 700; letter-spacing: 0; }
.related__item h3 a { color: var(--bone); }
.related__item h3 a:hover { color: var(--madder); }
@media (max-width: 560px) { .related__item { grid-template-columns: 1fr; gap: .25rem; } }

/* ============================================================
   12. Footer
   ============================================================ */
.footer { background: var(--ink-sink); border-top: 1px solid var(--rule); padding: clamp(2rem, 5vw, 3rem) 0 1.5rem; }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: clamp(1.4rem, 4vw, 3rem); }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
.footer__brand p { font-size: .9rem; color: var(--bone-dim); margin: .9rem 0 0; max-width: 30rem; }
.footer h2 { font-family: 'Fragment Mono', monospace; font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; color: var(--bone-faint); font-weight: 400; }
.footer ul { list-style: none; margin: .8rem 0 0; padding: 0; }
.footer li { margin-bottom: .5rem; }
.footer li a { font-size: .92rem; color: var(--bone-dim); }
.footer li a:hover { color: var(--madder); }
.footer__base {
  margin-top: 2.2rem; padding-top: 1.1rem; border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}

/* ============================================================
   13. Page + 404 + archive
   ============================================================ */
.pagehead { border-bottom: 1px solid var(--rule); padding: clamp(2rem, 5vw, 3.4rem) 0 clamp(1.4rem, 3vw, 2.2rem); }
.pagehead h1 { font-size: var(--step-3); text-transform: uppercase; max-width: 20ch; margin-top: .8rem; }
.pagehead p { margin: 1rem 0 0; color: var(--bone-dim); max-width: var(--measure); }

.plain { padding: clamp(2rem, 5vw, 3.4rem) 0 clamp(2.5rem, 6vw, 4rem); }
.plain .prose { max-width: var(--measure); color: var(--bone); }
.plain .prose h2 { border-top-color: var(--rule); }
.plain .prose a { color: var(--faience); }
.plain .prose a:hover { background: none; color: var(--madder); }
.plain .prose blockquote { border-left-color: var(--madder); }
.plain .prose li::marker { color: var(--madder); }
/* The FAQ register is styled for the paper reading surface; on the dark
   pages it needs the ink-side rules or the hairlines vanish. */
.plain .faq h2 { border-top-color: var(--rule); }
.plain .faq__item { border-bottom-color: var(--rule); }
.plain .faq__item summary { color: var(--bone); }
.plain .faq__item summary::after,
.plain .faq__n { color: var(--madder); }
.plain .faq__a { color: var(--bone-dim); }
.plain .faq__a a { color: var(--faience); }

.pagination { display: flex; gap: .6rem; padding: 1.6rem 0; }
.pagination .page-numbers {
  font-family: 'Fragment Mono', monospace; font-size: var(--step--1); letter-spacing: .06em;
  padding: .4rem .7rem; border: 1px solid var(--rule); color: var(--bone-dim);
}
.pagination .page-numbers.current { border-color: var(--madder); color: var(--madder); }
.pagination a.page-numbers:hover { border-color: var(--bone-dim); color: var(--bone); }

/* ============================================================
   14. Contact form
   ============================================================ */
.form { display: grid; gap: 1.1rem; max-width: var(--measure); margin-top: 1.8rem; }
.form label { display: grid; gap: .4rem; }
.form input, .form textarea {
  background: var(--ink-raise); border: 1px solid var(--rule); color: var(--bone);
  padding: .7rem .8rem; font-family: 'Literata', serif; font-size: 1rem; width: 100%;
}
.form input:focus, .form textarea:focus { border-color: var(--madder); outline: none; }
.form button {
  justify-self: start; background: var(--madder); color: var(--ink-sink); border: none;
  font-family: 'Fragment Mono', monospace; font-size: var(--step--1); letter-spacing: .1em;
  text-transform: uppercase; padding: .75rem 1.5rem; cursor: pointer;
  transition: background .18s var(--ease);
}
.form button:hover { background: #e07d63; }
.form__note { font-size: .86rem; color: var(--bone-faint); }
