/* ================================================================
   Garamond Goods — atelier menswear color analysis
   ================================================================
   Design system:
     • Cream paper (#f2ebdc) over warm ink (#1a1714)
     • EB Garamond serif (incl. italic emphasis)
     • JetBrains Mono for small caps, plate numbers, hex labels
     • Editorial-spread layout with § section numbering
     • Hover-reveal hex strips on the twelve-season grid
   ============================================================== */

:root {
  --cream: #f2ebdc;
  --cream-deep: #ebe3d1;
  --ink: #1a1714;
  --ink-soft: #433c33;
  --ink-mute: #8a8070;
  --rule: rgba(26, 23, 20, 0.14);
  --rule-soft: rgba(26, 23, 20, 0.08);
  --serif: "EB Garamond", "Adobe Garamond Pro", Garamond, "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "onum";
}

/* ----- Layout ----- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }
.rule-soft { border: 0; border-top: 1px solid var(--rule-soft); margin: 0; }

/* ----- Type primitives ----- */
.sc {
  font-variant: all-small-caps;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

/* ----- Nav ----- */
nav.top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
nav.top .inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
nav.top .brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
nav.top ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
nav.top a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}
nav.top a:hover { color: var(--ink-soft); }
nav.top .status { font-size: 13px; color: var(--ink-mute); white-space: nowrap; }
nav.top .status .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: #6b7a4a; margin-right: 8px; vertical-align: middle;
}

/* ----- Hero ----- */
section.hero { padding: 96px 0 112px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.kicker {
  font-size: 12px;
  margin-bottom: 36px;
  color: var(--ink-soft);
}
.kicker .bullet {
  display: inline-block;
  width: 4px; height: 4px; background: var(--ink-soft);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 10px 2px;
}
h1.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 88px;
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  text-wrap: balance;
}
h1.display em { font-style: italic; font-weight: 400; }

.subline {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 0 44px;
  text-wrap: pretty;
}

.cta-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.cta-link {
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  display: inline-flex; align-items: baseline; gap: 10px;
  transition: color .2s, border-color .2s, gap .2s;
  cursor: pointer;
  background: none; border-top: 0; border-left: 0; border-right: 0;
  font-family: inherit;
  white-space: nowrap;
}
.cta-link:hover { gap: 14px; }
.cta-link .arr { font-family: var(--mono); font-size: 13px; }
.cta-aside { font-size: 13px; color: var(--ink-mute); white-space: nowrap; }

/* ----- "Shot" placeholder cards (pre-image) -----
   Shows a Pantone-style monospace shot-list framing the prompt that will
   be sent to GPT Image once wired up. The intent is that these cards stay
   recognisable as production placeholders — diagonal stripe + plate label. */
.shot {
  background: var(--cream-deep);
  border: 1px solid var(--rule);
  aspect-ratio: 5 / 4;
  position: relative;
  overflow: hidden;
}
.shot.tall { aspect-ratio: 4 / 5; }
.shot.wide { aspect-ratio: 16 / 10; }
.shot::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 14px,
    rgba(26,23,20,0.025) 14px 15px
  );
  pointer-events: none;
}
.shot .label {
  position: absolute;
  left: 16px; top: 16px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.shot .num {
  position: absolute; right: 16px; top: 16px;
  font-family: var(--mono); font-size: 10px; color: var(--ink-mute);
}
.shot .prompt {
  position: absolute;
  left: 24px; right: 24px; bottom: 20px;
  font-family: var(--mono); font-size: 11px; line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}
.shot .prompt .k { color: var(--ink-mute); }

/* ----- Editorial spreads ----- */
section.spread {
  padding: 96px 0;
  border-top: 1px solid var(--rule);
}
.spread-head {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  align-items: baseline;
}
.spread-head .num { font-family: var(--mono); font-size: 12px; color: var(--ink-mute); }
.spread-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.spread-head h2 em { font-style: italic; }
.spread-head .deck {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 52ch;
  text-wrap: pretty;
}

/* ----- How it works ----- */
.how-grid {
  display: grid;
  grid-template-columns: 160px 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.step {
  padding: 20px 0;
  border-top: 1px solid var(--rule-soft);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
}
.step:last-child { border-bottom: 1px solid var(--rule-soft); }
.step .n { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); padding-top: 3px; }
.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.step p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.55; }

.figure-caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  margin-top: 10px;
  text-align: right;
}

/* ----- Twelve seasons specimen grid ----- */
.seasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.season {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 20px 20px 16px;
  background: transparent;
  position: relative;
}
.season-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px;
}
.season-head .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.005em;
}
.season-head .name em { font-style: italic; font-weight: 400; color: var(--ink-soft); }
.season-head .ref { font-family: var(--mono); font-size: 10px; color: var(--ink-mute); }

.swatches {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.sw {
  aspect-ratio: 1 / 1.2;
  position: relative;
  cursor: default;
}
.sw .hex {
  position: absolute;
  inset: auto 0 0 0;
  padding: 6px 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  background: rgba(242, 235, 220, 0.92);
  color: var(--ink);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s, transform .2s;
}
.sw:hover .hex,
.swatches:hover .sw .hex { opacity: 1; transform: translateY(0); }

.season-note-wrap {
  height: 32px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.season-note {
  position: absolute;
  inset: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.season:hover .season-note { opacity: 1; transform: translateY(0); }

.seasons-meta {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

/* ----- Catalog filters ----- */
.filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 12px 0;
  align-items: center;
  justify-content: center;
}
.filters:first-of-type { padding-top: 24px; }
.filters .label { font-size: 12px; color: var(--ink-mute); margin-right: 8px; }
.chip {
  font-family: var(--serif);
  font-size: 14px;
  padding: 7px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.chip:hover { border-color: var(--ink-soft); color: var(--ink); }
.chip.on {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.color-filter {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 0 36px;
  min-height: 55px;
}
.color-filter .label { font-size: 12px; color: var(--ink-mute); margin-right: 4px; }
.color-swatch {
  position: relative;
  width: 30px; height: 30px;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: transform .15s;
}
.color-swatch:hover { transform: scale(1.08); }
.color-swatch .cs-fill {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.10);
  background: var(--fill, #888);
  transition: inset .15s;
}
.color-swatch.on .cs-fill { inset: 0; }
.color-swatch.on::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--ink);
}
.color-swatch .cs-tip {
  position: absolute;
  left: 50%; bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(2px);
  white-space: nowrap;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  padding: 5px 9px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s, transform .15s;
  z-index: 10;
}
.color-swatch .cs-tip .cs-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  margin-right: 6px;
  text-transform: none;
  letter-spacing: 0;
}
.color-swatch:hover .cs-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.color-all {
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: transparent;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s;
}
.color-all:hover { border-color: var(--ink-soft); color: var(--ink); }
.color-all.on {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ----- Catalog grid ----- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}
.product { cursor: pointer; transition: opacity .25s; }
.product.dimmed { opacity: 0.28; }
.product .photo {
  background: var(--cream-deep);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule-soft);
}
.product .photo::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 14px,
    rgba(26,23,20,0.025) 14px 15px
  );
}
.product .swatch-dot {
  position: absolute;
  right: 14px; top: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.product .plabel {
  position: absolute; left: 16px; top: 14px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  color: var(--ink-mute); text-transform: uppercase;
}
.product .pprompt {
  position: absolute; left: 18px; right: 18px; bottom: 14px;
  font-family: var(--mono); font-size: 10px; color: var(--ink-soft);
  line-height: 1.5;
}
.product .pprompt .k { color: var(--ink-mute); }
.product .alt {
  position: absolute; inset: 0;
  background: #2d2a26;
  opacity: 0;
  transition: opacity .25s;
  display: flex; align-items: center; justify-content: center;
  color: rgba(242,235,220,0.6);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
}
.product:hover .alt { opacity: 1; }
.product .meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0 0;
  gap: 12px;
}
.product .name { font-size: 17px; }
.product .sub { font-size: 14px; color: var(--ink-mute); font-style: italic; }
.product .price {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.35;
  transition: opacity .25s;
}
.product:hover .price { opacity: 1; }

.catalog-foot {
  display: flex; justify-content: space-between;
  align-items: baseline;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-soft);
  gap: 20px;
  flex-wrap: wrap;
}

/* ----- Methodology ----- */
.method-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.method-side .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 48px;
}
.method-side h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.method-side h2 em { font-style: italic; }
.method-layout .body {
  max-width: 56ch;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.method-layout .body p + p { margin-top: 1em; }
.method-layout .body em { color: var(--ink); font-style: italic; }
.method-layout .body .signoff {
  font-style: italic;
  margin-top: 1.4em;
  color: var(--ink);
}

/* ----- Footer ----- */
footer.foot {
  border-top: 1px solid var(--rule);
  padding: 64px 0 48px;
  margin-top: 80px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.foot-grid h4 {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 14px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { padding: 4px 0; font-size: 14px; color: var(--ink-soft); }
.foot-grid a { color: inherit; text-decoration: none; }
.foot-grid a:hover { color: var(--ink); }
.foot-blurb {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 34ch;
  line-height: 1.5;
}
.foot-brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}
.foot-line {
  padding-top: 24px;
  border-top: 1px solid var(--rule-soft);
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: var(--ink-mute);
  gap: 16px;
  flex-wrap: wrap;
}
.foot-line .tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ----- Scroll fade-in ----- */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
.fade-in.is-visible { opacity: 1; transform: none; }

/* ----- Upload modal ----- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(26,23,20,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 80;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--cream);
  width: min(680px, calc(100vw - 48px));
  padding: 40px 40px 32px;
  border: 1px solid var(--rule);
  transform: translateY(12px);
  transition: transform .3s cubic-bezier(.2,.6,.2,1);
  position: relative;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.modal-backdrop.open .modal { transform: none; }
.modal h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 32px; margin: 0 0 6px; letter-spacing: -0.01em;
}
.modal h3 em { font-style: italic; }
.modal .sub { color: var(--ink-soft); font-size: 16px; margin-bottom: 28px; max-width: 52ch; }
.modal .close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--mono); font-size: 11px; color: var(--ink-mute);
  letter-spacing: 0.1em;
}
.modal .close:hover { color: var(--ink); }
.drop {
  border: 1px dashed rgba(26,23,20,0.3);
  padding: 40px 24px;
  text-align: center;
  background: var(--cream-deep);
  transition: border-color .2s, background .2s;
}
.drop.hover { border-color: var(--ink); background: #ede5d0; }
.drop .glyph {
  font-family: var(--serif); font-size: 32px; font-style: italic; color: var(--ink-soft);
  margin-bottom: 8px;
}
.drop .t { font-size: 16px; margin-bottom: 4px; }
.drop .s { font-size: 13px; color: var(--ink-mute); }
.drop .browse {
  display: inline-block; margin-top: 14px;
  font-size: 14px; border-bottom: 1px solid var(--ink);
  padding-bottom: 2px; cursor: pointer;
}

.modal .specs {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 24px; margin-top: 24px;
  padding-top: 20px; border-top: 1px solid var(--rule-soft);
}
.modal .specs .item .l { font-family: var(--mono); font-size: 10px; color: var(--ink-mute); letter-spacing: 0.1em; margin-bottom: 4px; }
.modal .specs .item .v { font-size: 14px; color: var(--ink-soft); }

.modal .thumbs {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
  margin-top: 20px;
}
.modal .thumb {
  aspect-ratio: 1;
  background: var(--cream-deep);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 10px; color: var(--ink-mute);
}
.modal .thumb.filled {
  background: #8a7e5c;
  border-color: rgba(0,0,0,0.1);
  color: transparent;
}

/* ================================================================
   Responsive — single tablet/mobile breakpoint.
   The artifact was designed at 1440 desktop. We don't try to
   re-imagine the layout for phones; we just stack and scale so
   the page is usable below 800px.
   ============================================================== */
@media (max-width: 880px) {
  body { font-size: 17px; }
  .wrap { padding: 0 22px; }

  /* Nav — drop the link list on small screens; keep brand + status */
  nav.top .inner { height: 56px; }
  nav.top ul { display: none; }
  nav.top .status { font-size: 12px; }

  /* Hero */
  section.hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  h1.display { font-size: 52px; line-height: 1.0; }
  .subline { font-size: 18px; }

  /* Spreads */
  section.spread { padding: 64px 0; }
  .spread-head {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 36px;
  }
  .spread-head h2 { font-size: 36px; }

  /* How it works */
  .how-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Seasons — 2 columns on tablet, 1 on phone */
  .seasons { grid-template-columns: repeat(2, 1fr); }
  .season-note-wrap { height: 40px; }
  .seasons-meta { flex-direction: column; gap: 4px; }

  /* Catalog */
  .catalog-grid { grid-template-columns: 1fr; gap: 36px; }
  .filters { justify-content: flex-start; }
  .color-filter { justify-content: flex-start; }

  /* Method */
  .method-layout { grid-template-columns: 1fr; gap: 32px; }
  .method-side h2 { font-size: 36px; }

  /* Footer */
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-line { flex-direction: column; align-items: flex-start; }

  /* Modal */
  .modal { padding: 28px 22px 24px; }
  .modal h3 { font-size: 26px; }
  .modal .specs { grid-template-columns: 1fr; gap: 14px; }
  .modal .thumbs { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 500px) {
  .seasons { grid-template-columns: 1fr; }
  h1.display { font-size: 44px; }
  .spread-head h2 { font-size: 30px; }
  .method-side h2 { font-size: 30px; }
}

/* ================================================================
   Aggregator + two-door hero — added with the live catalog build
   ============================================================== */

/* Primary hero door — filled pill; secondary stays an underline link */
.cta-link.primary {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 13px 24px;
}
.cta-link.primary:hover { background: var(--ink-soft); border-color: var(--ink-soft); }

/* Inline text-link button (e.g. "preview it →") */
.linkish {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 0 0 1px;
  font-family: inherit;
  font-size: inherit;
  color: var(--ink-soft);
  cursor: pointer;
}
.linkish:hover { color: var(--ink); border-color: var(--ink); }

/* Season cards are now buttons that jump into the catalog */
button.season {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: background .15s;
}
button.season:hover { background: rgba(26, 23, 20, 0.035); }

/* Product cards are now outbound affiliate links; the "photo" is the
   garment color itself until product-feed imagery is wired. */
a.product { text-decoration: none; color: inherit; display: block; }
.product .plabel {
  background: rgba(242, 235, 220, 0.88);
  padding: 3px 7px;
  border-radius: 2px;
  color: var(--ink-soft);
}

/* FTC affiliate disclosure under the catalog */
.disclosure {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  max-width: 54ch;
  text-align: right;
}

/* Empty state when a color filter has no matches */
.catalog-empty {
  grid-column: 1 / -1;
  padding: 36px 0;
  color: var(--ink-soft);
  font-style: italic;
  font-size: 16px;
}

/* Offset anchor / scroll targets so the two-door jumps clear the sticky nav */
section[id] { scroll-margin-top: 84px; }
