/* ==========================================================================
   Crizmafit — design system
   One stylesheet for the whole site. Edit brand values in :root only.
   ========================================================================== */

:root {
  /* Brand ------------------------------------------------------------- */
  --ink:        #14161a;   /* primary text / dark surfaces */
  --ink-soft:   #3d434d;
  --muted:      #6b7280;
  --line:       #e6e6e2;
  --bg:         #ffffff;
  --surface:    #f7f7f5;   /* page sections, product tiles */
  --surface-2:  #efefeb;
  --accent:     #e4572e;   /* the single pop colour — CTAs, price, badges */
  --accent-ink: #b93d1a;
  --ok:         #17795e;

  /* Type -------------------------------------------------------------- */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  /* Rhythm ------------------------------------------------------------ */
  --wrap: 1200px;
  --gap: 24px;
  --radius: 4px;
  --radius-lg: 8px;

  --shadow: 0 1px 2px rgba(20, 22, 26, .04), 0 8px 24px rgba(20, 22, 26, .06);
  --t: 160ms cubic-bezier(.2, .6, .3, 1);
}

/* Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; font-weight: 650; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); letter-spacing: -.03em; }
h3 { font-size: 1.125rem; }
p  { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* Layout helpers ------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.section { padding: 72px 0; }
.section--tight { padding: 44px 0; }
.section--surface { background: var(--surface); }
.stack > * + * { margin-top: 16px; }
.muted { color: var(--muted); }
.center { text-align: center; }
.eyebrow {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; color: var(--muted); margin-bottom: 10px;
}
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.section-head h2 { margin: 0; }
.lede { font-size: 1.0625rem; color: var(--ink-soft); max-width: 60ch; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
  padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border: 1px solid transparent; border-radius: var(--radius);
  font-weight: 600; font-size: .9375rem; cursor: pointer; text-align: center;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  background: var(--ink); color: #fff;
}
.btn:hover { background: #000; }
.btn:active { transform: translateY(1px); }
.btn--accent { background: var(--accent); }
.btn--accent:hover { background: var(--accent-ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--surface); border-color: #d5d5d0; }
.btn--block { width: 100%; }
.btn--sm { padding: 9px 15px; font-size: .875rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* Header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; letter-spacing: -.04em; font-size: 1.2rem; }
.brand__mark { width: 26px; height: 26px; flex: none; }
.brand__name em { font-style: normal; color: var(--accent); }

.nav { display: flex; gap: 22px; margin-left: 4px; }
.nav a { font-size: .9375rem; font-weight: 500; color: var(--ink-soft); padding: 6px 0; position: relative; }
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--accent);
}
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  height: 40px; padding: 0 12px; background: transparent; border: 1px solid transparent;
  border-radius: var(--radius); cursor: pointer; position: relative;
}
.icon-btn:hover { background: var(--surface); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  min-width: 19px; height: 19px; padding: 0 5px; border-radius: 999px;
  background: var(--accent); color: #fff; font-size: .6875rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-count[hidden] { display: none; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 68px 0 auto 0; background: #fff; flex-direction: column;
    gap: 0; padding: 8px 20px 20px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav-toggle { display: inline-flex; order: 3; }
}

/* Announcement bar ---------------------------------------------------- */
.announce {
  background: var(--ink); color: #fff; text-align: center;
  font-size: .8125rem; letter-spacing: .01em; padding: 9px 20px;
}
.announce strong { color: #fff; }

/* Hero ---------------------------------------------------------------- */
.hero { background: var(--surface); border-bottom: 1px solid var(--line); }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding: 84px 0;
}
.hero h1 { margin-bottom: 18px; }
.hero p { font-size: 1.0625rem; color: var(--ink-soft); max-width: 46ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-art {
  aspect-ratio: 4 / 3; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; display: grid; place-items: center;
}
.hero-art svg { width: 100%; height: 100%; }
.hero-stats { display: flex; gap: 36px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats div { font-size: .875rem; color: var(--muted); }
.hero-stats b { display: block; font-size: 1.375rem; color: var(--ink); letter-spacing: -.02em; }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; padding: 48px 0; gap: 32px; }
  .hero-art { order: -1; }
}

/* Category strip ------------------------------------------------------ */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-card {
  display: flex; flex-direction: column; gap: 10px; padding: 20px;
  background: var(--surface); border: 1px solid transparent; border-radius: var(--radius-lg);
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.cat-card:hover { background: #fff; border-color: var(--line); transform: translateY(-2px); box-shadow: var(--shadow); }
.cat-card svg { width: 30px; height: 30px; color: var(--accent); }
.cat-card b { font-size: .9375rem; font-weight: 600; }
.cat-card span { font-size: .8125rem; color: var(--muted); }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* Product grid -------------------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px; }
@media (max-width: 1000px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; } }

.card { display: flex; flex-direction: column; position: relative; height: 100%; }
.card__media {
  position: relative; aspect-ratio: 1 / 1; background: var(--surface);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 12px;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms cubic-bezier(.2,.6,.3,1); }
.card:hover .card__media img { transform: scale(1.04); }
.card__badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--ink); color: #fff; font-size: .6875rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 5px 9px; border-radius: 3px;
}
.card__badge--sale { background: var(--accent); }
.card__badge--out  { background: var(--muted); }
.card__cat { font-size: .75rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.card__title { font-size: .9375rem; font-weight: 600; margin: 3px 0 6px; line-height: 1.35; }
.card__title a::after { content: ""; position: absolute; inset: 0; }
.card__price { display: flex; align-items: baseline; gap: 8px; font-weight: 650; margin-bottom: 12px; }
.card__price s { color: var(--muted); font-weight: 400; font-size: .875rem; }
.card__add { margin-top: auto; position: relative; z-index: 3; }

.price-was { color: var(--muted); font-weight: 400; }

/* Shop layout --------------------------------------------------------- */
.shop-layout { display: grid; grid-template-columns: 232px 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; gap: 24px; } }
.filters { position: sticky; top: 92px; }
@media (max-width: 900px) { .filters { position: static; } }
.filter-group + .filter-group { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.filter-group h4 { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.filter-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.filter-list button {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 7px 10px; border-radius: var(--radius); font-size: .9375rem; color: var(--ink-soft);
  display: flex; justify-content: space-between; gap: 8px;
}
.filter-list button:hover { background: var(--surface); color: var(--ink); }
.filter-list button[aria-pressed="true"] { background: var(--ink); color: #fff; font-weight: 600; }
.filter-list button[aria-pressed="true"] .count { color: rgba(255,255,255,.65); }
.count { color: var(--muted); font-size: .8125rem; }
@media (max-width: 900px) { .filter-list { flex-direction: row; flex-wrap: wrap; } .filter-list button { width: auto; } }

.shop-bar { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; flex-wrap: wrap; }
.field {
  display: flex; align-items: center; gap: 8px; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0 12px; height: 42px; background: #fff;
}
.field:focus-within { border-color: var(--ink); }
.field svg { width: 17px; height: 17px; color: var(--muted); flex: none; }
.field input, .field select { border: 0; outline: 0; background: none; height: 100%; min-width: 0; }
.field--search { flex: 1 1 260px; }
.field--search input { width: 100%; }
.result-count { color: var(--muted); font-size: .875rem; margin-left: auto; }

.empty-state { text-align: center; padding: 72px 20px; color: var(--muted); }
.empty-state h3 { color: var(--ink); }

/* Product detail ------------------------------------------------------ */
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 28px; } }
.pdp__media { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1/1; }
.pdp__media img { width: 100%; height: 100%; object-fit: cover; }
.pdp h1 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); margin-bottom: 10px; }
.pdp__price { font-size: 1.75rem; font-weight: 650; letter-spacing: -.02em; margin: 14px 0 6px; display: flex; align-items: baseline; gap: 12px; }
.pdp__price s { font-size: 1.125rem; }
.pdp__buy { display: flex; gap: 12px; margin: 26px 0; flex-wrap: wrap; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.qty button { width: 42px; height: 48px; background: #fff; border: 0; cursor: pointer; font-size: 1.125rem; color: var(--ink-soft); }
.qty button:hover { background: var(--surface); }
.qty input { width: 48px; height: 48px; text-align: center; border: 0; border-inline: 1px solid var(--line); -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.spec-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.spec-list li { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .9375rem; }
.spec-list dt, .spec-list span:first-child { color: var(--muted); }
.swatches { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.swatch {
  padding: 8px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; cursor: pointer; font-size: .875rem;
}
.swatch[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }

.breadcrumb { font-size: .8125rem; color: var(--muted); margin-bottom: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }

/* Product gallery ----------------------------------------------------- */
.gallery__main {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 1/1; position: relative;
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery__thumb {
  width: 74px; height: 74px; padding: 0; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; background: var(--surface);
  cursor: pointer; transition: border-color var(--t), transform var(--t);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb:hover { border-color: #c9c9c3; }
.gallery__thumb[aria-current="true"] { border-color: var(--ink); border-width: 2px; }

/* Promo code ---------------------------------------------------------- */
.promo { margin-top: 16px; padding-top: 16px; border-top: 1px solid #dedeD8; }
.promo__row { display: flex; gap: 8px; }
.promo__row .input { height: 42px; text-transform: uppercase; }
.promo__row .input::placeholder { text-transform: none; }
.promo__row .btn { flex: none; }
.promo__msg { font-size: .8125rem; margin-top: 8px; }
.promo__msg--ok { color: var(--ok); }
.promo__msg--bad { color: var(--accent-ink); }
.promo__applied {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: #fff; border: 1px dashed var(--ok); border-radius: var(--radius);
  padding: 10px 12px; font-size: .875rem;
}
.promo__applied b { letter-spacing: .04em; }
.promo__applied > span { display: flex; align-items: center; gap: 8px; min-width: 0; }
.promo__applied svg { width: 16px; height: 16px; flex: none; color: var(--ok); }
.promo__applied .link-btn { flex: none; }
.summary-row--save span { color: var(--ok); }

/* Floating WhatsApp button --------------------------------------------- */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 250;
  display: inline-flex; align-items: center; gap: 8px;
  height: 50px; padding: 0 18px 0 15px; border-radius: 999px;
  background: #1f9d55; color: #fff; font-weight: 600; font-size: .9375rem;
  box-shadow: 0 6px 20px rgba(20, 22, 26, .22);
  transition: transform var(--t), background var(--t);
}
.wa-fab:hover { background: #177f43; transform: translateY(-2px); }
.wa-fab svg { width: 22px; height: 22px; flex: none; }
@media (max-width: 640px) {
  .wa-fab { right: 14px; bottom: 14px; height: 48px; padding: 0 16px 0 13px; }
  .wa-fab span { display: none; }
  .wa-fab { padding: 0; width: 48px; justify-content: center; }
}
@media print { .wa-fab { display: none; } }

/* Cart ---------------------------------------------------------------- */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 44px; align-items: start; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; gap: 28px; } }
.cart-line { display: grid; grid-template-columns: 88px 1fr auto; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-line:first-child { border-top: 1px solid var(--line); }
.cart-line__img { width: 88px; height: 88px; border-radius: var(--radius); background: var(--surface); object-fit: cover; }
.cart-line__name { font-weight: 600; font-size: .9375rem; }
.cart-line__meta { font-size: .8125rem; color: var(--muted); }
.cart-line__right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.link-btn { background: none; border: 0; padding: 0; cursor: pointer; font-size: .8125rem; color: var(--muted); text-decoration: underline; }
.link-btn:hover { color: var(--accent); }
.qty--sm button { width: 32px; height: 34px; font-size: 1rem; }
.qty--sm input { width: 38px; height: 34px; font-size: .875rem; }

.summary { background: var(--surface); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 92px; }
@media (max-width: 900px) { .summary { position: static; } }
.summary h3 { margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; font-size: .9375rem; }
.summary-row > span:last-child { white-space: nowrap; text-align: right; }
.summary-row--total { border-top: 1px solid #dedeD8; margin-top: 10px; padding-top: 14px; font-size: 1.125rem; font-weight: 650; }
.trust-list { list-style: none; padding: 0; margin: 18px 0 0; font-size: .8125rem; color: var(--muted); display: grid; gap: 8px; }
.trust-list li { display: flex; gap: 8px; align-items: flex-start; }
.trust-list svg { width: 15px; height: 15px; flex: none; margin-top: 3px; color: var(--ok); }

/* Forms --------------------------------------------------------------- */
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
label.lbl { display: block; font-size: .8125rem; font-weight: 600; margin-bottom: 6px; }
.input, textarea.input, select.input {
  width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; outline: 0; transition: border-color var(--t);
}
.input:focus { border-color: var(--ink); }
.input[aria-invalid="true"] { border-color: var(--accent); }
textarea.input { min-height: 110px; resize: vertical; }
.hint { font-size: .75rem; color: var(--muted); margin-top: 5px; }
.err { font-size: .75rem; color: var(--accent-ink); margin-top: 5px; display: none; }
.err.show { display: block; }

.pay-options { display: grid; gap: 10px; }
.pay-option {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px;
  border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; background: #fff;
}
.pay-option:hover { border-color: #cfcfc9; }
.pay-option input { margin-top: 3px; accent-color: var(--accent); }
.pay-option b { display: block; font-size: .9375rem; color: var(--ink); }
.pay-option > span { font-size: .9375rem; color: var(--ink); }
.pay-option > span > span { display: block; font-size: .8125rem; color: var(--muted); }
.pay-option:has(input:checked) { border-color: var(--ink); background: var(--surface); box-shadow: inset 0 0 0 1px var(--ink); }

.notice {
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  background: var(--surface); padding: 14px 16px; border-radius: var(--radius);
  font-size: .875rem; color: var(--ink-soft);
}
.notice--ok { border-left-color: var(--ok); }

/* Feature row --------------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.feature svg { width: 24px; height: 24px; color: var(--accent); margin-bottom: 10px; }
.feature b { display: block; font-size: .9375rem; margin-bottom: 4px; }
.feature p { font-size: .875rem; color: var(--muted); margin: 0; }

/* Footer -------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #b9bec7; margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding: 60px 0 44px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a { color: #b9bec7; font-size: .9375rem; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: .875rem; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex;
  justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .8125rem;
}
.pay-marks { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.pay-mark {
  border: 1px solid rgba(255,255,255,.16); border-radius: 3px; padding: 4px 9px;
  font-size: .6875rem; letter-spacing: .04em; color: #d7dae0;
}
.newsletter { display: flex; gap: 8px; margin-top: 12px; }
.newsletter input {
  flex: 1; min-width: 0; padding: 11px 12px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04); color: #fff;
}
.newsletter input::placeholder { color: #8b9098; }
.newsletter button { padding: 11px 16px; }

/* Toast --------------------------------------------------------------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px);
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: var(--radius);
  font-size: .875rem; box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transition: opacity var(--t), transform var(--t); z-index: 300; max-width: calc(100vw - 40px);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Misc ---------------------------------------------------------------- */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 1.8em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
[hidden] { display: none !important; }

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