/* Generated by JARVIS build_website — do not hand-edit, it is rewritten on every rebuild.
   This file is the technical floor from the design brief, produced by the tool rather than typed
   by the model so it cannot be forgotten: box-sizing reset, a real ratio-based type scale,
   visible keyboard focus, a reduced-motion guard, and a reveal system whose four pieces always
   ship together. Page-specific layout belongs in the page's own <style>, not here. */
:root {
  --paper: #faf8f5;
  --ink: #1c2224;
  --mute: #606e72;
  --line: #e2ddd5;
  --accent: #8c6d4f;
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.2,.7,.2,1);
  --s1: .5rem; --s2: 1rem; --s3: 1.75rem; --s4: 3rem; --s5: 5.5rem;
  --t-xs: clamp(0.84rem, 0.84rem + 0vw, 0.84rem);
  --t-sm: clamp(0.944rem, 0.944rem + 0vw, 0.944rem);
  --t-base: clamp(1.063rem, 1.063rem + 0vw, 1.063rem);
  --t-md: clamp(1.282rem, 1.267rem + 0.066vw, 1.328rem);
  --t-lg: clamp(1.529rem, 1.488rem + 0.187vw, 1.66rem);
  --t-xl: clamp(1.798rem, 1.711rem + 0.396vw, 2.075rem);
  --t-2xl: clamp(2.071rem, 1.907rem + 0.747vw, 2.594rem);
  --t-3xl: clamp(2.311rem, 2.018rem + 1.33vw, 3.242rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, video, canvas, svg { max-width: 100%; display: block; }
/* File 21: line length 45-75 characters for body copy. A ch-based cap is the only way to hold
   that as the type scale changes size; a px max-width silently breaks it at every breakpoint. */
p { max-width: 68ch; }
h1, h2, h3 { font-family: var(--font-display); margin: 0 0 var(--s2); text-wrap: balance; }
a { color: inherit; }

.t-xs { font-size: var(--t-xs); line-height: 1.45; letter-spacing: 0.01em; }
.t-sm { font-size: var(--t-sm); line-height: 1.45; letter-spacing: 0.01em; }
.t-base { font-size: var(--t-base); line-height: 1.55; letter-spacing: 0em; }
.t-md { font-size: var(--t-md); line-height: 1.25; letter-spacing: -0.012em; }
.t-lg { font-size: var(--t-lg); line-height: 1.25; letter-spacing: -0.012em; }
.t-xl { font-size: var(--t-xl); line-height: 1.08; letter-spacing: -0.022em; }
.t-2xl { font-size: var(--t-2xl); line-height: 1.08; letter-spacing: -0.022em; }
.t-3xl { font-size: var(--t-3xl); line-height: 0.94; letter-spacing: -0.032em; }

/* Visible keyboard focus on every interactive element — file 21's floor, and the item most often
   destroyed by a blanket outline:none elsewhere in a page, hence the !important. */
:focus-visible {
  outline: 2px solid var(--accent) !important;
  outline-offset: 3px;
  border-radius: 2px;
}

/* The reveal system. All four pieces are emitted together by design — see this file's comment. */
[data-reveal] {
  opacity: 0;
  translate: 0 14px;
  transition: opacity .6s var(--ease), translate .6s var(--ease);
}
[data-reveal][data-in] { opacity: 1; translate: 0; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; translate: none !important; }
}

.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* Generated by JARVIS build_website — signature moment: Filterable inventory grid.
   Real filter buttons that show and hide cards by tag, with a live result count.
   Original to this project; no third-party component code, no attribution required.
   Rewritten on every rebuild — do not hand-edit. */
.sig-filter__bar { display: flex; flex-wrap: wrap; gap: var(--s1, .5rem); }
.sig-filter__btn {
  font: inherit; font-size: var(--t-sm, .9rem); letter-spacing: .01em;
  padding: .55em 1.1em; cursor: pointer;
  color: var(--mute, #888); background: transparent;
  border: 1px solid var(--line, #ccc); border-radius: 999px;
  transition: color 180ms var(--ease, ease), border-color 180ms var(--ease, ease), background-color 180ms var(--ease, ease);
}
.sig-filter__btn:hover { color: var(--ink, #111); border-color: var(--ink, #111); }
.sig-filter__btn[aria-pressed="true"] { color: var(--paper, #fff); background: var(--accent, #333); border-color: var(--accent, #333); }
.sig-filter__count { color: var(--mute, #888); font-size: var(--t-sm, .9rem); }
[data-filter-item] { transition: opacity 260ms var(--ease, ease), translate 260ms var(--ease, ease); }
[data-filter-item][hidden] { display: none; }
[data-filter-item][data-entering] { opacity: 0; translate: 0 8px; }
@media (prefers-reduced-motion: reduce) {
  [data-filter-item] { transition: none; }
  [data-filter-item][data-entering] { opacity: 1; translate: none; }
}
