/* inuvio.shop — Layout 04 Stacked Scroll Cards · muted luxury editorial */
:root {
  --ink: #1c1a17;
  --stone: #e8e2d9;
  --parchment: #f4f0ea;
  --sage: #6b7f6a;
  --bronze: #9a7b5a;
  --bronze-deep: #7a6044;
  --shadow: rgba(28, 26, 23, 0.14);
  --shadow-deep: rgba(28, 26, 23, 0.28);
  --serif: "Instrument Serif", "Hiragino Mincho ProN", serif;
  --sans: "Outfit", "Hiragino Sans", sans-serif;
  --spine-w: 5.5rem;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bronze-deep); text-decoration-thickness: 1px; }
a:hover { color: var(--ink); }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }
em { font-style: italic; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 0.5rem 1rem; background: var(--ink); color: var(--stone);
}
.skip-link:focus { left: 0; }

.deck-micro {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 0.75rem;
}
.display-deck {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.display-deck--sm { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-bronze { background: var(--bronze); color: var(--parchment); }
.btn-bronze:hover { background: var(--bronze-deep); color: var(--stone); }
.btn-ink-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(28, 26, 23, 0.25);
}
.btn-lg { padding: 0.9rem 1.8rem; font-size: 0.88rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* App shell — spine + main */
.deck-app { min-height: 100vh; }
.deck-main {
  margin-left: 0;
  min-height: 100vh;
}
@media (min-width: 1024px) {
  .deck-main { margin-left: var(--spine-w); }
}

/* Spine rail nav */
.spine-rail {
  display: none;
}
@media (min-width: 1024px) {
  .spine-rail {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--spine-w);
    background: var(--ink);
    color: var(--stone);
    z-index: 200;
    padding: 1.25rem 0;
  }
  .spine-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--stone);
    text-decoration: none;
    padding: 0 0.5rem 1.5rem;
    border-bottom: 1px solid rgba(232, 226, 217, 0.12);
    margin-bottom: 1rem;
  }
  .spine-brand__stack {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .spine-brand__stack i {
    display: block;
    width: 18px;
    height: 4px;
    background: var(--bronze);
    border-radius: 1px;
  }
  .spine-brand__stack i:nth-child(2) { width: 22px; margin-left: 4px; opacity: 0.7; }
  .spine-brand__stack i:nth-child(3) { width: 14px; margin-left: 8px; opacity: 0.5; }
  .spine-brand__word {
    font-family: var(--serif);
    font-size: 0.95rem;
    writing-mode: vertical-rl;
    letter-spacing: 0.08em;
  }
  .spine-brand em { color: var(--bronze); font-style: italic; }
  .spine-nav { flex: 1; }
  .spine-nav ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }
  .spine-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.55rem 0.25rem;
    color: rgba(232, 226, 217, 0.55);
    text-decoration: none;
    font-size: 0.62rem;
    transition: color 0.2s;
  }
  .spine-link:hover, .spine-link.is-active { color: var(--stone); }
  .spine-link__idx {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    opacity: 0.5;
  }
  .spine-link__label {
    writing-mode: vertical-rl;
    margin-top: 0.35rem;
    letter-spacing: 0.12em;
  }
  .spine-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(232, 226, 217, 0.12);
  }
  .spine-search, .spine-cart {
    background: none;
    border: none;
    color: var(--stone);
    cursor: pointer;
    padding: 0.35rem;
    position: relative;
  }
  .spine-cart__badge {
    position: absolute;
    top: -2px;
    right: -4px;
    background: var(--bronze);
    color: var(--ink);
    font-size: 0.55rem;
    min-width: 14px;
    height: 14px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile deck bar */
.deck-bar {
  position: sticky;
  top: 0;
  z-index: 180;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: rgba(244, 240, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 26, 23, 0.06);
  transition: transform 0.35s var(--ease);
}
@media (min-width: 1024px) { .deck-bar { display: none; } }
.deck-bar.is-hidden { transform: translateY(-100%); }
.deck-bar__brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
}
.deck-bar__brand em { font-style: italic; color: var(--bronze); }
.deck-bar__brand span { font-size: 0.7rem; opacity: 0.5; }
.deck-bar__tools { display: flex; align-items: center; gap: 0.65rem; }
.deck-bar__search, .deck-bar__menu {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 0.35rem;
}
.deck-bar__cart { position: relative; color: var(--ink); }
.deck-bar__badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--bronze);
  font-size: 0.6rem;
  min-width: 15px;
  height: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deck-bar__menu span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.deck-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 320px);
  height: 100%;
  background: var(--ink);
  color: var(--stone);
  z-index: 250;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.deck-drawer.is-open { transform: none; }
.deck-drawer ul { list-style: none; padding: 0; margin: 1rem 0; }
.deck-drawer a { color: var(--stone); text-decoration: none; display: block; padding: 0.5rem 0; }
.deck-scrim {
  position: fixed;
  inset: 0;
  background: rgba(28, 26, 23, 0.5);
  z-index: 240;
}
body.menu-open { overflow: hidden; }

.deck-search {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(28, 26, 23, 0.6);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 1rem;
}
.deck-search[hidden] { display: none; }
.deck-search__panel {
  background: var(--parchment);
  padding: 2rem;
  width: min(480px, 100%);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px var(--shadow-deep);
}
.deck-search__input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(28, 26, 23, 0.15);
  font-family: var(--sans);
  margin: 0.5rem 0 1rem;
}
.deck-search__close {
  float: right;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* §1 Snap deck entry */
.snap-deck {
  padding: 2rem 1.25rem 4rem;
  scroll-snap-type: y proximity;
}
@media (min-width: 768px) {
  .snap-deck { padding: 3rem 2.5rem 5rem; }
}
.snap-deck__track {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.scroll-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  background: var(--stone);
  border-radius: 6px;
  padding: 1.25rem;
  scroll-snap-align: start;
  transform: translateY(var(--card-lift, 0));
  box-shadow:
    0 4px 0 var(--parchment),
    0 12px 40px var(--shadow),
    0 24px 80px var(--shadow-deep);
  transition: transform 0.5s var(--ease);
}
@media (min-width: 768px) {
  .scroll-card {
    grid-template-columns: 1.1fr 1fr;
    padding: 1.75rem;
    align-items: center;
  }
}
.scroll-card:hover { transform: translateY(calc(var(--card-lift, 0) - 6px)); }
.scroll-card__shadow {
  position: absolute;
  inset: 8px;
  background: var(--ink);
  opacity: 0.04;
  border-radius: 6px;
  transform: translate(6px, 10px);
  z-index: -1;
}
.scroll-card__img { border-radius: 4px; width: 100%; object-fit: cover; aspect-ratio: 5/6; }
.scroll-card__edge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--serif);
  font-size: 2.5rem;
  opacity: 0.08;
  line-height: 1;
}
.snap-deck__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.25rem 0 0.5rem; }
.snap-deck__meta { font-size: 0.75rem; opacity: 0.55; margin: 0; }
.snap-hint {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-top: 2rem;
}

/* §2 Week story */
.week-deck {
  padding: 4rem 1.25rem;
  background: var(--ink);
  color: var(--stone);
}
.week-deck__head { max-width: 640px; margin-bottom: 2.5rem; }
.week-deck__lead { opacity: 0.8; }
.week-deck__stack {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: -1.5rem;
}
.story-card {
  display: grid;
  grid-template-columns: auto 100px 1fr;
  gap: 1rem;
  align-items: center;
  background: rgba(232, 226, 217, 0.06);
  border: 1px solid rgba(232, 226, 217, 0.1);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  transform: translateX(calc((5 - var(--story-z)) * 12px));
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.story-card__day {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--bronze);
}
.story-card h3 { margin: 0 0 0.25rem; font-size: 1.1rem; color: var(--stone); }
.story-card p { margin: 0; font-size: 0.88rem; opacity: 0.75; }
.story-card img { border-radius: 3px; height: 72px; object-fit: cover; width: 100px; }

/* §3 Manifesto */
.overlap-manifesto {
  padding: 5rem 1.25rem;
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .overlap-manifesto {
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
  }
}
.overlap-manifesto__card {
  background: var(--stone);
  padding: 2.5rem;
  border-radius: 6px;
  box-shadow: 0 20px 50px var(--shadow);
  position: relative;
  z-index: 2;
  margin-right: -2rem;
}
@media (max-width: 767px) { .overlap-manifesto__card { margin-right: 0; } }
.overlap-manifesto blockquote { margin: 0; font-family: var(--serif); font-size: 1.5rem; }
.overlap-manifesto__fig {
  margin-top: 2rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 48px var(--shadow-deep);
}
@media (min-width: 768px) {
  .overlap-manifesto__fig { margin-top: 4rem; margin-left: -3rem; }
}

/* §4 Life picker */
.life-picker {
  padding: 4rem 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}
.life-picker__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.life-card {
  background: var(--stone);
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0.5rem;
  cursor: pointer;
  text-align: center;
  font-size: 0.8rem;
  transition: border-color 0.25s, transform 0.25s;
}
.life-card.is-active { border-color: var(--bronze); transform: scale(1.03); }
.life-card img { border-radius: 4px; aspect-ratio: 5/4; object-fit: cover; margin-bottom: 0.35rem; }
.life-panel {
  background: var(--ink);
  color: var(--stone);
  padding: 1.5rem;
  border-radius: 6px;
}
.life-panel[hidden] { display: none; }
.life-panel__rec { margin: 0 0 1rem; }

/* §5 Care peel */
.care-peel {
  padding: 4rem 0 4rem 1.25rem;
  overflow: hidden;
}
.care-peel__head { padding-right: 1.25rem; max-width: 560px; margin-bottom: 1.5rem; }
.care-peel__rail {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}
.peel-card {
  flex: 0 0 min(300px, 78vw);
  scroll-snap-align: center;
  background: var(--parchment);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 36px var(--shadow);
}
.peel-card__fig { position: relative; margin: 0; }
.peel-card__img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.peel-card__icon {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: var(--ink);
  color: var(--stone);
  font-size: 0.65rem;
  padding: 0.25rem 0.6rem;
  letter-spacing: 0.1em;
}
.peel-card__copy { padding: 1.25rem; }
.peel-card__price { font-weight: 600; color: var(--bronze-deep); }

/* §6 Stats */
.stat-ribbon {
  background: var(--sage);
  color: var(--parchment);
  padding: 2.5rem 1.25rem;
}
.stat-ribbon ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .stat-ribbon ul { grid-template-columns: repeat(4, 1fr); }
}
.stat-ribbon__num {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}
.stat-ribbon__label { font-size: 0.85rem; }
.stat-ribbon__sub { font-size: 0.7rem; opacity: 0.7; }

/* §7 Pin process */
.pin-process {
  padding: 4rem 1.25rem;
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .pin-process {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }
  .pin-process__sticky {
    position: sticky;
    top: 6rem;
  }
}
.path-card {
  background: var(--stone);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--bronze);
  border-radius: 0 6px 6px 0;
  transition: opacity 0.3s, transform 0.3s;
}
.path-card__n {
  font-family: var(--serif);
  font-size: 1.8rem;
  opacity: 0.25;
  display: block;
}

/* §8 Fold lab */
.fold-lab {
  padding: 4rem 1.25rem;
  background: var(--ink);
  color: var(--stone);
  text-align: center;
}
.fold-lab__stage {
  position: relative;
  max-width: 400px;
  height: 420px;
  margin: 2rem auto;
}
.fold-layer {
  position: absolute;
  inset: 0;
  margin: 0;
  transition: transform 0.8s var(--ease), opacity 0.8s;
  transform: rotate(calc(var(--fold-i) * -3deg)) translateY(calc(var(--fold-i) * 12px));
  opacity: 0.5;
}
#foldStage.is-animated .fold-layer {
  opacity: 1;
  transform: rotate(0) translateY(calc(var(--fold-i) * 18px));
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.fold-layer img { border-radius: 4px; width: 100%; height: 100%; object-fit: cover; }
.fold-lab__replay {
  margin-top: 1rem;
  background: var(--bronze);
  color: var(--parchment);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: var(--radius);
}

/* §9 Voice stack */
.voice-stack {
  padding: 4rem 1.25rem;
  max-width: 640px;
  margin: 0 auto;
}
.voice-card {
  background: var(--parchment);
  border: 1px solid rgba(28, 26, 23, 0.08);
  padding: 1.5rem;
  margin: 0 0 1rem;
  border-radius: 6px;
  box-shadow: 0 8px 24px var(--shadow);
  margin-left: calc(var(--i, 0) * 12px);
}
.voice-card footer { font-size: 0.8rem; opacity: 0.65; margin-top: 0.75rem; }

/* §10 Book deck */
.book-deck {
  padding: 4rem 1.25rem;
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--stone) 0%, var(--parchment) 50%);
}
@media (min-width: 768px) {
  .book-deck { grid-template-columns: 1.1fr 1fr; align-items: center; }
}
.book-deck__card {
  background: var(--ink);
  color: var(--stone);
  padding: 2.5rem;
  border-radius: 6px;
  box-shadow: 0 24px 60px var(--shadow-deep);
}
.book-deck__perks { padding-left: 1.2rem; opacity: 0.85; }
.book-deck__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.book-deck__visual img { border-radius: 6px; }

/* Stack footer */
.stack-footer {
  margin-top: 4rem;
  background: var(--ink);
  color: var(--stone);
  position: relative;
  overflow: hidden;
}
.stack-footer__deco {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.75rem 1rem 0;
}
.stack-footer__layer {
  display: block;
  width: 52px;
  height: 8px;
  border-radius: 2px;
  background: var(--bronze);
  opacity: 0.35;
  box-shadow: 0 6px 0 rgba(154, 123, 90, 0.2), 0 12px 0 rgba(154, 123, 90, 0.1);
}
.stack-footer__layer:nth-child(2) {
  width: 64px;
  opacity: 0.55;
  transform: translateY(-4px);
}
.stack-footer__layer:nth-child(3) {
  width: 44px;
  opacity: 0.25;
  transform: translateY(-8px);
}
.stack-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.25rem 2.5rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .stack-footer__inner {
    grid-template-columns: minmax(260px, 1.1fr) 1.6fr;
    gap: 3rem;
    align-items: start;
  }
}
.stack-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--stone);
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.stack-footer__logo-mark {
  width: 28px;
  height: 22px;
  background:
    linear-gradient(var(--stone) 0 0) 0 0 / 14px 6px no-repeat,
    linear-gradient(var(--bronze) 0 0) 4px 6px / 18px 6px no-repeat,
    linear-gradient(rgba(232,226,217,0.4) 0 0) 8px 12px / 12px 6px no-repeat;
  border-radius: 2px;
}
.stack-footer__logo-text {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.stack-footer__logo-text em { font-style: italic; color: var(--bronze); }
.stack-footer__logo-text span { font-size: 0.65rem; opacity: 0.45; margin-left: 0.15rem; }
.stack-footer__tagline {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 1rem;
  color: var(--stone);
}
.stack-footer__about {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.78;
  max-width: 36ch;
}
.stack-footer__grid {
  display: grid;
  gap: 2rem;
  background: rgba(232, 226, 217, 0.04);
  border: 1px solid rgba(232, 226, 217, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
@media (min-width: 600px) {
  .stack-footer__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.stack-footer__heading {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--bronze);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.stack-footer__heading span {
  font-family: var(--serif);
  font-size: 1rem;
  opacity: 0.5;
  letter-spacing: 0;
}
.stack-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.stack-footer__col li { margin-bottom: 0.45rem; }
.stack-footer__col a {
  color: rgba(232, 226, 217, 0.85);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.stack-footer__col a:hover { color: var(--stone); }
.stack-footer__col--contact {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.65;
  opacity: 0.85;
}
.stack-footer__col--contact p { margin: 0 0 0.4rem; }
.stack-footer__hours { font-size: 0.8rem; opacity: 0.65; margin-top: 0.75rem !important; }
.stack-footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(232, 226, 217, 0.08);
  font-size: 0.75rem;
  opacity: 0.5;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .stack-footer { margin-left: var(--spine-w); }
}
.deck-top {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--bronze);
  color: var(--ink);
  border: none;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.72rem;
  opacity: 1;
  transition: background 0.2s, transform 0.2s;
}
.deck-top:hover {
  background: var(--stone);
  transform: translateY(-2px);
}

/* Inner pages */
.deck-crumb {
  padding: 1.25rem;
  font-size: 0.8rem;
  opacity: 0.6;
}
.deck-crumb a { color: inherit; }
.page-hero-card, .shop-hero, .faq-hero, .cart-hero, .contact-split {
  padding: 2rem 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}
.page-lead { max-width: 56ch; opacity: 0.85; }

.about-story {
  display: grid;
  gap: 2rem;
  padding: 2rem 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about-story { grid-template-columns: 1fr 1fr; }
}
.mission-deck, .values-stack, .visual-timeline, .team-deck, .access-deck, .page-cta-deck {
  padding: 2rem 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}
.mission-deck blockquote {
  font-family: var(--serif);
  font-size: 1.6rem;
  border-left: 3px solid var(--bronze);
  padding-left: 1.5rem;
  margin: 0 0 2rem;
}
.values-stack__list {
  display: grid;
  gap: 1rem;
}
@media (min-width: 600px) {
  .values-stack__list { grid-template-columns: repeat(2, 1fr); }
}
.value-card {
  background: var(--stone);
  padding: 1.25rem;
  border-radius: 6px;
}
.timeline-deck {
  list-style: none;
  padding: 0;
  border-left: 2px solid var(--bronze);
  margin-left: 1rem;
}
.timeline-deck li {
  padding: 0 0 2rem 1.5rem;
  position: relative;
}
.timeline-deck__year {
  position: absolute;
  left: -1.5rem;
  transform: translateX(-100%);
  font-family: var(--serif);
  color: var(--bronze);
}
.team-deck__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .team-deck__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Shop */
.shop-filter {
  padding: 0 1.25rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.filter-deck { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-chip {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(28, 26, 23, 0.15);
  background: var(--parchment);
  border-radius: 999px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.filter-chip.is-active {
  background: var(--ink);
  color: var(--stone);
  border-color: var(--ink);
}
.product-deck {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 1.25rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}
.product-card {
  background: var(--stone);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 440px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow);
}
.product-card__fig {
  position: relative;
  margin: 0;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.product-card__cat {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  background: var(--ink);
  color: var(--stone);
  padding: 0.2rem 0.5rem;
  z-index: 1;
}
.product-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.product-card__title {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.6em;
}
.product-card__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0.8;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 4.65em;
}
.product-card__foot {
  margin-top: auto;
  padding-top: 1rem;
  flex-shrink: 0;
}
.product-card__price {
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--bronze-deep);
  font-size: 1.05rem;
}
.product-card__btn {
  width: 100%;
}

/* FAQ */
.faq-deck { max-width: 720px; margin: 0 auto; padding: 0 1.25rem 3rem; }
.faq-group__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 2rem 0 1rem;
  color: var(--bronze-deep);
}
.faq-card {
  background: var(--stone);
  border-radius: 6px;
  margin-bottom: 0.65rem;
  overflow: hidden;
}
.faq-card summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card[open] { box-shadow: 0 8px 24px var(--shadow); }
.faq-card__n { font-family: var(--serif); opacity: 0.35; }
.faq-card__icon::after { content: '+'; font-size: 1.2rem; }
.faq-card[open] .faq-card__icon::after { content: '−'; }
.faq-card__a { padding: 0 1.25rem 1.25rem; font-size: 0.92rem; }
.faq-cta {
  text-align: center;
  padding: 3rem 1.25rem;
  background: var(--stone);
}

/* Contact */
.contact-split {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .contact-split { grid-template-columns: 1fr 1.1fr; }
}
.contact-card { font-style: normal; margin: 1.5rem 0; }
.deck-form {
  background: var(--stone);
  padding: 2rem;
  border-radius: 6px;
}
.form-row { margin-bottom: 1rem; }
.form-row label { display: block; font-size: 0.82rem; margin-bottom: 0.35rem; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 0.65rem;
  border: 1px solid rgba(28, 26, 23, 0.12);
  font-family: var(--sans);
  background: var(--parchment);
  border-radius: var(--radius);
}
.form-success { color: var(--sage); font-weight: 500; }
.contact-map { padding: 2rem 1.25rem 4rem; max-width: 1000px; margin: 0 auto; }
.map-frame iframe { width: 100%; height: 320px; border: 0; border-radius: 6px; }

/* Cart */
.cart-layout {
  display: grid;
  gap: 2rem;
  padding: 0 1.25rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .cart-layout { grid-template-columns: 1.4fr 1fr; }
}
.cart-list { list-style: none; padding: 0; margin: 0; }
.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1rem;
  background: var(--stone);
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  align-items: center;
}
.cart-item__fig img { border-radius: 4px; }
.cart-item__qty { display: flex; align-items: center; gap: 0.5rem; }
.cart-item__qty button {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(28,26,23,0.15);
  background: var(--parchment);
  cursor: pointer;
  border-radius: var(--radius);
}
.cart-item__remove {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0.4;
}
.cart-summary {
  background: var(--ink);
  color: var(--stone);
  padding: 1.75rem;
  border-radius: 6px;
  height: fit-content;
  position: sticky;
  top: 5rem;
}
.cart-summary dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}
.cart-total-dd { font-size: 1.4rem; font-weight: 600; color: var(--bronze); }
.coupon-row { display: flex; gap: 0.5rem; margin-top: 0.35rem; }
.coupon-row input { flex: 1; padding: 0.5rem; border: none; border-radius: var(--radius); }
.coupon-msg.is-ok { color: #8fbc8f; }
.coupon-msg.is-err { color: #e8a090; }
.cart-empty { text-align: center; padding: 3rem; }

/* Policy */
.policy-deck {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}
.policy-deck section { margin-bottom: 2rem; }
.policy-deck h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; border-bottom: 1px solid rgba(28,26,23,0.1); padding-bottom: 0.35rem; }
.policy-deck h3 { font-size: 1.05rem; margin: 1.25rem 0 0.5rem; }
.policy-lead { font-size: 1.05rem; opacity: 0.9; }
.policy-related {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(28,26,23,0.1);
}
.policy-updated { font-size: 0.8rem; opacity: 0.55; }
