/* ==========================================================================
   kene.world
   One forest-green surface, cream type, clay accent. Every page. There is no
   light mode and no sand page surface - that is the house design law, ported
   from the old theme's tokens.css + base.css.

   Contrast, measured against --deep (#1e2a24):
     --cream  #ead9c7                 10.7:1   body + headings
     --cream-70 rgba(...,0.70)         5.6:1   secondary prose, meta  (AA)
     --clay   #d14b1e                  3.3:1   DECORATION ONLY - never text
     #fff on --clay-deep #b8421a       5.5:1   primary button
   ========================================================================== */

/* ----------------------------------------------------------------- fonts */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('/assets/fonts/fraunces-300-500-latin.7234ed86.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('/assets/fonts/fraunces-300-500-latin-ext.a2930b27.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-mono-400-latin.08949f72.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-mono-500-latin.01d28544.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-mono-500-latin-ext.6bb06407.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------------------------------------------------------------- tokens */
:root {
  --deep: #1e2a24;
  --deep-lift: #24302a;          /* one step up, for inset panels */
  --cream: #ead9c7;
  --cream-70: rgba(234, 217, 199, 0.70);
  /* 0.52 alpha measured 4.02:1 against --deep and failed WCAG AA. 0.64 blends
     to #9b9689 = 4.9:1, which passes for the 11px meta text it is used on.
     Do not lower this without re-measuring. */
  --cream-52: rgba(234, 217, 199, 0.64);
  --clay: #d14b1e;
  --clay-deep: #b8421a;
  --clay-press: #9e3814;

  --line: rgba(234, 217, 199, 0.14);
  --line-strong: rgba(234, 217, 199, 0.28);

  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Consolas, monospace;

  --fs-eyebrow: 11px;
  --fs-body: 16px;
  --fs-lead: clamp(18px, 2.1vw, 22px);
  --fs-h2: clamp(32px, 4.6vw, 58px);
  --fs-h3: clamp(22px, 2.4vw, 30px);
  --fs-hero: clamp(44px, 8.2vw, 116px);

  --gutter: 20px;
  --page: 1280px;
  --section: 56px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 761px) {
  :root { --gutter: 48px; --section: 104px; }
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  background: var(--deep);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

::selection { background: var(--clay); color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--cream);
  color: var(--deep);
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
}
.skip-link:focus { left: 12px; top: 12px; }

.wrap {
  width: 100%;
  max-width: var(--page);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.vh {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------ typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 100, 'SOFT' 0, 'WONK' 0;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.025em; line-height: 1.12; }

/* Italic display words pick up the clay accent - the house signature. */
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--clay);
  font-variation-settings: 'opsz' 100, 'SOFT' 40, 'WONK' 1;
}

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-70);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--clay);
  flex: none;
}
.eyebrow--plain::before { display: none; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  letter-spacing: -0.015em;
  max-width: 34ch;
  color: var(--cream);
}

p { margin: 0 0 1.15em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

.prose p, .prose li { color: var(--cream-70); }
.prose p strong, .prose li strong { color: var(--cream); font-weight: 500; }
.prose > * + * { margin-top: 1.15em; }
/* Sub-headings inside running prose are sized like an h3 regardless of level:
   the correct heading LEVEL is a document-structure question (and an
   accessibility one), the size is a typographic one. Do not collapse these
   back to h3 to get the size - that reintroduces a heading-order violation. */
.prose h2, .prose h3 {
  color: var(--cream);
  margin-top: 2.2em;
  font-size: var(--fs-h3);
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.prose ul { padding-left: 1.1em; margin: 0 0 1.15em; }
.prose li { margin-bottom: 0.5em; max-width: 66ch; }
.prose a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--clay); }
.prose a:hover { color: var(--clay); }

blockquote {
  margin: 2em 0;
  padding-left: 22px;
  border-left: 2px solid var(--clay);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 44ch;
}
blockquote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-52);
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--ease) 200ms, color var(--ease) 200ms, border-color var(--ease) 200ms;
}
.btn--primary { background: var(--clay-deep); color: #fff; }
.btn--primary:hover { background: var(--clay-press); }
.btn--ghost { border-color: var(--line-strong); color: var(--cream); background: transparent; }
.btn--ghost:hover { border-color: var(--cream); background: rgba(234, 217, 199, 0.06); }

.textlink {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  border-bottom: 1px solid var(--clay);
  padding-bottom: 3px;
  display: inline-block;
  transition: color var(--ease) 180ms;
}
.textlink:hover { color: var(--clay); }

/* ---------------------------------------------------------------- header */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(30, 42, 36, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 21px;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--cream);
  white-space: nowrap;
}
.wordmark em { font-style: italic; color: var(--clay); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream-70);
  transition: color var(--ease) 180ms;
}
.nav a:hover, .nav a[aria-current='page'] { color: var(--cream); }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 14px;
  cursor: pointer;
}

/* The mobile panel lives OUTSIDE .header on purpose: .header has a
   backdrop-filter, which makes it a containing block for fixed-position
   descendants and would trap the panel inside the 64px bar. */
.nav__panel {
  display: none;
  position: fixed;
  inset: 64px 0 auto 0;
  background: var(--deep);
  border-bottom: 1px solid var(--line);
  padding: 8px var(--gutter) 28px;
  z-index: 55;
}
.nav__panel[data-open='true'] { display: block; }
.nav__panel a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
}

@media (max-width: 860px) {
  .nav { display: none; }
  .nav__toggle { display: inline-block; }
}

/* -------------------------------------------------------------- sections */
.section { padding-block: var(--section); }
.section + .section { border-top: 1px solid var(--line); }
.section--flush { padding-top: 0; }

.section__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--cream-52);
  display: block;
  margin-bottom: 10px;
}

.section__head { margin-bottom: 44px; max-width: 46ch; }
.section__head p { color: var(--cream-70); margin-top: 20px; }

/* ------------------------------------------------------------------ hero */
.hero { padding-block: clamp(48px, 9vw, 108px) var(--section); }
.hero__grid {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.08fr 0.92fr; }
}
.hero h1 {
  font-size: var(--fs-hero);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 26px;
}
.hero__promise {
  font-size: var(--fs-lead);
  line-height: 1.45;
  color: var(--cream-70);
  max-width: 38ch;
  margin-bottom: 34px;
}
.hero__art { position: relative; }
.hero__art img { width: 100%; }
.hero__caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-52);
  margin-top: 14px;
}

/* ------------------------------------------------------------ split rows */
.split {
  display: grid;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-first > .split__media { order: -1; }
}
.split__media img { width: 100%; }
.split__body > * + * { margin-top: 22px; }

/* --------------------------------------------------------------- artisans */
.artisans {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.artisan img { width: 100%; margin-bottom: 16px; }
.artisan h3 { font-size: 21px; margin-bottom: 6px; }
.artisan__role,
.artisan__place {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cream-52);
  margin: 0;
}
.artisan__role { color: var(--cream-70); margin-bottom: 3px; }

/* ------------------------------------------------------------- stat cards */
.stats {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.stat { background: var(--deep); padding: 26px 22px; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-52);
  margin: 0;
}

/* --------------------------------------------------------------- the list */
.lines { border-top: 1px solid var(--line); }
.lines__row {
  display: grid;
  gap: 8px 40px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 760px) {
  .lines__row { grid-template-columns: 220px 1fr; gap: 40px; }
}
.lines__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0;
  padding-top: 4px;
}
.lines__text { color: var(--cream-70); margin: 0; }

/* ----------------------------------------------------------------- forms */
.signup {
  border: 1px solid var(--line);
  padding: clamp(26px, 4vw, 48px);
  background: var(--deep-lift);
}
.signup h2 { margin-bottom: 14px; }
.signup__intro { color: var(--cream-70); margin-bottom: 30px; max-width: 46ch; }

.form__row { margin-bottom: 18px; }
@media (min-width: 620px) {
  .form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .form__grid .form__row { margin-bottom: 0; }
}

label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-70);
  margin-bottom: 8px;
}

input[type='text'],
input[type='email'],
textarea {
  width: 100%;
  padding: 13px 15px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid var(--line-strong);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px; /* 16px stops iOS zooming the page on focus */
  line-height: 1.45;
  border-radius: 0;
  transition: border-color var(--ease) 180ms;
}
input::placeholder, textarea::placeholder { color: var(--cream-52); }
input:hover, textarea:hover { border-color: var(--cream-52); }
input:focus, textarea:focus { border-color: var(--clay); }
textarea { min-height: 150px; resize: vertical; }

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  cursor: pointer;
}
.check input[type='checkbox'] {
  appearance: none;
  -webkit-appearance: none;
  flex: none;
  width: 20px; height: 20px;
  margin: 1px 0 0;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  display: grid;
  place-content: center;
  border-radius: 0;
}
.check input[type='checkbox']::after {
  content: '';
  width: 10px; height: 10px;
  transform: scale(0);
  background: var(--clay);
  transition: transform var(--ease) 140ms;
}
.check input[type='checkbox']:checked::after { transform: scale(1); }
.check input[type='checkbox']:checked { border-color: var(--clay); }
.check span {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream-70);
  margin: 0;
}
.check a { color: var(--cream); text-decoration: underline; text-underline-offset: 2px; }

/* Honeypot. Kept out of the tab order and off-screen rather than
   display:none, because some bots skip hidden inputs. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
}

.form__note {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--cream-52);
  margin: 16px 0 0;
}

.formmsg {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-left: 2px solid var(--clay);
  background: rgba(0, 0, 0, 0.18);
  font-size: 15px;
  color: var(--cream);
}
.formmsg[hidden] { display: none; }
.formmsg--ok { border-left-color: #4f9e6a; }

/* ---------------------------------------------------------------- footer */
.footer {
  border-top: 1px solid var(--line);
  padding-block: var(--section) 40px;
}
.footer__top {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 860px) {
  .footer__top { grid-template-columns: 1fr auto; gap: 64px; }
}
.footer__mark { max-width: 300px; }
/* Keep these widths in sync with the `sizes` attributes on the footer
   <picture> in _includes/footer.html, or the browser picks the wrong variant
   and the mark renders soft on high-DPR screens. */
.footer__mark img { width: 128px; height: auto; margin-bottom: 22px; }
@media (max-width: 760px) {
  .footer__mark img { width: 88px; }
}
.footer__tag {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--cream-70);
  margin: 0;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, auto));
  gap: 10px 48px;
}
.footer__nav a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream-70);
}
.footer__nav a:hover { color: var(--cream); }

.footer__legal {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  align-items: baseline;
}
.footer__legal p,
.footer__legal a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cream-52);
  margin: 0;
  max-width: none;
}
.footer__legal a { text-decoration: none; }
.footer__legal a:hover { color: var(--cream); }

/* ------------------------------------------------------------ legal pages */
.legal__head { padding-block: clamp(44px, 7vw, 92px) 0; }
.legal__head h1 { font-size: clamp(38px, 6vw, 76px); margin-bottom: 20px; }
.legal__updated {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-52);
}
.legal__grid { display: grid; gap: 48px; }
@media (min-width: 960px) {
  .legal__grid { grid-template-columns: 220px 1fr; gap: 72px; align-items: start; }
  .legal__toc { position: sticky; top: 92px; }
}
.legal__toc h2 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-52);
  margin-bottom: 16px;
}
.legal__toc ol { list-style: none; margin: 0; padding: 0; }
.legal__toc li { margin-bottom: 9px; }
.legal__toc a {
  font-size: 13px;
  color: var(--cream-70);
  text-decoration: none;
  line-height: 1.4;
  display: block;
}
.legal__toc a:hover { color: var(--cream); }

.clause { padding-bottom: 38px; margin-bottom: 38px; border-bottom: 1px solid var(--line); }
.clause:last-child { border-bottom: 0; }
.clause h2 { font-size: clamp(22px, 2.5vw, 30px); margin-bottom: 18px; scroll-margin-top: 90px; }
.clause p, .clause li { color: var(--cream-70); }
.clause ul { padding-left: 1.1em; }
.clause li { margin-bottom: 0.55em; }
.clause a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--clay); }

/* ------------------------------------------------------------ small pages */
.slim {
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding-block: var(--section);
}
.slim__inner { max-width: 54ch; }
.slim h1 { font-size: clamp(36px, 5.4vw, 68px); margin-bottom: 22px; }
.slim p { color: var(--cream-70); font-size: var(--fs-lead); line-height: 1.5; }
.slim .btn { margin-top: 30px; }

/* -------------------------------------------------------------- utilities
   These exist because the Content-Security-Policy forbids inline styles
   (`style-src 'self'`, no 'unsafe-inline'). Every `style="..."` attribute in
   the pages was replaced by one of these rather than weakening the policy. */
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 14px; }
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 32px; }
.mt-6 { margin-top: 36px; }
.mt-7 { margin-top: 44px; }
.mt-8 { margin-top: 52px; }
.mb-7 { margin-bottom: 44px; }
.measure { max-width: 68ch; }
.measure-narrow { max-width: 60ch; }
.ulink { color: var(--cream); text-decoration: underline; text-underline-offset: 2px; }

/* ----------------------------------------------------------------- misc */
figure { margin: 0; }
figcaption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-52);
  margin-top: 12px;
}

hr.rule { border: 0; border-top: 1px solid var(--line); margin: var(--section) 0; }

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