/* ============================================================
   ADORN BY SOC — Ivory Atelier theme (light luxury, 2026)
   VRAI's macro-product calm · Tiffany's airy light canvas ·
   Mercury's spacing discipline (72–112px rhythm, pills, one accent)
   NOTE: --jb-* token NAMES kept from the dark theme so every page
   using them flips automatically; values are now light:
     --jb-ivory = primary INK text · --jb-bg = ivory canvas
   ============================================================ */

:root {
  /* aliases onto base.html's canonical --cream/--ink/--gold/--gold-deep/--line —
     same tokens, kept under the --jb-* names the Ivory Atelier classes already use */
  --jb-bg: var(--cream, #F7F3EC);
  --jb-surface: #FFFFFF;        /* lifted card */
  --jb-surface-2: #EFE9DE;      /* pressed / alt surface */
  --jb-gold: var(--gold, #B7862B);
  --jb-gold-light: #D9B25F;
  --jb-gold-deep: var(--gold-deep, #8A6420);
  --jb-ivory: var(--ink, #1B160F);
  --jb-muted: #6E6353;          /* secondary text */
  --jb-hairline: var(--line, rgba(27, 22, 15, .12));
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Jost", Inter, system-ui, sans-serif;
  --radius-card: 12px;
  --radius-pill: 32px;
}

body {
  /* transparent so atelier.css's living canvas shows through */
  background: transparent;
  color: var(--jb-ivory);
  font-family: var(--font-body);
}

::selection { background: var(--jb-gold); color: #fff; }

/* ============================================================
   SIGNATURE — thin gold corner brackets (kept, softened)
   ============================================================ */
.jb { position: relative; }
.jb::before,
.jb::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
  opacity: .8;
  transition: width .35s ease, height .35s ease;
  z-index: 2;
}
.jb::before { top: 10px; left: 10px; border-top: 1px solid var(--jb-gold); border-left: 1px solid var(--jb-gold); }
.jb::after { bottom: 10px; right: 10px; border-bottom: 1px solid var(--jb-gold); border-right: 1px solid var(--jb-gold); }
.jb:hover::before, .jb:hover::after { width: 36px; height: 36px; }

/* ============================================================
   BUTTONS — quiet ink pills, gold appears only on touch
   ============================================================ */
.btn-metal {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 15px 34px;
  background: var(--jb-ivory);
  color: #F7F3EC;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  border: 0;
  border-radius: var(--radius-pill);
}
.btn-metal::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(217, 178, 95, .45) 50%, transparent 70%);
  transform: translateX(-130%);
}
/* stays ink — the gold leaf and the ink label come from atelier.css */
.btn-metal:hover::after { transition: transform .8s ease; transform: translateX(130%); }

.btn-ghost {
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid rgba(27, 22, 15, .35);
  color: var(--jb-ivory);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: var(--radius-pill);
  transition: border-color .3s ease, background .3s ease, color .3s ease;
}
.btn-ghost:hover { border-color: var(--jb-gold); color: var(--jb-gold-deep); background: rgba(183, 134, 43, .06); }

/* ============================================================
   SHARED SCAFFOLDING — Mercury rhythm on ivory
   ============================================================ */
.jbx-section { padding: 104px 0; position: relative; }
.jbx-kicker {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--jb-gold-deep);
  margin-bottom: 16px;
}
.jbx-h2 {
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: .005em;
  color: var(--jb-ivory);
  margin: 0 0 20px;
  text-wrap: balance;
}
.jbx-h2 em { font-style: italic; color: var(--jb-gold-deep); }
.jbx-lead { font-size: 16px; line-height: 1.8; color: var(--jb-muted); max-width: 760px; }
.jbx-lead strong { color: var(--jb-ivory); font-weight: 500; }
.hairline { height: 1px; background: var(--jb-hairline); border: 0; margin: 0; }

/* light band = white surface between ivory canvas sections */
.honest-dark {
  background: var(--jb-surface);
  border-top: 1px solid var(--jb-hairline);
  border-bottom: 1px solid var(--jb-hairline);
}

/* reveal on scroll — no-JS / reduced-motion stays fully visible */
.jsx .rv { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); transition-delay: var(--rd, 0ms); }
.jsx .rv.in { opacity: 1; transform: none; }

/* ============================================================
   1. RING HERO — a gold piece approaches as you scroll
   ============================================================ */
.ringhero { height: 100vh; position: relative; }
.jsx .ringhero { height: 220vh; }
.ring-stage {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: grid; place-items: center;
  background:
    radial-gradient(90% 70% at 50% 38%, #FFFDF8 0%, var(--jb-bg) 70%),
    var(--jb-bg);
}
.ring-halo {
  position: absolute; width: min(46vmin, 420px); height: min(46vmin, 420px);
  border-radius: 999px; border: 1px solid rgba(183, 134, 43, .18);
  top: 27%; left: 50%; transform: translate(-50%, -50%) scale(calc(.9 + var(--p, 0) * .5));
  pointer-events: none;
}
.ring-zoom {
  position: absolute; top: 27%; left: 50%; z-index: 1;
  transform: translate(-50%, -50%) scale(calc(.5 + var(--p, 0) * .95));
  will-change: transform;
  filter: drop-shadow(0 30px 60px rgba(27, 22, 15, .18));
}
.ring-spin { animation: ringSpin 26s linear infinite; }
.ring-spin img { width: min(36vmin, 330px); display: block; }
@keyframes ringSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.ring-copy {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px;
  margin-top: 52vh;
  max-width: 860px;
}
.ring-eyebrow {
  font-size: 11px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--jb-muted); margin-bottom: 18px;
}
.ring-copy h1 {
  font-family: var(--font-display);
  font-weight: 430;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.12;
  letter-spacing: .005em;
  color: var(--jb-ivory);
  margin: 0 0 16px;
  text-wrap: balance;
}
.ring-copy h1 em { font-style: italic; color: var(--jb-gold-deep); }
.ring-copy p {
  font-size: 15.5px; line-height: 1.75; color: var(--jb-muted);
  max-width: 620px; margin: 0 auto 28px;
}
.ring-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* as the piece approaches, the copy quietly steps back */
.jsx .ring-copy { opacity: calc(1 - var(--p, 0) * .9); transform: translateY(calc(var(--p, 0) * -30px)); }
.ring-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--jb-muted);
  z-index: 3; animation: cue 2.6s ease-in-out infinite;
  display: none;
}
.jsx .ring-cue { display: block; }
@keyframes cue { 0%,100% { opacity: .4; transform: translate(-50%, 0); } 50% { opacity: .95; transform: translate(-50%, 6px); } }
@media (prefers-reduced-motion: reduce) { .ring-spin { animation: none; } .ring-cue { animation: none; } }

/* ============================================================
   2. TRUST STRIP — quiet ribbon
   ============================================================ */
.trust-strip { border-top: 1px solid var(--jb-hairline); border-bottom: 1px solid var(--jb-hairline); background: var(--jb-surface); overflow: hidden; }
.trust-track { display: flex; width: max-content; animation: trust 34s linear infinite; }
.trust-strip:hover .trust-track { animation-play-state: paused; }
@keyframes trust { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust-item {
  display: inline-flex; align-items: center;
  padding: 16px 30px;
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--jb-muted); white-space: nowrap;
}
.trust-item b { color: var(--jb-ivory); font-weight: 500; }
.trust-dot { color: var(--jb-gold); align-self: center; opacity: .55; font-size: 9px; }
@media (prefers-reduced-motion: reduce) { .trust-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; } }

/* ============================================================
   3. CATEGORY GRID — editorial, image-forward
   ============================================================ */
.cats-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 16px;
}
.cat-tile {
  position: relative; overflow: hidden; display: block;
  background: var(--jb-surface-2);
  border-radius: var(--radius-card);
}
.cat-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.01);
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.cat-tile:hover img { transform: scale(1.055); }
.cat-tile .cat-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(27, 22, 15, .55) 100%);
  pointer-events: none;
}
.cat-tile i.sweep {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.28) 50%, transparent 58%);
  transform: translateX(-130%);
}
.cat-tile:hover i.sweep { transition: transform .9s ease; transform: translateX(130%); }
.cat-tile .cat-label {
  position: absolute; left: 20px; bottom: 16px; z-index: 2;
  font-family: var(--font-display); font-size: 23px; font-weight: 480; color: #fff;
  letter-spacing: .01em;
}
.cat-tile .cat-count {
  position: absolute; right: 18px; bottom: 21px; z-index: 2;
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.9);
  opacity: 0; transform: translateX(-8px); transition: all .4s ease;
}
.cat-tile:hover .cat-count { opacity: 1; transform: none; }
.cats-grid .cat-tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.cats-grid .cat-tile:nth-child(2) { grid-row: span 2; }
.cats-grid .cat-tile:nth-child(5) { grid-column: span 2; }
@media (max-width: 991px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .cats-grid .cat-tile:nth-child(1) { grid-column: span 2; }
  .cats-grid .cat-tile:nth-child(5) { grid-column: span 1; }
}

/* ============================================================
   4. PRODUCT CARDS — shop-first, quiet luxury
   ============================================================ */
.bs-row {
  display: flex; gap: 16px; overflow-x: auto;
  /* overflow-y hidden: vertical wheel/touch must scroll the PAGE, never the row */
  overflow-y: hidden;
  scroll-snap-type: x proximity; padding: 6px 0 10px;
  margin-top: -6px;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}
.bs-row::-webkit-scrollbar { display: none; }
.bs-card {
  flex: 0 0 min(300px, 74vw); scroll-snap-align: start;
  display: block; position: relative;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.bs-card:hover { transform: translateY(-4px); }
.bs-badges { height: 20px; display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.bs-media {
  position: relative; aspect-ratio: 3 / 3.4; overflow: hidden;
  border-radius: 10px; border: 1px solid var(--jb-hairline);
  background: var(--jb-surface);
  transition: border-color .35s ease;
}
.bs-card:hover .bs-media { border-color: rgba(183, 134, 43, .45); }
.bs-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.22,1,.36,1), opacity .5s ease; }
.bs-media img.alt { position: absolute; inset: 0; opacity: 0; }
.bs-card:hover .bs-media img.alt { opacity: 1; }
.bs-card:hover .bs-media img.primary { transform: scale(1.05); }
.bs-tag {
  display: inline-flex; align-items: center;
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--jb-ivory); background: var(--jb-surface);
  border: 1px solid var(--jb-hairline);
  padding: 3px 10px; border-radius: 20px;
}
.bs-tag.sale { border-color: rgba(183, 134, 43, .55); color: var(--jb-gold-deep); }
.bs-meta { display: block; padding: 14px 8px 0; text-align: center; }
.bs-name { display: block; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--jb-ivory); margin-bottom: 4px; }
.bs-price { font-family: var(--font-display); font-size: 16px; color: var(--jb-ivory); }
.bs-price del { color: var(--jb-muted); opacity: .75; margin-right: 4px; }
.bs-price .now { color: var(--jb-gold-deep); font-weight: 500; }
.bs-price .off {
  font-family: var(--font-body); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--jb-gold-deep); margin-left: 4px;
}
.bs-empty { color: var(--jb-muted); padding: 24px 6px; }

/* quick add-to-bag — smoked glass over the photograph, gold hairline,
   fills gold on hover. Appears on hover (always visible on touch). */
.quick-add {
  position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 3;
  padding: 13px; border-radius: 26px;
  border: 1px solid rgba(217, 178, 95, .3);
  background: rgba(27, 22, 15, .84); color: #F7F3EC;
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  backdrop-filter: blur(10px) saturate(130%);
  box-shadow: 0 10px 24px -16px rgba(27, 22, 15, .9);
  font-family: var(--font-body); font-size: 11px; letter-spacing: .18em;
  font-weight: 600; text-transform: uppercase;
  opacity: 0; transform: translateY(10px);
  transition: opacity .35s ease, transform .45s var(--ease-silk),
              background-color .3s ease, border-color .3s ease,
              box-shadow .35s ease, color .3s ease;
  cursor: pointer;
}
.bs-card:hover .quick-add { opacity: 1; transform: none; }
.quick-add:hover {
  border-color: rgba(217, 178, 95, .8);
  box-shadow: 0 14px 28px -14px rgba(138, 100, 32, .8);
}
.bs-card:hover .quick-add:active { transform: scale(.972); }
@media (hover: none) { .quick-add { opacity: 1; transform: none; } }

/* virtual try-on pill — appears on hover above quick-add */
.tryon-pill {
  position: absolute; left: 10px; right: 10px; bottom: 60px; z-index: 3;
  display: block; text-align: center;
  padding: 10px; border: 1px solid rgba(212, 166, 74, .6); border-radius: 24px;
  background: rgba(255, 255, 255, .92); color: var(--jb-gold-deep);
  font-family: var(--font-body); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease, background .3s ease;
}
.bs-card:hover .tryon-pill { opacity: 1; transform: none; }
.tryon-pill:hover { background: var(--jb-gold-deep); color: #F7F3EC; }
@media (hover: none) { .tryon-pill { opacity: 1; transform: none; } }

.car-arrows { display: flex; gap: 10px; }
.car-btn {
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid rgba(27, 22, 15, .25); background: transparent; color: var(--jb-ivory);
  display: grid; place-items: center; transition: all .3s ease;
}
.car-btn:hover { border-color: var(--jb-gold); color: var(--jb-gold-deep); background: rgba(183, 134, 43, .06); }
.car-btn svg { width: 18px; height: 18px; }

/* ============================================================
   5. COMPARISON — the honest middle
   ============================================================ */
.honest-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 991px) { .honest-grid { grid-template-columns: 1fr; } }

.cmp-wrap { overflow-x: auto; background: var(--jb-bg); border-radius: var(--radius-card); padding: 6px; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 520px; }
.cmp-table th, .cmp-table td { padding: 13px 16px; border-bottom: 1px solid var(--jb-hairline); text-align: left; color: var(--jb-muted); }
.cmp-table tbody tr:last-child th, .cmp-table tbody tr:last-child td { border-bottom: 0; }
.cmp-table thead th {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--jb-ivory);
}
.cmp-table td:first-child { color: var(--jb-ivory); font-weight: 500; }
.cmp-table .us { background: rgba(183, 134, 43, .08); color: var(--jb-ivory); }
.cmp-table thead .us { color: var(--jb-gold-deep); }
.cmp-table td.us strong { color: var(--jb-gold-deep); font-weight: 500; }

/* ============================================================
   6. SPEC NUMERALS
   ============================================================ */
.specs-dark .spec-numerals,
.spec-numerals {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 8px 7vw; justify-content: start; align-items: end;
  margin: 40px 0 50px;
}
.spec-num b {
  display: block;
  font-family: var(--font-display);
  font-weight: 530;
  font-size: clamp(54px, 8.4vw, 128px);
  line-height: .95;
  color: var(--jb-gold-deep);
}
.spec-num span { display: block; margin-top: 10px; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--jb-muted); }
@media (max-width: 767px) { .spec-numerals { grid-template-columns: 1fr; gap: 28px; } }

.spec-rows { max-width: 860px; }
.spec-row {
  display: grid; grid-template-columns: 200px 1fr; gap: 24px;
  padding: 18px 0; border-bottom: 1px solid var(--jb-hairline);
  font-size: 14.5px; line-height: 1.7;
}
.spec-row dt { color: var(--jb-gold-deep); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; padding-top: 4px; }
.spec-row dd { color: var(--jb-muted); margin: 0; }
.spec-row dd strong { color: var(--jb-ivory); font-weight: 500; }
.spec-row dd a { color: var(--jb-gold-deep); }
@media (max-width: 640px) { .spec-row { grid-template-columns: 1fr; gap: 6px; } }

/* ============================================================
   7. WARRANTY CARD
   ============================================================ */
.warranty-card {
  background: var(--jb-surface);
  border: 1px solid var(--jb-hairline);
  border-radius: var(--radius-card);
  padding: clamp(36px, 6vw, 72px);
  text-align: center;
  max-width: 900px; margin: 0 auto;
}
.warranty-card .jbx-lead { margin: 0 auto 30px; }

/* ============================================================
   8. EDITORIAL SPLIT
   ============================================================ */
.ed-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ed-panel { position: relative; overflow: hidden; display: block; aspect-ratio: 4 / 4.6; border-radius: var(--radius-card); }
.ed-panel:nth-child(2) { transform: translateY(52px); }
.ed-panel img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.22,1,.36,1); }
.ed-panel:hover img { transform: scale(1.05); }
.ed-panel .cat-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(27,22,15,.55) 100%); }
.ed-copy { position: absolute; left: 26px; bottom: 24px; z-index: 2; }
.ed-copy h3 { font-family: var(--font-display); font-weight: 480; font-size: clamp(24px, 2.6vw, 36px); color: #fff; margin: 0 0 6px; }
.ed-copy span { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.92); }
@media (max-width: 767px) {
  .ed-split { grid-template-columns: 1fr; }
  .ed-panel:nth-child(2) { transform: none; }
}

/* ============================================================
   9. SHOP THE LOOK
   ============================================================ */
.look-dark .look-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 991px) { .look-dark .look-grid { grid-template-columns: 1fr; } }
.look-stage { position: relative; overflow: hidden; border-radius: var(--radius-card); }
.look-stage img { width: 100%; display: block; }
.hotspot {
  position: absolute; width: 30px; height: 30px; border-radius: 999px;
  background: rgba(255, 255, 255, .75); border: 1px solid var(--jb-gold);
  transform: translate(-50%, -50%);
  transition: all .3s ease; cursor: pointer;
}
.hotspot::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 6px; height: 6px; border-radius: 999px; background: var(--jb-gold-deep);
}
.hotspot:hover, .hotspot.is-active { background: var(--jb-gold); box-shadow: 0 0 0 8px rgba(183, 134, 43, .18); }
.hotspot:hover::after, .hotspot.is-active::after { background: #fff; }

.look-panel .look-card-box { background: var(--jb-surface); border: 1px solid var(--jb-hairline); border-radius: var(--radius-card); padding: 16px; }
.look-frame { aspect-ratio: 1 / 1.05; overflow: hidden; background: var(--jb-surface-2); border-radius: 8px; }
.look-frame img { width: 100%; height: 100%; object-fit: cover; }
.look-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 16px 4px 4px; }
.look-name { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--jb-ivory); }
.look-price { font-family: var(--font-display); font-size: 17px; color: var(--jb-ivory); }
.look-quick { display: inline-block; margin: 10px 4px 0; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--jb-gold-deep); border-bottom: 1px solid var(--jb-hairline); padding-bottom: 3px; }
.look-quick:hover { color: var(--jb-gold); border-color: var(--jb-gold); }
.look-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.look-count { font-size: 11px; letter-spacing: .28em; color: var(--jb-muted); }

/* ============================================================
   10. REVIEWS
   ============================================================ */
.rev-row { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; scrollbar-width: none; }
.rev-row::-webkit-scrollbar { display: none; }
.rev-card {
  flex: 0 0 min(340px, 82vw); scroll-snap-align: start;
  background: var(--jb-surface); border: 1px solid var(--jb-hairline);
  border-radius: var(--radius-card);
  padding: 26px 24px; margin: 0;
}
.rev-stars { color: var(--jb-gold); font-size: 15px; letter-spacing: .2em; margin-bottom: 12px; }
.rev-stars .dim { color: rgba(183, 134, 43, .25); }
.rev-title { font-weight: 500; color: var(--jb-ivory); font-size: 14px; margin-bottom: 8px; letter-spacing: .04em; }
.rev-card blockquote { font-size: 14px; line-height: 1.8; color: var(--jb-muted); margin: 0 0 16px; }
.rev-card figcaption { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; font-size: 12px; }
.rev-card figcaption b { color: var(--jb-ivory); font-weight: 500; letter-spacing: .06em; }
.rev-card figcaption a { color: var(--jb-gold-deep); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }

/* ============================================================
   11. FOUNDER
   ============================================================ */
.founder-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7vw; align-items: start; }
@media (max-width: 991px) { .founder-grid { grid-template-columns: 1fr; gap: 30px; } }
.founder-pull {
  font-family: var(--font-display);
  font-weight: 420; font-style: italic;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.3; color: var(--jb-gold-deep);
  border-left: 1px solid var(--jb-gold);
  padding-left: 28px;
}
.founder-body p { font-size: 15.5px; line-height: 1.9; color: var(--jb-muted); }
.founder-body p strong { color: var(--jb-ivory); font-weight: 500; }
.founder-sign { margin-top: 22px; font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--jb-gold-deep); }

/* ============================================================
   12. FAQ — light accordion
   ============================================================ */
.faq-dark .accordion-item { background: transparent; border: 0; border-bottom: 1px solid var(--jb-hairline); }
.faq-dark .accordion-button {
  background: transparent; color: var(--jb-ivory);
  font-family: var(--font-body); font-weight: 500; font-size: 16px;
  padding: 22px 4px; box-shadow: none;
}
.faq-dark .accordion-button:not(.collapsed) { color: var(--jb-gold-deep); }
.faq-dark .accordion-button:focus { box-shadow: none; }
.faq-dark .accordion-button:focus-visible { box-shadow: inset 0 0 0 2px var(--jb-gold-deep); outline: none; }
.faq-dark .accordion-body { color: var(--jb-muted); font-size: 14.5px; line-height: 1.85; padding: 0 4px 24px; }

/* ============================================================
   13. SEO BLOCK
   ============================================================ */
.seo-dark { border-top: 1px solid var(--jb-hairline); background: var(--jb-bg); }
.seo-dark summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.seo-dark summary::-webkit-details-marker { display: none; }
.seo-dark summary h2 {
  font-family: var(--font-display); font-weight: 480;
  font-size: clamp(18px, 2vw, 25px); color: var(--jb-ivory); margin: 0;
}
.seo-dark .seo-more { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--jb-gold-deep); white-space: nowrap; }
.seo-dark details[open] .seo-more { display: none; }
.seo-dark p { margin-top: 18px; font-size: 14px; line-height: 1.9; color: var(--jb-muted); max-width: 960px; }
.seo-dark a { color: var(--jb-gold-deep); text-decoration: none; border-bottom: 1px solid var(--jb-hairline); }
.seo-dark a:hover { color: var(--jb-gold); border-color: var(--jb-gold); }
.seo-dark strong { color: var(--jb-ivory); font-weight: 500; }

/* ============================================================
   INNER PAGES (about / journal / policies)
   ============================================================ */
.page-hero { padding: 96px 0 60px; border-bottom: 1px solid var(--jb-hairline); background: var(--jb-surface); }
.page-hero .jbx-h2 { margin-bottom: 10px; }
.page-hero .lede { color: var(--jb-muted); font-size: 16px; line-height: 1.8; max-width: 720px; }
.page-hero .lede strong { color: var(--jb-ivory) !important; }
.prose { max-width: 780px; }
.prose h2 { font-family: var(--font-display); font-weight: 480; font-size: clamp(22px, 2.4vw, 30px); color: var(--jb-ivory); margin: 40px 0 14px; }
.prose h2 em { font-style: italic; color: var(--jb-gold-deep); }
.prose h3 { font-size: 16px; font-weight: 600; color: var(--jb-ivory); margin: 28px 0 10px; letter-spacing: .02em; }
.prose p, .prose li { font-size: 15px; line-height: 1.9; color: var(--jb-muted); }
.prose strong { color: var(--jb-ivory); font-weight: 500; }
.prose a { color: var(--jb-gold-deep); border-bottom: 1px solid var(--jb-hairline); }
.prose a:hover { color: var(--jb-gold); }
.prose ul { padding-left: 20px; }

.jr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 991px) { .jr-grid { grid-template-columns: 1fr; } }
.jr-card { display: block; background: var(--jb-surface); border: 1px solid var(--jb-hairline); border-radius: var(--radius-card); overflow: hidden; transition: border-color .3s ease, transform .4s ease; }
.jr-card:hover { border-color: rgba(183, 134, 43, .45); transform: translateY(-3px); }
.jr-card .jr-media { aspect-ratio: 16/10; overflow: hidden; background: var(--jb-surface-2); }
.jr-card .jr-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.22,1,.36,1); }
.jr-card:hover .jr-media img { transform: scale(1.05); }
.jr-card .jr-body { padding: 20px 22px 24px; }
.jr-card .jr-date { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--jb-gold-deep); margin-bottom: 8px; }
.jr-card h3 { font-family: var(--font-display); font-weight: 480; font-size: 21px; color: var(--jb-ivory); margin: 0 0 8px; line-height: 1.3; }
.jr-card p { font-size: 13.5px; line-height: 1.7; color: var(--jb-muted); margin: 0; }

@media (max-width: 767px) {
  .jbx-section { padding: 64px 0; }
  .jsx .ringhero { height: 190vh; }
}

/* ============================================================
   SHOP BY PRICE — centered atelier bands, header's gold sheen
   ============================================================ */
.price-bands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 767px) { .price-bands { grid-template-columns: 1fr; } }
.price-band,
.price-band:hover,
.price-band * { text-decoration: none !important; }
.price-band {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
  background: var(--jb-surface);
  border: 1px solid var(--jb-hairline);
  border-radius: var(--radius-card);
  padding: 40px 28px 34px;
  transition: border-color .35s ease, transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
}
/* header wala gold shine, card ke upar se guzarta hua */
.price-band::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(217, 178, 95, .16) 50%, transparent 58%);
  transform: translateX(-130%);
}
.price-band:hover::after { transition: transform .9s ease; transform: translateX(130%); }
.price-band:hover {
  border-color: rgba(183, 134, 43, .55);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(27, 22, 15, .08);
}
.pb-amount {
  font-family: var(--font-display);
  font-weight: 530;
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.1;
  color: var(--jb-gold-deep);
}
/* chhoti centered gold hairline — poori width wali line nahi */
.pb-amount::after {
  content: "";
  display: block;
  width: 44px; height: 1px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, var(--jb-gold), transparent);
}
.pb-note {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--jb-muted);
  transition: color .3s ease;
}
.price-band:hover .pb-note { color: var(--jb-gold-deep); }

/* ============================================================
   TWO-LINE CAROUSEL — BlueStone-style double row (desktop)
   ============================================================ */
.bs-row.two-line {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  grid-auto-columns: min(300px, 74vw);
  gap: 16px;
}
.bs-row.two-line .bs-card { flex: none; width: auto; }
@media (max-width: 767px) {
  /* mobile pe single line hi behtar scroll karti hai */
  .bs-row.two-line { display: flex; }
  .bs-row.two-line .bs-card { flex: 0 0 min(300px, 74vw); }
}

/* wishlist heart on product cards */
.wish-heart {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid var(--jb-hairline);
  background: rgba(255, 255, 255, .92);
  display: grid; place-items: center; cursor: pointer;
  transition: all .3s ease;
}
.wish-heart svg { width: 17px; height: 17px; stroke: var(--jb-ivory); fill: none; transition: all .25s ease; }
.wish-heart:hover { border-color: var(--jb-gold); }
.wish-heart.wished svg { fill: var(--jb-gold); stroke: var(--jb-gold); }

/* wishlist page grid reuses .bs-card sizing in a wrap grid */
.wish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
