/* ==========================================================================
   BUYMYSICKSHIT.COM — storefront
   Token system INHERITED from the TEAZTOWN Drop 01 prototype (the build that
   survived three blind critic rounds against craighill.co). Carried forward
   by explicit user instruction: "teaztown vibe and assets".

   What is inherited verbatim: the neutral ramp, the three type roles, the
   1:1 display leading, letter-spacing:normal everywhere, square corners.
   What is NEW here: the merchandising layer the dropship economics force —
   a persistent shipping-threshold bar, add-on rails, and basket math.
   ========================================================================== */

:root {
  /* --- COLOUR (inherited) ------------------------------------------------
     Near-achromatic. The only colour in the page is the product itself.
     Steel greys are product-derived: the merchandise IS grey steel, so the
     neutral ramp is drawn from the alloy rather than invented.            */
  --ink:           #0E0D0C;   /* page ground — warm near-black             */
  --ink-raised:    #17150F;   /* bars, spec rows, banners                  */
  --ink-deep:      #070706;   /* footer / deepest band                     */
  --bone:          #F4EFE3;   /* primary text — warm cream                 */
  --steel:         #8A8D8C;   /* secondary text — cool grey (the alloy)    */
  --steel-dim:     #636664;   /* tertiary / disabled                       */
  --rule:          #2B2A27;   /* hairlines — quiet, ~18% luminance         */
  --rule-strong:   #4E514F;   /* borders, focus, active state              */

  --slot:          #141311;   /* empty image slot — reads as "shot goes
                                 here", never as a shot                    */
  --slot-line:     #34322E;
  --slot-text:     #6E706C;

  /* Merchandise-only tone. Never a button, never a link, never a heading. */
  --pvd-gold:      #B08C3C;
  --pvd-gold-lit:  #D6B36A;

  /* Photography sweep */
  --sweep-top:     #D9D7D2;
  --sweep-bottom:  #FBFBFA;

  /* --- TYPE (inherited) --------------------------------------------------
     Three families, strict role separation, no face outside its one job.
     letter-spacing is `normal` EVERYWHERE — zero fake tracking. The
     uppercase look is the typeface's own metrics.                         */
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-chrome:  "Archivo Narrow", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;

  --size-display-xl: 56px;
  --size-display-l:  44px;
  --size-display-m:  36px;
  --size-display-s:  24px;
  --size-body:       16px;
  --size-body-lead:  18px;
  --size-micro:      14px;   /* small uppercase needs SIZE, not tracking   */
  --size-chrome:     16px;

  --lh-display: 1;
  --lh-body:    1.5;
  --lh-chrome:  1.4;

  /* --- SPACE (inherited) -------------------------------------------------- */
  --shell-max:   1240px;
  --shell-pad:   40px;
  --col-gap:     clamp(48px, 9vw, 140px);
  --stack-xs:    8px;
  --stack-s:     16px;
  --stack-m:     24px;
  --stack-l:     40px;
  --stack-xl:    64px;
  --section-pad: 70px;

  --hairline: 1px;
  --radius:   0;              /* hard square corners, everywhere           */
  --header-h: 60px;
  --bar-h:    38px;

  --ease: cubic-bezier(0.2, 0, 0.1, 1);
  --dur:  140ms;
}

@media (max-width: 900px) {
  :root {
    --size-display-xl: 34px;
    --size-display-l:  34px;
    --size-display-m:  26px;
    --size-display-s:  20px;
    --shell-pad:       20px;
    --section-pad:     56px;
    --stack-xl:        48px;
  }
}

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

/* ==========================================================================
   RESET / BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: var(--lh-body);
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
figure { margin: 0; }
p { margin: 0 0 var(--stack-s); }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--lh-display);
  letter-spacing: normal;
  text-transform: uppercase;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--bone);
  outline-offset: 3px;
}

.shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding-inline: var(--shell-pad);
}

.micro {
  font-family: var(--font-chrome);
  font-size: var(--size-micro);
  text-transform: uppercase;
  color: var(--steel);
  line-height: var(--lh-chrome);
}

.rule { border: 0; border-top: var(--hairline) solid var(--rule); margin: 0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   SHIPPING THRESHOLD BAR — the primary commerce mechanic on this site.
   US de minimis is suspended (permanent CBP regulation, 24 Jun 2026), so
   every parcel clears as a commercial entry and carries a FLAT per-parcel
   brokerage fee. 41 of 58 SKUs retail below the standalone break-even.
   Those SKUs are basket-builders. This bar is why the basket gets built.
   ========================================================================== */
.ship-bar {
  background: var(--ink-raised);
  border-bottom: var(--hairline) solid var(--rule);
  min-height: var(--bar-h);
  display: flex; align-items: center;
}
.ship-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: var(--stack-s); flex-wrap: wrap;
  padding-block: 9px;
  width: 100%;
}
.ship-bar__text { font-family: var(--font-chrome); font-size: var(--size-micro);
  text-transform: uppercase; color: var(--bone); }
.ship-bar__text b { font-weight: 400; color: var(--bone); }
.ship-bar__meter {
  width: 132px; height: 3px; background: var(--rule);
  position: relative; overflow: hidden;
}
.ship-bar__fill {
  position: absolute; inset: 0 auto 0 0;
  background: var(--bone);
  transition: width var(--dur) var(--ease);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--ink);
  border-bottom: var(--hairline) solid var(--rule);
}
.site-header__inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--stack-m);
}
.wordmark {
  font-family: var(--font-display);
  font-size: 21px; text-transform: uppercase; color: var(--bone);
  line-height: 1; white-space: nowrap;
}
.site-nav { display: flex; gap: var(--stack-m); }
.site-nav a {
  font-family: var(--font-chrome); font-size: var(--size-chrome);
  text-transform: uppercase; color: var(--steel);
  transition: color var(--dur) var(--ease);
}
.site-nav a:hover { color: var(--bone); }
.cart-btn {
  font-family: var(--font-chrome); font-size: var(--size-chrome);
  text-transform: uppercase; color: var(--bone);
  background: none; border: var(--hairline) solid var(--rule-strong);
  padding: 7px 14px; cursor: pointer; border-radius: var(--radius);
}
.site-header__act { display: flex; align-items: center; gap: 8px; }

/* ==========================================================================
   MOBILE NAVIGATION
   Below 720px .site-nav is display:none. Until now nothing replaced it, so
   Earrings / Letters / Charms / Process / Shipping were unreachable on a
   phone. This is the replacement entry point.

   It REUSES the cart drawer's overlay machinery instead of adding a second
   one — same #scrim, same data-open attribute, same 220ms/--ease timing — so
   the site has one overlay system with two panels, not two systems. It slides
   in from the LEFT only so the two can never be confused.

   `visibility` is transitioned with a delay equal to the slide, so the panel
   is out of the accessibility tree when closed but still visible while it
   animates out. `display:none` above 720px keeps exactly one element with
   aria-label="Primary" in the tree at any viewport width.
   ========================================================================== */
.navtoggle {
  display: none;
  align-items: center;
  font-family: var(--font-chrome); font-size: var(--size-chrome);
  text-transform: uppercase; color: var(--bone);
  background: none; border: var(--hairline) solid var(--rule-strong);
  padding: 7px 14px; cursor: pointer; border-radius: var(--radius);
  min-height: 44px;                        /* Fitts's law, matches --tap-min */
}

.navpanel {
  position: fixed; inset: 0 auto 0 0;
  width: min(340px, 86%);
  background: var(--ink-raised);
  border-right: var(--hairline) solid var(--rule);
  z-index: 60;                             /* above .scrim (50), as .drawer */
  display: none; flex-direction: column;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 220ms var(--ease), visibility 0s linear 220ms;
}
.navpanel[data-open="true"] {
  transform: translateX(0);
  visibility: visible;
  transition: transform 220ms var(--ease), visibility 0s;
}
.navpanel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--stack-m); border-bottom: var(--hairline) solid var(--rule);
}
.navpanel__links { display: flex; flex-direction: column; }
.navpanel__links a {
  display: flex; align-items: center;
  min-height: 44px; padding: 15px var(--stack-m);
  font-family: var(--font-chrome); font-size: var(--size-chrome);
  text-transform: uppercase; color: var(--bone);
  border-bottom: var(--hairline) solid var(--rule);
}
.navpanel__links a[aria-current="page"] { background: var(--bone); color: var(--ink); }

@media (max-width: 720px) {
  .site-nav  { display: none; }
  .navtoggle { display: inline-flex; }
  .navpanel  { display: flex; }
}

/* ==========================================================================
   BANDS
   ========================================================================== */
.band { padding-block: var(--section-pad); }
.band--raised { background: var(--ink-raised); }
.band--deep   { background: var(--ink-deep); }
.band--tight  { padding-block: var(--stack-xl); }

.band__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--stack-m); margin-bottom: var(--stack-l);
  flex-wrap: wrap;
}
.band__title { font-size: var(--size-display-m); }

/* ==========================================================================
   HERO — first frame is complete with no JS and no motion.
   ========================================================================== */
.hero { padding-block: var(--stack-xl) var(--section-pad); }
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--col-gap); align-items: center;
}
.hero__eyebrow { margin-bottom: var(--stack-m); }
.hero__title {
  font-size: clamp(44px, 7.4vw, 92px);
  margin-bottom: var(--stack-m);
}
.hero__lead {
  font-size: var(--size-body-lead); color: var(--steel);
  max-width: 46ch; margin-bottom: var(--stack-l);
}
.hero__figure { background: var(--slot); border: var(--hairline) solid var(--rule); }
.hero__figure img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--stack-l); }
  .hero__figure { order: -1; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-chrome); font-size: var(--size-chrome);
  text-transform: uppercase; letter-spacing: normal;
  padding: 14px 26px; border-radius: var(--radius); cursor: pointer;
  border: var(--hairline) solid var(--bone);
  background: var(--bone); color: var(--ink);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn:hover { background: transparent; color: var(--bone); }
.btn--ghost { background: transparent; color: var(--bone); border-color: var(--rule-strong); }
.btn--ghost:hover { border-color: var(--bone); background: transparent; color: var(--bone); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }

/* ==========================================================================
   PRODUCT GRID
   ========================================================================== */
.grid {
  display: grid; gap: var(--stack-l);
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.card { display: flex; flex-direction: column; }
.card__media {
  background: var(--slot); border: var(--hairline) solid var(--rule);
  aspect-ratio: 1 / 1; overflow: hidden; margin-bottom: var(--stack-s);
  position: relative;
}
.card__media img { width: 100%; height: 100%; object-fit: cover;
  transition: transform 240ms var(--ease); }
.card:hover .card__media img { transform: scale(1.03); }
.card__slot {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-chrome); font-size: var(--size-micro);
  text-transform: uppercase; color: var(--slot-text);
  border: var(--hairline) dashed var(--slot-line); margin: 12px;
  text-align: center; padding: 8px;
}
.card__title {
  font-family: var(--font-chrome); font-size: var(--size-chrome);
  text-transform: uppercase; color: var(--bone); margin-bottom: 2px;
}
.card__meta { display: flex; justify-content: space-between; gap: var(--stack-s);
  align-items: baseline; }
.card__price { font-family: var(--font-chrome); font-size: var(--size-chrome);
  color: var(--bone); font-variant-numeric: tabular-nums; }
.card__sku { font-family: var(--font-chrome); font-size: var(--size-micro);
  color: var(--steel-dim); font-variant-numeric: tabular-nums; }

/* Add-on flag: sub-threshold SKUs are never presented as standalone heroes. */
.card--addon .card__title::after {
  content: " · ADD-ON";
  color: var(--steel-dim);
}

/* ==========================================================================
   LETTER RAIL — 26 SKUs from one design family. The single biggest
   basket-builder in the catalogue, and the reason the threshold is reachable.
   ========================================================================== */
.letters {
  display: grid; gap: var(--hairline);
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  background: var(--rule); border: var(--hairline) solid var(--rule);
}
.letter {
  aspect-ratio: 1 / 1; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 26px; color: var(--steel);
  cursor: pointer; border: 0;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.letter:hover, .letter[aria-pressed="true"] { background: var(--bone); color: var(--ink); }

/* ==========================================================================
   SPEC TABLE — every value renders from data. A value we do not have renders
   as a VISIBLE unresolved marker. It is structurally impossible for this
   table to state a number nobody confirmed.
   ========================================================================== */
.spec { width: 100%; border-collapse: collapse; }
.spec th, .spec td {
  text-align: left; padding: 13px 0;
  border-bottom: var(--hairline) solid var(--rule);
  font-size: var(--size-body);
}
.spec th {
  font-family: var(--font-chrome); font-weight: 400;
  text-transform: uppercase; color: var(--steel);
  width: 42%; font-size: var(--size-micro);
}
.spec td { color: var(--bone); font-variant-numeric: tabular-nums; }
.spec .unresolved {
  color: var(--steel-dim);
  font-family: var(--font-chrome);
  text-transform: uppercase;
  font-size: var(--size-micro);
}
.spec .unresolved::before {
  content: "—  ";
  color: var(--rule-strong);
}

/* ==========================================================================
   PROCESS STEPS — "how it was made", never "why it works".
   These pieces are worn for aesthetic, not utility. No mechanism claims.
   ========================================================================== */
.steps { display: grid; gap: var(--stack-l);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step__n {
  font-family: var(--font-chrome); font-size: var(--size-micro);
  color: var(--steel-dim); margin-bottom: var(--stack-xs);
  font-variant-numeric: tabular-nums;
}
.step__t { font-size: var(--size-display-s); margin-bottom: var(--stack-xs); }
.step__b { color: var(--steel); font-size: var(--size-body); }

/* ==========================================================================
   SHIPPING / ORIGIN DISCLOSURE — dropship reality stated plainly.
   ========================================================================== */
.disclose { display: grid; gap: var(--stack-l);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.disclose__k { font-family: var(--font-chrome); font-size: var(--size-micro);
  text-transform: uppercase; color: var(--steel); margin-bottom: var(--stack-xs); }
.disclose__v { color: var(--bone); }

/* ==========================================================================
   CART DRAWER
   ========================================================================== */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(420px, 100%);
  background: var(--ink-raised); border-left: var(--hairline) solid var(--rule);
  z-index: 60; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 220ms var(--ease);
}
.drawer[data-open="true"] { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--stack-m); border-bottom: var(--hairline) solid var(--rule);
}
.drawer__body { flex: 1; overflow-y: auto; padding: var(--stack-m); }
.drawer__foot { padding: var(--stack-m); border-top: var(--hairline) solid var(--rule); }
.drawer__line {
  display: flex; justify-content: space-between; gap: var(--stack-s);
  padding-block: 11px; border-bottom: var(--hairline) solid var(--rule);
  font-family: var(--font-chrome); font-size: var(--size-chrome);
}
.drawer__line-p { font-variant-numeric: tabular-nums; margin-left: auto; }

/* Remove control. Quiet until the row is hovered or the button is focused, so
   a list of cart lines does not read as a row of X's - but it never drops
   below 44px of hit area, and it is always visible on touch, where there is
   no hover to reveal it. */
.drawer__rm {
  flex: 0 0 auto; width: 44px; height: 44px; margin: -11px -8px -11px 4px;
  display: grid; place-items: center;
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--ink-dim, #8f8a7e); font-size: 19px; line-height: 1;
  opacity: .45; transition: opacity .14s ease, color .14s ease;
}
.drawer__line:hover .drawer__rm { opacity: 1; }
.drawer__rm:hover, .drawer__rm:focus-visible { opacity: 1; color: var(--ink, #F4EFE3); }
.drawer__rm:focus-visible { outline: var(--hairline) solid currentColor; outline-offset: -6px; }
@media (hover: none) { .drawer__rm { opacity: .8; } }
@media (prefers-reduced-motion: reduce) { .drawer__rm { transition: none; } }
.drawer__total {
  display: flex; justify-content: space-between;
  font-family: var(--font-chrome); font-size: var(--size-chrome);
  text-transform: uppercase; margin-bottom: var(--stack-s);
}
.drawer__total b { font-weight: 400; font-variant-numeric: tabular-nums; }
.drawer__note { color: var(--steel); font-size: var(--size-micro);
  font-family: var(--font-chrome); text-transform: uppercase;
  margin-bottom: var(--stack-s); }
.scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,.62);
  z-index: 50; opacity: 0; pointer-events: none;
  transition: opacity 220ms var(--ease);
}
.scrim[data-open="true"] { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink-deep); padding-block: var(--stack-xl); }
.site-footer__grid {
  display: grid; gap: var(--stack-l);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: var(--stack-xl);
}
.site-footer h3 { font-size: var(--size-display-s); margin-bottom: var(--stack-s); }
.site-footer a { color: var(--steel); display: block; padding-block: 5px;
  font-family: var(--font-chrome); }
.site-footer a:hover { color: var(--bone); }
.site-footer__base { color: var(--steel-dim); font-size: var(--size-micro);
  font-family: var(--font-chrome); text-transform: uppercase; }

/* ==========================================================================
   ===  LAYER 2  ============================================================
   Added under landing-page-design (B5/B7/B9/B11), interaction-design, and
   optimize-web-animations.

   PRECEDENCE NOTE: landing-page-design B1/B3/B4 (Geist/Manrope fonts, Tailwind
   radii, #181818 palette) are NOT applied. That skill's own rule — "when the
   user's explicit prompt conflicts with a rule, the user wins" — defers to the
   user's instruction to carry the TEAZTOWN system. Everything non-conflicting
   below IS applied.
   ========================================================================== */

:root {
  /* B7 — no default transitions anywhere. Mass and spring, not linear. */
  --fluid: cubic-bezier(0.32, 0.72, 0, 1);
  --fluid-dur: 700ms;
  --reveal-dur: 800ms;
  /* Fitts's law: no interactive target below this on touch. */
  --tap-min: 44px;
}

/* --------------------------------------------------------------------------
   ATMOSPHERE — brushed steel, the material the product is made from.
   Fixed + low opacity so it reads as surface, not as a photograph, and never
   as a product depiction. GPU cost is one composited layer, no repaint.
   -------------------------------------------------------------------------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("/assets/img/atmos/brushed-stainless-steel-texture-1.jpg");
  background-size: 620px auto;
  background-repeat: repeat;
  opacity: 0.055;
  mix-blend-mode: overlay;
  will-change: auto;          /* deliberately NOT promoted — it never animates */
}
/* Same exclusion as plate.css: never clobber elements that position
   themselves. See the note there. */
body > *:not(.drawer):not(#scrim):not(.site-header):not(.navpanel) { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   B5 — hero heading gradient. The ONE place a gradient is allowed, and only
   on text. #FFFFFF -> #9B9B9B, left to right.
   -------------------------------------------------------------------------- */
.hero__title {
  background: linear-gradient(90deg, #FFFFFF 0%, #9B9B9B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  max-width: 680px;           /* B5 — heading capped */
  text-wrap: balance;         /* B1 — no orphaned words */
}
.hero__lead { max-width: 680px; text-wrap: pretty; }
h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* --------------------------------------------------------------------------
   B7 — scroll interpolation. Heavy fade-up with blur resolve.
   Driven by IntersectionObserver ONLY. Never a scroll listener.
   -------------------------------------------------------------------------- */
/* NO-JS GUARD: the hidden start state applies ONLY when the `js` class is set
   on <html> by an inline script in <head>. Without JavaScript the page renders
   complete and static — never a blank screen waiting for an observer that will
   never run. Same reason .tagline__w stays full-colour until JS lights it. */
.js .reveal {
  opacity: 0;
  transform: translateY(64px);
  filter: blur(12px);
  transition:
    opacity     var(--reveal-dur) var(--fluid),
    transform   var(--reveal-dur) var(--fluid),
    filter      var(--reveal-dur) var(--fluid);
}
.js .reveal.is-in { opacity: 1; transform: none; filter: blur(0); }

/* Reduced motion: render the FINAL STATE immediately. Not a shortened
   animation — B7 is explicit that the end state must simply be present. */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .tagline__w { color: var(--bone) !important; transition: none !important; }
}

/* --------------------------------------------------------------------------
   B11 — TAGLINE REVEAL (mandatory section).
   Words activate ONE AT A TIME in reading order as they cross the trigger,
   muted -> full. Per-word IntersectionObserver, no scroll handler.
   -------------------------------------------------------------------------- */
.tagline { padding-block: calc(var(--section-pad) * 1.6); }
.tagline__copy {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 60px);   /* text-4xl -> text-6xl band */
  line-height: 1.06;
  text-transform: uppercase;
  max-width: 680px;
  margin: 0;
}
.tagline__w { display: inline-block; color: var(--bone); }
.js .tagline__w {
  color: color-mix(in srgb, var(--bone) 30%, transparent);
  transition: color var(--fluid-dur) var(--fluid);
}
.js .tagline__w.is-lit { color: var(--bone); }

/* --------------------------------------------------------------------------
   B9 — full state set on every interactive element.
   -------------------------------------------------------------------------- */
.btn, .letter, .cart-btn {
  transition:
    background var(--dur) var(--fluid),
    color      var(--dur) var(--fluid),
    transform  120ms       var(--fluid),
    border-color var(--dur) var(--fluid);
}
.btn:active, .cart-btn:active, .letter:active { transform: translateY(1px) scale(0.985); }

/* Add-to-cart confirmation. interaction-design/feedback-patterns: the system
   must acknowledge the action at the point of action, not only in the drawer.
   Doherty threshold — the label flips inside 400ms. */
.btn[data-added="true"] {
  background: var(--steel);
  border-color: var(--steel);
  color: var(--ink);
}

/* Fitts's law — letter cells are the smallest targets on the page. */
.letters { grid-template-columns: repeat(auto-fill, minmax(var(--tap-min), 1fr)); }
.letter  { min-height: var(--tap-min); min-width: var(--tap-min); }

/* --------------------------------------------------------------------------
   LOADING STATE — skeletons shaped like the real layout, never a spinner.
   -------------------------------------------------------------------------- */
.skeleton { pointer-events: none; }
.skeleton .card__media {
  background: linear-gradient(90deg, var(--slot) 0%, #1C1A17 50%, var(--slot) 100%);
  background-size: 200% 100%;
  animation: sweep 1400ms var(--fluid) infinite;
}
.skeleton .card__title,
.skeleton .card__price {
  background: var(--slot); color: transparent; border-radius: 0;
}
@keyframes sweep { to { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) {
  .skeleton .card__media { animation: none; }
}

/* --------------------------------------------------------------------------
   B10 — skip link. Keyboard users must be able to bypass the nav.
   -------------------------------------------------------------------------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--bone); color: var(--ink);
  padding: 12px 16px; font-family: var(--font-chrome); text-transform: uppercase;
}
.skip:focus { left: 0; }

/* Section heading inside a category page. The earrings page now carries the
   sheet's three shape groups instead of one flat grid, so each needs a label
   that is quieter than the page title but louder than a card. */
.page-sub {
  font-family: var(--font-chrome); font-size: var(--size-chrome);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-dim, #8f8a7e); margin-bottom: var(--stack-s, 14px);
}

/* Charm upsell in the cart drawer. Sits between the lines and the total so it
   reads as part of the basket, not as an ad bolted to the bottom. */
.drawer__addons { padding: 14px 0 2px; border-top: var(--hairline) solid var(--rule); }
.drawer__addons[hidden] { display: none; }
.drawer__addons-t {
  font-family: var(--font-chrome); font-size: var(--size-chrome);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-dim, #8f8a7e); margin-bottom: 9px;
}
.drawer__addons-row { display: flex; gap: 8px; flex-wrap: wrap; }
.addon {
  flex: 1 1 auto; min-height: 44px; padding: 8px 12px;
  display: flex; align-items: baseline; gap: 8px;
  background: none; color: var(--ink);
  border: var(--hairline) solid var(--rule); border-radius: 0;
  font-family: var(--font-chrome); font-size: var(--size-chrome);
  cursor: pointer; transition: background .14s ease, border-color .14s ease;
}
.addon:hover { background: var(--ink-raised); border-color: var(--ink-dim, #8f8a7e); }
.addon:focus-visible { outline: var(--hairline) solid var(--ink); outline-offset: 2px; }
.addon__p { margin-left: auto; font-variant-numeric: tabular-nums; color: var(--ink-dim, #8f8a7e); }
@media (prefers-reduced-motion: reduce) { .addon { transition: none; } }
