/* ====================================================================
 * Tibetan Store · v3.0
 * Sacred dark + gold design system
 * Mirrors §3 of tibetan-store-v2-content-commerce.md
 * ==================================================================== */

:root {
  /* Backgrounds (deep → less deep) */
  --bg-void:        #080604;
  --bg-abyss:       #100C07;
  --bg-earth:       #1C1309;
  --bg-stone:       #2A1E0F;
  --bg-border:      #3D2A14;

  /* Gold scale */
  --gold-pure:      #C8A84B;
  --gold-bright:    #E8CC7A;
  --gold-deep:      #8A6810;
  --gold-glow:      rgba(200, 168, 75, 0.15);
  --gold-hairline:  rgba(200, 168, 75, 0.25);

  /* Text */
  --text-primary:   #EDE0CC;
  --text-secondary: #B09878;
  --text-muted:     #6B5540;
  --text-gold:      #C8A84B;

  /* Accents */
  --saffron:        #C4501A;
  --bone-white:     #F0E8D8;
  --lapis:          #1E3A6E;
  --turquoise:      #1A7A6E;

  /* Status */
  --success:        #3A6B48;
  --error:          #7A2E22;

  /* Layout */
  --container:      1320px;
  --header-h:       72px;
  --radius-sm:      4px;
  --radius:         8px;
  --ease:           cubic-bezier(.2, .7, .2, 1);
  --ease-soft:      cubic-bezier(.22, 1, .36, 1);
  --dur-fast:       180ms;
  --dur-med:        280ms;
  --dur-slow:       700ms;
}

/* -------- reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  isolation: isolate;
  margin: 0;
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
body::before {
  background:
    radial-gradient(circle at 18% 14%, rgba(200,168,75,0.12), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(196,80,26,0.10), transparent 24%),
    radial-gradient(circle at 50% 82%, rgba(30,58,110,0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.012), transparent 40%);
  opacity: 0.95;
}
body::after {
  background-image:
    radial-gradient(rgba(200,168,75,0.10) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  opacity: 0.08;
  mix-blend-mode: screen;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
img { max-width: 100%; display: block; }
hr { border: 0; border-top: 1px solid var(--gold-hairline); margin: 0; }
::selection { background: var(--gold-pure); color: var(--bg-void); }

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

/* -------- typography utilities -------- */
.font-display  { font-family: 'Cinzel Decorative', 'Cinzel', serif; font-weight: 700; }
.font-heading  { font-family: 'Cinzel', serif; font-weight: 600; letter-spacing: 0.05em; }
.font-serif    { font-family: 'Cormorant Garamond', Georgia, serif; }
.font-body     { font-family: 'Inter', sans-serif; }

.kicker {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-pure);
  font-weight: 600;
}

.eyebrow-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-secondary);
}

/* -------- tibetan dividers -------- */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  color: var(--gold-pure);
  font-size: 0.8rem;
}
.divider::before, .divider::after {
  content: ""; flex: 0 0 56px; height: 1px; background: var(--gold-hairline);
}
.divider .glyph { font-family: 'Cormorant Garamond', serif; font-size: 1rem; }

/* tibetan corners decoration */
.tibetan-corner {
  position: absolute; width: 28px; height: 28px;
  border-color: var(--gold-hairline); border-style: solid; border-width: 0;
  pointer-events: none; transition: border-color 220ms var(--ease);
}
.tibetan-corner.tl { top: 14px; left: 14px;  border-top-width: 1px; border-left-width: 1px; }
.tibetan-corner.tr { top: 14px; right: 14px; border-top-width: 1px; border-right-width: 1px; }
.tibetan-corner.bl { bottom: 14px; left: 14px;  border-bottom-width: 1px; border-left-width: 1px; }
.tibetan-corner.br { bottom: 14px; right: 14px; border-bottom-width: 1px; border-right-width: 1px; }

/* ====================================================================
 * Layout helpers
 * ==================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
  position: relative;
}
.section--earth  { background: var(--bg-earth); }
.section--abyss  { background: var(--bg-abyss); }
.section--void   { background: var(--bg-void); }

main,
.site-header,
.announcement-bar,
.site-footer {
  position: relative;
  z-index: 1;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  color: var(--text-primary);
  margin: 8px 0 0;
  letter-spacing: 0.04em;
}
.section-head .link-more {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.section-head .link-more:hover {
  color: var(--gold-pure);
  transform: translateX(2px);
}

.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.section-head--center h2 { margin: 12px 0 6px; }
.section-head--center .eyebrow-italic { font-size: 1rem; }

/* ====================================================================
 * Buttons
 * ==================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition:
    transform var(--dur-fast) var(--ease-soft),
    background-color var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.btn--primary {
  background: var(--gold-pure);
  color: var(--bg-void);
}
.btn--primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.22), 0 0 0 1px rgba(232,204,122,0.18);
}
.btn--secondary {
  background: rgba(200,168,75,0.05);
  color: var(--gold-pure);
  border-color: var(--gold-hairline);
}
.btn--secondary:hover {
  background: rgba(200,168,75,0.12);
  border-color: var(--gold-pure);
  transform: translateY(-2px);
}
.btn--ghost {
  color: var(--text-secondary);
  border-color: var(--bg-border);
}
.btn--ghost:hover {
  color: var(--gold-pure);
  border-color: var(--gold-hairline);
  transform: translateY(-2px);
}
.btn--full { width: 100%; }
.btn--lg { height: 56px; padding: 0 36px; font-size: 0.85rem; }

/* ====================================================================
 * Badges
 * ==================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}
.badge--new       { background: var(--lapis);     color: var(--text-primary); }
.badge--bestseller{ background: var(--gold-pure); color: var(--bg-void); }
.badge--rare      { background: var(--saffron);   color: var(--text-primary); }
.badge--blessed   { background: var(--turquoise); color: var(--text-primary); }
.badge--popular   { background: var(--gold-deep); color: var(--text-primary); }
.badge--gift      { background: var(--bg-stone);  color: var(--gold-pure); border: 1px solid var(--gold-hairline); }

.intention-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-hairline);
  border-radius: 999px;
  color: var(--gold-pure);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ====================================================================
 * Announcement Bar
 * ==================================================================== */
.announcement-bar {
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--gold-pure);
  color: var(--bg-void);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 60;
  overflow: hidden;
}
.announcement-bar span {
  display: inline-block;
  animation: ann-fade 600ms var(--ease);
}
@keyframes ann-fade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ====================================================================
 * Header
 * ==================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: rgba(8, 6, 4, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 250ms var(--ease), border-color 250ms var(--ease);
}
.site-header.is-scrolled {
  background: rgba(8, 6, 4, 0.92);
  border-bottom-color: var(--gold-hairline);
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  color: var(--gold-pure);
  text-transform: uppercase;
}
.brand__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
}
.main-nav > .nav-item {
  position: relative;
}
.main-nav a, .main-nav .nav-trigger {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 10px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.main-nav a:hover, .main-nav .nav-trigger:hover {
  color: var(--gold-pure);
  transform: translateY(-1px);
}
.main-nav a::after, .main-nav .nav-trigger::after {
  content: "";
  position: absolute;
  left: 0; bottom: 4px;
  width: 0; height: 1px;
  background: var(--gold-pure);
  transition: width 220ms var(--ease);
}
.main-nav a:hover::after, .main-nav .nav-trigger:hover::after { width: 100%; }
.nav-item--sacred a { color: var(--gold-pure); }
.nav-item--sacred a::before {
  content: "✦";
  margin-right: 6px;
  color: var(--gold-pure);
  font-size: 0.7rem;
}

.dropdown {
  position: absolute;
  top: 100%; left: -16px;
  min-width: 220px;
  background: var(--bg-abyss);
  border: 1px solid var(--gold-hairline);
  border-radius: var(--radius-sm);
  padding: 14px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease),
    visibility var(--dur-fast) var(--ease);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--text-secondary);
}
.dropdown a:hover { color: var(--gold-pure); background: var(--bg-earth); }
.dropdown a::after { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-actions .icon-btn {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  position: relative;
}
.header-actions .icon-btn:hover {
  color: var(--gold-pure);
  transform: translateY(-1px);
}
.header-actions .icon-btn svg {
  width: 19px; height: 19px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.cart-count {
  position: absolute;
  top: -4px; right: -6px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--saffron);
  color: var(--text-primary);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 9px;
  display: grid; place-items: center;
}
.lang-switch {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  display: inline-flex; align-items: center; gap: 4px;
}
.lang-switch:hover { color: var(--gold-pure); }

.lang-picker {
  position: relative;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  padding: 8px;
  background: var(--bg-abyss);
  border: 1px solid var(--gold-hairline);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  display: grid;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.lang-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-menu button {
  padding: 9px 12px;
  text-align: left;
  border-radius: 4px;
  color: var(--text-secondary);
  transition: background 160ms var(--ease), color 160ms var(--ease);
}

.lang-menu button:hover,
.lang-menu button.is-active {
  background: var(--bg-earth);
  color: var(--gold-pure);
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .header-inner,
html[dir="rtl"] .hero__content,
html[dir="rtl"] .section-head,
html[dir="rtl"] .modal-grid,
html[dir="rtl"] .totem-spotlight__grid,
html[dir="rtl"] .newsletter,
html[dir="rtl"] .site-footer__inner {
  direction: rtl;
}

html[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] .lang-menu button {
  text-align: right;
}

/* mobile burger */
.burger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--text-primary);
}
.burger span { width: 20px; height: 1px; background: currentColor; }

/* ====================================================================
 * Hero
 * ==================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 36px - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,168,75,0.12), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(196,80,26,0.08), transparent 50%),
    linear-gradient(180deg, #050402 0%, #0a0703 70%, #15100a 100%);
  transform: translate3d(0, calc(var(--hero-lift, 0px) * -0.15), 0);
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(200,168,75,0.08) 1px, transparent 0);
  background-size: 38px 38px;
  opacity: 0.4;
  mix-blend-mode: screen;
  transform: translate3d(0, calc(var(--hero-lift, 0px) * 0.08), 0) scale(1.05);
  transition: transform 220ms linear, opacity 260ms var(--ease);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 30% 30%, rgba(232,204,122,0.10), transparent 22%),
    radial-gradient(circle at 70% 62%, rgba(30,58,110,0.10), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(196,80,26,0.08), transparent 32%);
  filter: blur(26px);
  opacity: 0.55;
  animation: ambient-drift 18s var(--ease-soft) infinite alternate;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
  padding: 80px 0;
}
.hero__intro { max-width: 560px; }
.hero__topline {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
  opacity: 0; transform: translateY(12px);
}
.hero__topline .line {
  width: 48px; height: 1px; background: var(--gold-pure);
}
.hero__topline span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-pure);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero__title {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--text-primary);
}
.hero__title .line {
  display: block;
  opacity: 0; transform: translateY(20px);
}
.hero__title .line--gold { color: var(--gold-pure); }
.hero__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 24px 0 40px;
  max-width: 460px;
  opacity: 0; transform: translateY(12px);
}
.hero__cta {
  display: flex; gap: 16px;
  margin-bottom: 56px;
  opacity: 0; transform: translateY(12px);
}
.hero__trust {
  display: flex; gap: 32px; flex-wrap: wrap;
  opacity: 0; transform: translateY(12px);
}
.hero__trust span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.hero__trust span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-pure);
}
.hero__visual {
  position: relative;
  height: 540px;
  opacity: 0;
  transform: translate3d(0, calc(var(--hero-lift, 0px) * -0.05), 0);
  transition: transform 220ms linear, opacity 700ms var(--ease);
  will-change: transform;
}
.hero__card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-earth);
  border: 1px solid var(--gold-hairline);
  box-shadow:
    0 28px 72px rgba(0,0,0,0.52),
    0 0 0 1px rgba(200,168,75,0.05),
    inset 0 1px 0 rgba(255,255,255,0.04);
  will-change: transform, opacity;
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card--main {
  width: 320px; height: 420px;
  right: 40px; top: 40px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}
.hero__card--secondary {
  width: 220px; height: 280px;
  right: 280px; top: 220px;
  z-index: 2;
  opacity: 0.85;
  animation: float 7s ease-in-out infinite -2s;
}
.hero__card--accent {
  width: 160px; height: 200px;
  right: 0; top: 360px;
  z-index: 1;
  opacity: 0.65;
  animation: float 8s ease-in-out infinite -4s;
}
.hero__card-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@keyframes ambient-drift {
  0%   { transform: translate3d(-1.5%, -1%, 0) scale(1.02); }
  50%  { transform: translate3d(1%, 1.2%, 0) scale(1.05); }
  100% { transform: translate3d(1.5%, -0.8%, 0) scale(1.03); }
}

/* hero animation entry triggers (added by JS) */
.hero.is-mounted .hero__topline,
.hero.is-mounted .hero__title .line,
.hero.is-mounted .hero__subtitle,
.hero.is-mounted .hero__cta,
.hero.is-mounted .hero__trust,
.hero.is-mounted .hero__visual {
  opacity: 1; transform: none;
  transition: opacity var(--dur-slow) var(--ease-soft), transform var(--dur-slow) var(--ease-soft);
}
.hero.is-mounted .hero__topline           { transition-delay: 200ms; }
.hero.is-mounted .hero__title .line:nth-child(1) { transition-delay: 400ms; }
.hero.is-mounted .hero__title .line:nth-child(2) { transition-delay: 550ms; }
.hero.is-mounted .hero__title .line:nth-child(3) { transition-delay: 700ms; }
.hero.is-mounted .hero__subtitle          { transition-delay: 900ms; }
.hero.is-mounted .hero__cta               { transition-delay: 1100ms; }
.hero.is-mounted .hero__trust             { transition-delay: 1300ms; }
.hero.is-mounted .hero__visual            { transition-delay: 1500ms; }
.hero__visual > * {
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-soft);
}
.hero.is-mounted .hero__visual > * {
  opacity: 1;
}
.hero.is-mounted .hero__card--main       { transition-delay: 1500ms; }
.hero.is-mounted .hero__card--secondary  { transition-delay: 1650ms; }
.hero.is-mounted .hero__card--accent     { transition-delay: 1800ms; }

/* ====================================================================
 * IntentionFinder
 * ==================================================================== */
.intentions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.intention-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--bg-stone);
  transition:
    border-color var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease-soft),
    box-shadow var(--dur-fast) var(--ease-soft);
  box-shadow: 0 14px 36px rgba(0,0,0,0.24);
}
.intention-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8,6,4,0.05) 0%,
    rgba(8,6,4,0.45) 50%,
    rgba(8,6,4,0.92) 100%);
  z-index: 1;
  transition: opacity 300ms;
}
.intention-card__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) brightness(0.85);
  transition: transform 600ms var(--ease), filter 400ms;
}
.intention-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px;
  z-index: 2;
  text-align: center;
}
.intention-card__glyph {
  width: 32px; height: 32px;
  margin: 0 auto 10px;
  display: grid; place-items: center;
  color: var(--gold-pure);
  font-size: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
}
.intention-card__name {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin: 0 0 6px;
}
.intention-card__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin: 0 0 8px;
}
.intention-card__count {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--gold-pure);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.intention-card__arrow {
  display: block;
  margin-top: 12px;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-pure);
  text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.intention-card:hover {
  border-color: var(--gold-hairline);
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.34), 0 0 0 1px var(--gold-glow);
}
.intention-card:hover .intention-card__bg { transform: scale(1.08); filter: grayscale(0) brightness(1); }
.intention-card:hover .intention-card__arrow { opacity: 1; transform: translateY(0); }

/* ====================================================================
 * Product Card
 * ==================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.product-card {
  position: relative;
  background: var(--bg-earth);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition:
    border-color var(--dur-med) var(--ease),
    box-shadow var(--dur-med) var(--ease-soft),
    transform var(--dur-med) var(--ease-soft);
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}
.product-card:hover {
  border-color: var(--gold-hairline);
  transform: translateY(-5px);
  box-shadow: 0 26px 56px rgba(0,0,0,0.48), 0 0 0 1px var(--gold-glow);
}
.product-card__media {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-stone), var(--bg-abyss));
  overflow: hidden;
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-soft), filter var(--dur-med) var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.06); filter: saturate(1.03) contrast(1.02); }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  z-index: 2;
}
.product-card__wishlist {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(8,6,4,0.65);
  color: var(--text-secondary);
  font-size: 1rem;
  z-index: 2;
  transition: transform var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  backdrop-filter: blur(10px);
}
.product-card__wishlist:hover { color: var(--gold-pure); background: rgba(8,6,4,0.88); transform: scale(1.04); }
.product-card__wishlist.is-active { color: var(--saffron); }
.product-card__body { padding: 16px 18px 20px; }
.product-card__name {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
  line-height: 1.3;
  transition: color var(--dur-fast) var(--ease);
}
.product-card:hover .product-card__name { color: var(--gold-pure); }
.product-card__meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.product-card__rating {
  font-size: 0.78rem;
  color: var(--gold-pure);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.product-card__rating em { color: var(--text-muted); font-style: normal; margin-left: 4px; }
.product-card__price {
  display: flex; gap: 10px; align-items: baseline;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.product-card__price .price-now {
  color: var(--gold-pure);
  font-size: 1.15rem;
}
.product-card__price del {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
}

/* ====================================================================
 * TotemSpotlight
 * ==================================================================== */
.totem-spotlight { position: relative; overflow: hidden; }
.totem-spotlight::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(200,168,75,0.08), transparent 40%);
  pointer-events: none;
}
.totem-spotlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.totem-spotlight__copy h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-primary);
  margin: 12px 0 28px;
  line-height: 1.2;
}
.totem-spotlight__copy p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin: 0 0 20px;
}
.totem-spotlight__links {
  display: flex; flex-direction: column;
  gap: 6px;
  margin: 28px 0 32px;
}
.totem-spotlight__links a {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold-pure);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 220ms;
}
.totem-spotlight__links a:hover { gap: 14px; }

.quote-block {
  position: relative;
  margin-top: 32px;
  padding: 4px 0 4px 20px;
  border-left: 2px solid var(--gold-pure);
}
.quote-block p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0 0 10px;
}
.quote-block cite {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.totem-spotlight__visual {
  position: relative;
  height: 560px;
}
.totem-visual {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-stone);
  border: 1px solid var(--gold-hairline);
  cursor: pointer;
  transition:
    transform var(--dur-med) var(--ease-soft),
    box-shadow var(--dur-med) var(--ease-soft),
    border-color var(--dur-fast) var(--ease);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}
.totem-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-soft), filter var(--dur-med) var(--ease);
}
.totem-visual:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(0,0,0,0.42);
}
.totem-visual:hover img { transform: scale(1.07); filter: saturate(1.03) contrast(1.02); }
.totem-visual--main {
  width: 65%; height: 60%;
  top: 0; left: 0;
  z-index: 2;
}
.totem-visual--alt {
  width: 55%; height: 50%;
  bottom: 0; right: 0;
  z-index: 1;
}
.totem-visual__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(8,6,4,0.92));
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}
.totem-visual__overlay h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  margin: 0;
  letter-spacing: 0.06em;
}
.totem-visual__overlay span {
  font-family: 'Inter', sans-serif;
  color: var(--gold-pure);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ====================================================================
 * BrandVoice
 * ==================================================================== */
.brand-voice {
  text-align: center;
  padding: 120px 0;
}
.brand-voice__symbol {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold-pure);
  margin-bottom: 32px;
  display: inline-block;
  line-height: 1;
}
.brand-voice__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.5;
  color: var(--text-primary);
  max-width: 720px;
  margin: 0 auto 28px;
}
.brand-voice__attribution {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.brand-voice__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem;
  color: var(--gold-pure);
  letter-spacing: 0.05em;
  transition: gap var(--dur-fast) var(--ease);
}
.brand-voice__link:hover { gap: 12px; }

/* ====================================================================
 * Journal Preview
 * ==================================================================== */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.journal-card {
  background: var(--bg-abyss);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition:
    border-color var(--dur-med) var(--ease),
    transform var(--dur-med) var(--ease-soft),
    box-shadow var(--dur-med) var(--ease-soft);
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0,0,0,0.2);
}
.journal-card:hover {
  border-color: var(--gold-hairline);
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(0,0,0,0.38);
}
.journal-card__media {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}
.journal-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 700ms var(--ease-soft), filter var(--dur-med) var(--ease);
}
.journal-card:hover .journal-card__media img { transform: scale(1.04); filter: brightness(1); }
.journal-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 10px;
  background: var(--gold-pure);
  color: var(--bg-void);
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.journal-card__body { padding: 24px; }
.journal-card__title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--text-primary);
  margin: 0 0 12px;
  letter-spacing: 0.03em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--dur-fast) var(--ease);
}
.journal-card:hover .journal-card__title { color: var(--gold-pure); }
.journal-card__excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.journal-card__meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: flex; gap: 12px;
}

/* ====================================================================
 * Testimonials
 * ==================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--bg-earth);
  border: 1px solid var(--gold-hairline);
  border-radius: var(--radius-sm);
  padding: 28px;
  position: relative;
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  transition:
    transform var(--dur-med) var(--ease-soft),
    box-shadow var(--dur-med) var(--ease-soft),
    border-color var(--dur-fast) var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(0,0,0,0.32);
  border-color: rgba(200,168,75,0.4);
}
.testimonial__stars {
  color: var(--gold-pure);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.testimonial__body {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 24px;
  position: relative;
}
.testimonial__user {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--bg-border);
  padding-top: 16px;
}
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--gold-hairline);
  display: grid; place-items: center;
  color: var(--gold-pure);
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 0.95rem;
}
.testimonial__name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}
.testimonial__location {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ====================================================================
 * Ritual CTA
 * ==================================================================== */
.ritual-cta {
  position: relative;
  padding: 140px 0;
  background:
    linear-gradient(rgba(8,6,4,0.78), rgba(8,6,4,0.78)),
    radial-gradient(ellipse at 50% 50%, rgba(196,80,26,0.18), transparent 50%),
    linear-gradient(135deg, #1c1309, #080604);
  text-align: center;
}
.ritual-cta__inner {
  max-width: 620px;
  margin: 0 auto;
}
.ritual-cta h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 12px 0 24px;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}
.ritual-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 36px;
}
.ritual-cta__links {
  margin-top: 36px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.ritual-cta__links a {
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}
.ritual-cta__links a:not(:last-child)::after {
  content: "·";
  margin-left: 18px;
  color: var(--text-muted);
}
.ritual-cta__links a:hover { color: var(--gold-pure); }

/* ====================================================================
 * Newsletter
 * ==================================================================== */
.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.newsletter__copy h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.7rem;
  color: var(--text-primary);
  margin: 12px 0 12px;
  letter-spacing: 0.04em;
}
.newsletter__copy p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}
.newsletter__form { display: flex; flex-direction: column; gap: 12px; }
.newsletter__input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}
.input {
  height: 52px;
  padding: 0 18px;
  background: var(--bg-abyss);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  outline: none;
  transition:
    border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.input::placeholder { color: var(--text-muted); }
.input:focus {
  border-color: var(--gold-pure);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.12);
}
.newsletter__hint {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ====================================================================
 * Shop / catalog block (kept lightweight, lives at #shop)
 * ==================================================================== */
.shop-section { padding-bottom: 120px; }
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bg-border);
  flex-wrap: wrap;
}
.shop-toolbar__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex; align-items: center;
  height: 34px;
  padding: 0 14px;
  border: 1px solid var(--bg-border);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  transition:
    transform var(--dur-fast) var(--ease-soft),
    color var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease);
}
.chip:hover {
  color: var(--gold-pure);
  border-color: var(--gold-hairline);
  transform: translateY(-1px);
}
.chip.is-active {
  background: var(--gold-glow);
  border-color: var(--gold-pure);
  color: var(--gold-pure);
}
.shop-toolbar select {
  height: 34px;
  padding: 0 14px;
  background: var(--bg-abyss);
  border: 1px solid var(--bg-border);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  transition:
    border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
}
.shop-toolbar select:hover,
.shop-toolbar select:focus {
  border-color: var(--gold-hairline);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.08);
}

/* ====================================================================
 * Footer
 * ==================================================================== */
.site-footer {
  background: var(--bg-abyss);
  border-top: 1px solid var(--gold-hairline);
  padding: 80px 0 32px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.site-footer__brand p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 18px 0 24px;
  max-width: 240px;
}
.site-footer__social {
  display: flex; gap: 16px;
}
.site-footer__social a {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--bg-border);
  color: var(--text-muted);
  transition:
    color var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
}
.site-footer__social a:hover {
  color: var(--gold-pure);
  border-color: var(--gold-hairline);
  transform: translateY(-1px);
}
.site-footer__social svg { width: 14px; height: 14px; }
.site-footer h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  color: var(--gold-pure);
  letter-spacing: 0.22em;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease);
}
.site-footer ul a:hover { color: var(--gold-pure); }

.site-footer__pay {
  display: flex; gap: 8px; margin-top: 24px;
  filter: brightness(0.55);
}
.site-footer__pay span {
  display: inline-grid; place-items: center;
  height: 22px; padding: 0 8px;
  border: 1px solid var(--bg-border);
  background: var(--bg-stone);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}
.site-footer__bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--bg-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.site-footer__bottom a { transition: color var(--dur-fast) var(--ease); }
.site-footer__bottom a:hover { color: var(--gold-pure); }
.site-footer__mantra {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: rgba(107, 85, 64, 0.5);
  letter-spacing: 0.1em;
}

/* ====================================================================
 * Cart Drawer
 * ==================================================================== */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(8, 6, 4, 0.7);
  backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-med) var(--ease);
  will-change: opacity;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 90;
  width: min(440px, 100vw);
  height: 100vh;
  background: var(--bg-abyss);
  border-left: 1px solid var(--gold-hairline);
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(100%);
  transition: transform 360ms var(--ease-soft);
  box-shadow: -24px 0 56px rgba(0,0,0,0.36);
  will-change: transform;
}
.cart-drawer.is-open { transform: translateX(0); }
.drawer-header,
.cart-summary { padding: 24px 28px; }
.drawer-header {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--bg-border);
}
.drawer-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--gold-pure);
  margin: 0;
  text-transform: uppercase;
}
.cart-close, .modal-close, .menu-close {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.cart-close:hover, .modal-close:hover, .menu-close:hover {
  color: var(--gold-pure);
  background: var(--bg-earth);
  transform: scale(1.03);
}
.cart-items { overflow-y: auto; padding: 16px 28px; }
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--bg-border);
}
.cart-item img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--bg-border);
}
.cart-item__name {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}
.cart-item__meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 8px;
}
.qty {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty button {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: var(--text-secondary);
  transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.qty button:hover { background: var(--bg-stone); color: var(--gold-pure); }
.qty span {
  width: 30px; text-align: center;
  color: var(--text-primary);
  font-size: 0.85rem;
}
.cart-item__remove {
  align-self: start;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color var(--dur-fast) var(--ease);
}
.cart-item__remove:hover { color: var(--saffron); }
.cart-item__price {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--gold-pure);
  font-weight: 600;
}
.cart-empty {
  padding: 60px 28px;
  text-align: center;
  color: var(--text-muted);
}
.cart-empty .glyph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold-pure);
  display: block;
  margin-bottom: 12px;
}
.cart-summary {
  border-top: 1px solid var(--bg-border);
  display: flex; flex-direction: column; gap: 14px;
}
.cart-summary__row {
  display: flex; justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
}
.cart-summary__row strong {
  color: var(--gold-pure);
  font-size: 1.1rem;
  font-weight: 700;
}

/* ====================================================================
 * Mobile menu
 * ==================================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  z-index: 90;
  width: min(360px, 92vw);
  height: 100vh;
  background: var(--bg-abyss);
  border-right: 1px solid var(--gold-hairline);
  padding: 80px 28px 32px;
  transform: translateX(-100%);
  transition: transform 360ms var(--ease-soft);
  overflow-y: auto;
  box-shadow: 24px 0 56px rgba(0,0,0,0.36);
  will-change: transform;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu .menu-close {
  position: absolute; top: 18px; right: 18px;
  border: 1px solid var(--bg-border);
}
.mobile-menu h5 {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  color: var(--gold-pure);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 24px 0 8px;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--bg-border);
  transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.mobile-menu a:hover {
  color: var(--gold-pure);
  transform: translateX(2px);
}

/* ====================================================================
 * Product Modal
 * ==================================================================== */
dialog.product-modal {
  width: min(1080px, calc(100vw - 24px));
  max-height: calc(100vh - 32px);
  border: 1px solid var(--gold-hairline);
  border-radius: var(--radius);
  background: var(--bg-abyss);
  color: var(--text-primary);
  padding: 0;
  box-shadow: 0 40px 100px rgba(0,0,0,0.75);
  overflow: hidden;
}
dialog[open] { animation: dialog-rise 260ms var(--ease-soft); }
dialog::backdrop { background: rgba(8,6,4,0.85); backdrop-filter: blur(10px); }
@keyframes dialog-rise {
  from { opacity: 0; transform: translateY(10px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}

.product-modal .modal-close {
  position: absolute; top: 16px; right: 16px;
  z-index: 4;
  background: rgba(8,6,4,0.65);
  backdrop-filter: blur(10px);
}
.modal-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  max-height: calc(100vh - 32px);
}
.modal-gallery {
  position: relative;
  background: var(--bg-stone);
}
.modal-gallery img {
  width: 100%; height: 100%;
  min-height: 460px; max-height: 100%;
  object-fit: cover;
}
.modal-detail {
  padding: 56px 48px 40px;
  overflow-y: auto;
}
.modal-detail h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: var(--text-primary);
  margin: 8px 0 6px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.modal-detail .tibetan-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-pure);
  font-size: 0.95rem;
  margin: 0 0 16px;
  letter-spacing: 0.05em;
}
.modal-detail__intentions {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.modal-detail__rating {
  font-size: 0.85rem;
  color: var(--gold-pure);
  margin-bottom: 18px;
}
.modal-detail__rating em { color: var(--text-muted); font-style: normal; margin-left: 6px; }
.modal-detail__price {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 18px;
}
.modal-detail__price .now {
  font-family: 'Inter', sans-serif;
  font-size: 1.9rem;
  color: var(--gold-pure);
  font-weight: 700;
}
.modal-detail__price del {
  color: var(--text-muted);
  font-size: 1rem;
}
.modal-detail__stock {
  font-size: 0.8rem;
  color: var(--saffron);
  margin-bottom: 24px;
}
.modal-detail__story {
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}
.modal-detail__story-label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  color: var(--gold-pure);
  letter-spacing: 0.22em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.modal-detail__story p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin: 0 0 12px;
}
.modal-detail__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
}
.modal-detail__facts div {
  padding: 12px 14px;
  background: var(--bg-earth);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
}
.modal-detail__facts strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--gold-pure);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.modal-detail__facts span { color: var(--text-secondary); }
.modal-detail__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.modal-detail__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.modal-detail__trust span {
  display: inline-flex; align-items: center; gap: 6px;
}
.modal-detail__trust span::before {
  content: ""; width: 5px; height: 5px;
  border-radius: 50%; background: var(--gold-pure);
}

/* checkout dialog */
dialog.checkout-modal {
  width: min(560px, calc(100vw - 24px));
  border: 1px solid var(--gold-hairline);
  border-radius: var(--radius);
  background: var(--bg-abyss);
  color: var(--text-primary);
  padding: 36px;
}
dialog.checkout-modal h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--gold-pure);
  margin: 0 0 24px;
  text-transform: uppercase;
}
.checkout-form { display: grid; gap: 14px; }
.checkout-form label {
  display: grid; gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.checkout-form input,
.checkout-form select {
  height: 46px;
  padding: 0 14px;
  background: var(--bg-earth);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  outline: none;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.9rem;
  transition:
    border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease);
}
.checkout-form input:focus,
.checkout-form select:focus {
  border-color: var(--gold-pure);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.12);
}

/* ====================================================================
 * Toast
 * ==================================================================== */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 120;
  min-width: 240px;
  max-width: calc(100vw - 48px);
  padding: 14px 18px;
  background: var(--bg-earth);
  color: var(--text-primary);
  border: 1px solid var(--gold-hairline);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transform: translateY(20px);
  opacity: 0; pointer-events: none;
  transition:
    opacity var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
}
.toast.is-open { opacity: 1; transform: translateY(0); }

/* ====================================================================
 * Reveal on scroll
 * ==================================================================== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease-soft), transform var(--dur-slow) var(--ease-soft);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--stagger > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.985);
  transition:
    opacity var(--dur-slow) var(--ease-soft),
    transform var(--dur-slow) var(--ease-soft),
    box-shadow var(--dur-med) var(--ease-soft),
    border-color var(--dur-fast) var(--ease);
  transition-delay: var(--stagger-delay, 0ms);
}
.reveal--stagger.is-visible > * {
  opacity: 1;
  transform: none;
}

/* ====================================================================
 * Motion reduction
 * ==================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
  .hero__bg::after,
  .hero__card--main,
  .hero__card--secondary,
  .hero__card--accent {
    animation: none !important;
  }
}

/* ====================================================================
 * Responsive
 * ==================================================================== */
@media (max-width: 1100px) {
  .product-grid,
  .product-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .intentions-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__visual { display: none; }
  .hero__content { grid-template-columns: 1fr; }
  .totem-spotlight__grid { grid-template-columns: 1fr; gap: 48px; }
  .totem-spotlight__visual { height: 460px; }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .newsletter { grid-template-columns: 1fr; gap: 32px; }
  .main-nav { display: none; }
  .burger { display: flex; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .brand__tagline { display: none; }
  .lang-switch { display: none; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .header-inner { padding: 0 20px; gap: 14px; }
  .brand__name { font-size: 0.85rem; letter-spacing: 0.16em; }
  .product-grid,
  .product-grid--3 { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-card__body { padding: 12px 14px 16px; }
  .product-card__name { font-size: 0.85rem; }
  .intentions-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .journal-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.4rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-gallery img { min-height: 300px; max-height: 40vh; }
  .modal-detail { padding: 32px 24px; }
  .shop-toolbar { gap: 10px; }
  .shop-toolbar__filters { gap: 6px; }
  .totem-spotlight__visual { height: 380px; }
  .ritual-cta { padding: 90px 0; }
  .brand-voice { padding: 80px 0; }
  .header-actions { gap: 8px; }
}

/* ====================================================================
 * v3.1 — Phase A story-depth additions
 * Lineage Band · Makers · Interstitials · Article Reading · Tabs
 * ==================================================================== */

/* -------- Lineage Band ----------------------------------------- */
.lineage-band { position: relative; }
.lineage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.lineage-grid::before {
  content: "";
  position: absolute;
  top: 130px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-hairline), transparent);
  pointer-events: none;
}
.lineage-step {
  text-align: center;
  position: relative;
}
.lineage-step__media {
  position: relative;
  width: 200px; height: 200px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-stone);
  border: 1px solid var(--gold-hairline);
  box-shadow: 0 0 0 6px var(--bg-abyss), 0 0 0 7px var(--gold-hairline);
}
.lineage-step__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85) sepia(0.1);
}
.lineage-step__num {
  position: absolute;
  top: -8px; right: -8px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-void);
  border: 1px solid var(--gold-pure);
  color: var(--gold-pure);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  z-index: 2;
}
.lineage-step__title {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin: 0 0 14px;
}
.lineage-step__body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 auto;
  max-width: 320px;
}

/* -------- Makers ----------------------------------------------- */
.makers-section { position: relative; }
.makers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.maker-card {
  background: var(--bg-abyss);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  padding: 36px 28px 28px;
  text-align: center;
  position: relative;
  transition:
    border-color var(--dur-med) var(--ease),
    transform var(--dur-med) var(--ease-soft),
    box-shadow var(--dur-med) var(--ease-soft);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}
.maker-card:hover {
  border-color: var(--gold-hairline);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(0,0,0,0.32);
}
.maker-card__portrait {
  width: 110px; height: 110px;
  margin: 0 auto 22px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-stone);
  border: 1px solid var(--gold-hairline);
}
.maker-card__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) sepia(0.15) brightness(0.9);
}
.maker-card__name {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin: 0 0 4px;
}
.maker-card__role {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-pure);
  margin: 0 0 22px;
}
.maker-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text-primary);
  margin: 0 0 22px;
  padding: 0 12px;
  position: relative;
}
.maker-card__quote::before,
.maker-card__quote::after {
  content: "";
  display: block;
  width: 32px; height: 1px;
  background: var(--gold-hairline);
  margin: 14px auto;
}
.maker-card__story {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 22px;
  text-align: left;
}
.maker-card__link {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold-pure);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--dur-fast) var(--ease);
  text-transform: uppercase;
}
.maker-card__link:hover { gap: 12px; }

/* -------- Interstitial poetry strips ---------------------------- */
.interstitial {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 56px 28px;
  background: var(--bg-void);
  text-align: center;
}
.interstitial__glyph {
  color: var(--gold-pure);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  opacity: 0.7;
  flex: 0 0 auto;
}
.interstitial__line {
  flex: 0 0 60px;
  height: 1px;
  background: var(--gold-hairline);
}
.interstitial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin: 0;
  max-width: 540px;
  line-height: 1.5;
}

/* -------- Product Modal Tabs ------------------------------------ */
.product-tabs {
  margin-top: 24px;
}
.product-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--bg-border);
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.product-tabs__nav::-webkit-scrollbar { display: none; }
.product-tabs__nav button {
  flex: 0 0 auto;
  padding: 14px 18px 12px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.product-tabs__nav button:hover { color: var(--text-secondary); }
.product-tabs__nav button.is-active { color: var(--gold-pure); }
.product-tabs__nav button.is-active::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: -1px;
  height: 1px;
  background: var(--gold-pure);
}
.product-tabs__panel { display: none; }
.product-tabs__panel.is-active { display: block; animation: tab-fade 280ms var(--ease); }
@keyframes tab-fade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: none; }
}

/* Materials table */
.materials-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
}
.materials-table tr { border-bottom: 1px solid var(--bg-border); }
.materials-table tr:last-child { border-bottom: 0; }
.materials-table th, .materials-table td {
  padding: 10px 0;
  text-align: left;
  vertical-align: top;
}
.materials-table th {
  width: 40%;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-pure);
  text-transform: uppercase;
}
.materials-table td { color: var(--text-secondary); }

/* Rituals list */
.rituals-list { list-style: none; padding: 0; margin: 0; }
.rituals-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bg-border);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.rituals-list li:last-child { border-bottom: 0; }
.rituals-list li::before {
  content: counter(ritual, decimal-leading-zero);
  counter-increment: ritual;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--gold-pure);
  letter-spacing: 0.1em;
  padding-top: 2px;
}
.rituals-list { counter-reset: ritual; }
.rituals-footnote {
  margin-top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.rituals-footnote a { color: var(--gold-pure); }

/* Reviews tab */
.reviews-summary {
  display: flex; align-items: center; gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bg-border);
  margin-bottom: 18px;
}
.reviews-summary__score {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--gold-pure);
  font-weight: 700;
}
.reviews-summary__stars { color: var(--gold-pure); letter-spacing: 0.1em; font-size: 0.85rem; }
.reviews-summary__count {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.review {
  padding: 16px 0;
  border-bottom: 1px solid var(--bg-border);
}
.review:last-child { border-bottom: 0; }
.review__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.review__name {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.review__verified {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--success);
  text-transform: uppercase;
  margin-left: 8px;
}
.review__date {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.review__stars { color: var(--gold-pure); font-size: 0.78rem; letter-spacing: 0.08em; margin-bottom: 6px; }
.review__body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Description tab story */
.tab-story p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin: 0 0 14px;
}
.tab-story__lead {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  color: var(--gold-pure);
  letter-spacing: 0.22em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.tab-story__attribution {
  margin-top: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.tab-story__attribution strong {
  color: var(--gold-pure);
  font-weight: 600;
}

/* -------- Article Reading (long-form journal modal) ------------- */
dialog.article-modal {
  width: min(960px, calc(100vw - 24px));
  max-height: calc(100vh - 32px);
  border: 1px solid var(--gold-hairline);
  border-radius: var(--radius);
  background: var(--bg-abyss);
  color: var(--text-primary);
  padding: 0;
  box-shadow: 0 40px 100px rgba(0,0,0,0.75);
  overflow: hidden;
}
dialog.article-modal .modal-close {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 4;
  background: rgba(8,6,4,0.7);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold-hairline);
}
.article-reading {
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  scroll-behavior: smooth;
}
.article-reading__hero {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.article-reading__hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}
.article-reading__hero-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 56px 64px 40px;
  background: linear-gradient(180deg, transparent, rgba(8,6,4,0.92));
}
.article-reading__hero-overlay h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text-primary);
  margin: 14px 0 18px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  max-width: 720px;
}
.article-reading__byline {
  display: flex;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}
.article-reading__byline span:nth-child(odd) { color: var(--gold-pure); }
.article-reading__body {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.85;
  color: var(--text-secondary);
}
.article-reading__body p { margin: 0 0 22px; }
.article-reading__body p.lead {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 32px;
}
.article-reading__body p.lead::first-letter {
  font-family: 'Cinzel Decorative', serif;
  font-size: 4rem;
  color: var(--gold-pure);
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 -2px;
}
.article-reading__body h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  color: var(--text-primary);
  margin: 44px 0 16px;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.article-reading__body h2::before {
  content: "❖";
  color: var(--gold-pure);
  margin-right: 12px;
  font-size: 0.85rem;
  vertical-align: 0.2em;
}
.article-reading__body strong {
  color: var(--text-primary);
  font-weight: 600;
}
.article-reading__body blockquote {
  margin: 36px 0;
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--gold-pure);
}
.article-reading__body blockquote p {
  font-style: italic;
  font-size: 1.4rem;
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0 0 10px;
}
.article-reading__body blockquote cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.article-reading__footer {
  background: var(--bg-earth);
  border-top: 1px solid var(--bg-border);
  padding: 56px 32px 64px;
  text-align: center;
}
.article-reading__footer h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 8px 0 32px;
  letter-spacing: 0.04em;
}
.article-reading__footer .product-grid {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* Make journal cards explicitly clickable */
.journal-card { cursor: pointer; }

/* -------- Responsive overrides for v3.1 ------------------------- */
@media (max-width: 1100px) {
  .lineage-grid { grid-template-columns: 1fr; gap: 48px; }
  .lineage-grid::before { display: none; }
  .makers-grid { grid-template-columns: 1fr; gap: 24px; }
  .article-reading__hero-overlay { padding: 40px 32px 32px; }
  .article-reading__body { padding: 48px 24px; font-size: 1.1rem; }
}

@media (max-width: 720px) {
  .lineage-step__media { width: 160px; height: 160px; }
  .interstitial { padding: 36px 20px; gap: 14px; }
  .interstitial__quote { font-size: 1rem; }
  .interstitial__line { flex-basis: 24px; }
  .maker-card { padding: 28px 22px 22px; }
  .product-tabs__nav button { padding: 12px 12px 10px; font-size: 0.65rem; }
  .article-reading__hero { height: 260px; }
  .article-reading__hero-overlay { padding: 28px 20px 24px; }
  .article-reading__body { padding: 36px 20px; font-size: 1.05rem; line-height: 1.75; }
  .article-reading__body p.lead { font-size: 1.2rem; }
  .article-reading__body p.lead::first-letter { font-size: 3rem; }
  .article-reading__body h2 { font-size: 1.15rem; margin: 32px 0 12px; }
  .article-reading__footer { padding: 36px 20px 48px; }
  dialog.article-modal .modal-close { top: 14px; right: 14px; }
}
