@import url('assets/fonts.css');
@import url('assets/tokens.css');

/* ============================================================================
   Surfside kit reference — the brand rendering itself.

   Every value resolves to a brand token: type from tokens.css (4.4), color
   from the 5.1 palette, spacing from the margin system, motion from
   motion.json. Type on a background always uses the 5.5 approved pairing.
   The 80/20 proportion holds at page scale: neutral grounds, accents only in
   tags, chips, and data labels.
   ============================================================================ */

:root {
  /* fluid type — desktop values are the 4.4 ramp; the floors scale for 393px */
  --t-display: clamp(52px, 9.26vw, 140px);
  --t-h1: clamp(34px, 4.1vw, 62px);
  --t-h2: clamp(23px, 1.92vw, 29px);
  --t-subhead: clamp(21px, 1.85vw, 28px);
  --t-p1: clamp(18px, 1.32vw, 20px);
  --t-p2: 16px;
  --t-eyebrow: 16px;
  --t-caption: 14px;

  /* margin system, desktop → mobile steps */
  --sp-xl: clamp(72px, 9vw, 136px);
  --sp-l: clamp(40px, 4.23vw, 64px);
  --sp-m: clamp(24px, 2.12vw, 32px);
  --sp-s: clamp(12px, 1.32vw, 20px);

  --page-margin: clamp(24px, 4.23vw, 64px);
  --gutter: clamp(20px, 2.65vw, 40px);

  /* motion (7.x) */
  --ease-settle: cubic-bezier(0.5, 0, 0.5, 1);
  --ease-enter: cubic-bezier(0.2, 0, 0, 1);
  --ease-snap: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-ui: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-exit: cubic-bezier(0.75, 0, 0.55, 1);
  --dur-press: 120ms;
  --dur-hover-in: 200ms;
  --dur-hover-out: 400ms;
  --dur-reveal: 900ms;

  --rail: 268px;

  /* Muted label color, resolved per ground so every pairing clears AA.
     Light grounds take neutral-90; soft-black grounds take dark gray (5.1). */
  --muted: #41413f;
}

.band-black { --muted: var(--color-dark-gray); }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--color-neutral-white);
  color: var(--color-soft-black);
  font-family: var(--font-body);
  font-size: var(--t-p2);
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

/* height:auto is required, not cosmetic: the width/height attributes on every
   img reserve layout space, and without it the attribute height wins over the
   CSS width and the mark or photo renders distorted. */
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* ── type roles (4.4) ───────────────────────────────────────────────────── */

.display, .h1, .h2, .subhead {
  font-family: var(--font-headline);
  margin: 0;
  text-wrap: balance;
}
.display {
  font-weight: 500;
  font-size: var(--t-display);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.h1 {
  font-weight: 500;
  font-size: var(--t-h1);
  line-height: 1.03;
  letter-spacing: -0.02em;
}
.h2 { font-weight: 500; font-size: var(--t-h2); line-height: 1.05; }
.subhead { font-weight: 500; font-size: var(--t-subhead); line-height: 1.1; }
.sapphire { font-family: var(--font-headline-serif); font-weight: 500; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--t-eyebrow);
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0;
}
.caption {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--t-caption);
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}
.p1 { font-size: var(--t-p1); line-height: 1.25; margin: 0; }
p { margin: 0 0 0.75em; line-height: 1.28; max-width: 62ch; }
p:last-child { margin-bottom: 0; }
.lede { font-size: var(--t-p1); line-height: 1.25; max-width: 54ch; }
.mono {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

/* ── shell ─────────────────────────────────────────────────────────────── */

.shell { display: grid; grid-template-columns: var(--rail) minmax(0, 1fr); }

.rail {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  padding: var(--sp-m) 0 var(--sp-m) var(--sp-m);
  display: flex;
  flex-direction: column;
  gap: var(--sp-m);
  border-right: 1px solid var(--color-light-gray);
  overflow-y: auto;
  background: var(--color-neutral-white);
}
.rail__mark { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.rail__mark svg, .rail__mark img { height: 28px; width: auto; }
.rail__meta { color: var(--muted); }

.rail nav { display: flex; flex-direction: column; gap: var(--sp-m); }
.rail__group { display: flex; flex-direction: column; gap: 2px; }
.rail__group > .caption { color: var(--muted); margin-bottom: 10px; }
.rail a.rail__link {
  text-decoration: none;
  font-size: 15px;
  padding: 5px 0;
  color: var(--color-soft-black);
  opacity: 0.62;
  transition: opacity var(--dur-hover-out) var(--ease-standard);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.rail a.rail__link:hover { opacity: 1; transition-duration: var(--dur-hover-in); transition-timing-function: var(--ease-snap); }
.rail a.rail__link.is-current { opacity: 1; font-weight: 700; }
.rail a.rail__link::before {
  content: '';
  width: 6px; height: 6px; flex: none;
  border-radius: 50%;
  background: var(--color-soft-black);
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity var(--dur-hover-in) var(--ease-snap);
}
.rail a.rail__link.is-current::before { opacity: 1; }

.rail__toggle { display: none; }

main { min-width: 0; }

/* ── bands ─────────────────────────────────────────────────────────────── */

section { padding: var(--sp-xl) var(--page-margin); scroll-margin-top: 24px; }
section.tight { padding-top: var(--sp-l); }
.band-black { background: var(--color-soft-black); color: var(--color-off-white); }
.band-light { background: var(--color-light-gray); }
.band-off { background: var(--color-off-white); }

.head { display: flex; flex-direction: column; gap: var(--sp-s); margin-bottom: var(--sp-l); }
.head .caption { color: var(--muted); }
.band-black .head .caption { color: var(--muted); }
.head .lede { color: inherit; opacity: 0.78; }

.rule { border: 0; border-top: 1px solid var(--color-light-gray); margin: var(--sp-l) 0; }
.band-black .rule { border-color: #41413f; }

/* ── grid helpers (12 col / 40px gutter) ───────────────────────────────── */

.cols { display: grid; gap: var(--gutter); }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cols-2-1 { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); }
.stack { display: flex; flex-direction: column; gap: var(--sp-m); }
.stack-s { display: flex; flex-direction: column; gap: var(--sp-s); }
.stack-l { display: flex; flex-direction: column; gap: var(--sp-l); }

/* ── hero ──────────────────────────────────────────────────────────────── */

.hero { padding-top: var(--sp-xl); padding-bottom: var(--sp-xl); }
.hero__lockup { width: min(420px, 62%); margin-bottom: var(--sp-l); }
.hero .display { max-width: 14ch; }
.hero__lede { margin-top: var(--sp-m); max-width: 46ch; opacity: 0.82; }

.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--gutter); margin-top: var(--sp-xl); }
.fact { display: flex; flex-direction: column; gap: 10px; padding-top: 14px; border-top: 1px solid #41413f; }
.fact .caption { color: var(--muted); }
.fact .h2 { line-height: 1.05; }
.band-black .fact__note { opacity: 0.7; }

/* ── cards ─────────────────────────────────────────────────────────────── */

.card {
  background: var(--color-neutral-white);
  border-radius: var(--radius-s);
  padding: var(--sp-m);
  display: flex;
  flex-direction: column;
  gap: var(--sp-s);
}
.band-light .card, .band-off .card { background: var(--color-neutral-white); }
.band-black .card { background: #232322; color: var(--color-off-white); }
.card--outline { background: transparent; border: 1px solid var(--color-light-gray); }
.card__label { color: var(--muted); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-teal);
  color: var(--color-soft-black);
}
.tag--neon { background: var(--color-neon); }
.tag--green { background: var(--color-green); }
.tag--purple { background: var(--color-purple); color: var(--color-off-white); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* numbered lists — pillars, ladders, usage rules */
.numbered { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.numbered li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: var(--sp-s);
  padding: 14px 0;
  border-top: 1px solid var(--color-light-gray);
  align-items: baseline;
}
.numbered li:last-child { border-bottom: 1px solid var(--color-light-gray); }
.numbered li b { font-family: var(--font-body); font-weight: 700; }
.numbered__n { font-family: var(--font-headline); font-weight: 500; font-size: 20px; color: var(--muted); }
.band-black .numbered li { border-color: #41413f; }

.donts { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 var(--gutter); }
.donts li { padding: 12px 0; border-top: 1px solid var(--color-light-gray); display: flex; gap: 12px; align-items: baseline; }
.donts li::before { content: '\00d7'; color: var(--muted); font-size: 18px; line-height: 1; }

/* ── contents map ──────────────────────────────────────────────────────── */

.kitmap { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--gutter); }
.kitmap__col { display: flex; flex-direction: column; gap: var(--sp-s); }
.filerow {
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  gap: var(--sp-s);
  padding: 12px 0;
  border-top: 1px solid var(--color-light-gray);
  align-items: baseline;
}
.filerow .mono { color: var(--color-soft-black); }
.filerow span:last-child { color: #41413f; }

/* ── typography specimens ──────────────────────────────────────────────── */

.specimen { border-top: 1px solid var(--color-light-gray); padding: var(--sp-m) 0; display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: var(--gutter); align-items: baseline; }
.specimen__meta { display: flex; flex-direction: column; gap: 8px; }
.specimen__meta .caption { color: var(--muted); }
.specimen__meta .mono { color: #41413f; }
.specimen__set { overflow: hidden; }

.ramp { border-top: 1px solid var(--color-light-gray); }
.ramp__row { display: grid; grid-template-columns: 132px minmax(0, 1fr) 210px; gap: var(--gutter); align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--color-light-gray); }
.ramp__row .mono { color: #41413f; }
.ramp__sample { font-family: var(--font-headline); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: clip; }

.pairdemo { background: var(--color-off-white); border-radius: var(--radius-s); padding: var(--sp-l); }
.pairdemo .display { letter-spacing: -0.02em; line-height: 0.95; }

/* ── color ─────────────────────────────────────────────────────────────── */

.swatches { display: grid; gap: 4px; }
.swatches--neutral { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.swatches--accent { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.swatch {
  aspect-ratio: 1 / 1.1;
  border-radius: var(--radius-s);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
}
.swatch .caption { letter-spacing: 0.06em; }
.swatch .mono { font-size: 12px; opacity: 0.72; }
.swatch--bordered { box-shadow: inset 0 0 0 1px rgb(27 27 27 / 0.1); }

.fnswatches { display: grid; grid-template-columns: repeat(10, minmax(0, 1fr)); gap: 4px; }
.fnswatch { aspect-ratio: 1 / 1.6; border-radius: 8px; display: flex; align-items: flex-end; padding: 8px 6px; }
.fnswatch span { font-family: ui-monospace, Menlo, monospace; font-size: 10px; color: var(--color-soft-black); opacity: 0.8; }

.ratio { display: flex; height: 56px; border-radius: var(--radius-s); overflow: hidden; }
.ratio__n { flex: 80; background: var(--color-off-white); display: flex; align-items: center; padding: 0 16px; }
.ratio__a { flex: 20; background: var(--color-purple); color: var(--color-off-white); display: flex; align-items: center; padding: 0 16px; }

/* ── art direction ─────────────────────────────────────────────────────── */

.framed { width: 100%; object-fit: cover; height: 100%; }
.frame-corner-cut { aspect-ratio: 133.69 / 141.24; -webkit-mask: url('assets/image-frames/surfside-frame-corner-cut.svg') center / 100% 100% no-repeat; mask: url('assets/image-frames/surfside-frame-corner-cut.svg') center / 100% 100% no-repeat; }
.frame-arch { aspect-ratio: 131.58 / 138.97; -webkit-mask: url('assets/image-frames/surfside-frame-arch.svg') center / 100% 100% no-repeat; mask: url('assets/image-frames/surfside-frame-arch.svg') center / 100% 100% no-repeat; }
.frame-leaf { aspect-ratio: 114.39 / 138.99; -webkit-mask: url('assets/image-frames/surfside-frame-leaf.svg') center / 100% 100% no-repeat; mask: url('assets/image-frames/surfside-frame-leaf.svg') center / 100% 100% no-repeat; }

.glass-card { position: relative; border-radius: 30px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--color-off-white); }
.glass-card .frost { position: absolute; inset: -12px; filter: blur(24px); background-color: rgb(239 239 234 / 0.55); background-blend-mode: lighten; background-size: cover; background-position: center; }
.glass-card__inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.glass-card__inner .frame-leaf { height: 82%; width: auto; aspect-ratio: 114.39 / 138.99; }
.glass-card__inner img { height: 100%; width: 100%; object-fit: cover; }

.photostrip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px; }
.photostrip img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-s); }

/* ── layout demo ───────────────────────────────────────────────────────── */

.griddemo { background: var(--color-neutral-white); border-radius: var(--radius-s); padding: 20px; }
.griddemo__cols { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 8px; height: 120px; }
.griddemo__col { background: var(--color-light-purple); border-radius: 4px; opacity: 0.5; }
.griddemo__legend { display: flex; gap: var(--sp-m); margin-top: 14px; color: var(--muted); }
@media (max-width: 720px) { .griddemo__cols { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.steps { display: flex; flex-direction: column; gap: 8px; }
.step { display: grid; grid-template-columns: 60px minmax(0, 1fr) 120px; gap: var(--sp-s); align-items: center; }
.step__bar { background: var(--color-soft-black); border-radius: 3px; height: 10px; }
.step .mono { color: #41413f; }

/* ── motion ────────────────────────────────────────────────────────────── */

.curves { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--gutter); }
.curve { display: flex; flex-direction: column; gap: 12px; }
.curve__plot { background: var(--color-neutral-white); border-radius: var(--radius-s); padding: 12px; }
.curve__plot svg { width: 100%; height: auto; }
.curve__plot path.trace { fill: none; stroke: var(--color-soft-black); stroke-width: 3; }
.curve__plot path.diag { fill: none; stroke: var(--color-dark-gray); stroke-width: 1; stroke-dasharray: 3 4; }
.curve__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--color-purple); }
.curve__track { height: 12px; position: relative; }
.curve__track .curve__dot { position: absolute; left: 0; }
.curve:hover .curve__track .curve__dot { left: calc(100% - 12px); }
.curve__track .curve__dot { transition: left var(--dur-reveal); }

.marks { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--gutter); }
.mark { border-top: 1px solid var(--color-light-gray); padding-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.mark__v { font-family: var(--font-headline); font-weight: 500; font-size: var(--t-h2); }
.mark__k { color: var(--muted); }
.mark small { color: var(--muted); }

/* ── ui styles ─────────────────────────────────────────────────────────── */

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-s);
  height: 48px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-hover-out) var(--ease-standard);
}
.btn:hover::after { transform: scaleX(1); transition-duration: var(--dur-hover-in); transition-timing-function: var(--ease-snap); }
.btn:active { transform: scale(0.985); transition: transform var(--dur-press) var(--ease-snap); }
.btn--light { background: var(--color-neutral-white); color: var(--color-soft-black); box-shadow: inset 0 0 0 1px rgb(27 27 27 / 0.12); }
.btn--light::after { background: var(--color-off-white); }
.btn--dark { background: var(--color-soft-black); color: var(--color-off-white); }
.btn--dark::after { background: var(--color-purple); }
.btnrow { display: flex; gap: var(--sp-s); flex-wrap: wrap; align-items: center; }

.statcard { display: flex; flex-direction: column; gap: var(--sp-s); }
.statcard__stat { font-family: var(--font-headline); font-weight: 500; font-size: var(--t-h1); line-height: 1; }
.statcard__label { color: #74746e; }

.iconsizes { display: flex; align-items: flex-end; gap: var(--sp-m); }
.iconsizes figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.iconsizes figcaption { color: var(--muted); font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; }
.iconsizes svg { color: var(--color-soft-black); }

/* ── logos ─────────────────────────────────────────────────────────────── */

.logogrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px; }
.logotile { display: flex; align-items: center; justify-content: center; padding: var(--sp-m); border-radius: var(--radius-s); min-height: 140px; }
.logotile img { max-height: 56px; width: auto; max-width: 78%; }
.logotile--black { background: var(--color-soft-black); }
.logotile--off { background: var(--color-off-white); box-shadow: inset 0 0 0 1px rgb(27 27 27 / 0.1); }
.logotile--gray { background: var(--color-dark-gray); }
.logolabels { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px; margin-top: 10px; }
.logolabels .caption { color: var(--muted); }

.clearance { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--gutter); }
.clearbox { background: var(--color-neutral-white); border-radius: var(--radius-s); padding: var(--sp-m); }
.clearbox__inner { position: relative; padding: var(--clear, 100%) 0; }
.clearbox__inner::before { content: ''; position: absolute; inset: 0; border: 1px dashed var(--color-dark-gray); border-radius: 6px; }
.clearbox__inner img { position: relative; width: 100%; height: auto; }

/* ── product ───────────────────────────────────────────────────────────── */

.complist { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 var(--gutter); }
.complist > div { padding: 14px 0; border-top: 1px solid #41413f; display: flex; flex-direction: column; gap: 6px; }
.complist b { font-family: var(--font-body); font-weight: 700; font-size: 16px; }
.complist span { opacity: 0.72; font-size: 15px; }

.neutralramp { display: grid; grid-template-columns: repeat(10, minmax(0, 1fr)); gap: 3px; }
.neutralramp div { aspect-ratio: 1 / 1.5; border-radius: 6px; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 8px; font-family: ui-monospace, Menlo, monospace; font-size: 10px; }

/* ── footer ────────────────────────────────────────────────────────────── */

footer.foot { padding: var(--sp-l) var(--page-margin); background: var(--color-soft-black); color: var(--color-off-white); display: flex; flex-wrap: wrap; gap: var(--sp-m); justify-content: space-between; align-items: flex-end; }
footer.foot .caption { color: var(--muted); }
footer.foot img { width: 180px; }

/* ── scroll reveal (7.6 default entrance) ──────────────────────────────── */

.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity var(--dur-reveal) var(--ease-settle), transform var(--dur-reveal) var(--ease-enter);
  transition-delay: var(--reveal-delay, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── responsive ────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .facts, .curves, .marks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .complist, .logogrid, .logolabels, .cols-3, .swatches--neutral { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .swatches--accent { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .specimen { grid-template-columns: 1fr; gap: var(--sp-s); }
  .ramp__row { grid-template-columns: 110px minmax(0, 1fr); }
  .ramp__row > .mono:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .shell { grid-template-columns: 1fr; }
  .rail {
    position: sticky;
    height: auto;
    padding: 14px var(--page-margin);
    border-right: 0;
    border-bottom: 1px solid var(--color-light-gray);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-s);
    z-index: 20;
  }
  .rail__meta { display: none; }
  .rail nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--color-neutral-white);
    border-bottom: 1px solid var(--color-light-gray);
    padding: var(--sp-m) var(--page-margin);
    display: none;
    max-height: 70vh;
    overflow-y: auto;
  }
  .rail.is-open nav { display: flex; }
  .rail__toggle {
    display: inline-flex;
    background: transparent;
    border: 1px solid var(--color-light-gray);
    border-radius: 999px;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .cols-2, .cols-2-1, .cols-3, .kitmap, .clearance, .cols-4, .photostrip { grid-template-columns: 1fr; }
  .photostrip { gap: 8px; }
  .donts { grid-template-columns: 1fr; }
  .filerow { grid-template-columns: 1fr; gap: 4px; }
  .fnswatches { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .neutralramp { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .complist { grid-template-columns: 1fr; }
  .swatches--neutral, .swatches--accent { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step { grid-template-columns: 46px minmax(0, 1fr) 92px; }
  .hero__lockup { width: 84%; }
}
