/* ==========================================================================
   ATELIER — storefront stylesheet
   Single source of truth for every page. Tokens first, then components.
   ========================================================================== */

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; -webkit-font-smoothing: antialiased; }
img, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
[hidden] { display: none !important; }

/* --- Tokens --------------------------------------------------------------- */
:root {
  --bg:         #FBFAF8;
  --surface:    #FFFFFF;
  --surface-2:  #F3F1EC;
  --ink:        #14120F;
  --ink-soft:   #6B6560;
  --ink-faint:  #9A948C;
  --line:       #E4E0D8;
  --line-soft:  #EEEBE4;
  --accent:     #9A3F2B;
  --shadow:     0 1px 2px rgba(20,18,15,.05), 0 8px 24px rgba(20,18,15,.06);
  --shadow-lg:  0 2px 4px rgba(20,18,15,.06), 0 20px 48px rgba(20,18,15,.12);

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", serif;

  --r-sm: 2px;
  --r:    4px;
  --r-lg: 8px;

  --pad: clamp(1rem, 4vw, 3.5rem);
  --maxw: 1440px;
  --header-h: 68px;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:        #121110;
    --surface:   #1A1917;
    --surface-2: #232120;
    --ink:       #F2EFEA;
    --ink-soft:  #A29B92;
    --ink-faint: #7C766E;
    --line:      #2E2B28;
    --line-soft: #262421;
    --accent:    #D2775C;
    --shadow:    0 1px 2px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.35);
    --shadow-lg: 0 2px 4px rgba(0,0,0,.5), 0 20px 48px rgba(0,0,0,.5);
  }
}

/* --- Base ----------------------------------------------------------------- */
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

::selection { background: var(--ink); color: var(--bg); }

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

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

.skip {
  position: absolute; left: 8px; top: -100px; z-index: 200;
  background: var(--ink); color: var(--bg);
  padding: .7rem 1.1rem; border-radius: var(--r);
  transition: top .2s var(--ease);
}
.skip:focus { top: 8px; }

/* --- Typography ----------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.015em;
}
.d-xl { font-size: clamp(3rem, 9vw, 7.5rem); }
.d-lg { font-size: clamp(2.25rem, 5.5vw, 4.25rem); }
.d-md { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }

.eyebrow {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.lede { font-size: clamp(1rem, 1.6vw, 1.125rem); color: var(--ink-soft); max-width: 56ch; }
.muted { color: var(--ink-soft); }
.tiny { font-size: .8125rem; }

.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.section-head {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
  gap: 1rem 2rem; margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: var(--bg); --btn-bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: 0 1.6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd); border-radius: var(--r);
  font-size: .8125rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  transition: transform .15s var(--ease), opacity .15s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { opacity: .86; }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: .4; cursor: not-allowed; transform: none; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--bg); --btn-bd: var(--ink); opacity: 1; }
.btn--light { --btn-bg: var(--surface); --btn-fg: var(--ink); --btn-bd: var(--surface); }
.btn--block { width: 100%; }
.btn--sm { min-height: 38px; padding: 0 1rem; font-size: .6875rem; }

.link-u {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8125rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding-bottom: 3px; border-bottom: 1px solid currentColor;
}
.link-u:hover { color: var(--accent); }

/* --- Header --------------------------------------------------------------- */
.strip {
  background: var(--ink); color: var(--bg);
  text-align: center; padding: .55rem 1rem;
  font-size: .6875rem; letter-spacing: .14em; text-transform: uppercase;
}

.header {
  position: sticky; top: 0; z-index: 90;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header__bar {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 1rem; height: var(--header-h);
}
.brand {
  grid-column: 2;
  font-size: 1.0625rem; font-weight: 600; letter-spacing: .34em;
  text-transform: uppercase; text-indent: .34em;
}
.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav a {
  font-size: .75rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); transition: color .2s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.header__actions { grid-column: 3; display: flex; align-items: center; justify-content: flex-end; gap: .35rem; }

.icon-btn {
  display: inline-grid; place-items: center; position: relative;
  width: 40px; height: 40px; border-radius: var(--r);
  color: var(--ink); transition: background .2s var(--ease);
}
.icon-btn:hover { background: var(--surface-2); }
.icon-btn svg { width: 19px; height: 19px; }

.cart-count {
  position: absolute; top: 4px; right: 3px;
  min-width: 17px; height: 17px; padding: 0 4px;
  display: grid; place-items: center;
  background: var(--accent); color: #fff;
  border-radius: 999px; font-size: .625rem; font-weight: 600; line-height: 1;
}
.cart-count[data-empty="true"] { display: none; }

.menu-btn { display: none; }
@media (max-width: 900px) {
  .nav--main { display: none; }
  .menu-btn { display: inline-grid; }
}

/* --- Drawer (mobile nav) -------------------------------------------------- */
.scrim {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20,18,15,.42);
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.scrim[data-open="true"] { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; bottom: 0; z-index: 110;
  width: min(360px, 86vw);
  background: var(--bg);
  display: flex; flex-direction: column;
  transition: transform .34s var(--ease);
  box-shadow: var(--shadow-lg);
  left: 0; transform: translateX(-102%);
}
.drawer[data-open="true"] { transform: translateX(0); }

.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.35rem; border-bottom: 1px solid var(--line);
}
.drawer__title { font-size: .8125rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; }
.drawer__body { flex: 1; overflow-y: auto; padding: 1.35rem; }

.nav--drawer { flex-direction: column; align-items: stretch; gap: 0; }
.nav--drawer a {
  font-family: var(--font-display); font-size: 1.75rem; letter-spacing: 0;
  text-transform: none; color: var(--ink);
  padding: .55rem 0; border-bottom: 1px solid var(--line-soft);
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(86vh, 760px);
  display: grid; align-items: center;
  padding-block: clamp(3rem, 8vw, 6rem);
  background:
    radial-gradient(120% 90% at 78% 12%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 62%),
    linear-gradient(168deg, var(--surface-2), var(--bg) 68%);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__copy { max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero__art { display: grid; place-items: center; }
.hero__art svg { width: 100%; max-width: 400px; height: auto; }
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .hero__art svg { max-width: 260px; }
}

/* --- Product grid & card -------------------------------------------------- */
.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: clamp(1.25rem, 2.6vw, 2.25rem) clamp(1rem, 2vw, 1.5rem);
}

.card { display: flex; flex-direction: column; gap: .85rem; }
.card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--surface-2);
  border-radius: var(--r);
  overflow: hidden;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }

.badge {
  position: absolute; top: .7rem; left: .7rem; z-index: 2;
  background: var(--ink); color: var(--bg);
  padding: .3rem .6rem; border-radius: var(--r-sm);
  font-size: .625rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
}
.badge--accent { background: var(--accent); color: #fff; }

.card__quick {
  position: absolute; left: .7rem; right: .7rem; bottom: .7rem; z-index: 2;
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.card:hover .card__quick, .card:focus-within .card__quick { opacity: 1; transform: none; }
@media (hover: none) { .card__quick { opacity: 1; transform: none; } }

.card__name { font-size: .9375rem; font-weight: 500; line-height: 1.35; }
.card__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.card__price { font-size: .9375rem; font-variant-numeric: tabular-nums; }
.card__cat { font-size: .75rem; color: var(--ink-faint); letter-spacing: .06em; text-transform: uppercase; }

.swatches { display: flex; gap: .3rem; }
.swatch {
  width: 13px; height: 13px; border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
}

/* --- Category tiles ------------------------------------------------------- */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 1rem; }
.tile {
  position: relative; display: grid; align-content: end; gap: .3rem;
  aspect-ratio: 3 / 4; padding: 1.5rem;
  border-radius: var(--r); overflow: hidden;
  background: var(--surface-2);
  transition: transform .4s var(--ease);
}
.tile:hover { transform: translateY(-4px); }
.tile__art { position: absolute; inset: 0; display: grid; place-items: center; opacity: .45; }
.tile__art svg, .tile__art img { width: 66%; height: auto; }
.tile__label { position: relative; z-index: 2; font-family: var(--font-display); font-size: 1.6rem; line-height: 1.1; }
.tile__go { position: relative; z-index: 2; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }

/* --- Editorial band ------------------------------------------------------- */
.band {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 5vw, 5rem);
  background: var(--surface-2); border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, 4.5rem);
}
.band__art { display: grid; place-items: center; }
.band__art svg { width: min(100%, 280px); height: auto; }
@media (max-width: 800px) { .band { grid-template-columns: 1fr; } }

/* --- Shop layout & filters ------------------------------------------------ */
.shop { display: grid; grid-template-columns: 220px 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 900px) { .shop { grid-template-columns: 1fr; } }

.filters { position: sticky; top: calc(var(--header-h) + 1.25rem); display: grid; gap: 1.75rem; }
@media (max-width: 900px) {
  .filters { position: static; }
  .filters[data-collapsed="true"] { display: none; }
}
.filter-group__title {
  font-size: .6875rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  padding-bottom: .6rem; margin-bottom: .7rem; border-bottom: 1px solid var(--line);
}
.filter-opts { display: grid; gap: .45rem; }
.check { display: flex; align-items: center; gap: .6rem; cursor: pointer; font-size: .875rem; color: var(--ink-soft); }
.check:hover { color: var(--ink); }
.check input { accent-color: var(--ink); width: 15px; height: 15px; }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .35rem .7rem; border: 1px solid var(--line); border-radius: 999px;
  font-size: .75rem; color: var(--ink-soft);
}
.chip button { color: var(--ink-faint); line-height: 1; font-size: 1rem; }
.chip button:hover { color: var(--accent); }

.shop__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; padding-bottom: 1.1rem; margin-bottom: 1.75rem; border-bottom: 1px solid var(--line);
}
.select {
  appearance: none;
  padding: .5rem 2rem .5rem .8rem;
  border: 1px solid var(--line); border-radius: var(--r);
  background-color: var(--surface);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 4.5 6 8.5 10 4.5' fill='none' stroke='%236B6560' stroke-width='1.4'/></svg>");
  background-repeat: no-repeat;
  background-position: right .6rem center;
  background-size: 12px;
  font-size: .8125rem;
}

.empty { text-align: center; padding: clamp(3rem, 8vw, 6rem) 1rem; border: 1px dashed var(--line); border-radius: var(--r-lg); }

/* --- Product detail ------------------------------------------------------- */
.pdp { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } }

.gallery { display: grid; gap: .75rem; position: sticky; top: calc(var(--header-h) + 1.5rem); }
@media (max-width: 900px) { .gallery { position: static; } }
.gallery__main { aspect-ratio: 4/5; background: var(--surface-2); border-radius: var(--r); overflow: hidden; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; }
.thumb {
  aspect-ratio: 1; background: var(--surface-2); border-radius: var(--r);
  overflow: hidden; border: 1px solid transparent; padding: 0;
}
.thumb[aria-selected="true"] { border-color: var(--ink); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp__info { display: grid; gap: 1.5rem; }
.price { font-size: 1.375rem; font-variant-numeric: tabular-nums; }
.price del { color: var(--ink-faint); margin-right: .6rem; font-size: 1rem; }

.opt__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .65rem; }
.opt__label { font-size: .6875rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.opt__value { font-size: .8125rem; color: var(--ink-soft); }

.sizes { display: flex; flex-wrap: wrap; gap: .5rem; }
.size {
  min-width: 52px; height: 44px; padding: 0 .7rem;
  border: 1px solid var(--line); border-radius: var(--r);
  font-size: .8125rem; letter-spacing: .06em;
  transition: all .18s var(--ease);
}
.size:hover:not([disabled]) { border-color: var(--ink); }
.size[aria-pressed="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.size[disabled] { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

.colors { display: flex; flex-wrap: wrap; gap: .6rem; }
.color-dot {
  width: 34px; height: 34px; border-radius: 50%; padding: 0;
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  position: relative; transition: transform .18s var(--ease);
}
.color-dot:hover { transform: scale(1.08); }
.color-dot[aria-pressed="true"]::after {
  content: ""; position: absolute; inset: -5px;
  border: 1px solid var(--ink); border-radius: 50%;
}

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r); }
.qty button { width: 42px; height: 44px; font-size: 1.1rem; color: var(--ink-soft); }
.qty button:hover { color: var(--ink); }
.qty span { min-width: 40px; text-align: center; font-variant-numeric: tabular-nums; }

.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 0; text-align: left;
  font-size: .8125rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
}
.acc__sign { font-size: 1.15rem; color: var(--ink-soft); transition: transform .25s var(--ease); }
.acc__btn[aria-expanded="true"] .acc__sign { transform: rotate(45deg); }
.acc__panel { padding-bottom: 1.2rem; color: var(--ink-soft); font-size: .9375rem; }
.acc__panel ul { display: grid; gap: .35rem; }
.acc__panel li { padding-left: 1rem; position: relative; }
.acc__panel li::before { content: "—"; position: absolute; left: 0; color: var(--ink-faint); }

/* --- Cart ----------------------------------------------------------------- */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 940px) { .cart-layout { grid-template-columns: 1fr; } }

.line {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 1.25rem;
  padding: 1.35rem 0; border-bottom: 1px solid var(--line);
}
.line__media { aspect-ratio: 4/5; background: var(--surface-2); border-radius: var(--r); overflow: hidden; }
.line__media img { width: 100%; height: 100%; object-fit: cover; }
.line__body { display: grid; gap: .5rem; align-content: start; }
.line__name { font-size: .9375rem; font-weight: 500; }
.line__opts { font-size: .8125rem; color: var(--ink-soft); }
.line__end { display: grid; gap: .6rem; justify-items: end; align-content: start; }
.line__price { font-variant-numeric: tabular-nums; font-size: .9375rem; }
.line__remove { font-size: .75rem; color: var(--ink-faint); text-decoration: underline; text-underline-offset: 3px; }
.line__remove:hover { color: var(--accent); }
@media (max-width: 560px) {
  .line { grid-template-columns: 76px 1fr; }
  .line__end { grid-column: 2; justify-items: start; }
}

.summary {
  position: sticky; top: calc(var(--header-h) + 1.5rem);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.6rem;
  display: grid; gap: 1.1rem;
}
@media (max-width: 940px) { .summary { position: static; } }
.sum-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; font-size: .9375rem; }
.sum-row span:last-child { font-variant-numeric: tabular-nums; }
.sum-row--total {
  border-top: 1px solid var(--line); padding-top: 1.1rem;
  font-size: 1.125rem; font-weight: 500;
}

.promo { display: flex; gap: .5rem; }
.input {
  width: 100%; min-height: 46px; padding: 0 .85rem;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--r);
  font-size: .9375rem;
}
.input::placeholder { color: var(--ink-faint); }
.input:focus { border-color: var(--ink); outline: none; }

.note { font-size: .8125rem; color: var(--ink-soft); display: flex; gap: .5rem; align-items: flex-start; }
.note svg { width: 15px; height: 15px; flex: none; margin-top: 3px; }
.note--warn { color: var(--accent); }

/* --- Newsletter ----------------------------------------------------------- */
.news { display: grid; gap: 1.5rem; justify-items: center; text-align: center; max-width: 560px; margin-inline: auto; }
.news form { display: flex; gap: .5rem; width: 100%; }
@media (max-width: 480px) { .news form { flex-direction: column; } }

/* --- Footer --------------------------------------------------------------- */
.footer { border-top: 1px solid var(--line); margin-top: clamp(3rem, 8vw, 6rem); }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.5rem;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h3 { font-size: .6875rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1rem; }
.footer li + li { margin-top: .5rem; }
.footer a { font-size: .875rem; color: var(--ink-soft); }
.footer a:hover { color: var(--ink); }
.footer__base {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1.4rem; border-top: 1px solid var(--line-soft);
  font-size: .8125rem; color: var(--ink-faint);
}

/* --- Toast ---------------------------------------------------------------- */
.toasts {
  position: fixed; z-index: 200; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  display: grid; gap: .5rem; width: min(400px, calc(100vw - 2rem));
}
.toast {
  display: flex; align-items: center; gap: .7rem;
  background: var(--ink); color: var(--bg);
  padding: .85rem 1.1rem; border-radius: var(--r);
  box-shadow: var(--shadow-lg); font-size: .875rem;
  animation: toast-in .3s var(--ease);
}
.toast svg { width: 17px; height: 17px; flex: none; }
@keyframes toast-in { from { opacity: 0; transform: translateY(14px); } }

/* --- Misc ----------------------------------------------------------------- */
.crumbs { display: flex; flex-wrap: wrap; gap: .45rem; font-size: .8125rem; color: var(--ink-faint); padding-block: 1.25rem; }
.crumbs a:hover { color: var(--ink); }

.status-page { display: grid; gap: 1.5rem; justify-items: center; text-align: center; padding-block: clamp(4rem, 12vw, 8rem); }
.status-icon { width: 68px; height: 68px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-2); }
.status-icon svg { width: 30px; height: 30px; }

.prose { max-width: 68ch; display: grid; gap: 1.15rem; color: var(--ink-soft); font-size: 1rem; }
.prose h2 { font-family: var(--font-display); font-size: 1.9rem; color: var(--ink); margin-top: 1.25rem; font-weight: 400; }

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

/* --- Header left cluster (added with the markup) --------------------------- */
.header__left { grid-column: 1; display: flex; align-items: center; gap: 1.5rem; }
