@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url('/assets/fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url('/assets/fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ashed.in — palette drawn from the footage itself:
   ash-black, ember glow, smoke grey, paper white.
   No flat white / flat black anywhere: every large surface is a quiet gradient. */
:root {
  --ink: #0B0908;
  --ember: #C98A4B;
  --smoke: #A9A29A;
  --paper: #FAF8F4;
  --char: #131110;
  --shot-bg: #F4EFE6; /* the one flat cream every product image sits on */
  --display: "Archivo", "Arial Black", sans-serif;

  /* the wordmark's two states — silver like the metal, charcoal like ash */
  --fill-light: linear-gradient(178deg, #FFFDFA 4%, #EAE5DC 55%, #C6BEB1 98%);
  --fill-dark: linear-gradient(178deg, #433D38 0%, #1C1815 55%, #0B0908 100%);
  --fill-ember: linear-gradient(180deg, #DCA05F 0%, #B87534 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ---------- shared display type (the blocky voice) ---------- */
.display-title {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(4rem, 20.5vw, 22rem);
  line-height: 0.82;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  white-space: nowrap;
}
.display-title .tld {
  font-size: 0.16em;
  font-stretch: 100%;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  vertical-align: baseline;
  background: var(--fill-ember);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- stage / pinned viewport ----------
   Pin lasts one viewport of scroll: the wordmark holds for the first
   half of the rotation, then the handoff begins while the turntable
   finishes behind the rising white. */
.stage { height: 200vh; height: 200lvh; position: relative; }

.viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  /* lvh = the viewport with the browser chrome hidden. Sized to that, the
     hero never changes height as the URL bar comes and goes, so nothing
     re-measures mid-scroll (the old dvh sizing re-laid the whole animation
     on every bar toggle — black canvas, jumping wordmark) */
  height: 100lvh;
  overflow: hidden;
  /* the first frame is the stage's own background: an undrawn or just-cleared
     canvas shows the image, never a black hole */
  background: var(--ink) url('/assets/frames/frame-001.webp') center / cover no-repeat;
}

#turntable {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 6, 5, 0.62) 0%, rgba(8, 6, 5, 0.18) 26%, transparent 44%);
  pointer-events: none;
}

/* ---------- hero nav ---------- */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.6rem 2rem;
  z-index: 4;
}
.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.25s ease;
  padding: 0.5rem 0.1rem; /* comfortable tap target */
  margin: -0.5rem -0.1rem;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--paper); }
.nav .nav-link[aria-current="page"] { color: var(--paper); }
a:focus-visible { outline: 2px solid var(--ember); outline-offset: 4px; }

/* ---------- hero meta row ---------- */
.hero-meta {
  position: absolute;
  left: 2rem; right: 2rem; bottom: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
}
/* the table in the footage is white at the bottom of every frame,
   so the meta row reads dark */
.meta-left, .scroll-word {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(19, 17, 16, 0.55);
}
.meta-right { display: flex; align-items: center; gap: 0.9rem; }
.progress-track {
  width: 120px; height: 1px;
  background: rgba(19, 17, 16, 0.18);
  display: inline-block;
  position: relative;
}
.progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 100%;
  background: var(--ember);
  transform-origin: left center;
  transform: scaleX(0);
}

/* ---------- the wordmark (one element, whole journey) ---------- */
.fall-title {
  position: fixed;
  left: 50%;
  top: 0;
  transform: translate(-50%, 12vh);
  transform-origin: 50% 50%;
  z-index: 6;
  pointer-events: none;
  will-change: transform;
  display: grid;
}
.fall-copy { grid-area: 1 / 1; }
.fall-copy .display-title {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.fall-light .display-title { background-image: var(--fill-light); }
.fall-dark .display-title { background-image: var(--fill-dark); }
/* the tld keeps its ember gradient in both copies (set on .tld above) */
.fall-dark { opacity: 0; }

/* ---------- products section ---------- */
.paper {
  position: relative;
  z-index: 2;
  /* flat, not a gradient: product images are keyed/baked to this exact hex */
  background: #F4EFE6;
  color: var(--char);
  padding: 0 2rem 14vh;
}

.paper-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 -2rem;
  padding: 1.1rem 2rem;
  /* --bar: 0 while the wordmark is still in flight, 1 once it lands,
     so the bar materialises around it instead of banding the letters */
  background: rgba(250, 248, 244, calc(0.82 * var(--bar, 1)));
  -webkit-backdrop-filter: blur(calc(14px * var(--bar, 1)));
  backdrop-filter: blur(calc(14px * var(--bar, 1)));
  border-bottom: 1px solid rgba(19, 17, 16, calc(0.08 * var(--bar, 1)));
}
/* dead centre of the bar — the slot the big wordmark dissolves into */
.nav-wordmark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--char);
  opacity: 0; /* revealed as the big wordmark fades out */
}
.nav-wordmark .tld {
  font-size: 0.6em;
  font-stretch: 100%;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--ember);
}
a.nav-wordmark { text-decoration: none; }
/* links and burger arrive with the bar itself */
.paper-nav .nav-link, .paper-nav .nav-burger { opacity: var(--bar, 1); }
.nav-wordmark.is-shown { opacity: 1; }
.nav-link-dark { color: rgba(19, 17, 16, 0.5); }
.nav-link-dark:hover, .nav-link-dark:focus-visible { color: var(--char); }
.paper-nav .nav-link[aria-current="page"] { color: var(--char); }

/* breathing room between the bar and the collection */
.title-well { height: 14vh; }

.paper-intro {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  max-width: 1280px;
  margin: 0 auto 3rem;
  border-top: 1px solid rgba(19, 17, 16, 0.14);
  padding-top: 1.2rem;
}
.intro-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.intro-note {
  font-size: 0.78rem;
  color: rgba(19, 17, 16, 0.45);
}

/* 2×2: two big columns, full container width; square images, never cropped */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.4rem;
  max-width: 1280px;
  margin: 0 auto;
}
/* lone last tile keeps the column width instead of stretching */
.grid > .tile:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc(50% - 0.7rem);
  justify-self: center;
}
/* ---------- the piece: one square, three angles ---------- */
.piece {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  background: var(--shot-bg);
  cursor: pointer;
}
.piece:focus-visible { outline: 2px solid var(--ember); outline-offset: 4px; }
.piece .shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* every angle starts hidden — set outside any hover query, or touch
     devices would stack them all and show the last one */
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
/* the first angle carries is-on in the markup, so the square is correct
   even if the script never runs */
.piece .shot.is-on { opacity: 1; transform: scale(1); }

.ticks {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.tick {
  width: 12px;
  height: 2px;
  background: rgba(19, 17, 16, 0.18);
  transition: background 0.3s ease;
}
.tick.is-on { background: var(--ember); }
.ticks-inset {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
}
/* :not(.is-on) so this can't outrank the active tick's ember */
.ticks-inset .tick:not(.is-on) { background: rgba(19, 17, 16, 0.22); }

@media (prefers-reduced-motion: reduce) {
  .piece .shot { transition: opacity 0.2s ease; transform: none; }
  .piece .shot.is-on { transform: none; }
}
.tile figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-top: 0.7rem;
  letter-spacing: -0.01em;
}

/* ---------- subpages (products, blog) ---------- */
.subpage .paper-nav { margin: 0; } /* no .paper padding to counteract here */
.subpage {
  background: #F4EFE6;
  color: var(--char);
  min-height: 100vh;
  min-height: 100svh;
}
.subpage-main { padding: 0 2rem 14vh; }
.page-head {
  max-width: 1280px;
  margin: 9vh auto 6vh;
}
.page-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.2rem;
}
.page-title {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(3rem, 10.5vw, 11rem);
}
/* long titles (Collections, Hand-painted…) fit the line */
.page-title--long {
  font-size: clamp(2.2rem, 6.8vw, 7.5rem);
  line-height: 0.85;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  background: var(--fill-dark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.page-title .dot {
  background: var(--fill-ember);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* one square per piece, sides alternating down the page */
.product {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(19, 17, 16, 0.14);
  padding: 3.4rem 0 4.2rem;
  display: grid;
  grid-template-columns: 1fr minmax(0, 560px);
  gap: 3rem;
  align-items: center;
}
.product:nth-of-type(even) { grid-template-columns: minmax(0, 560px) 1fr; }
.product:nth-of-type(even) .product-text { order: 2; }
.product:nth-of-type(even) .piece-lg { order: 1; }

.p-index {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ember);
  margin-bottom: 0.7rem;
}
.p-name {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.p-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(19, 17, 16, 0.82);
  max-width: 24em;
}

.blog-empty {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(19, 17, 16, 0.14);
  padding: 4rem 0 6rem;
}
.blog-empty h2 {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}
.blog-empty p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(19, 17, 16, 0.55);
  max-width: 34em;
}
.blog-empty a,
.card p a:not(.btn) {
  color: var(--char);
  text-decoration-color: var(--ember);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.blog-empty a:hover,
.card p a:not(.btn):hover { color: var(--ember); }

/* ---------- commerce ---------- */
.nav-side { display: flex; gap: 1.75rem; align-items: baseline; }
.cart-n { color: var(--ember); margin-left: 0.3em; font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  background: var(--char);
  color: var(--paper);
  border: 0;
  border-radius: 2px;
  padding: 0.95rem 1.6rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.15s ease;
}
.btn:hover { background: var(--ember); color: var(--paper); transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }
.btn-ghost { background: transparent; color: var(--char); border: 1px solid rgba(19, 17, 16, 0.3); }
.btn-ghost:hover { border-color: var(--ember); color: var(--ember); }

.qty {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(19, 17, 16, 0.28);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
}
.qty button {
  width: 2.5rem;
  border: 0;
  background: none;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  color: var(--char);
}
.qty button:focus-visible { outline: 2px solid var(--ember); outline-offset: -2px; }
.qty input {
  width: 2.6rem;
  text-align: center;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 600;
  color: var(--char);
}
.qty input:focus-visible { outline: 2px solid var(--ember); outline-offset: -2px; }

.buy { margin-top: 1.8rem; }
.price-now {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}
.tier-note {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(19, 17, 16, 0.5);
}
.buy-row { display: flex; gap: 0.9rem; margin-top: 1.1rem; align-items: stretch; flex-wrap: wrap; }

/* trade cards (B2B / custom) */
.trade {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(19, 17, 16, 0.14);
  padding: 3.4rem 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.card {
  border: 1px solid rgba(19, 17, 16, 0.14);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  padding: 2rem;
}
.card h3 {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.card > p {
  margin: 0.7rem 0 1.4rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(19, 17, 16, 0.55);
}

.field { display: block; margin-bottom: 1rem; }
.field span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(19, 17, 16, 0.5);
  margin-bottom: 0.4rem;
}
.field input, .field textarea {
  width: 100%;
  border: 1px solid rgba(19, 17, 16, 0.28);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.55);
  padding: 0.7rem 0.8rem;
  font: inherit;
  font-size: 0.9rem;
  color: var(--char);
}
.field input:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 1px;
}
.field textarea { min-height: 5.5rem; resize: vertical; }
.sent-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--ember);
  font-weight: 500;
}
.sold-out {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(19, 17, 16, 0.45);
}
.btn[disabled] { opacity: 0.55; cursor: default; }

/* cart page */
.cart-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  border-top: 1px solid rgba(19, 17, 16, 0.12);
  padding: 2rem 0;
}
/* a piece is the size of a real product shot — the full square, never
   cropped: two lines fill a desktop screen, the third needs a scroll */
.cart-line img {
  height: min(42vh, 560px);
  width: auto;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 2px;
  background: var(--shot-bg);
}
.cart-line-info { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }
.cart-line-row { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.cart-line-name {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: 1.05rem;
  text-transform: uppercase;
}
.cart-line-price { font-size: 0.78rem; color: rgba(19, 17, 16, 0.5); margin-top: 0.2rem; }
.cart-line-total { font-weight: 600; min-width: 5.5rem; text-align: right; }
.cart-remove {
  border: 0;
  background: none;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: rgba(19, 17, 16, 0.4);
  padding: 0.4rem;
}
.cart-remove:hover { color: var(--char); }

.cart-summary {
  border-top: 1px solid rgba(19, 17, 16, 0.14);
  margin-top: 0.4rem;
  padding-top: 1.4rem;
  max-width: 460px;
  margin-left: auto;
}
.sum-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}
.sum-row.savings { color: var(--ember); }
.sum-row.total {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.tier-nudge {
  font-size: 0.78rem;
  color: rgba(19, 17, 16, 0.55);
  margin: 0.6rem 0 1rem;
}
.ref-row { display: flex; gap: 0.7rem; margin: 1rem 0 1.4rem; }
.ref-row input {
  flex: 1;
  border: 1px solid rgba(19, 17, 16, 0.28);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.55);
  padding: 0.6rem 0.8rem;
  font: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.checkout-note { font-size: 0.72rem; color: rgba(19, 17, 16, 0.45); margin-top: 0.8rem; line-height: 1.5; }

/* affiliate result */
.aff-result { margin-top: 2rem; }
.aff-code {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: 0.02em;
  color: var(--char);
}
.aff-link { font-size: 0.85rem; word-break: break-all; color: rgba(19, 17, 16, 0.6); margin: 0.6rem 0 1.2rem; }
.aff-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* toast + sheet */
.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translate(-50%, 12px);
  background: var(--char);
  color: var(--paper);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 0.8rem 1.3rem;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 40;
  max-width: min(90vw, 480px);
  text-align: center;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

.sheet-wrap {
  position: fixed;
  inset: 0;
  background: rgba(11, 9, 8, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1.5rem;
}
.sheet {
  background: var(--paper);
  color: var(--char);
  border-radius: 2px;
  max-width: 460px;
  width: 100%;
  padding: 2rem;
  max-height: 85vh;
  overflow: auto;
}
.sheet h3 {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.sheet-body { font-size: 0.87rem; line-height: 1.6; color: rgba(19, 17, 16, 0.7); margin-bottom: 1.4rem; }
.sheet-body ul { margin: 0.5rem 0 0.9rem 1.1rem; }
.sheet-body code { font-size: 0.8em; background: rgba(19, 17, 16, 0.07); padding: 0.1em 0.35em; border-radius: 2px; }

/* ---------- burger + menu sheet (phones) ---------- */
.nav-burger {
  display: none;
  background: none;
  border: 0;
  padding: 0.45rem 0.2rem;
  cursor: pointer;
  color: var(--char);
}
.nav .nav-burger { color: var(--paper); }
.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
}
.nav-burger:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }

.menu-sheet {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(11, 9, 8, 0.97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem 3rem;
}
.menu-sheet[hidden] { display: none; }
.menu-close {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--paper);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
}
.menu-links a {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(1.7rem, 8vw, 2.4rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  padding: 0.5rem 0;
}
.menu-links a:hover, .menu-links a:focus-visible { color: var(--ember); }
.menu-links .cart-n { color: var(--ember); }

/* ---------- footer ---------- */
.site-foot {
  background: linear-gradient(180deg, #121009 0%, var(--ink) 55%);
  color: var(--smoke);
  padding: 5rem 2rem 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.foot-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem 2rem;
}
.foot-mark {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  display: inline-block;
}
.foot-mark .tld { color: var(--ember); font-size: 0.6em; font-stretch: 100%; text-transform: lowercase; }
.foot-tag {
  margin-top: 0.7rem;
  font-size: 0.88rem;
  color: rgba(250, 248, 244, 0.62);
  max-width: 24em;
}
.foot-terms {
  margin-top: 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(250, 248, 244, 0.38);
}
.foot-head {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.45);
  margin-bottom: 1rem;
}
.foot-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.72);
  text-decoration: none;
  padding: 0.32rem 0;
  transition: color 0.2s ease;
}
.foot-col a:hover, .foot-col a:focus-visible { color: var(--paper); }
.foot-base {
  max-width: 1280px;
  margin: 3.5rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(250, 248, 244, 0.12);
  font-size: 0.72rem;
  color: rgba(250, 248, 244, 0.35);
}

/* the sign-off: the hero's wordmark again, silver on ash, bleeding off
   the bottom edge of the page */
.foot-giant {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: 18.5vw;
  line-height: 0.74;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  margin: 3rem -2rem -0.1em;
  background: var(--fill-light);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  user-select: none;
}
.foot-giant .g-tld {
  font-size: 0.16em;
  font-stretch: 100%;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  background: var(--fill-ember);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ---------- loading badge ---------- */
.load-badge {
  position: fixed;
  left: 2rem; bottom: 4.4rem;
  z-index: 8;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  transition: opacity 0.5s ease;
}
.load-badge.done { opacity: 0; }

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  .nav, .hero-meta { padding-left: 1.1rem; padding-right: 1.1rem; }
  .hero-meta { left: 1.1rem; right: 1.1rem; }
  .display-title { font-size: clamp(2.5rem, 16vw, 22rem); }
  /* the composed portrait frame keeps the lit table at the bottom, so the
     meta row reads dark there, same as desktop */
  .meta-left, .scroll-word {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    white-space: nowrap;
  }
  .progress-track { width: 72px; }
  .nav-wordmark { font-size: 0.95rem; }
  .nav-link { font-size: 0.58rem; letter-spacing: 0.1em; }
  .nav-side { gap: 0.9rem; }
  /* phones: just the burger and the cart around the centred mark */
  .nav-burger { display: block; }
  .nav-side .nav-link:not(.nav-keep-m) { display: none; }
  .paper { padding-left: 1.1rem; padding-right: 1.1rem; }
  .paper-nav { margin: 0 -1.1rem; padding: 0.9rem 1.1rem; }
  .title-well { height: 10vh; }
  .grid { gap: 1.4rem 1rem; }
  .paper-intro { flex-direction: column; gap: 0.4rem; }
  .subpage-main { padding-left: 1.1rem; padding-right: 1.1rem; }
  .product,
  .product:nth-of-type(even) { grid-template-columns: 1fr; gap: 1.4rem; }
  .product:nth-of-type(even) .product-text { order: 0; }
  .product:nth-of-type(even) .piece-lg { order: 0; }
  .ticks-inset { left: 0.7rem; bottom: 0.7rem; }
  .trade { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 64px 1fr auto; grid-template-rows: auto auto; }
  .cart-line img { width: 64px; height: 64px; grid-row: 1 / 3; }
  .cart-line .qty { grid-column: 2; grid-row: 2; justify-self: start; }
  .cart-line-total { grid-column: 3; grid-row: 2; align-self: center; }
  .cart-remove { grid-column: 3; grid-row: 1; justify-self: end; }
  .cart-summary { max-width: none; }
  .site-foot { padding: 3.5rem 1.1rem 0; }
  .foot-giant { margin: 2rem -1.1rem -0.1em; }
  .foot-inner { grid-template-columns: 1fr 1fr; gap: 2.2rem 1.5rem; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-base { margin-top: 2.5rem; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .stage { height: 100vh; }
  .fall-title { display: none; }
  .nav-wordmark { opacity: 1; }
  .title-well { height: 0; }
}

/* ---------- round-20: IA restructure ---------- */
/* tiles with buy controls (all-products page) */
.tile-buy {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.8rem;
  align-items: stretch;
}
.tile-buy .btn { flex: 1; padding: 0.8rem 1rem; font-size: 0.85rem; }
.tile-name { color: inherit; text-decoration: none; }
.tile-name:hover { color: var(--ember); }
.tile-price {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-stretch: 100%;
  font-size: 0.85rem;
  color: rgba(19, 17, 16, 0.55);
  margin-left: 0.8rem;
  margin-right: auto;
  padding-right: 0.8rem;
}
.tile figcaption { justify-content: flex-start; }
.tile figcaption .ticks { margin-left: auto; }

/* skeleton: the grid holds space while Shopify answers, so the B2B card
   never flashes at the top */
.grid:empty, [data-collection]:empty, [data-collections]:empty, .pp:empty { min-height: 72vh; }
.trade-solo {
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 0.5s ease, transform 0.6s ease;
}
.trade-solo.is-in { opacity: 1; transform: none; }
.trade-solo { grid-template-columns: minmax(0, 720px); justify-content: center; }

/* nicer steppers — the "- 1 +" */
.qty {
  border-radius: 3px;
  border-color: rgba(19, 17, 16, 0.35);
}
.qty button {
  width: 2.7rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(19, 17, 16, 0.65);
}
.qty button:hover { color: var(--char); background: rgba(19, 17, 16, 0.05); }
.qty input {
  width: 2.4rem;
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: 1.05rem;
}
.cart-line-total {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: 1.05rem;
}

/* quiet links inside display headings */
.quiet-link { color: inherit; text-decoration: none; }
.quiet-link:hover { color: var(--ember); }
.back-row { max-width: 1280px; margin: 3rem auto 0; }
.back-row a { color: var(--char); text-decoration-color: var(--ember); text-underline-offset: 3px; }

/* hand-made badge */
.badge-handmade {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  border: 1px solid rgba(201, 138, 75, 0.45);
  border-radius: 2px;
  padding: 0.35rem 0.6rem;
  margin: 0.5rem 0 0.2rem;
}

/* individual product page */
.pp {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3rem;
  max-width: 1280px;
  margin: 4rem auto 0;
  align-items: start;
}
.pp-main {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  background: var(--shot-bg);
}
.pp-thumbs { display: flex; gap: 0.7rem; margin-top: 0.7rem; }
.pp-thumb {
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0;
  background: none;
  cursor: pointer;
  width: 84px;
  overflow: hidden;
}
.pp-thumb img { display: block; width: 100%; height: auto; }
.pp-thumb.is-on { border-color: var(--ember); }
.pp-name {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.pp-blurb { margin: 1rem 0 1.4rem; font-size: 0.95rem; line-height: 1.65; color: rgba(19, 17, 16, 0.65); max-width: 30em; }
.pp-info .buy-row { margin-top: 1.2rem; }
.pp-ship { margin-top: 1.2rem; font-size: 0.78rem; letter-spacing: 0.04em; color: rgba(19, 17, 16, 0.5); }
.pp-info .page-eyebrow { margin-bottom: 0.6rem; display: inline-block; }

/* blog cards */
.blog-list { max-width: 900px; margin: 0 auto; display: grid; gap: 1.4rem; }
.blog-card {
  display: block;
  border: 1px solid rgba(19, 17, 16, 0.14);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  padding: 2rem;
  text-decoration: none;
  color: var(--char);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.blog-card:hover { border-color: rgba(201, 138, 75, 0.6); transform: translateY(-2px); }
.blog-card h2 {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0.4rem 0 0.6rem;
}
.blog-date { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(19, 17, 16, 0.45); }
.blog-excerpt { font-size: 0.9rem; line-height: 1.6; color: rgba(19, 17, 16, 0.6); }
.blog-more { display: inline-block; margin-top: 1rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ember); }

.post { max-width: 760px; margin: 0 auto; }
.post-title {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.post-body { margin-top: 2rem; }
.post-body p { font-size: 1rem; line-height: 1.75; color: rgba(19, 17, 16, 0.75); margin-bottom: 1.3rem; }
.post-body a { color: var(--char); text-decoration-color: var(--ember); text-underline-offset: 3px; }
.post-body a:hover { color: var(--ember); }

/* shipping page */
.ship-wrap { max-width: 980px; margin: 0 auto; }
.ship-line { width: 100%; height: auto; display: block; margin: 1rem 0 2.5rem; }
.ship-notes p { font-size: 0.95rem; line-height: 1.7; color: rgba(19, 17, 16, 0.65); max-width: 44em; margin-bottom: 1rem; }
.ship-notes a { color: var(--char); text-decoration-color: var(--ember); text-underline-offset: 3px; }

@media (max-width: 720px) {
  .pp { grid-template-columns: 1fr; gap: 1.6rem; margin-top: 2rem; }
  .tile-buy { flex-direction: column; }
  .tile-buy .qty { justify-content: center; }
  .blog-card { padding: 1.4rem; }
}

/* ---------- SEO pass 2026-08-25 ---------- */
/* the home h1 sits in the intro row and keeps the note's look */
h1.intro-note { font-size: 0.78rem; font-weight: 400; margin: 0; }
/* prose blocks (B2B, 404) */
.prose { max-width: 1280px; margin: 0 auto 3rem; }
.prose p { font-size: 1rem; line-height: 1.7; color: rgba(19, 17, 16, 0.72); max-width: 44em; margin-bottom: 1rem; }
.prose a { color: var(--char); text-decoration-color: var(--ember); text-underline-offset: 3px; }
.prose a:hover { color: var(--ember); }
.prose h2 { font-family: var(--display); font-weight: 900; font-stretch: 125%; font-size: 1.3rem; text-transform: uppercase; letter-spacing: -0.01em; margin: 2.4rem 0 0.8rem; }
.prose ol { max-width: 44em; padding-left: 1.4em; margin-bottom: 1rem; }
.prose li { font-size: 1rem; line-height: 1.7; color: rgba(19, 17, 16, 0.72); margin-bottom: 0.5rem; }

/* ---------- owner list 2026-08-26 ---------- */
/* discount marquee: a dark strip above everything, scrolls away with the page */
.marquee {
  position: relative;
  z-index: 6;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  height: 2.1rem;
  line-height: 2.1rem;
  overflow: hidden;
  white-space: nowrap;
}
/* the track is taken out of flow and the strip is paint-contained, so its
   width can never widen the page (iOS lets transformed children of an
   overflow:hidden box extend the document otherwise) */
.marquee { contain: paint; overflow: clip; }
.marquee-track { position: absolute; left: 0; top: 0; display: inline-flex; width: max-content; animation: marquee 46s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { display: inline-block; padding: 0 1.8rem; }
.marquee em { font-style: normal; color: var(--ember); }
.marquee a { color: inherit; text-decoration: none; }
.marquee a:hover { color: var(--ember); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* price with GST sitting small at its foot, like a subscript */
.price-now { display: flex; align-items: baseline; gap: 0.6em; flex-wrap: wrap; }
.price-gst {
  font-family: 'Archivo', sans-serif;
  font-stretch: 100%;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(19, 17, 16, 0.5);
  vertical-align: baseline;
  line-height: 1;
}
.pp-ship { margin-top: 1.1rem; }

/* blog card arrow and cart remove take the accent */
.blog-more { color: var(--ember); }
.cart-line-name { font-size: clamp(1.5rem, 3vw, 2.4rem); }
.cart-line-total { font-size: 1.15rem; }
.cart-remove {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: rgba(19, 17, 16, 0.5);
  text-decoration: underline;
  text-decoration-color: var(--ember);
  text-underline-offset: 4px;
}
.cart-remove:hover { color: var(--ember); }
@media (max-width: 720px) {
  .cart-line { grid-template-columns: 1fr; gap: 1rem; padding: 1.4rem 0; }
  .cart-line img { height: auto; width: 100%; }
  .marquee { font-size: 0.6rem; letter-spacing: 0.16em; }
}

/* the eyebrow keeps its ember even when it is a link */
.page-eyebrow.quiet-link { color: var(--ember); }
.page-eyebrow.quiet-link:hover { color: var(--char); }

.checkout-note a { color: var(--char); text-decoration-color: var(--ember); text-underline-offset: 3px; }
.checkout-note a:hover { color: var(--ember); }

/* product page description reads as the product's statement */
.pp-blurb { font-weight: 600; color: rgba(19, 17, 16, 0.88); }

/* ---------- nothing may ever be wider than the screen ---------- */
/* phones: one piece per row; a tile can never be wider than its column */
.grid > .tile, .tile .piece, .tile figcaption { min-width: 0; max-width: 100%; }
.tile figcaption { flex-wrap: wrap; row-gap: 0.4rem; }
@media (max-width: 720px) {
  .grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .grid > .tile:last-child:nth-child(odd) { grid-column: auto; width: auto; justify-self: stretch; }
}
/* the giant footer wordmark is clipped by the footer, whatever font is showing */
.site-foot { overflow: hidden; }

/* trade cards and their buttons shrink with the screen (the email button was 390px wide) */
.trade, .trade > .card, .card form, .card .field { min-width: 0; max-width: 100%; }
.card .btn { max-width: 100%; white-space: normal; overflow-wrap: anywhere; }

/* portrait phones get the portrait crop as the stage background */
@media (max-aspect-ratio: 100/115) { .viewport { background-image: url('/assets/frames-p/frame-001.webp'); } }
/* the scroll hint and the loading badge are gone */
.hero-meta, .load-badge { display: none !important; }

/* headings can never be wider than the screen — long single words
   ("Unconventional") shrink on phones, and break rather than overflow */
.page-title, .p-name, .product-text, .paper-intro, .page-head { min-width: 0; max-width: 100%; }
.page-title, .p-name { overflow-wrap: anywhere; }
@media (max-width: 720px) {
  /* the display face runs ~0.75em per capital: these keep "Affiliates." and
     "Unconventional." on one line down to 320px without breaking the word */
  .page-title { font-size: clamp(2rem, 10vw, 6rem); }
  .page-title--long { font-size: clamp(1.5rem, 7vw, 5rem); }
  .p-name { font-size: clamp(1.4rem, 7vw, 2.4rem); }
}

/* "View all" under the home grid */
.grid-more { max-width: 1280px; margin: 3rem auto 0; text-align: center; }

/* share row on the product page — quiet text links, no icons, no SDKs */
.pp-share {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(19, 17, 16, 0.1);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: baseline;
}
.pp-share-label { color: rgba(19, 17, 16, 0.4); }
.pp-share a,
.pp-share button {
  color: rgba(19, 17, 16, 0.65);
  text-decoration: none;
  font: inherit;
  letter-spacing: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.pp-share a:hover,
.pp-share button:hover { color: var(--ember); }

/* bundles — homepage strip of set cards */
.paper-intro-bundles { margin-top: 4.5rem; }
.bundle-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.bundle-card { text-decoration: none; color: inherit; display: block; }
.bundle-card img { width: 100%; height: auto; display: block; border-radius: 2px; background: #F4EFE6; }
.bundle-name { margin: 0.8rem 0 0.15rem; font-weight: 700; letter-spacing: 0.02em; }
.bundle-items { margin: 0; font-size: 0.82rem; color: rgba(19, 17, 16, 0.55); }
.bundle-price { margin: 0.35rem 0 0; font-weight: 600; }
.bundle-price s { color: rgba(19, 17, 16, 0.4); font-weight: 400; margin-left: 0.4rem; }
.bundle-card:hover .bundle-name { color: var(--ember); }
@media (max-width: 720px) { .bundle-strip { grid-template-columns: 1fr; } }

/* cart upsells */
.cart-more { max-width: 1100px; margin: 3rem auto 0; padding: 0 1.25rem; }
.upsell-head { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(19, 17, 16, 0.55); margin: 2.2rem 0 1rem; }
.upsell-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1.2rem; }
.upsell-card { text-decoration: none; color: inherit; display: block; }
.upsell-card img { width: 100%; height: auto; display: block; border-radius: 2px; background: #F4EFE6; }
.upsell-name { margin: 0.55rem 0 0.1rem; font-weight: 700; font-size: 0.9rem; }
.upsell-note { margin: 0; font-size: 0.75rem; color: rgba(19, 17, 16, 0.5); }
.upsell-price { margin: 0.25rem 0 0; font-size: 0.85rem; font-weight: 600; }
.upsell-card:hover .upsell-name { color: var(--ember); }

/* cart: items + upsells on the left, the summary pinned on the right */
.cart-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 3.5rem;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.cart-cols .cart-summary {
  position: sticky;
  top: 84px;
  max-width: none;
  margin-left: 0;
  margin-top: 0;
  border: 1px solid rgba(19, 17, 16, 0.14);
  border-radius: 2px;
  padding: 1.6rem 1.6rem 1.8rem;
  background: var(--paper, #FAF8F4);
}
.cart-cols .cart-line img { height: auto; width: min(280px, 30vw); }
.cart-cols .cart-line { gap: 2rem; padding: 1.6rem 0; }
.cart-cols .cart-line:first-child { border-top: 0; }
.cart-more { margin: 2.5rem 0 0; padding: 0; max-width: none; }
.upsell-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin: 2.4rem 0 1.1rem; }
.upsell-head:first-child { margin-top: 0; }
.upsell-all { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--ember); text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.upsell-all:hover { text-decoration: underline; }
.upsell-row { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.4rem; }
.upsell-name { font-size: 1rem; }
.upsell-note { font-size: 0.8rem; }
.upsell-price { font-size: 0.95rem; }
@media (max-width: 960px) {
  .cart-cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .cart-cols .cart-summary { position: static; }
  .cart-cols .cart-line img { width: 100%; }
  /* phone order: pieces, then checkout, then suggestions */
  .cart-cols .cart-left { display: contents; }
  .cart-cols #cartLines { order: 1; }
  .cart-cols .cart-summary { order: 2; }
  .cart-cols #cartMore { order: 3; margin-top: 1rem; }
}

/* ============ the reel — campaign creatives drifting after dark ============ */
.reel {
  background: #141210;
  padding: 3.2rem 0;
  overflow: hidden;
  margin: 4.5rem 0 5.5rem;
}
.reel-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: reelDrift 110s linear infinite;
  will-change: transform;
}
.reel:hover .reel-track { animation-play-state: paused; }
.reel-card {
  position: relative;
  display: block;
  background: #1B1815;
  height: min(46vh, 460px);
  aspect-ratio: 1000 / 1240;
  border-radius: 2px;
  overflow: hidden;
  flex: 0 0 auto;
}
.reel-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel-art { opacity: 0; transition: opacity 0.45s ease; }
.reel-card:hover .reel-art, .reel-card:focus-visible .reel-art { opacity: 1; }
.reel-card:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }
@keyframes reelDrift { to { transform: translateX(-50%); } }
@media (max-width: 720px) { .reel-card { height: 320px; } .reel { padding: 2rem 0; margin: 3rem 0 3.5rem; } }
@media (prefers-reduced-motion: reduce) {
  .reel-track { animation: none; }
  .reel { overflow-x: auto; }
}
