/* ═══════════════════════════════════════════════════════════════
   Canna Coffee Co. — site styles
   Tokens carried over verbatim from the Claude Design source.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Core palette */
  --parch:   #F1E3CE;
  --cream:   #F6EBD9;
  --cream2:  #F8EFDD;
  --sand:    #E5D3BB;
  --sand2:   #EBDCC1;
  --espresso:#22130A;
  --espresso-deep:#1C0F07;
  --roast:   #463326;
  --copper:  #B3783B;
  /* Brand palette pass (patch 9): the old sage green and gold yellow were
     off-brand. Accents now stay in the can family — the Canna Tini brown
     and the Canna Joe black. --sage keeps its NAME (it codes the microdose
     everywhere) but is now a roast taupe, not a green. */
  --sage:    #7A6248;
  --taupe:   #988876;

  /* Derived text tones */
  --ink:       #22130A;
  --ink-soft:  #3A271A;
  --body:      #5C4B3B;
  --body-soft: #6B5949;
  --muted:     #7C6A56;
  --muted-2:   #8A7864;
  --muted-3:   #9A8771;

  /* On dark — warm copper family, not yellow (patch 9) */
  --gold:       #B3783B;
  --gold-light: #C68B52;
  --on-dark:      #F1E3CE;
  --on-dark-soft: #D9C7A9;
  --on-dark-mute: #C7B393;
  --on-dark-dim:  #A89274;

  /* Rules & shadows */
  --hair:       rgba(34,19,10,.12);
  --hair-soft:  rgba(34,19,10,.08);
  --hair-strong:rgba(34,19,10,.25);
  --hair-light: rgba(246,235,217,.14);

  /* Type */
  --serif: Fraunces, Georgia, "Times New Roman", serif;
  --sans:  Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --wrap: 1440px;
  --gutter: 40px;
  --radius:   22px;
  --radius-md:18px;
  --radius-sm:11px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
/* An explicit `display` in a component rule otherwise beats the hidden attribute. */
[hidden] { display: none !important; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--parch);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
/* Alt text inherits colour and renders as body copy in the layout while an
   image is still decoding — which reads as a broken page on a slow
   connection. Screen readers still announce alt normally. */
img { color: transparent; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--copper); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 200;
  transform: translateY(-160%);
  padding: 12px 20px; border-radius: var(--radius-sm);
  background: var(--espresso); color: var(--cream);
  font-size: 13px; font-weight: 700; letter-spacing: .1em;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* Paper grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none; mix-blend-mode: multiply; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}
.shell { position: relative; z-index: 2; }

/* ── Type scale ────────────────────────────────────────── */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.0;
  letter-spacing: -.02em;
}
.display em { font-style: italic; color: var(--roast); }
.display--xl { font-size: clamp(52px, 6.4vw, 104px); line-height: .97; }
.display--lg { font-size: clamp(40px, 5vw, 76px);  line-height: .98; }
.display--sm { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.02; }
.display--xs { font-size: 24px; letter-spacing: 0; }
.display--quote {
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.18; letter-spacing: -.01em;
  margin: 0 0 28px;
}
.display--quote em { color: var(--gold-light); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: .26em;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--muted-2);
}
.eyebrow--copper { color: var(--copper); }
.eyebrow--sage   { color: var(--sage); }
.eyebrow--gold   { color: var(--gold); }
.eyebrow--muted  { color: var(--on-dark-dim); }
.eyebrow--sm     { font-size: 10.5px; letter-spacing: .2em; margin-bottom: 10px; }

.lede {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  color: var(--body);
  max-width: 540px;
  margin: 0 0 32px;
}
.lede--sm     { font-size: 17px; margin-bottom: 26px; }
.lede--center { margin-left: auto; margin-right: auto; max-width: 600px; }
.lede--onDark { color: var(--on-dark-mute); margin: 0 auto 30px; max-width: 600px; }

.quote { font-family: var(--serif); font-style: italic; font-size: 20px; margin: 6px 0 0; }
.quote--copper { color: #A06A33; }
.quote--gold   { color: var(--gold-light); }

.bigquote { font-family: var(--serif); font-size: 80px; line-height: .6; color: var(--copper); margin: 0 0 10px; }
.meta-note { font-size: 12px; letter-spacing: .16em; color: var(--muted-2); font-weight: 600; text-transform: uppercase; margin-top: 30px; }
.fineprint { font-size: 12px; color: var(--muted-3); line-height: 1.6; margin-top: 20px; }
.muted { color: var(--muted-3); }
.center { text-align: center; }
.gap-top { margin-top: 40px; }

/* ── Layout ────────────────────────────────────────────── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.wrap--tight  { max-width: 1080px; }
.wrap--narrow { max-width: 980px; }

.section { padding-block: 72px; }
.section--top   { padding-block: 54px 30px; }
.section--flush { padding-top: 0; }

.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 40px;
}
.section__head--center { display: block; text-align: center; max-width: 820px; margin-inline: auto; margin-bottom: 46px; }
.section__aside { font-size: 16px; line-height: 1.6; color: var(--body-soft); max-width: 340px; }

.band { position: relative; }
/* Anchored scrolls (the finale's mushroom link) must land below the 77px
   sticky header, not flush under it. */
#mushroom-mix { scroll-margin-top: 84px; }
.band--espresso { background: var(--espresso); color: var(--on-dark); }
.band--espresso .display em { color: var(--gold-light); }
.band--sand { background: var(--sand2); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split--quality { grid-template-columns: 1fr 1.08fr; gap: 48px; }
.split--type    { grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }

.stack { display: flex; flex-direction: column; gap: 18px; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  appearance: none; border: none; cursor: pointer;
  padding: 17px 30px; border-radius: 12px;
  font-family: var(--sans); font-weight: 700;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .15s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--sm    { padding: 12px 22px; font-size: 11.5px; letter-spacing: .13em; border-radius: 10px; }
.btn--block { width: 100%; padding: 17px; font-size: 13px; }

.btn--dark   { background: var(--espresso); color: var(--cream); }
.btn--dark:hover  { background: var(--copper); }
.btn--cream  { background: var(--cream); color: var(--espresso); }
.btn--cream:hover { background: #fff; }
.btn--copper { background: var(--copper); color: var(--espresso); font-weight: 800; }
.btn--copper:hover{ background: var(--gold-light); }
.btn--outline{ background: transparent; border: 1px solid rgba(34,19,10,.28); color: var(--ink); }
.btn--outline:hover { border-color: var(--copper); color: var(--copper); }
.btn--ghost  { background: transparent; border: 1px solid rgba(34,19,10,.28); color: var(--ink); }
.btn--ghost:hover { background: rgba(34,19,10,.05); }
.btn--ghost-light { background: transparent; border: 1px solid rgba(246,235,217,.3); color: var(--on-dark); margin-top: 30px; }
.btn--ghost-light:hover { background: rgba(246,235,217,.1); }
.btn--icon {
  flex: none; width: 48px; height: 48px; padding: 0;
  border-radius: var(--radius-sm);
  background: transparent; border: 1px solid var(--hair-strong);
  color: var(--ink); font-size: 22px; letter-spacing: 0;
}
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.link-btn {
  background: none; border: none; padding: 0;
  font-size: 12px; color: var(--muted-3);
  text-decoration: underline; text-underline-offset: 3px;
}
.link-btn:hover { color: var(--copper); }
.link-arrow {
  display: inline-block; margin-top: 14px;
  color: var(--copper); font-weight: 700; font-size: 12.5px; letter-spacing: .1em;
  text-decoration: underline; text-underline-offset: 4px;
}

/* ── Pills, doses, chips ───────────────────────────────── */
.pill {
  display: inline-flex; align-items: center;
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  margin: 0 6px 7px 0;
}
.pill--dark  { background: var(--espresso); color: var(--cream); }
.pill--sage  { background: transparent; border: 1px solid var(--sage); color: #66503A; }
.pill--cream { background: var(--cream); color: var(--espresso); }
.pill--sage-light  { background: transparent; border: 1px solid #A98C68; color: #D9C7A9; }
.pill--copper      { background: var(--copper); background: color-mix(in srgb, var(--copper) 68%, var(--espresso)); color: var(--cream); letter-spacing: .14em; }
.pill--sage-solid  { background: var(--sage); color: var(--cream); letter-spacing: .14em; }

.dose {
  display: inline-flex; align-items: center;
  padding: 7px 11px; border-radius: 7px;
  font-weight: 700; font-size: 11.5px; letter-spacing: .04em;
}
.dose--thc { background: var(--espresso); color: var(--cream); }
.dose--cbd { background: transparent; border: 1px solid var(--hair-strong); color: var(--ink); }

.chip {
  padding: 9px 15px; border-radius: 999px;
  border: 1px solid rgba(34,19,10,.2); background: transparent;
  color: var(--ink-soft); font-size: 12px; font-weight: 600;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.chip:hover { border-color: var(--copper); }
.chip[aria-pressed="true"] { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.chip[data-filter="formula"][data-val="infused"][aria-pressed="true"] { background: var(--copper); background: color-mix(in srgb, var(--copper) 68%, var(--espresso)); border-color: var(--copper); }
.chip[data-filter="formula"][data-val="cbd"][aria-pressed="true"]     { background: var(--sage);   border-color: var(--sage); }

/* ── Utility bar ───────────────────────────────────────── */
.utility { background: var(--espresso); color: #E9D9BE; }
.utility__inner {
  max-width: var(--wrap); margin: 0 auto;
  padding: 9px var(--gutter);
  display: flex; align-items: center; justify-content: center; gap: 30px;
  font-size: 10.5px; letter-spacing: .24em; font-weight: 600; text-transform: uppercase;
}
.utility__inner i { opacity: .4; font-style: normal; }

/* ── Header ────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(243,229,206,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(34,19,10,.1);
}
.header__inner {
  max-width: var(--wrap); margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.header__logo { flex: none; display: flex; align-items: center; }
.header__logo img { height: 38px; width: auto; }
.header__actions { display: flex; align-items: center; gap: 14px; flex: none; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 12.5px; letter-spacing: .13em; font-weight: 600;
  text-transform: uppercase; color: var(--ink-soft);
  padding-bottom: 2px; border-bottom: 1.5px solid transparent;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.nav a:hover { border-color: var(--copper); }
.nav a[aria-current="page"] { border-color: var(--copper); color: var(--copper); }

.icon-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  appearance: none; background: transparent; border: none;
  width: 44px; height: 44px; padding: 0;
  color: var(--ink); border-radius: 10px;
}
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn:hover { color: var(--copper); }
.icon-btn--burger {
  display: none; width: 42px; height: 42px; padding: 0;
  border: 1px solid rgba(34,19,10,.2);
}
.icon-btn__badge {
  position: absolute; top: 2px; right: 2px;
  min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 999px; background: var(--copper); color: var(--cream);
  font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ── Drawers (menu + cart) ─────────────────────────────── */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(34,19,10,.42);
  animation: fade .25s ease both;
}
.menu, .cart {
  position: absolute; top: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column;
  animation: slidein .3s var(--ease) both;
}
.menu { width: 300px; max-width: 84vw; background: var(--cream); padding: 26px; gap: 6px; }
.menu__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.menu__top img { height: 30px; width: auto; }
.menu__nav { display: flex; flex-direction: column; }
.menu__nav a {
  padding: 14px 4px; border-bottom: 1px solid var(--hair-soft);
  font-family: var(--serif); font-size: 22px;
}
.menu__nav a:hover { color: var(--copper); }
.menu__cta { margin-top: 18px; }

.cart { width: 430px; max-width: 92vw; background: var(--parch); }
.cart__top {
  padding: 22px 26px; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--hair);
}
.cart__body { flex: 1; overflow-y: auto; padding: 8px 26px; }
.cart__foot { padding: 20px 26px 24px; border-top: 1px solid rgba(34,19,10,.14); }
.cart__summary {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--body-soft); margin-bottom: 14px;
}
.cart__empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart__empty p { font-family: var(--serif); font-style: italic; font-size: 22px; margin-bottom: 8px; color: var(--ink); }
.cart__empty span { display: block; font-size: 14px; margin-bottom: 22px; }

.line { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(34,19,10,.1); }
.line__art {
  flex: none; width: 72px; height: 96px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.line__art img { height: 88px; width: auto; }
.line__main { flex: 1; min-width: 0; }
.line__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.line__name { font-family: var(--serif); font-size: 18px; line-height: 1; }
.line__badge {
  display: inline-block; margin-top: 6px; padding: 4px 9px; border-radius: 6px;
  color: var(--cream); font-size: 10px; font-weight: 700; letter-spacing: .1em;
}
.line__spec { font-size: 12px; color: var(--body-soft); margin-top: 6px; }
.line__qty { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.line__qty button {
  width: 28px; height: 28px; border-radius: 8px;
  border: 1px solid rgba(34,19,10,.22); background: transparent;
  font-size: 16px; line-height: 1; color: var(--ink);
}
.line__qty button:hover { border-color: var(--copper); color: var(--copper); }
.line__qty span { font-weight: 700; font-size: 14px; min-width: 18px; text-align: center; }
.line__remove { background: none; border: none; padding: 0; color: var(--muted-3); font-size: 13px; }
.line__remove:hover { color: var(--copper); text-decoration: underline; }

.thc-warning {
  margin: 16px 0; padding: 14px 16px; border-radius: 12px;
  background: rgba(179,120,59,.12); border: 1px solid rgba(179,120,59,.34);
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 12px; line-height: 1.5; color: #6B4A26;
}
.thc-warning svg { flex: none; width: 18px; height: 18px; margin-top: 1px; }

/* ── Age gate ──────────────────────────────────────────── */
.gate {
  position: fixed; inset: 0; z-index: 90;
  background: #EBDAC0;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.gate[hidden] { display: none; }
.gate__wash {
  position: absolute; inset: 0; opacity: .16;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(179,120,59,.18), transparent 60%),
    radial-gradient(90% 80% at 0% 100%, rgba(122,98,72,.16), transparent 55%);
}
.gate__leaf { position: absolute; right: -60px; bottom: -40px; width: 520px; max-width: 60vw; opacity: .10; color: var(--roast); }
.gate__card {
  position: relative; width: 100%; max-width: 520px; text-align: center;
  padding: 48px 40px 40px;
  background: var(--cream); border: 1px solid rgba(34,19,10,.14);
  border-radius: var(--radius); box-shadow: 0 40px 90px -50px rgba(34,19,10,.6);
  animation: rise .6s var(--ease) both;
}
.gate__logo { width: 230px; max-width: 72%; margin: 0 auto 6px; height: auto; }
.gate__card .eyebrow { letter-spacing: .34em; margin: 10px 0 22px; }
.gate__title { font-family: var(--serif); font-size: 38px; line-height: 1.05; letter-spacing: -.015em; margin-bottom: 8px; }
.gate__body { font-size: 14px; line-height: 1.6; color: var(--body-soft); max-width: 380px; margin: 0 auto 26px; }
.gate__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.gate__foot {
  margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(34,19,10,.1);
  font-size: 10.5px; letter-spacing: .2em; color: var(--muted-3);
  font-weight: 600; text-transform: uppercase;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero { padding-block: 54px 30px; }
.hero__grid { display: grid; grid-template-columns: 1.04fr 1fr; gap: 40px; align-items: center; }
.hero__art {
  position: relative; display: flex; align-items: flex-end; justify-content: center;
  min-height: 520px;
}
.hero__glow {
  position: absolute; top: 30px; border-radius: 999px;
  width: min(420px, 100%); aspect-ratio: 1;
  background: radial-gradient(circle at 50% 40%, rgba(179,120,59,.20), transparent 62%);
}
.hero__ways { position: absolute; top: 14px; right: 0; text-align: right; display: flex; flex-direction: column; align-items: flex-end; }
.hero__ways .eyebrow { margin-bottom: 8px; }
.hero__ways .pill { margin-right: 0; }
.hero__can { position: relative; width: auto; }
.hero__can--back  { height: 430px; z-index: 2; margin-right: -32px; filter: drop-shadow(0 26px 30px rgba(34,19,10,.32)); }
.hero__can--front { height: 480px; z-index: 3; filter: drop-shadow(0 30px 34px rgba(34,19,10,.34)); animation-delay: .6s; }

/* ── Product card ──────────────────────────────────────── */
.card-grid { display: grid; gap: 24px; }
.card-grid--2    { grid-template-columns: repeat(2, 1fr); }
.card-grid--3    { grid-template-columns: repeat(3, 1fr); }
.card-grid--auto { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }

.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--cream2); border: 1px solid var(--hair);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(34,19,10,.05);
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 34px -20px rgba(34,19,10,.45); }
.card__art {
  position: relative; padding: 26px 22px 18px;
  background: var(--card-tint, var(--sand));
  border-bottom: 1px solid var(--hair-soft);
  display: flex; align-items: flex-end; justify-content: center;
  min-height: 268px;
}
.card__art img { height: 236px; width: auto; filter: drop-shadow(0 14px 22px rgba(34,19,10,.28)); }
.card__badge {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--card-accent, var(--copper)); color: var(--cream);
  /* Deepen the accent under 10.5px cream text to reach AA (plain accent
     copper on cream is ~3.1:1); the plain accent above is the fallback. */
  background: color-mix(in srgb, var(--card-accent, var(--copper)) 68%, var(--espresso));
  font-weight: 700; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
}
.card__moment {
  position: absolute; top: 18px; right: 18px;
  font-size: 10px; letter-spacing: .18em; font-weight: 600;
  color: rgba(34,19,10,.5); text-transform: uppercase;
}
.card__body { display: flex; flex-direction: column; padding: 22px 24px 24px; }
.card__family {
  font-size: 11px; letter-spacing: .22em; font-weight: 700;
  text-transform: uppercase; color: var(--card-accent, var(--copper));
}
.card__name {
  margin: 7px 0 2px; font-family: var(--serif); font-weight: 550;
  font-size: 29px; line-height: 1; letter-spacing: -.01em;
}
.card__descriptor { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--muted); }
.card__doses { display: flex; gap: 8px; margin: 16px 0 14px; }
.card__functional {
  display: flex; align-items: flex-start; gap: 9px;
  padding-top: 14px; border-top: 1px solid rgba(34,19,10,.1);
  font-size: 13.5px; line-height: 1.45; color: var(--body);
}
.card__dot { flex: none; width: 6px; height: 6px; border-radius: 999px; background: var(--sage); margin-top: 7px; }
.card__size { font-size: 12.5px; letter-spacing: .04em; color: var(--muted-2); margin-top: 10px; }
.card__actions { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.card__view { flex: 1; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 12.5px; letter-spacing: .13em; }
.card__view:hover { background: var(--card-accent, var(--copper)); }
.card__add:hover { background: var(--card-accent, var(--copper)); border-color: var(--card-accent, var(--copper)); color: var(--cream); }

/* ── Ritual selector ───────────────────────────────────── */
.selector { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 880px; margin: 0 auto; }
.selector__step {
  background: rgba(246,235,217,.04);
  border: 1px solid var(--hair-light);
  border-radius: var(--radius-md); padding: 30px; margin: 0;
}
.selector__step legend { padding: 0; margin-bottom: 18px; float: left; width: 100%; }
.selector__opts { display: flex; flex-direction: column; gap: 12px; clear: both; }
.opt {
  display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 16px 18px; border-radius: 13px;
  background: transparent; border: 1px solid rgba(246,235,217,.22);
  color: var(--on-dark);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.opt:hover { border-color: rgba(246,235,217,.5); }
.opt svg { width: 26px; height: 26px; flex: none; }
.opt strong { display: block; font-family: var(--serif); font-size: 21px; font-weight: 500; }
.opt small { font-size: 12px; letter-spacing: .14em; color: var(--on-dark-mute); text-transform: uppercase; }
.opt[aria-pressed="true"] { background: rgba(179,120,59,.28); border-color: var(--gold); }
.opt[data-val="cbd"][aria-pressed="true"] { background: rgba(122,98,72,.34); }

.rs-result {
  max-width: 880px; margin: 22px auto 0;
  background: var(--cream); color: var(--ink);
  border-radius: var(--radius-md); padding: 24px 28px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  animation: rise .4s var(--ease) both;
}
.rs-result[hidden] { display: none; }
.rs-result img { height: 120px; width: auto; flex: none; }
.rs-result__main { flex: 1; min-width: 200px; }
.rs-result__name { font-family: var(--serif); font-size: 30px; line-height: 1; }
.rs-result__desc { font-family: var(--serif); font-style: italic; color: var(--muted); margin-top: 2px; }
.rs-result__dose { font-size: 13px; color: var(--body); margin-top: 6px; }

/* ── Ritual split cards ────────────────────────────────── */
.ritual { position: relative; overflow: hidden; border-radius: var(--radius); padding: 40px; }
.ritual--day   { border: 1px solid rgba(179,120,59,.3); background: linear-gradient(160deg, #F4E6CD, #EFDFC4); }
.ritual--night { border: 1px solid rgba(34,19,10,.4); background: linear-gradient(160deg, #2A1A0E, #1C0F07); color: var(--on-dark); }
.ritual__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.ritual__icon { width: 34px; height: 34px; flex: none; }
.ritual--day   .ritual__icon { color: var(--copper); }
.ritual--night .ritual__icon { color: var(--gold); }
.ritual--night .display { color: var(--on-dark); }
.ritual__body { display: flex; align-items: flex-end; gap: 20px; margin-top: 18px; }
.ritual__body > img { height: 280px; width: auto; flex: none; filter: drop-shadow(0 20px 26px rgba(34,19,10,.28)); }
.ritual--night .ritual__body > img { filter: drop-shadow(0 20px 30px rgba(0,0,0,.5)); }
.ritual__body > div { padding-bottom: 18px; }
.ritual__body p { font-size: 15px; line-height: 1.55; color: var(--body); margin-bottom: 18px; }
.ritual--night .ritual__body p { color: var(--on-dark-soft); }
.ritual__sub { font-size: 14px; letter-spacing: .02em; color: var(--on-dark-mute) !important; margin-bottom: 4px !important; }
.ritual .btn { margin-top: 22px; padding: 14px 24px; font-size: 12px; letter-spacing: .13em; }

/* ── Medallions ────────────────────────────────────────── */
.medallions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.medallion { text-align: center; }
.medallion img { width: 148px; height: 148px; margin: 0 auto 18px; }
.medallions--lg .medallion img { width: 160px; height: 160px; }
/* The mushroom mix is a key selling point (patch 8): the benefit word is
   the hero of each medallion — big, bold, unmistakable at phone width. */
.medallion__mg   { font-weight: 800; font-size: 21px; letter-spacing: .02em; }
.medallion__name { font-weight: 800; font-size: 17px; letter-spacing: .05em; color: var(--ink-soft); margin-bottom: 12px; }
.medallion__rule { height: 1px; width: 46px; background: rgba(34,19,10,.2); margin: 0 auto 12px; }
.medallion__tag  { font-weight: 800; font-size: clamp(24px, 2.4vw, 30px); letter-spacing: .1em; text-transform: uppercase; line-height: 1.1; }
.medallion__desc { font-size: 14px; color: var(--muted); margin-top: 6px; }
.system__foot {
  text-align: center; font-family: var(--serif); font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px); color: var(--roast); margin-top: 48px;
}
.medallion-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  align-items: center; padding: 28px; border-radius: var(--radius-md); background: var(--sand2);
}

/* ── Quality / pillars ─────────────────────────────────── */
.framed {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--hair); box-shadow: 0 30px 60px -40px rgba(34,19,10,.5);
}
.framed img { width: 100%; }
.pillars { display: flex; flex-direction: column; }
.pillars li {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; border-top: 1px solid var(--hair);
  font-weight: 600; font-size: 16px; color: var(--ink-soft);
}
.pillars__n {
  flex: none; width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid rgba(179,120,59,.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--copper); font-family: var(--serif); font-size: 16px;
}

/* ── Panels ────────────────────────────────────────────── */
.panel {
  padding: 28px; border-radius: var(--radius-md);
  background: var(--cream2); border: 1px solid var(--hair);
}
.panel p { font-size: 14px; line-height: 1.6; color: var(--body-soft); }
.panel__title { font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.panel__display { font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.05; margin-bottom: 10px; }
.panel--dashed { border: 1px dashed rgba(122,98,72,.5); background: rgba(122,98,72,.08); padding: 20px 22px; }
.panel--dashed p { color: #66503A; font-size: 13px; }
.panel--espresso { background: var(--espresso); color: var(--on-dark); border-color: var(--espresso); }
.panel--espresso p { color: var(--on-dark-mute); }
.panel--espresso .btn, .panel .btn { margin-top: 20px; }
.panel--specimens { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.specimen-row { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── Forms ─────────────────────────────────────────────── */
.inline-form { display: flex; gap: 10px; flex-wrap: wrap; max-width: 480px; }
.inline-form--center { margin: 0 auto; }
.inline-form input {
  flex: 1; min-width: 200px; padding: 15px 18px;
  border-radius: var(--radius-sm); border: 1px solid var(--hair-strong);
  background: var(--cream2); font-size: 15px; color: var(--ink);
}
.inline-form input::placeholder { color: var(--muted-3); }
.inline-form input:focus-visible { border-color: var(--copper); }
.form-note { font-size: 13px; color: var(--sage); margin-top: 10px; min-height: 1.2em; }
.checkline {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 12px; color: var(--muted-2);
}
.checkline input { accent-color: var(--copper); }

/* ── Map ───────────────────────────────────────────────── */
.map {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(34,19,10,.14); min-height: 340px;
  background: linear-gradient(150deg, #E6D7BD, #DBC9AD);
}
.map__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(34,19,10,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,19,10,.06) 1px, transparent 1px);
  background-size: 46px 46px;
}
.map__pin { position: absolute; border-radius: 999px; }
.map__pin--a { left: 34%; top: 40%; width: 18px; height: 18px; background: var(--copper); box-shadow: 0 0 0 8px rgba(179,120,59,.2); }
.map__pin--b { left: 62%; top: 58%; width: 14px; height: 14px; background: var(--sage);   box-shadow: 0 0 0 7px rgba(122,98,72,.2); }
.map__pin--c { left: 48%; top: 30%; width: 12px; height: 12px; background: var(--espresso); }
.map__label {
  position: absolute; left: 24px; bottom: 22px;
  font-size: 12px; letter-spacing: .22em; font-weight: 700;
  color: var(--body-soft); text-transform: uppercase;
}

/* ── Callout ───────────────────────────────────────────── */
.callout {
  margin-top: 30px; background: var(--espresso); color: var(--on-dark);
  border-radius: var(--radius-md); padding: 26px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.callout__title { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.2vw, 28px); }

/* ── Shop extras ───────────────────────────────────────── */
.filters {
  display: flex; gap: 30px; align-items: center; flex-wrap: wrap;
  padding: 18px 0 26px; border-bottom: 1px solid var(--hair); margin-bottom: 24px;
}
.filters__group { display: flex; align-items: center; gap: 10px; }
.filters__group .eyebrow { margin: 0; }
.filters .link-btn { margin-left: auto; }
.results-count { font-size: 12.5px; color: var(--muted-3); margin-bottom: 20px; }
.empty-state { padding: 60px 0; text-align: center; color: var(--muted); font-size: 16px; }

/* ── FAQ / rules ───────────────────────────────────────── */
.rules { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rules li {
  padding: 20px 22px; border-radius: 14px;
  background: var(--cream2); border: 1px solid var(--hair);
  font-size: 14px; line-height: 1.5; color: var(--ink-soft);
}
.notice {
  margin-top: 16px; padding: 18px 22px; border-radius: 14px;
  border: 1px dashed rgba(179,120,59,.5); background: rgba(179,120,59,.08);
  font-size: 13px; line-height: 1.6; color: #6B4A26;
}
.accordion { margin-top: 22px; border-bottom: 1px solid rgba(34,19,10,.14); }
.acc__item { border-top: 1px solid rgba(34,19,10,.14); }
.acc__btn {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 0; text-align: left;
  font-family: var(--serif); font-size: 21px; color: var(--ink);
}
.acc__btn:hover { color: var(--copper); }
.acc__sign { font-size: 22px; color: var(--copper); flex: none; transition: transform .2s var(--ease); }
.acc__btn[aria-expanded="true"] .acc__sign { transform: rotate(45deg); }
.acc__panel { padding: 0 0 24px; font-size: 15px; line-height: 1.65; color: var(--body); max-width: 680px; }
.acc__panel[hidden] { display: none; }

/* ── Product detail ────────────────────────────────────── */
.crumbs { font-size: 12px; color: var(--muted-3); margin-bottom: 24px; }
.crumbs a:hover { color: var(--copper); text-decoration: underline; }
.crumbs span { color: var(--ink-soft); }
.pdp { display: grid; grid-template-columns: 1fr 1.02fr; gap: 48px; align-items: start; }
.pdp__media { position: sticky; top: 96px; }
.pdp__frame {
  position: relative; border-radius: var(--radius);
  background: var(--pdp-tint, var(--sand)); border: 1px solid rgba(34,19,10,.1);
  padding: 40px; display: flex; align-items: center; justify-content: center;
  min-height: 480px;
}
.pdp__frame img { height: 400px; width: auto; filter: drop-shadow(0 26px 30px rgba(34,19,10,.28)); }
.pdp__badge {
  position: absolute; top: 20px; left: 20px;
  padding: 7px 13px; border-radius: 999px;
  background: var(--pdp-accent, var(--copper)); color: var(--cream);
  background: color-mix(in srgb, var(--pdp-accent, var(--copper)) 68%, var(--espresso));
  font-weight: 700; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
}
.pdp__moment {
  position: absolute; top: 22px; right: 22px;
  font-size: 10px; letter-spacing: .18em; font-weight: 600;
  color: rgba(34,19,10,.5); text-transform: uppercase;
}
.pdp__flavor {
  margin-top: 16px; display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap;
  padding: 14px 18px; border-radius: 14px;
  background: var(--cream2); border: 1px solid rgba(34,19,10,.1);
}
.pdp__flavor dt { font-size: 10.5px; letter-spacing: .14em; font-weight: 700; text-transform: uppercase; }
.pdp__flavor dd { margin: 0; font-size: 13px; color: var(--body-soft); }
.pdp__family { font-size: 11.5px; letter-spacing: .26em; font-weight: 700; text-transform: uppercase; color: var(--pdp-accent, var(--copper)); margin-bottom: 12px; }
.pdp__name { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 4.6vw, 62px); line-height: .98; letter-spacing: -.02em; margin-bottom: 6px; }
.pdp__desc { font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--muted); margin-bottom: 4px; }
.pdp__sub { font-size: 13.5px; color: var(--muted-2); }
.pdp__tagline { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--pdp-accent, var(--copper)); margin: 18px 0 8px; }
.pdp__moment-long { font-size: 16px; line-height: 1.6; color: var(--body); max-width: 480px; margin-bottom: 26px; }
.formula-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.formula-switch button {
  text-align: left; padding: 16px 18px; border-radius: 14px;
  background: transparent; border: 1.5px solid var(--hair-strong); color: var(--ink);
  transition: all .2s var(--ease);
}
.formula-switch strong { display: block; font-family: var(--serif); font-size: 19px; font-weight: 500; }
.formula-switch small { font-size: 12px; opacity: .85; }
.formula-switch button[aria-pressed="true"] { background: var(--espresso); border-color: var(--espresso); color: var(--cream); }
.formula-switch button[data-formula="cbd"][aria-pressed="true"] { background: var(--sage); border-color: var(--sage); }
.spec-row { display: flex; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.spec {
  padding: 8px 13px; border-radius: 8px; font-size: 12px; font-weight: 600;
  border: 1px solid var(--hair-strong); color: var(--ink);
}
.spec--fn { border-color: var(--sage); color: #66503A; }
.buy-row {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  padding: 20px 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
}
.stepper {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid rgba(34,19,10,.22); border-radius: var(--radius-sm); padding: 8px 14px;
}
.stepper button { background: none; border: none; font-size: 20px; line-height: 1; color: var(--ink); padding: 0 4px; }
.stepper button:hover { color: var(--copper); }
.stepper span { font-weight: 700; font-size: 16px; min-width: 20px; text-align: center; }
.buy-row .btn { flex: 1; min-width: 200px; padding: 17px 26px; }
.buy-row .btn:hover { background: var(--pdp-accent, var(--copper)); }
.buy-note { font-size: 12px; color: var(--muted-3); margin-top: 12px; }
.nutrition {
  border: 1px solid rgba(34,19,10,.2); border-radius: 12px;
  padding: 16px 18px; background: var(--cream2);
}
.nutrition div { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; }
.nutrition div + div { border-top: 1px solid rgba(34,19,10,.1); }
.compliance li { font-size: 13px; line-height: 1.7; color: var(--body); }

/* ── Swatches ──────────────────────────────────────────── */
.swatches { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; margin-bottom: 54px; }
.swatch { border-radius: 14px; overflow: hidden; border: 1px solid var(--hair); }
.swatch__chip { height: 84px; }
.swatch__meta { padding: 10px 12px; }
.swatch__name { font-size: 12px; font-weight: 700; }
.swatch__hex  { font-size: 11px; color: var(--muted-3); }
.type-spec--serif { font-family: var(--serif); font-size: 52px; line-height: 1; letter-spacing: -.02em; }
.type-spec--sans  { font-family: var(--sans); font-size: 32px; font-weight: 700; margin-top: 20px; }
.panel .muted { font-size: 12px; margin: 6px 0 0; }

/* ── Story duo ─────────────────────────────────────────── */
.duo {
  display: flex; gap: 18px; justify-content: center;
  background: linear-gradient(160deg, #F4E6CD, #EADAC0);
  border-radius: var(--radius); padding: 40px; border: 1px solid rgba(34,19,10,.1);
}
.duo img { height: 300px; width: auto; filter: drop-shadow(0 18px 24px rgba(34,19,10,.26)); }

/* ── Footer ────────────────────────────────────────────── */
.footer { background: var(--espresso-deep); color: var(--on-dark-soft); }
.footer__inner { padding-block: 64px 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer__logo { height: 42px; width: auto; margin-bottom: 16px; }
.footer__grid > div > p { font-size: 14px; line-height: 1.6; color: var(--on-dark-dim); max-width: 280px; margin-bottom: 18px; }
.footer nav { display: flex; flex-direction: column; }
.footer nav a { font-size: 13.5px; color: var(--on-dark-soft); padding: 5.5px 0; transition: color .2s var(--ease); }
.footer nav a:hover { color: var(--on-dark); }
.footer .eyebrow { margin-bottom: 16px; }
.footer__base {
  margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(246,235,217,.12);
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
}
.footer__base .eyebrow { margin: 0; color: var(--muted-2); }
.footer__legal { font-size: 12px; color: var(--muted); }

/* ── Sticky mobile CTA ─────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 35;
  padding: 17px; border-radius: 13px;
  background: var(--espresso); color: var(--cream);
  font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  text-align: center; box-shadow: 0 12px 30px -8px rgba(34,19,10,.6);
}

/* ── Animation ─────────────────────────────────────────── */
@keyframes rise    { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fade    { from { opacity: 0; } to { opacity: 1; } }
@keyframes floaty  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes slidein { from { transform: translateX(100%); } to { transform: translateX(0); } }

.float { animation: floaty 6s ease-in-out infinite; }

/* ── Scroll reveals (reveal.js) ────────────────────────────
   The hidden state exists ONLY under html.reveal-js, which reveal.js adds
   after checking for IntersectionObserver and prefers-reduced-motion —
   no JS means a fully visible page. Elements settle at `transform: none`,
   so no lingering transform can create a containing block (see the `rise`
   exclusion note below). */
.reveal-js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-js [data-reveal].is-in { opacity: 1; transform: none; }
/* `.cine` is excluded deliberately. `animation-fill-mode: both` leaves a
   computed transform on the element forever, which makes it a containing
   block — measured: a position:fixed child resolved to 1265x300 instead of
   the 1280x720 viewport. That would break `.cine__room`. */
.route[data-active] > section:not(.cine):first-child,
.route[data-active] > div:not(.cine):first-child { animation: rise .5s var(--ease) both; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  :root { --gutter: 28px; }
  .nav { display: none; }
  .icon-btn--burger { display: flex; }
  .hero__grid, .split, .split--quality, .split--type, .pdp { grid-template-columns: 1fr; }
  .pdp__media { position: static; }
  .hero__art { min-height: 420px; margin-top: 24px; }
  .hero__can--front { height: 380px; }
  .hero__can--back  { height: 340px; }
  .selector { grid-template-columns: 1fr; }
  .section { padding-block: 56px; }
  .medallions { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .card-grid--3 { grid-template-columns: 1fr; }
  .ritual__body > img { height: 220px; }
}
@media (max-width: 680px) {
  :root { --gutter: 20px; }
  .utility, .header__cta, .rules { display: none; }
  .rules { display: grid; grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  .card-grid--2, .card-grid--auto { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer { padding-bottom: 80px; }
  /* Keep the two cans overlapping side by side — stacking them makes the hero enormous. */
  .hero__art { flex-wrap: wrap; justify-content: center; min-height: 0; }
  .hero__ways { position: static; width: 100%; text-align: left; align-items: flex-start; margin-bottom: 10px; }
  .hero__can--front { height: 320px; }
  .hero__can--back  { height: 285px; margin-right: -24px; }
  .ritual { padding: 28px; }
  .ritual__body { flex-direction: column; align-items: flex-start; }
  .formula-switch { grid-template-columns: 1fr; }
  .filters { gap: 18px; }
  .filters__group { width: 100%; }
  .filters .link-btn { margin-left: 0; }
  .gate__card { padding: 36px 24px 30px; }
  .gate__title { font-size: 30px; }
  .duo img { height: 220px; }
  .callout { padding: 24px; }
}

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

@media print {
  .header, .utility, .sticky-cta, .drawer-scrim, .gate, .grain { display: none !important; }
  .route[hidden] { display: none !important; }
  body { background: #fff; }
}

/* ═══════════════════════════════════════════════════════════════
   APPAREL
   ═══════════════════════════════════════════════════════════════ */

.apparel-hero {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hair);
  box-shadow: 0 30px 60px -40px rgba(34,19,10,.5);
}
.apparel-hero img { width: 100%; display: block; }

.tee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.tee-card {
  display: flex;
  flex-direction: column;
  background: var(--cream2);
  border: 1px solid var(--hair);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.tee-card:hover { transform: translateY(-5px); box-shadow: 0 18px 34px -20px rgba(34,19,10,.45); }

/* The back print is the reason to buy most of these, so the card shows it
   on hover/focus rather than hiding it behind a click. */
.tee-card__art {
  position: relative;
  display: block;
  background: var(--card-tint, var(--sand));
  border-bottom: 1px solid var(--hair-soft);
  aspect-ratio: 1;
  overflow: hidden;
}
.tee-card__art img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  transition: opacity .3s var(--ease);
}
.tee-card__back { opacity: 0; }
.tee-card__art:hover .tee-card__back,
.tee-card__art:focus-visible .tee-card__back { opacity: 1; }
.tee-card__art:hover .tee-card__front,
.tee-card__art:focus-visible .tee-card__front { opacity: 0; }
.tee-card__flip {
  position: absolute;
  left: 14px; bottom: 12px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(34,19,10,.45);
}

.tee-card__body { display: flex; flex-direction: column; padding: 20px 22px 22px; }
.tee-card__colour {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; color: var(--muted-2);
}
.tee-card__swatch {
  width: 13px; height: 13px; border-radius: 999px;
  border: 1px solid var(--hair-strong);
  display: inline-block; flex: none;
}
.tee-card__name {
  margin: 9px 0 2px;
  font-family: var(--serif); font-weight: 550; font-size: 25px;
  line-height: 1.05; letter-spacing: -.01em;
}
.tee-card__desc { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--muted); }
.tee-card__view { margin-top: 18px; padding: 13px 18px; font-size: 12px; }
.tee-card__view:hover { background: var(--card-accent, var(--copper)); }

/* ── Apparel detail ────────────────────────────────────── */
.pdp__frame--tee { min-height: 0; aspect-ratio: 1; padding: 24px; }
.pdp__frame--tee img { height: auto; width: 100%; object-fit: contain; filter: none; }

.tee-views { display: flex; gap: 10px; margin-top: 14px; }
.tee-views__btn {
  flex: 1;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--hair-strong);
  background: transparent;
  font-size: 11.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  transition: all .2s var(--ease);
}
.tee-views__btn[aria-pressed="true"] { background: var(--espresso); border-color: var(--espresso); color: var(--cream); }

.tee-colour {
  display: flex; align-items: center; gap: 9px;
  font-size: 15px; color: var(--body); margin-bottom: 22px;
}
.tee-sizes { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.tee-size {
  min-width: 56px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--hair-strong);
  background: transparent;
  font-weight: 700; font-size: 13px; letter-spacing: .06em;
  transition: all .2s var(--ease);
}
.tee-size:hover { border-color: var(--copper); }
.tee-size[aria-pressed="true"] { background: var(--espresso); border-color: var(--espresso); color: var(--cream); }

@media (max-width: 680px) {
  .tee-grid { grid-template-columns: 1fr; }
}

/* Apparel photography lands separately; until then show a branded plate
   rather than a broken-image glyph, and collapse the lifestyle banner. */
.apparel-hero[data-missing] { display: none; }
[data-art][data-missing] img { visibility: hidden; }
[data-art][data-missing] {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(34,19,10,.035) 0 12px, transparent 12px 24px),
    var(--card-tint, var(--sand));
}
[data-art][data-missing]::after {
  content: 'Photography coming soon';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; color: var(--muted-3);
}
