/* ====================================================================
   SOLITUDE INK — Cinematic Luxury Literary Storefront
   Charcoal & gold · candlelit · A24-editorial
   ==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter+Tight:wght@300;400;500;600&family=Tiro+Devanagari+Hindi:ital@0;1&family=Italianno&display=swap');

/* ---- TOKENS ---------------------------------------------------- */
:root {
  /* Inks */
  --ink-0: #050402;
  --ink:   #0b0907;
  --ink-1: #110e0a;
  --ink-2: #181410;
  --ink-3: #221c15;
  --ink-line: rgba(201, 169, 106, 0.14);

  /* Paper */
  --ivory:   #f3e8d2;
  --cream:   #e6d8bc;
  --paper:   #efe5cf;
  --paper-2: #ddcfb0;

  /* Accent */
  --gold:        #c9a96a;
  --gold-bright: #e6cd92;
  --gold-deep:   #8a7240;
  --gold-soft:   rgba(201, 169, 106, 0.55);

  /* Mood colors (book spines / accents) */
  --maroon:    #5c2230;
  --moss:      #4a523a;
  --indigo:    #2d3147;
  --bluegrey:  #4a5567;

  /* Type */
  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans:  'Inter Tight', 'Helvetica Neue', Arial, sans-serif;
  --deva:  'Tiro Devanagari Hindi', 'Cormorant Garamond', serif;
  --hand:  'Italianno', 'Cormorant Garamond', cursive;

  /* Rhythm */
  --rule-w: 1px;
  --max:   1320px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Easing */
  --ease-cinema: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---- RESET ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  color: var(--ivory);
  background: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
hr { border: 0; height: 1px; background: var(--ink-line); margin: 0; }

/* ---- GLOBAL ATMOSPHERE ---------------------------------------- */
/* Paper grain layer — applied on body so every page has it */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .55;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Subtle vignette */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.55) 100%);
}

/* ---- TYPOGRAPHY ----------------------------------------------- */
.display, h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.06; letter-spacing: -0.005em; }
.display-xxl { font-size: clamp(48px, 7.8vw, 124px); font-weight: 300; }
.display-xl  { font-size: clamp(40px, 5.6vw, 88px);  font-weight: 300; }
.display-l   { font-size: clamp(32px, 4vw, 60px);    font-weight: 400; }
.display-m   { font-size: clamp(24px, 2.6vw, 38px);  font-weight: 400; }

.italic { font-style: italic; }
.devanagari { font-family: var(--deva); font-weight: 400; }
.hand { font-family: var(--hand); font-weight: 400; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}
.eyebrow--ivory { color: var(--ivory); opacity: .7; }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: rgba(243, 232, 210, 0.78);
}

.body { font-size: 15.5px; line-height: 1.75; color: rgba(243, 232, 210, 0.75); }
.small { font-size: 12.5px; letter-spacing: 0.04em; color: rgba(243, 232, 210, 0.55); }

/* Gold rule + ornament */
.rule {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10.5px; letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold);
}
.rule::before, .rule::after { content: ''; height: 1px; width: 40px; background: var(--gold-soft); }
.rule--center { display: flex; justify-content: center; }

.ornament {
  display: inline-block; width: 6px; height: 6px;
  background: var(--gold); transform: rotate(45deg); margin: 0 6px;
}

/* ---- LAYOUT --------------------------------------------------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 11vw, 160px) 0; position: relative; }
.section--tight { padding: clamp(64px, 8vw, 110px) 0; }

/* ---- TOPBAR (fixed, always on top of nav) --------------------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 102;
}

/* ---- NAV ------------------------------------------------------ */
.nav {
  position: fixed; top: var(--topbar-h, 42px); left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
  transition: background .5s var(--ease-cinema), padding .5s var(--ease-cinema), border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 9, 7, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--ink-line);
  padding: 14px var(--gutter);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 18px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--ivory);
}
.nav__brand svg { width: 22px; height: 28px; flex: none; }
.nav__links { display: flex; gap: 36px; justify-content: center; }
.nav__links a {
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(243, 232, 210, 0.7);
  transition: color .3s;
  position: relative;
}
.nav__links a:hover { color: var(--gold-bright); }
.nav__links a.is-active { color: var(--gold); }
.nav__right { display: flex; justify-content: flex-end; gap: 24px; align-items: center; }
.nav__cart {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ivory);
}
.nav__cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--gold); color: var(--ink);
  border-radius: 999px; font-weight: 600; font-size: 10px; letter-spacing: 0;
}

/* Burger — hidden on wide screens */
.nav__burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px; cursor: pointer;
  background: none; border: none; padding: 0; color: var(--ivory);
  flex: none;
}
.nav__burger span {
  display: block; width: 22px; height: 1px;
  background: currentColor;
  transition: transform .35s var(--ease-cinema), opacity .25s;
  transform-origin: center;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu drawer */
.nav__mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 4, 2, 0.97);
  backdrop-filter: blur(12px);
  z-index: 9998;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease-cinema);
}
.nav__mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav__mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(34px, 8vw, 52px);
  font-weight: 300;
  color: rgba(243, 232, 210, 0.7);
  padding: 16px 40px;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: color .3s;
  text-align: center;
}
.nav__mobile-menu a:hover { color: var(--gold-bright); }
.nav__mobile-menu a em { font-style: italic; color: var(--gold); }
.nav__mobile-menu .menu-divider {
  width: 40px; height: 1px;
  background: var(--gold-soft);
  margin: 18px 0;
}
.nav__mobile-menu .menu-reserve {
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  padding: 16px 36px; border: 1px solid var(--gold);
  color: var(--gold-bright);
}
.nav__mobile-menu .menu-reserve:hover { background: var(--gold); color: var(--ink); }
.nav__mobile-close {
  position: absolute; top: 24px; right: var(--gutter);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(243, 232, 210, 0.6);
  font-size: 28px; line-height: 1;
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile-menu { display: flex; }
}

/* ---- BUTTONS -------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 30px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all .4s var(--ease-cinema);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px -16px rgba(201,169,106,.45);
}
.btn--ghost {
  color: var(--ivory);
  border-color: rgba(243,232,210,0.35);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}
.btn--ink {
  background: var(--ink);
  color: var(--ivory);
  border-color: rgba(243,232,210,0.18);
}
.btn--ink:hover {
  background: #000;
  border-color: var(--gold);
  color: var(--gold-bright);
}
.btn--lg { padding: 21px 38px; font-size: 12px; }
.btn--sm { padding: 12px 20px; font-size: 10px; }
.btn .arrow { transition: transform .4s var(--ease-cinema); }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 4px;
  transition: gap .35s, color .35s;
}
.link-arrow:hover { gap: 16px; color: var(--gold-bright); }

/* ---- LOGO MARK ------------------------------------------------ */
.mark {
  width: 26px; height: 32px;
}

/* ---- HERO ----------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 170px var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,169,106,0.10), transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(92,34,48,0.15), transparent 70%),
    linear-gradient(180deg, #050402 0%, #0b0907 50%, #050402 100%);
}
.hero__particles { position: absolute; inset: 0; pointer-events: none; opacity: .6; }
.hero__copy { position: relative; z-index: 3; max-width: 640px; }
.hero__visual {
  position: relative; z-index: 2;
  align-self: stretch;
  display: flex; align-items: center; justify-content: center;
}
.hero__visual-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 78vh;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.92) contrast(1.05) saturate(1.05);
}
.hero__img-mask {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(5,4,2,0.55) 100%),
    linear-gradient(90deg, rgba(5,4,2,0.25) 0%, transparent 30%);
  pointer-events: none;
}
.hero__caption {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  display: flex; justify-content: space-between; align-items: end;
  z-index: 4; font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(243,232,210,0.7);
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6.8vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
}
.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 1.5vw, 24px);
  font-weight: 300;
  color: rgba(243,232,210,0.85);
  line-height: 1.5;
  margin: 0 0 22px;
  max-width: 36ch;
}
.hero__body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(243,232,210,0.65);
  max-width: 44ch;
  margin: 0 0 44px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__meta {
  margin-top: 56px;
  display: flex; gap: 40px;
  border-top: 1px solid var(--ink-line);
  padding-top: 28px;
  flex-wrap: wrap;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero__meta-k { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: rgba(243,232,210,0.5); }
.hero__meta-v { font-family: var(--serif); font-size: 22px; color: var(--gold); font-style: italic; font-weight: 400; }

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(243,232,210,0.5);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  z-index: 4;
}
.hero__scroll-line {
  width: 1px; height: 48px; background: linear-gradient(180deg, var(--gold-soft), transparent);
  animation: scrollLine 2.4s var(--ease-cinema) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 155px; min-height: auto; }
  .hero__visual-frame { max-height: 60vh; aspect-ratio: 4/5; }
}

/* ---- PARTICLES (light dust) ----------------------------------- */
.particle {
  position: absolute; width: 2px; height: 2px;
  background: var(--gold-bright); border-radius: 50%;
  opacity: 0;
  animation: floatUp 12s linear infinite;
  box-shadow: 0 0 6px var(--gold);
}
@keyframes floatUp {
  0%   { transform: translate(0, 100vh) scale(.4); opacity: 0; }
  10%  { opacity: .6; }
  90%  { opacity: .6; }
  100% { transform: translate(20px, -10vh) scale(1); opacity: 0; }
}

/* ---- SECTION HEADER ------------------------------------------- */
.section-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(60px, 7vw, 96px);
}
.section-head--center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 760px;
  margin-left: auto; margin-right: auto;
}
.section-head__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 5.4vw, 88px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 18px 0 0;
}
.section-head__title em { font-style: italic; font-weight: 400; color: var(--gold-bright); }
.section-head__body { font-size: 15.5px; line-height: 1.8; color: rgba(243,232,210,0.65); max-width: 48ch; }
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}

/* ---- COLLECTOR SHOWCASE --------------------------------------- */
.collector {
  background:
    radial-gradient(ellipse 50% 70% at 50% 0%, rgba(201,169,106,0.07), transparent 70%),
    linear-gradient(180deg, #0b0907 0%, #14110d 50%, #0b0907 100%);
  position: relative;
}
.collector__stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
}
.collector__hero-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--ink-line);
}
.collector__hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s var(--ease-cinema);
}
.collector__hero-img:hover img { transform: scale(1.04); }
.collector__hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,4,2,0.6));
  pointer-events: none;
}

.collector__detail {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(28px, 3vw, 44px) 0;
}
.collector__price {
  display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px;
}
.collector__price-now {
  font-family: var(--serif); font-size: 56px; font-weight: 300; color: var(--gold-bright);
  letter-spacing: -.02em;
}
.collector__price-was {
  font-family: var(--serif); font-size: 22px; text-decoration: line-through;
  color: rgba(243,232,210,0.4);
}
.collector__price-note {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
}

.collector__includes {
  margin: 28px 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 20px 0;
}
.collector__includes h4 {
  font-family: var(--sans); font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(243,232,210,0.5); margin: 0 0 14px; font-weight: 500;
}
.collector__includes ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.collector__includes li {
  display: grid; grid-template-columns: 14px 1fr auto; gap: 14px;
  font-size: 14px; color: rgba(243,232,210,0.75);
  align-items: baseline;
}
.collector__includes li::before {
  content: ''; width: 6px; height: 6px; background: var(--gold);
  transform: rotate(45deg); align-self: center;
}
.collector__includes li span { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 13px; }

.stock-bar {
  margin-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.stock-bar__track {
  height: 1px; background: rgba(243,232,210,0.12);
  position: relative; overflow: hidden;
}
.stock-bar__fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
}
.stock-bar__meta {
  display: flex; justify-content: space-between;
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(243,232,210,0.55);
}
.stock-bar__count { color: var(--gold); }

.qty {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid rgba(243,232,210,0.2);
}
.qty button {
  width: 44px; height: 50px;
  font-size: 14px; color: var(--ivory);
}
.qty button:hover { background: rgba(243,232,210,0.06); color: var(--gold-bright); }
.qty span { min-width: 32px; text-align: center; font-family: var(--serif); font-size: 18px; }

.buy-row { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.buy-row .btn { flex: 1; min-width: 0; }

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

/* ---- BOOK SHOWCASE -------------------------------------------- */
.book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--ink-line);
}
.book:first-child { border-top: 0; }
.book--reverse .book__visual { order: 2; }
.book__visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.book__visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s var(--ease-cinema), filter 1s;
  filter: brightness(.94) contrast(1.04);
}
.book__visual:hover img { transform: scale(1.03); filter: brightness(1) contrast(1.04); }
.book__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(5,4,2,0.45));
  pointer-events: none;
}
.book__badge {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--sans); font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(11,9,7,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  z-index: 2;
}

.book__meta { display: flex; gap: 24px; margin-bottom: 28px; font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: rgba(243,232,210,0.55); }
.book__title-deva {
  font-family: var(--deva);
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--gold-bright);
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.book__title-en {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 40px);
  font-style: italic;
  font-weight: 400;
  color: var(--ivory);
  margin: 0 0 6px;
}
.book__subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(243,232,210,0.55);
  margin: 0 0 28px;
}
.book__synopsis {
  font-size: 15px; line-height: 1.85;
  color: rgba(243,232,210,0.7);
  margin: 0 0 28px;
  max-width: 50ch;
}
.book__excerpt {
  padding: 24px 28px;
  border-left: 1px solid var(--gold-soft);
  background: linear-gradient(90deg, rgba(201,169,106,0.05), transparent 80%);
  margin: 0 0 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(243,232,210,0.85);
}
.book__excerpt cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
}
.book__locked {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 24px;
  border: 1px solid var(--gold-soft);
  background: rgba(201,169,106,0.06);
  font-family: var(--serif); font-style: italic;
  color: var(--gold-bright); font-size: 16px;
}
.book__locked svg { flex: none; }

@media (max-width: 880px) {
  .book { grid-template-columns: 1fr; }
  .book--reverse .book__visual { order: 0; }
}

/* ---- IMMERSIVE / POEM READER ---------------------------------- */
.immersive {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201,169,106,0.06), transparent 60%),
    linear-gradient(180deg, #0b0907 0%, #050402 50%, #0b0907 100%);
  position: relative;
}
.poem-reader {
  position: relative;
  margin: 0 auto;
  max-width: 820px;
  padding: 80px clamp(28px, 5vw, 80px);
  border: 1px solid var(--ink-line);
  background:
    linear-gradient(180deg, rgba(20,17,13,0.6), rgba(11,9,7,0.7));
  text-align: center;
}
.poem-reader::before, .poem-reader::after {
  content: '';
  position: absolute; width: 28px; height: 28px;
  border: 1px solid var(--gold);
}
.poem-reader::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.poem-reader::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.poem {
  display: none;
  animation: fadePoem 1.4s var(--ease-out);
}
.poem.is-active { display: block; }
@keyframes fadePoem {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.poem__quote {
  font-family: var(--deva);
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.55;
  color: var(--ivory);
  margin: 0 0 22px;
  font-weight: 400;
}
.poem__en {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.6;
  color: rgba(243,232,210,0.65);
  max-width: 56ch; margin: 0 auto 32px;
}
.poem__cite {
  font-family: var(--sans);
  font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
}

.poem-nav {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  margin-top: 48px;
}
.poem-nav__btn {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  transition: all .35s;
  color: var(--gold);
}
.poem-nav__btn:hover { background: var(--gold); color: var(--ink); }
.poem-nav__dots { display: flex; gap: 10px; }
.poem-nav__dot {
  width: 24px; height: 1px; background: rgba(243,232,210,0.2);
  cursor: pointer; transition: background .4s;
}
.poem-nav__dot.is-active { background: var(--gold); }

/* ---- AUTHOR --------------------------------------------------- */
.author {
  background: linear-gradient(180deg, #0b0907 0%, #14110d 100%);
}
.author__grid {
  display: grid; grid-template-columns: .8fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.author__portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(135deg, #1d1812, #0b0907);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ink-line);
}
.author__portrait::after {
  content: ''; position: absolute; inset: 16px;
  border: 1px solid var(--gold-soft);
  pointer-events: none;
}
.author__silhouette {
  width: 70%; opacity: .9;
  filter: drop-shadow(0 0 30px rgba(201,169,106,0.15));
}
.author__sig {
  position: absolute; bottom: 36px; right: 36px;
  font-family: var(--hand);
  font-size: 52px;
  color: var(--gold-bright);
  transform: rotate(-6deg);
  line-height: 1;
  z-index: 2;
}
.author__copy h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  margin: 18px 0 24px;
}
.author__copy h2 em { font-style: italic; color: var(--gold-bright); }
.author__bio p { font-size: 16px; line-height: 1.85; color: rgba(243,232,210,0.7); margin: 0 0 18px; max-width: 56ch; }
.author__bio p.lede { color: rgba(243,232,210,0.88); font-size: 19px; }

.author__philosophy {
  margin-top: 36px;
  padding: 26px 0; border-top: 1px solid var(--ink-line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.author__philosophy h5 { font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; font-weight: 500; }
.author__philosophy p { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.55; color: rgba(243,232,210,0.78); margin: 0; }

@media (max-width: 880px) {
  .author__grid { grid-template-columns: 1fr; }
  .author__philosophy { grid-template-columns: 1fr; }
}

/* ---- TESTIMONIALS --------------------------------------------- */
.reviews { background: #050402; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-line);
}
.review {
  padding: clamp(44px, 4vw, 68px) clamp(28px, 3vw, 48px);
  border-right: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 320px;
  transition: background .5s;
  position: relative;
}
.review:hover { background: rgba(201,169,106,0.04); }
.review:last-child { border-right: 0; }
.review__mark {
  font-family: var(--serif); font-size: 110px; line-height: 1;
  color: var(--gold-deep);
  margin: 0 0 -36px;
  font-weight: 400;
}
.review__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.45;
  color: var(--ivory);
  margin: 0 0 28px;
  font-weight: 400;
}
.review__src { display: flex; flex-direction: column; gap: 4px; }
.review__src strong { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--gold); font-size: 16px; }
.review__src span { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: rgba(243,232,210,0.45); }

@media (max-width: 880px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .review { border-right: 0; }
}

/* ---- CRAFT GRID ----------------------------------------------- */
.craft {
  background: linear-gradient(180deg, #050402 0%, #0b0907 100%);
}
.craft__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 36px);
}
.craft__cell {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--ink-line);
}
.craft__cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 4s var(--ease-cinema), filter 1s;
  filter: brightness(.9) contrast(1.05);
}
.craft__cell:hover img { transform: scale(1.06); filter: brightness(1.02); }
.craft__cell::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,4,2,0.85));
  pointer-events: none;
}
.craft__caption {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  z-index: 2;
}
.craft__caption h4 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin: 0 0 4px; color: var(--ivory); }
.craft__caption p { font-size: 12px; letter-spacing: .04em; color: rgba(243,232,210,0.65); margin: 0; line-height: 1.5; }
.craft__caption .gold { color: var(--gold); font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; margin-bottom: 8px; display: block; }

@media (max-width: 980px) { .craft__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- FINAL CTA ------------------------------------------------ */
.final {
  position: relative;
  padding: clamp(120px, 16vw, 240px) var(--gutter);
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(201,169,106,0.10), transparent 60%),
    linear-gradient(180deg, #0b0907 0%, #050402 100%);
  overflow: hidden;
}
.final__particles { position: absolute; inset: 0; pointer-events: none; opacity: .4; }
.final__title {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(40px, 5.8vw, 92px);
  line-height: 1.1;
  letter-spacing: -.005em;
  margin: 24px auto 40px;
  max-width: 16ch;
  position: relative; z-index: 2;
}
.final__title em { font-style: normal; color: var(--gold-bright); }
.final__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: rgba(243,232,210,0.6);
  max-width: 42ch; margin: 0 auto 56px;
  position: relative; z-index: 2;
}
.final__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ---- COUNTDOWN / SCARCITY ------------------------------------- */
.scarcity {
  background: rgba(201,169,106,0.06);
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  padding: 14px var(--gutter);
  display: flex; justify-content: center; align-items: center; gap: 28px;
  flex-wrap: wrap;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(243,232,210,0.7);
}
.scarcity__label { color: var(--gold); }
.scarcity__timer { display: flex; align-items: center; gap: 16px; font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--gold-bright); letter-spacing: 0; text-transform: none; }
.scarcity__timer span { font-family: var(--serif); font-weight: 400; font-size: 22px; }
.scarcity__timer em { font-style: normal; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(243,232,210,0.5); margin-left: 4px; }

/* ---- FOOTER --------------------------------------------------- */
.footer {
  background: #050402;
  padding: 100px var(--gutter) 30px;
  border-top: 1px solid var(--ink-line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 80px);
  max-width: var(--max);
  margin: 0 auto 80px;
}
.footer__brand h3 { font-family: var(--serif); font-size: 32px; font-weight: 300; margin: 16px 0 10px; letter-spacing: .04em; }
.footer__brand p { font-family: var(--serif); font-style: italic; color: rgba(243,232,210,0.55); font-size: 15px; max-width: 32ch; line-height: 1.6; margin: 0 0 22px; }
.footer__col h5 { font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; font-weight: 500; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer__col a { font-size: 13.5px; color: rgba(243,232,210,0.65); transition: color .3s; }
.footer__col a:hover { color: var(--gold-bright); }
.footer__bottom {
  max-width: var(--max); margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--ink-line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(243,232,210,0.4);
}
.footer__bottom-links { display: flex; gap: 28px; }
.footer__bottom-links a:hover { color: var(--gold); }

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ---- CART DRAWER ---------------------------------------------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(5,4,2,0.78);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity .5s var(--ease-cinema);
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }
.cart {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(480px, 100vw);
  background: linear-gradient(180deg, #0b0907, #14110d);
  border-left: 1px solid var(--ink-line);
  z-index: 201;
  transform: translateX(100%);
  transition: transform .6s var(--ease-cinema);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px -20px rgba(0,0,0,.7);
}
.cart.is-open { transform: translateX(0); }
.cart__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 30px;
  border-bottom: 1px solid var(--ink-line);
}
.cart__head h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; margin: 0; }
.cart__head em { font-style: italic; color: var(--gold); font-size: 14px; margin-left: 8px; }
.cart__close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.cart__close:hover { color: var(--gold-bright); }
.cart__body { flex: 1; overflow: auto; padding: 8px 30px 30px; }
.cart__empty { padding: 60px 0; text-align: center; }
.cart__empty p { font-family: var(--serif); font-style: italic; color: rgba(243,232,210,0.55); font-size: 18px; margin: 20px 0; }

.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink-line);
}
.cart-item__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink-3);
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__body { display: flex; flex-direction: column; justify-content: space-between; }
.cart-item__title { font-family: var(--serif); font-size: 18px; font-weight: 400; margin: 0; line-height: 1.2; }
.cart-item__title em { font-style: italic; color: var(--gold-bright); display: block; font-size: 14px; }
.cart-item__sub { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(243,232,210,0.5); margin: 4px 0 0; }
.cart-item__qty { display: inline-flex; align-items: center; border: 1px solid rgba(243,232,210,0.18); margin-top: 8px; align-self: flex-start; }
.cart-item__qty button { width: 28px; height: 28px; font-size: 12px; }
.cart-item__qty span { min-width: 22px; text-align: center; font-family: var(--serif); font-size: 14px; }
.cart-item__price { font-family: var(--serif); font-size: 18px; color: var(--gold); }
.cart-item__remove {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(243,232,210,0.4);
  margin-top: 8px;
  align-self: flex-end;
}
.cart-item__remove:hover { color: var(--maroon); }

.cart__foot {
  padding: 24px 30px 30px;
  border-top: 1px solid var(--ink-line);
  background: rgba(5,4,2,0.4);
}
.cart__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.cart__row.total {
  border-top: 1px solid var(--ink-line);
  padding-top: 16px; margin-top: 18px;
}
.cart__row span:first-child { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: rgba(243,232,210,0.6); }
.cart__row span:last-child { font-family: var(--serif); font-size: 16px; color: var(--ivory); }
.cart__row.total span:first-child { color: var(--gold); }
.cart__row.total span:last-child { font-size: 26px; color: var(--gold-bright); }

/* ---- CHECKOUT ------------------------------------------------- */
.checkout {
  min-height: 100vh;
  padding: 130px 0 80px;
}
.checkout__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 90px);
}
.checkout__main { min-width: 0; }
.checkout__side {
  position: sticky; top: 110px; align-self: start;
  border: 1px solid var(--ink-line);
  padding: 32px;
  background: linear-gradient(180deg, rgba(20,17,13,0.6), rgba(11,9,7,0.7));
}

.steps {
  display: flex; gap: 8px; align-items: center;
  margin-bottom: 48px;
}
.step {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(243,232,210,0.4);
  transition: color .4s;
}
.step.is-active { color: var(--gold); }
.step.is-done { color: var(--ivory); }
.step__num {
  width: 30px; height: 30px;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 14px; letter-spacing: 0;
}
.step.is-active .step__num { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.step.is-done .step__num { background: rgba(201,169,106,0.15); color: var(--gold); }
.step__sep { width: 40px; height: 1px; background: rgba(243,232,210,0.18); }

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(243,232,210,0.55);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-line);
  color: var(--ivory);
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  outline: none;
  transition: border-color .35s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--gold);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }

.radio-group { display: grid; gap: 12px; margin-bottom: 16px; }
.radio-card {
  display: grid; grid-template-columns: 24px 1fr auto; gap: 14px;
  padding: 18px 22px; cursor: pointer;
  border: 1px solid var(--ink-line);
  transition: all .3s;
  align-items: center;
}
.radio-card:hover { border-color: var(--gold-soft); }
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card .dot { width: 16px; height: 16px; border: 1px solid rgba(243,232,210,0.4); border-radius: 50%; position: relative; }
.radio-card input:checked + .dot { border-color: var(--gold); }
.radio-card input:checked + .dot::after { content: ''; position: absolute; inset: 3px; background: var(--gold); border-radius: 50%; }
.radio-card .label-main { font-family: var(--serif); font-size: 18px; }
.radio-card .label-sub { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(243,232,210,0.5); margin-top: 4px; }
.radio-card .label-price { font-family: var(--serif); color: var(--gold); font-size: 18px; }
.radio-card:has(input:checked) { border-color: var(--gold); background: rgba(201,169,106,0.05); }

.summary-item {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--ink-line);
  align-items: center;
}
.summary-item:last-of-type { border-bottom: 0; padding-bottom: 24px; }
.summary-item img { width: 60px; height: 80px; object-fit: cover; }
.summary-item__title { font-family: var(--serif); font-size: 16px; }
.summary-item__sub { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(243,232,210,0.5); }
.summary-item__price { font-family: var(--serif); color: var(--gold); font-size: 18px; }

.summary-totals { padding: 24px 0 0; border-top: 1px solid var(--ink-line); }
.summary-totals .cart__row.total { padding-top: 16px; }

.complete {
  text-align: center;
  padding: 80px 24px;
  border: 1px solid var(--ink-line);
  background: linear-gradient(180deg, rgba(20,17,13,0.6), rgba(11,9,7,0.7));
}
.complete__seal {
  width: 90px; height: 90px; margin: 0 auto 28px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, var(--gold-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 50px -20px rgba(201,169,106,.5);
  color: var(--ink);
}
.complete h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  font-style: italic;
  margin: 0 0 18px;
}
.complete h2 em { font-style: normal; color: var(--gold-bright); }
.complete p { font-family: var(--serif); font-size: 17px; color: rgba(243,232,210,0.65); max-width: 48ch; margin: 0 auto 14px; line-height: 1.6; }
.complete__order { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin: 28px 0; }

@media (max-width: 980px) {
  .checkout__grid { grid-template-columns: 1fr; }
  .checkout__side { position: static; }
  .field-row, .field-row-3 { grid-template-columns: 1fr; gap: 0; }
}

/* ---- STICKY BUY BAR (product pages) --------------------------- */
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 14px var(--gutter);
  background: rgba(11,9,7,0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--gold-soft);
  transform: translateY(100%);
  transition: transform .5s var(--ease-cinema);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.sticky-buy.is-shown { transform: translateY(0); }
.sticky-buy__title { font-family: var(--serif); font-size: 18px; }
.sticky-buy__title em { font-style: italic; color: var(--gold-bright); margin-left: 8px; }
.sticky-buy__price { font-family: var(--serif); color: var(--gold); font-size: 22px; margin-left: 14px; }
.sticky-buy__cta { display: flex; gap: 10px; }
@media (max-width: 680px) {
  .sticky-buy__title { font-size: 14px; }
  .sticky-buy__price { font-size: 16px; }
}

/* ---- ANIMATIONS ON SCROLL ------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* ---- TOAST ---------------------------------------------------- */
.toast {
  position: fixed;
  top: 90px; right: 24px;
  background: rgba(11,9,7,0.95);
  border: 1px solid var(--gold);
  padding: 16px 22px;
  z-index: 250;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: .04em;
  color: var(--ivory);
  transform: translateX(120%);
  transition: transform .55s var(--ease-cinema);
  box-shadow: 0 14px 40px -10px rgba(0,0,0,.6);
}
.toast.is-shown { transform: translateX(0); }
.toast svg { color: var(--gold); }
.toast em { font-family: var(--serif); font-style: italic; color: var(--gold); }

/* ====================================================================
   AATM-MILAN UNIVERSE — extended components
   ==================================================================== */

/* ---- DEVANAGARI DISPLAY ---------------------------------------- */
.deva-title {
  font-family: var(--deva);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.005em;
}

/* ---- PERSISTENT TOP BAR (styles — positioning set above) ------ */
.topbar {
  background: linear-gradient(180deg, rgba(20,17,13,0.96), rgba(11,9,7,0.96));
  border-bottom: 1px solid var(--gold-soft);
  padding: 11px var(--gutter);
  display: flex; justify-content: center; align-items: center; gap: 22px;
  flex-wrap: wrap;
  font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(243,232,210,0.66);
}
.topbar strong { color: var(--gold); font-weight: 500; }
.topbar__dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; opacity: .7; }
.topbar__live { display: inline-flex; align-items: center; gap: 9px; color: var(--gold-bright); }
.topbar__pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 0 0 rgba(230,205,146,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(230,205,146,0.5);} 70% { box-shadow: 0 0 0 8px rgba(230,205,146,0);} 100% { box-shadow: 0 0 0 0 rgba(230,205,146,0);} }
.topbar a.topbar__cta { color: var(--ivory); border-bottom: 1px solid var(--gold-soft); padding-bottom: 2px; transition: color .3s; }
.topbar a.topbar__cta:hover { color: var(--gold-bright); }
@media (max-width: 720px){ .topbar { gap: 12px; font-size: 9.5px; letter-spacing: .18em; } .topbar__hide-sm { display: none; } }

/* ---- HERO additions for the universe -------------------------- */
.hero__deva {
  font-family: var(--deva);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 92px);
  line-height: 1.14;
  color: var(--ivory);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.hero__deva em { font-style: normal; color: var(--gold-bright); }
.hero__english {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 1.9vw, 28px);
  line-height: 1.4;
  color: rgba(243,232,210,0.82);
  margin: 0 0 26px;
  max-width: 30ch;
}
.hero__tagline {
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  padding: 16px 0;
  margin: 0 0 26px;
}
.hero__tagline .deva { font-family: var(--deva); font-size: clamp(15px, 1.2vw, 18px); color: var(--gold); line-height: 1.6; display: block; margin-bottom: 6px; }
.hero__tagline .en { font-family: var(--serif); font-style: italic; font-size: clamp(14px,1vw,16px); color: rgba(243,232,210,0.6); }

/* ---- PROMISE (closes forever) --------------------------------- */
.promise {
  background:
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(92,34,48,0.16), transparent 70%),
    linear-gradient(180deg, #050402 0%, #0b0907 100%);
}
.promise__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.promise__body p { font-size: 16px; line-height: 1.9; color: rgba(243,232,210,0.72); margin: 0 0 22px; max-width: 52ch; }
.promise__pull {
  position: relative;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(26px, 3vw, 46px); line-height: 1.32;
  color: var(--gold-bright);
  padding-left: clamp(24px, 3vw, 44px);
  border-left: 1px solid var(--gold-soft);
}
.promise__pull::before { content: '“'; position: absolute; left: -2px; top: -28px; font-size: 80px; color: var(--gold-deep); }
@media (max-width: 880px){ .promise__grid { grid-template-columns: 1fr; } }

/* ---- PRICE LADDER (the engine) -------------------------------- */
.ladder {
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(201,169,106,0.08), transparent 70%),
    linear-gradient(180deg, #0b0907 0%, #14110d 50%, #0b0907 100%);
}
.ladder__live {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gold-soft);
  margin-bottom: 8px;
  background: rgba(201,169,106,0.04);
}
.ladder__live > div { padding: 26px clamp(20px,3vw,38px); border-right: 1px solid var(--ink-line); }
.ladder__live > div:last-child { border-right: 0; }
.ladder__live .k { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: rgba(243,232,210,0.5); margin: 0 0 10px; }
.ladder__live .v { font-family: var(--serif); font-size: clamp(28px, 3vw, 44px); font-weight: 300; color: var(--gold-bright); line-height: 1; }
.ladder__live .v.sm { color: var(--ivory); }
.ladder__live .sub { font-size: 11px; letter-spacing: .04em; color: rgba(243,232,210,0.55); margin: 8px 0 0; font-family: var(--serif); font-style: italic; }
.ladder__progress { height: 2px; background: rgba(243,232,210,0.1); position: relative; overflow: hidden; margin-bottom: 50px; }
.ladder__progress span { position: absolute; inset: 0 auto 0 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); transition: width 1.6s var(--ease-cinema); }

.ladder__table { border-top: 1px solid var(--gold-soft); }
.ladder__row {
  display: grid; grid-template-columns: auto 1fr auto auto; gap: clamp(16px,3vw,40px);
  align-items: center;
  padding: 22px clamp(8px,2vw,24px);
  border-bottom: 1px solid var(--ink-line);
  transition: background .5s, border-color .5s;
}
.ladder__row .idx { font-family: var(--serif); font-style: italic; font-size: 18px; color: rgba(243,232,210,0.4); width: 28px; }
.ladder__row .rng { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: rgba(243,232,210,0.7); }
.ladder__row .price { font-family: var(--serif); font-size: clamp(22px,2vw,30px); color: var(--ivory); font-weight: 300; }
.ladder__row .tag { font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; color: rgba(243,232,210,0.4); text-align: right; min-width: 80px; }
.ladder__row.is-current {
  background: rgba(201,169,106,0.07);
  border-bottom-color: var(--gold-soft);
  box-shadow: inset 2px 0 0 var(--gold);
}
.ladder__row.is-current .rng { color: var(--gold-bright); }
.ladder__row.is-current .price { color: var(--gold-bright); }
.ladder__row.is-current .tag { color: var(--gold); }
.ladder__note { font-family: var(--serif); font-style: italic; font-size: 16px; color: rgba(243,232,210,0.6); margin: 28px 0 0; text-align: center; }
@media (max-width: 720px){
  .ladder__live { grid-template-columns: 1fr; }
  .ladder__live > div { border-right: 0; border-bottom: 1px solid var(--ink-line); }
  .ladder__row { grid-template-columns: auto 1fr auto; gap: 14px; }
  .ladder__row .tag { display: none; }
}

/* ---- TWO EDITIONS --------------------------------------------- */
.editions__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.6vw, 36px); align-items: stretch; }
.edition-card {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--ink-line);
  background: linear-gradient(180deg, rgba(20,17,13,0.5), rgba(11,9,7,0.6));
  overflow: hidden;
}
.edition-card--feature { border-color: var(--gold-soft); box-shadow: 0 30px 80px -50px rgba(201,169,106,.5); }
.edition-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.edition-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s var(--ease-cinema); filter: brightness(.92) contrast(1.04); }
.edition-card:hover .edition-card__media img { transform: scale(1.05); }
.edition-card__media::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 50%, rgba(5,4,2,0.6)); }
.edition-card__flag {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase;
  padding: 7px 13px; background: var(--gold); color: var(--ink); font-weight: 500;
}
.edition-card__body { padding: clamp(28px, 3vw, 44px); display: flex; flex-direction: column; flex: 1; }
.edition-card__eyebrow { font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }
.edition-card__title { font-family: var(--serif); font-size: clamp(26px, 2.6vw, 38px); font-weight: 400; line-height: 1.08; margin: 0 0 8px; }
.edition-card__title em { font-style: italic; color: var(--gold-bright); }
.edition-card__kicker { font-family: var(--serif); font-style: italic; font-size: 16px; color: rgba(243,232,210,0.6); margin: 0 0 20px; }
.edition-card__desc { font-size: 14.5px; line-height: 1.8; color: rgba(243,232,210,0.68); margin: 0 0 26px; }
.edition-card__price { display: flex; align-items: baseline; gap: 12px; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--ink-line); }
.edition-card__price .from { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(243,232,210,0.5); }
.edition-card__price .amt { font-family: var(--serif); font-size: clamp(34px, 3.4vw, 50px); font-weight: 300; color: var(--gold-bright); line-height: 1; }
.edition-card__price .rise { font-size: 12px; color: rgba(243,232,210,0.5); font-family: var(--serif); font-style: italic; }
.edition-card .btn { margin-top: 22px; }
.editions__note { text-align: center; font-family: var(--serif); font-style: italic; font-size: 16px; color: rgba(243,232,210,0.6); margin: 36px auto 0; max-width: 60ch; }
@media (max-width: 880px){ .editions__grid { grid-template-columns: 1fr; } }

/* ---- WHAT ARRIVES (inclusions) -------------------------------- */
.arrives { background: linear-gradient(180deg, #0b0907, #050402); }
.arrives__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.arrives__media { position: relative; aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--ink-line); }
.arrives__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.95) contrast(1.04); }
.arrives__media::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at center, transparent 55%, rgba(5,4,2,0.5)); }
.arrives__list { list-style: none; padding: 0; margin: 0; }
.arrives__list li {
  display: grid; grid-template-columns: auto 1fr; gap: 22px;
  padding: 22px 0; border-bottom: 1px solid var(--ink-line);
  align-items: start;
}
.arrives__list li:first-child { padding-top: 0; }
.arrives__list .ic { width: 40px; height: 40px; border: 1px solid var(--gold-soft); display: flex; align-items: center; justify-content: center; color: var(--gold); flex: none; }
.arrives__list h4 { font-family: var(--serif); font-size: 21px; font-weight: 400; margin: 0 0 4px; color: var(--ivory); }
.arrives__list h4 em { font-style: italic; font-size: 13px; color: var(--gold); margin-left: 8px; }
.arrives__list p { font-size: 13.5px; line-height: 1.65; color: rgba(243,232,210,0.6); margin: 0; }
@media (max-width: 880px){ .arrives__grid { grid-template-columns: 1fr; } .arrives__media { order: -1; } }

/* ---- TEN MOVEMENTS -------------------------------------------- */
.movements { background: #050402; }
.movements__intro { max-width: 60ch; margin: 0 auto clamp(48px,6vw,80px); text-align: center; }
.movements__list { border-top: 1px solid var(--gold-soft); }
.mvmt {
  display: grid; grid-template-columns: 64px 1.1fr 1.4fr auto; gap: clamp(16px,3vw,44px);
  align-items: baseline;
  padding: clamp(22px,2.6vw,34px) clamp(8px,2vw,20px);
  border-bottom: 1px solid var(--ink-line);
  transition: background .5s, padding-left .5s var(--ease-cinema);
  position: relative;
}
.mvmt:hover { background: rgba(201,169,106,0.04); }
.mvmt__no { font-family: var(--serif); font-style: italic; font-size: clamp(20px,2vw,30px); color: var(--gold-deep); }
.mvmt:hover .mvmt__no { color: var(--gold); }
.mvmt__deva { font-family: var(--deva); font-size: clamp(22px,2.2vw,32px); color: var(--ivory); line-height: 1.2; }
.mvmt__en { font-family: var(--serif); font-style: italic; font-size: clamp(15px,1.3vw,19px); color: var(--gold); margin-top: 4px; }
.mvmt__theme { font-size: 14px; line-height: 1.6; color: rgba(243,232,210,0.6); }
.mvmt__tag { font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; color: rgba(243,232,210,0.35); text-align: right; }
.movements__close { font-family: var(--serif); font-style: italic; font-size: clamp(18px,1.8vw,24px); line-height: 1.6; color: rgba(243,232,210,0.7); text-align: center; max-width: 58ch; margin: clamp(44px,5vw,72px) auto 0; }
.movements__close em { color: var(--gold-bright); font-style: italic; }
@media (max-width: 880px){
  .mvmt { grid-template-columns: 40px 1fr; gap: 6px 18px; }
  .mvmt__theme { grid-column: 2; }
  .mvmt__tag { display: none; }
}

/* ---- GIFTING --------------------------------------------------- */
.gifting {
  background:
    radial-gradient(ellipse 60% 70% at 20% 50%, rgba(201,169,106,0.08), transparent 70%),
    linear-gradient(180deg, #050402, #0b0907);
}
.gifting__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px,6vw,90px); align-items: center; }
.gifting__media { position: relative; aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--ink-line); }
.gifting__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.94) contrast(1.05); }
.gifting__media::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(5,4,2,0.55)); }
.gifting__body p { font-size: 16px; line-height: 1.9; color: rgba(243,232,210,0.72); margin: 0 0 22px; max-width: 52ch; }
.gifting__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
@media (max-width: 880px){ .gifting__grid { grid-template-columns: 1fr; } }

/* ---- AUTHENTICITY ---------------------------------------------- */
.trust { background: #0b0907; }
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--ink-line); margin-top: clamp(40px,5vw,64px); }
.trust__cell { padding: clamp(32px,3.4vw,52px); border-right: 1px solid var(--ink-line); }
.trust__cell:last-child { border-right: 0; }
.trust__cell .seal { width: 52px; height: 52px; border: 1px solid var(--gold-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 22px; }
.trust__cell h4 { font-family: var(--serif); font-size: 24px; font-weight: 400; margin: 0 0 10px; }
.trust__cell h4 em { font-style: italic; color: var(--gold-bright); }
.trust__cell p { font-size: 14px; line-height: 1.75; color: rgba(243,232,210,0.65); margin: 0; }
@media (max-width: 880px){ .trust__grid { grid-template-columns: 1fr; } .trust__cell { border-right: 0; border-bottom: 1px solid var(--ink-line); } .trust__cell:last-child { border-bottom: 0; } }

/* ---- SECTION INDEX NUMBER (decorative) ------------------------ */
.sec-no { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--gold-deep); }

/* ====================================================================
   COMPREHENSIVE MOBILE FIXES
   ==================================================================== */

/* Hero — image first on mobile */
@media (max-width: 980px) {
  .hero__visual { order: -1; }
  .hero__copy { order: 0; }
  .hero__meta { gap: 22px; }
  .hero__meta-v { font-size: 18px; }
  .hero__deva { font-size: clamp(36px, 9vw, 72px); }
  .hero__english { font-size: clamp(16px, 4vw, 22px); }
}

/* Radio cards — price wraps on small screens */
@media (max-width: 540px) {
  .radio-card {
    grid-template-columns: 24px 1fr;
    grid-template-rows: auto auto;
  }
  .radio-card .label-price {
    grid-column: 2;
    font-size: 15px;
    margin-top: 4px;
  }
}

/* Buttons — full width on very small screens */
@media (max-width: 420px) {
  .btn--lg { width: 100%; justify-content: center; }
  .hero__ctas { flex-direction: column; }
  .final__ctas { flex-direction: column; align-items: stretch; }
  .final__ctas .btn { justify-content: center; }
}

/* Gallery thumbs — 3 cols on mobile */
@media (max-width: 540px) {
  #gallery-thumbs { grid-template-columns: repeat(3, 1fr) !important; }
}

/* Spec table — single column on mobile */
@media (max-width: 640px) {
  .spec-row {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }
  .spec-row span:first-child { font-size: 9.5px; }
}

/* Movements — tighter on very small screens */
@media (max-width: 480px) {
  .mvmt__deva { font-size: 20px; }
  .mvmt__en { font-size: 14px; }
  .mvmt__theme { font-size: 13px; }
}

/* Ladder live stats — 1 col on very small */
@media (max-width: 480px) {
  .ladder__live .v { font-size: clamp(24px, 8vw, 36px); }
}

/* Trust cells — consistent bottom border */
@media (max-width: 880px) {
  .trust__cell { padding: 28px 20px; }
}

/* Footer — 1 column on very small */
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr !important; }
  .footer__brand { grid-column: 1 !important; }
}

/* Checkout side — slightly less padding on mobile */
@media (max-width: 640px) {
  .checkout .wrap { padding-left: clamp(16px, 4vw, 56px); padding-right: clamp(16px, 4vw, 56px); }
}

/* Section padding on small screens */
@media (max-width: 480px) {
  .section { padding-top: clamp(64px, 14vw, 110px); padding-bottom: clamp(64px, 14vw, 110px); }
  .section-head { margin-bottom: clamp(36px, 8vw, 64px); }
}
