/* ------------------------------------------------------------------
   Choker · Color Bloc (v5)
   Contemporary bold: color-blocking, big type, playful confidence.
   Bricolage Grotesque display + DM Sans body.
------------------------------------------------------------------ */

:root {
  --paper: #f5f0e8;
  --white: #ffffff;
  --ink: #0a0a0a;
  --ink-2: #3a3a3a;
  --ink-quiet: #8a8a8a;
  --cobalt: #1e40af;
  --cobalt-2: #3b5cd1;
  --flame: #ea580c;
  --flame-2: #fb923c;
  --lime: #c5e635;
  --lime-2: #a3cf1f;
  --blush: #fdbac5;
  --blush-2: #f999aa;
  --forest: #14532d;
  --forest-2: #2d7049;
  --butter: #fde68a;
  --line: rgba(10, 10, 10, 0.12);
  --line-strong: rgba(10, 10, 10, 0.4);

  --f-display: "Bricolage Grotesque", "Space Grotesk", system-ui, sans-serif;
  --f-body: "DM Sans", -apple-system, sans-serif;

  --pad: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: 0; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; background: transparent; border: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--f-display); font-weight: 700; letter-spacing: -0.02em; line-height: 0.92; font-variation-settings: "wdth" 100, "GRAD" 0; }
p { margin: 0 0 1em; }
::selection { background: var(--lime); color: var(--ink); }

.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---------- Atoms ---------- */
.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: var(--white);
}
.tag--cobalt { background: var(--cobalt); }
.tag--flame { background: var(--flame); }
.tag--lime { background: var(--lime); color: var(--ink); }
.tag--blush { background: var(--blush); color: var(--ink); }
.tag--forest { background: var(--forest); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform .25s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: var(--cobalt); transform: translateY(-2px); }
.btn--white { background: var(--white); color: var(--ink); box-shadow: 0 4px 0 var(--ink); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--ink); background: var(--lime); }
.btn--white:active { transform: translateY(2px); box-shadow: 0 0 0 var(--ink); }
.btn--lime { background: var(--lime); color: var(--ink); box-shadow: 0 4px 0 var(--ink); }
.btn--lime:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--ink); background: var(--flame); color: var(--white); }
.btn--flame { background: var(--flame); color: var(--white); }
.btn--flame:hover { background: var(--ink); transform: translateY(-2px); }
.btn--outline { border: 2px solid var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--block { width: 100%; }

/* ---------- Age strip ---------- */
.age-strip {
  background: var(--lime);
  color: var(--ink);
  padding: 10px var(--pad);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--ink);
}
.age-strip button {
  background: var(--ink);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: background .2s var(--ease);
}
.age-strip button:hover { background: var(--cobalt); }
.age-strip.is-hidden { display: none; }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--ink);
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-bottom: 2px solid var(--ink);
}
.ticker__track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll 45s linear infinite;
  padding-left: 40px;
}
.ticker__track em { color: var(--lime); font-style: normal; font-weight: 700; }
.ticker__track span:nth-child(odd)::after {
  content: " ◯ ";
  color: var(--flame);
  margin-left: 8px;
  font-weight: 700;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.nav {
  max-width: 1600px;
  margin: 0 auto;
  padding: 18px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .3s var(--ease);
}
.brand:hover { transform: rotate(-2deg); }
.brand__mark {
  width: 40px; height: 40px;
  background: var(--flame);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  box-shadow: 2px 2px 0 var(--ink);
}
.brand__word {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.primary-nav {
  display: inline-flex;
  gap: 4px;
  justify-self: center;
  background: var(--white);
  padding: 4px;
  border-radius: 999px;
  border: 2px solid var(--ink);
}
.primary-nav a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.primary-nav a:hover { background: var(--lime); }
.primary-nav a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}
.nav-tools {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--white);
  display: inline-grid; place-items: center;
  transition: background .3s var(--ease), transform .25s var(--ease);
  position: relative;
}
.icon-btn:hover { background: var(--blush); transform: rotate(-8deg); }
.bag-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--flame);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
}
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block; width: 16px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Hero (color-blocked) ---------- */
.hero {
  background: var(--paper);
  padding: clamp(40px, 6vw, 80px) var(--pad) 0;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 500;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__top strong { font-weight: 700; }
.hero__top em {
  font-style: normal;
  background: var(--lime);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(80px, 18vw, 280px);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.045em;
  color: var(--ink);
  text-transform: uppercase;
  padding: 40px 0 0;
  position: relative;
}
.hero__title .row {
  display: block;
  overflow: hidden;
}
.hero__title .row span {
  display: inline-block;
  transform: translateY(110%);
  animation: reveal 1s var(--ease) forwards;
}
.hero__title .row:nth-child(1) span { animation-delay: 0.1s; }
.hero__title .row:nth-child(2) span { animation-delay: 0.25s; }
.hero__title .row:nth-child(3) span { animation-delay: 0.4s; }
@keyframes reveal { to { transform: translateY(0); } }

.hero__title .cobalt { color: var(--cobalt); }
.hero__title .flame { color: var(--flame); }
.hero__title .lime {
  background: var(--lime);
  padding: 0 0.2em;
  border-radius: 0.12em;
}
.hero__title em {
  font-style: italic;
  font-weight: 800;
  font-variation-settings: "wdth" 120, "GRAD" 0;
  color: var(--forest);
}

.hero__dot {
  display: inline-block;
  width: 0.8em; height: 0.8em;
  background: var(--flame);
  border-radius: 50%;
  vertical-align: middle;
  transform: translateY(-0.08em);
  margin: 0 0.05em;
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse { 0%, 100% { transform: translateY(-0.08em) scale(1); } 50% { transform: translateY(-0.08em) scale(1.15); } }

.hero__bottom {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: end;
  padding: clamp(32px, 5vw, 64px) 0;
}
.hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 42ch;
  font-weight: 500;
  margin: 0;
}
.hero__lede em {
  font-style: normal;
  background: var(--blush);
  padding: 1px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.hero__cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-self: end;
  align-items: center;
}

/* Hero big visual row */
.hero__visuals {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 16px;
  height: clamp(300px, 45vw, 540px);
}
.hero__block {
  border: 2px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform .4s var(--ease);
}
.hero__block:hover { transform: translateY(-4px); }
.hero__block--1 { background: var(--cobalt); }
.hero__block--2 { background: var(--flame); }
.hero__block--3 { background: var(--blush); }
.hero__block svg { width: 100%; height: 100%; }
.hero__block .label {
  position: absolute;
  top: 14px; left: 14px;
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero__block--3 .label { color: var(--ink); }
.hero__block .label::before {
  content: "";
  width: 8px; height: 8px;
  background: currentColor;
  border-radius: 50%;
}
.hero__block .tag-bl {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--white);
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* ---------- Section ---------- */
.section {
  padding: clamp(50px, 7vw, 100px) var(--pad);
}
.section-full {
  padding: clamp(50px, 7vw, 100px) var(--pad);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.section--cobalt { background: var(--cobalt); color: var(--white); }
.section--flame { background: var(--flame); color: var(--white); }
.section--lime { background: var(--lime); color: var(--ink); }
.section--blush { background: var(--blush); color: var(--ink); }
.section--forest { background: var(--forest); color: var(--white); }
.section--ink { background: var(--ink); color: var(--white); }
.section--butter { background: var(--butter); color: var(--ink); }

.section__head {
  max-width: 1600px;
  margin: 0 auto clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
}
.section__head--centered {
  text-align: center;
  grid-template-columns: 1fr;
  max-width: 800px;
}
.section__num {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.section--cobalt .section__num, .section--flame .section__num, .section--forest .section__num, .section--ink .section__num {
  background: var(--white); color: var(--ink);
}
.section--lime .section__num, .section--blush .section__num, .section--butter .section__num {
  background: var(--ink); color: var(--white);
}
.section__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0;
}
.section__title em { font-style: italic; color: inherit; }
.section__lede {
  font-size: 15px;
  max-width: 46ch;
  margin: 0;
  font-weight: 500;
}

/* ---------- Color-blocked collection chips ---------- */
.cats {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 24px;
  aspect-ratio: 3/4;
  overflow: hidden;
  transition: transform .4s var(--ease);
  color: inherit;
}
.cat:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--ink); }
.cat--1 { background: var(--cobalt); color: var(--white); }
.cat--2 { background: var(--flame); color: var(--white); }
.cat--3 { background: var(--lime); color: var(--ink); }
.cat--4 { background: var(--blush); color: var(--ink); }
.cat__top { display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; letter-spacing: 0.01em; }
.cat__art {
  width: 80%;
  max-width: 200px;
  aspect-ratio: 1;
  margin: 16px auto;
  align-self: center;
}
.cat__name {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.cat__desc {
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 12px;
  opacity: 0.9;
}
.cat__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  align-self: flex-start;
  transition: gap .3s var(--ease);
}
.cat:hover .cat__cta { gap: 12px; }

/* ---------- Product grid ---------- */
.shop-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pcard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: transform .35s var(--ease);
}
.pcard:hover { transform: translateY(-4px); }
.pcard__media {
  position: relative;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow .3s var(--ease);
}
.pcard:hover .pcard__media { box-shadow: 6px 6px 0 var(--ink); }
.pcard__media svg {
  width: 100%; height: 100%;
  transition: transform 1s var(--ease);
}
.pcard:hover .pcard__media svg { transform: scale(1.04); }
.pcard__tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
  z-index: 2;
}
.pcard__qv {
  position: absolute;
  left: 12px; right: 12px;
  bottom: 12px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.pcard:hover .pcard__qv { opacity: 1; transform: translateY(0); }
.pcard__qv:hover { background: var(--flame); }
.pcard__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 0 6px;
}
.pcard__name {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 2px;
}
.pcard__material {
  font-size: 12px;
  color: var(--ink-2);
  margin: 0;
}
.pcard__price {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 4px 12px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  white-space: nowrap;
}

/* ---------- Big quote / manifesto ---------- */
.big-quote {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0;
}
.big-quote p {
  font-family: var(--f-display);
  font-size: clamp(44px, 8vw, 150px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin: 0;
  text-transform: uppercase;
}
.big-quote em { font-style: italic; font-variation-settings: "wdth" 120; }
.big-quote .underline {
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.05em;
}
.big-quote .highlight {
  background: var(--lime);
  padding: 0 0.1em;
  border-radius: 0.08em;
}
.big-quote .pop {
  display: inline-block;
  padding: 0.05em 0.18em;
  background: var(--flame);
  color: var(--white);
  border-radius: 0.12em;
  transform: rotate(-2deg);
}
.big-quote cite {
  display: block;
  margin-top: 32px;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* ---------- Feature / spotlight card ---------- */
.spotlight {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
}
.spotlight__media {
  background: var(--cobalt);
  aspect-ratio: 1;
  position: relative;
}
.spotlight__media svg { width: 100%; height: 100%; }
.spotlight__body {
  padding: clamp(32px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--butter);
  justify-content: center;
}
.spotlight__body .tag { align-self: flex-start; }
.spotlight__body h3 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
}
.spotlight__body h3 em { font-style: italic; color: var(--flame); }
.spotlight__body p { color: var(--ink-2); max-width: 46ch; font-weight: 500; margin: 0; }
.spotlight__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 12px 0;
  padding: 20px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.spotlight__specs div { display: flex; flex-direction: column; gap: 2px; }
.spotlight__specs strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.spotlight__specs span {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ---------- Marquee big ---------- */
.marquee {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--flame);
  color: var(--white);
  overflow: hidden;
  padding: 16px 0;
}
.marquee__track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  padding-left: 48px;
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.marquee__track span:nth-child(even) {
  color: var(--butter);
  font-style: italic;
  font-variation-settings: "wdth" 120;
}

/* ---------- Testimonials / chips ---------- */
.notes {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.note-card {
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 280px;
  transition: transform .3s var(--ease);
}
.note-card:hover { transform: rotate(-1deg) translateY(-4px); }
.note-card:nth-child(1) { background: var(--lime); transform: rotate(-1deg); }
.note-card:nth-child(2) { background: var(--blush); transform: rotate(1deg); }
.note-card:nth-child(3) { background: var(--butter); transform: rotate(-0.5deg); }
.note-card p {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.note-card p::before { content: "“"; font-size: 1.8em; line-height: 0; vertical-align: -0.2em; color: var(--flame); margin-right: 0.05em; }
.note-card .who {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}
.note-card .who span {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 700;
  border: 2px solid var(--ink);
}
.note-card:nth-child(2) .who span { background: var(--flame); }
.note-card:nth-child(3) .who span { background: var(--cobalt); }

/* ---------- Letter ---------- */
.letter-wrap {
  max-width: 1600px;
  margin: 0 auto;
  background: var(--cobalt);
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: 32px;
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.letter-wrap::before {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 220px; height: 220px;
  background: var(--flame);
  border: 2px solid var(--ink);
  border-radius: 50%;
  z-index: 0;
}
.letter-wrap::after {
  content: "◯";
  position: absolute;
  bottom: -30px; left: -30px;
  font-size: 220px;
  color: var(--lime);
  opacity: 0.6;
  line-height: 1;
  z-index: 0;
}
.letter-wrap > * { position: relative; z-index: 1; }
.letter-wrap h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.letter-wrap h2 em { font-style: italic; color: var(--lime); }
.letter-wrap p { max-width: 40ch; margin: 0; font-weight: 500; font-size: 15px; opacity: 0.92; }
.letter-wrap__form {
  background: var(--white);
  padding: 8px 8px 8px 20px;
  border-radius: 999px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  border: 2px solid var(--ink);
  align-items: center;
}
.letter-wrap__form input {
  padding: 14px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  min-width: 0;
  outline: none;
}
.letter-wrap__form input::placeholder { color: var(--ink-quiet); }
.letter-wrap__form button {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition: background .2s var(--ease);
}
.letter-wrap__form button:hover { background: var(--flame); }
.letter-wrap__note {
  grid-column: 1 / -1;
  margin: 12px 20px 0 !important;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  min-height: 14px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: clamp(40px, 6vw, 80px) var(--pad) 24px;
  border-top: 2px solid var(--ink);
}
.footer-top {
  max-width: 1600px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-top .brand__word { color: var(--white); }
.footer-top .brand__mark { background: var(--lime); color: var(--ink); border-color: var(--white); box-shadow: 2px 2px 0 var(--white); }
.footer-brand p { color: rgba(255,255,255,0.7); margin: 16px 0 0; max-width: 34ch; font-size: 13px; }
.footer-col h4 {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--lime);
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  max-width: 1600px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: inherit; transition: color .2s var(--ease); }
.footer-bottom a:hover { color: var(--lime); }

/* ---------- Page head ---------- */
.page-head {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) var(--pad) clamp(32px, 4vw, 56px);
}
.page-head h1 {
  font-family: var(--f-display);
  font-size: clamp(60px, 12vw, 200px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin: 24px 0 20px;
  text-transform: uppercase;
}
.page-head h1 .cobalt { color: var(--cobalt); }
.page-head h1 .flame { color: var(--flame); }
.page-head h1 em { font-style: italic; font-variation-settings: "wdth" 120; color: var(--forest); }
.page-head__lede {
  font-size: 16px;
  max-width: 60ch;
  font-weight: 500;
  color: var(--ink);
}

/* ---------- Shop ---------- */
.shop {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(60px, 8vw, 120px);
}
.shop__filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  margin-bottom: 48px;
}
.shop__chips { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.chip:hover { background: var(--lime); }
.chip.is-active { background: var(--ink); color: var(--white); }
.sort {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--paper);
  font-size: 13px;
  font-weight: 600;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%23ea580c' stroke-width='2'><path d='M1 1l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  color: var(--ink);
}

/* ---------- Quick view ---------- */
.quick {
  position: fixed; inset: 0;
  z-index: 150;
  display: grid; place-items: center;
  padding: 20px;
}
.quick[hidden] { display: none; }
.quick__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.quick__panel {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 28px;
  max-width: 920px;
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: pop .4s var(--ease);
  box-shadow: 10px 10px 0 var(--lime);
}
@keyframes pop {
  from { opacity: 0; transform: scale(.96) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.quick__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  z-index: 2;
  transition: background .2s var(--ease), transform .3s var(--ease);
  border: 2px solid var(--ink);
}
.quick__close:hover { background: var(--flame); transform: rotate(90deg); }
.quick__art {
  aspect-ratio: 1;
  background: var(--cobalt);
  border-right: 2px solid var(--ink);
  border-radius: 26px 0 0 26px;
}
.quick__art svg { width: 100%; height: 100%; }
.quick__body { padding: 40px; }
.quick__ref {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}
.quick__body h3 {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.quick__price {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--flame);
  margin: 0 0 18px;
}
.quick__desc { color: var(--ink-2); margin: 0 0 24px; font-size: 14px; max-width: 42ch; }
.quick__specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  padding: 16px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 16px;
  margin: 0 0 24px;
  font-size: 12px;
}
.quick__specs dt { font-weight: 700; color: var(--ink-2); letter-spacing: 0.02em; text-transform: uppercase; font-size: 11px; }
.quick__specs dd { margin: 0; font-weight: 500; }
.quick__size { margin-bottom: 20px; }
.quick__size > span { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; display: block; margin-bottom: 10px; text-transform: uppercase; }
.quick__sizes { display: inline-flex; gap: 8px; flex-wrap: wrap; }
.quick__sizes button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  transition: all .2s var(--ease);
}
.quick__sizes button:hover { background: var(--lime); }
.quick__sizes button.is-selected { background: var(--ink); color: var(--white); }
.quick__note {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-quiet);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ---------- Switcher (5-way) ---------- */
.switcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  display: inline-flex;
  padding: 4px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
}
.switcher a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.switcher a:hover { background: var(--lime); }
.switcher a.is-current {
  background: var(--ink);
  color: var(--white);
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .primary-nav.is-open {
    display: flex;
    position: fixed;
    top: 78px; left: 12px; right: 12px;
    background: var(--white);
    border-radius: 24px;
    padding: 12px;
    flex-direction: column;
    gap: 4px;
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    z-index: 70;
  }
  .primary-nav.is-open a { text-align: center; padding: 12px; border-radius: 16px; }
  .hero__visuals { grid-template-columns: 1fr 1fr; height: clamp(360px, 60vw, 500px); }
  .hero__block--3 { display: none; }
  .cats { grid-template-columns: 1fr 1fr; }
  .spotlight { grid-template-columns: 1fr; }
  .letter-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .notes { grid-template-columns: 1fr; }
  .section__head { grid-template-columns: 1fr; }
  .hero__bottom { grid-template-columns: 1fr; }
  .hero__cta { justify-self: start; }
}
@media (max-width: 640px) {
  .hero__visuals { grid-template-columns: 1fr; height: auto; }
  .hero__block { aspect-ratio: 3/4; }
  .cats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .quick__panel { grid-template-columns: 1fr; }
  .quick__art { border-right: 0; border-bottom: 2px solid var(--ink); border-radius: 26px 26px 0 0; max-height: 40vh; }
  .quick__body { padding: 24px; }
  .letter-wrap__form { grid-template-columns: 1fr; padding: 16px; border-radius: 20px; }
  .letter-wrap__form button { width: 100%; }
  .switcher { bottom: 12px; right: 12px; font-size: 11px; }
  .switcher a { padding: 6px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
