/* ==========================================================================
   JAGANNATH JEWELLERS — HAUTE JOAILLERIE ULTRA-LUXURY DESIGN SYSTEM (V4 GOD MODE)
   Unified Header/Footer Architecture + Cartier / Tiffany / VisionOS Aesthetics
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&family=Manrope:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  /* Royal Dark Palette */
  --jj-noir-0: #040403;
  --jj-noir-1: #070605;
  --jj-noir-2: #0c0b08;
  --jj-noir-3: #12100c;
  --jj-noir-card: rgba(14, 12, 9, 0.78);
  --jj-noir-glass: rgba(10, 9, 7, 0.88);
  --jj-noir-surface: #13110c;

  /* Sovereign Molten Gold Spectrum */
  --jj-gold-0: #fffdf5;
  --jj-gold-1: #fbf0d0;
  --jj-gold-2: #e3ca7e;
  --jj-gold-3: #d4af37;
  --jj-gold-4: #b08726;
  --jj-gold-5: #6d5012;
  --jj-gold-glow: rgba(212, 175, 55, 0.4);
  --jj-gold-sheen: rgba(255, 235, 170, 0.85);

  /* Accents & Lines */
  --jj-emerald: #10b981;
  --jj-ruby: #e11d48;
  --jj-gold-gradient: linear-gradient(135deg, #b08726 0%, #d4af37 32%, #fbf0d0 60%, #c99b2e 85%, #926b14 100%);
  --jj-gold-gradient-shimmer: linear-gradient(90deg, #d4af37 0%, #ffffff 25%, #e3ca7e 50%, #fff7db 75%, #d4af37 100%);
  --jj-gold-card-border: linear-gradient(145deg, rgba(212,175,55,0.45) 0%, rgba(212,175,55,0.08) 50%, rgba(212,175,55,0.3) 100%);
  --jj-line: rgba(212, 175, 55, 0.18);
  --jj-line-bright: rgba(212, 175, 55, 0.45);
  --jj-line-hover: rgba(212, 175, 55, 0.85);

  /* Typography Colors */
  --jj-text-primary: #fcf9f2;
  --jj-text-secondary: #d4cbbd;
  --jj-text-muted: #9c9282;
  --jj-text-gold: #f4db95;

  /* Physics & Transitions */
  --jj-ease-spring: cubic-bezier(0.19, 1, 0.22, 1);
  --jj-ease-cinematic: cubic-bezier(0.25, 1, 0.5, 1);
  --jj-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --jj-shadow-gold: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.15);
  --jj-shadow-glass: 0 30px 90px rgba(0, 0, 0, 0.85), inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   1. ANIMATED LUXURY PRELOADER (#loader)
   ========================================================================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: radial-gradient(circle at center, #110e09 0%, #050403 80%);
  display: grid;
  place-items: center;
  align-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  pointer-events: auto;
}

#loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02) translateY(-6px);
  pointer-events: none !important;
}

.jj-loader-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.jj-loader-emblem {
  position: relative;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.jj-loader-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(212, 175, 55, 0.45);
  animation: jjLoaderRotate 10s linear infinite;
}

.jj-loader-spark {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 12px #ffd700, 0 0 20px #fff;
  transform: translateX(-50%);
}

@keyframes jjLoaderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: transparent !important;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.7));
  animation: jjLoaderPulse 2s ease-in-out infinite alternate;
}

@keyframes jjLoaderPulse {
  0% { transform: scale(0.96); filter: drop-shadow(0 0 15px rgba(212,175,55,0.4)); }
  100% { transform: scale(1.04); filter: drop-shadow(0 0 28px rgba(212,175,55,0.85)); }
}

.jj-loader-text strong {
  display: block;
  font: 700 21px/1.2 'Cinzel', serif;
  letter-spacing: 0.22em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.jj-loader-text small {
  display: block;
  color: var(--jj-gold-2);
  font-size: 11px;
  letter-spacing: 0.42em;
  font-weight: 700;
  margin-top: 4px;
}

.jj-loader-sub {
  font: 600 10.5px 'Cinzel', serif;
  letter-spacing: 0.26em;
  color: #aba190;
  margin-top: 10px;
}

.jj-loader-bar-wrap {
  width: 170px;
  height: 2px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 999px;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

.jj-loader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, #d4af37, #fff, #d4af37, transparent);
  animation: jjLoaderShimmer 1.4s ease-in-out infinite;
}

@keyframes jjLoaderShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ==========================================================================
   2. SCROLL PROGRESS BEAM (TOPMOST VIEWPORT)
   ========================================================================== */
#jjScrollProgressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, #ae8322, #d4af37, #fff6d6, #d4af37);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8), 0 0 4px #ffd700;
  z-index: 100000;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ==========================================================================
   3. UNIFIED SHARED HEADER & TOPBAR ENHANCEMENTS (#header, .topbar)
   ========================================================================== */
.topbar {
  border-bottom: 1px solid var(--jj-line);
  background: #070605;
  color: #d8cfbf;
  font-size: 12px;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1001;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}

.topbar .gold-text {
  color: var(--jj-gold-2);
  font-weight: 700;
}

#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 4, 0.9);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--jj-line);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#header.scrolled {
  background: rgba(4, 4, 3, 0.97);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.75), 0 0 20px rgba(212, 175, 55, 0.08);
  border-bottom-color: rgba(212, 175, 55, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}

/* Crisp & Clear Header Brand Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: transparent !important;
  filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.5));
  transition: transform 0.4s var(--jj-ease-spring);
  display: block;
}

.brand:hover img {
  transform: scale(1.08) rotate(3deg);
}

.brand strong {
  display: block;
  font: 700 16px/1.1 'Cinzel', serif;
  letter-spacing: 0.16em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.brand small {
  display: block;
  color: var(--jj-gold-2);
  font-size: 10px;
  letter-spacing: 0.38em;
  font-weight: 700;
  margin-top: 3px;
}

.menu {
  display: flex;
  gap: 24px;
  font-size: 13.5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  color: #e6dfd1;
  font: 600 13px 'Cinzel', serif;
  letter-spacing: 0.12em;
  text-decoration: none;
  position: relative;
  padding: 6px 2px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -4px;
  height: 2px;
  background: var(--jj-gold-gradient);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
  border-radius: 999px;
  transition: left 0.35s var(--jj-ease-spring), right 0.35s var(--jj-ease-spring), opacity 0.3s ease;
  opacity: 0;
}

.menu a:hover,
.menu a.active {
  color: #fff;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.menu a:hover::after,
.menu a.active::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: #f1e7d3;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 19px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--jj-ease-spring), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.icon-btn:hover {
  border-color: #ffd700;
  background: rgba(212, 175, 55, 0.16);
  color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Hide 3-line hamburger menu on Desktop strictly */
.mobile-toggle {
  display: none !important;
}

@media(max-width: 992px) {
  .menu {
    display: none !important;
  }
  .mobile-toggle {
    display: grid !important;
  }
}

/* ==========================================================================
   4. CUSTOM LUXURY MAGNETIC CURSOR (DESKTOP)
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {
  #jjCustomCursorRing {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(212, 175, 55, 0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--jj-ease-spring), height 0.3s var(--jj-ease-spring), border-color 0.3s ease, background 0.3s ease, transform 0.1s linear;
    mix-blend-mode: difference;
    backdrop-filter: blur(1.5px);
    will-change: transform, left, top;
  }

  #jjCustomCursorDot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: #ffd700;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #ffd700, 0 0 20px rgba(212, 175, 55, 0.5);
    will-change: transform, left, top;
  }

  body.cursor-hover #jjCustomCursorRing {
    width: 54px;
    height: 54px;
    border-color: #ffd700;
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
}

@media (hover: none), (pointer: coarse) {
  #jjCustomCursorRing,
  #jjCustomCursorDot {
    display: none !important;
  }
}

/* ==========================================================================
   5. GPU AMBIENT GOLD PARTICLES CANVAS
   ========================================================================== */
#jjAmbientCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.jj-ambient-stage {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 15% 15%, rgba(212,175,55,0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(212,175,55,0.03) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, transparent 50%, rgba(3,2,1,0.6) 100%);
}

/* ==========================================================================
   6. CINEMATIC ROYAL HERO STAGE
   ========================================================================== */
.jj-hero-stage {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 75% 35%, rgba(212, 175, 55, 0.12) 0%, transparent 60%), #050504;
  border-bottom: 1px solid var(--jj-line);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.88;
  filter: contrast(1.08) brightness(1.02) saturate(1.1);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 8s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.02);
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,4,3,0.85) 0%, rgba(4,4,3,0.50) 45%, rgba(4,4,3,0.20) 100%);
  pointer-events: none;
}

.jj-hero-grid {
  width: min(94%, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 36px 0 40px;
}

@media (max-width: 1024px) {
  .jj-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 0 40px;
  }
}

.jj-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(16px);
  color: var(--jj-gold-1);
  font: 700 10px/1 'Cinzel', serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.jj-hero-h1 {
  font: 700 clamp(30px, 3.8vw, 50px)/1.12 'Cinzel', serif;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.jj-gold-shimmer {
  background: linear-gradient(90deg, #d4af37 0%, #ffffff 25%, #e3ca7e 50%, #fff7db 75%, #d4af37 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: jjGoldTextShimmer 4s linear infinite;
  display: inline-block;
}

@keyframes jjGoldTextShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.jj-hero-desc {
  max-width: 520px;
  color: #d2c8b8;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.jj-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 26px;
}

.jj-btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font: 700 11px/1 'Cinzel', serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--jj-ease-spring), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  border: 1px solid transparent;
}

.jj-btn-luxury.gold {
  background: var(--jj-gold-gradient);
  color: #0b0904;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4), inset 0 1px 1px rgba(255,255,255,0.7);
}

.jj-btn-luxury.gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6), inset 0 1px 1px #fff;
}

.jj-btn-luxury.outline {
  background: rgba(16, 14, 10, 0.65);
  border-color: rgba(212, 175, 55, 0.4);
  color: #fbf0d0;
  backdrop-filter: blur(16px);
}

.jj-btn-luxury.outline:hover {
  border-color: #ffd700;
  background: rgba(212, 175, 55, 0.15);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.7), 0 0 18px rgba(212,175,55,0.2);
}

.jj-btn-luxury::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.75s ease;
  pointer-events: none;
}

.jj-btn-luxury:hover::after {
  transform: translateX(100%) rotate(45deg);
}

/* 4 Bento Counter Badges */
.jj-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(212,175,55,0.18);
}

@media (max-width: 600px) {
  .jj-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.jj-stat-item strong {
  display: block;
  font: 700 22px/1 'Cormorant Garamond', serif;
  color: #fbf0d0;
}

.jj-stat-item span {
  display: block;
  font-size: 10px;
  color: var(--jj-text-muted);
  letter-spacing: 0.05em;
  margin-top: 3px;
}

/* Glassmorphic Live Bullion Floating Card */
.jj-hero-glass-card {
  background: linear-gradient(145deg, rgba(22, 18, 12, 0.92) 0%, rgba(10, 9, 6, 0.96) 100%);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 20px;
  padding: 24px 24px 20px;
  box-shadow: var(--jj-shadow-glass);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--jj-ease-spring), border-color 0.3s ease, box-shadow 0.3s ease;
}

.jj-hero-glass-card:hover {
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 30px 100px rgba(0,0,0,0.85), 0 0 40px rgba(212,175,55,0.25);
  transform: translateY(-4px);
}

/* Rate pulse indicator */
.jj-rate-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981, 0 0 20px rgba(16, 185, 129, 0.5);
  animation: jjPulseGlow 1.8s infinite ease-in-out;
  display: inline-block;
}

@keyframes jjPulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 14px #10b981, 0 0 25px #10b981; }
}

/* Dots */
.dots {
  display: flex;
  gap: 8px;
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.dots button {
  width: 32px;
  height: 2.5px;
  border: 0;
  background: rgba(212, 175, 55, 0.25);
  border-radius: 999px;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease;
}

.dots button.active {
  background: var(--jj-gold-3);
  width: 48px;
  box-shadow: 0 0 10px var(--jj-gold-3);
}

/* ==========================================================================
   7. MAISON TRUST RIBBON — ULTRA LUXURY V4 (SINGLE ROW ONLY)
   ========================================================================== */
.jj-trust-ribbon-section {
  position: relative;
  z-index: 5;
  padding: 16px 0;
  display: flex;
  justify-content: center;
  background: #040403;
}

.jj-trust-ribbon-wrap {
  width: min(94%, 1380px);
  margin: 0 auto;
  position: relative;
}

.jj-trust-ribbon {
  height: 48px;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.12), 0 0 25px rgba(212, 175, 55, 0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

@media (max-width: 768px) {
  .jj-trust-ribbon {
    height: 38px;
  }
}

.jj-trust-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0.2) 0%, rgba(255,235,170,0.8) 50%, rgba(212,175,55,0.2) 100%);
  background-size: 200% 100%;
  animation: jjRibbonBorderPulse 8s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes jjRibbonBorderPulse {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.jj-trust-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 235, 170, 0.25) 50%, transparent 100%);
  transform: skewX(-25deg);
  animation: jjRibbonShimmerSweep 8.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes jjRibbonShimmerSweep {
  0%, 70% { left: -150px; opacity: 0; }
  85% { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

.jj-ribbon-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
  animation: jjRibbonMarquee 28s linear infinite;
}

@media (max-width: 992px) {
  .jj-ribbon-track {
    animation-duration: 23s;
  }
}

@media (max-width: 600px) {
  .jj-ribbon-track {
    animation-duration: 18s;
  }
}

.jj-trust-ribbon:hover .jj-ribbon-track {
  animation-play-state: paused;
}

@keyframes jjRibbonMarquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.jj-ribbon-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  font: 700 11.5px/1 'Cinzel', serif;
  letter-spacing: 0.22em;
  color: #fbf0d0;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .jj-ribbon-item {
    font-size: 10px;
    letter-spacing: 0.18em;
    gap: 12px;
    padding: 0 12px;
  }
}

.jj-ribbon-item:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.jj-ribbon-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  color: var(--jj-gold-3);
  animation: jjIconShimmer 3s ease-in-out infinite alternate;
  flex-shrink: 0;
}

.jj-ribbon-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.7));
}

@keyframes jjIconShimmer {
  0% { transform: scale(0.9); opacity: 0.75; filter: drop-shadow(0 0 2px rgba(212,175,55,0.4)); }
  100% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 8px rgba(255,215,0,0.9)); color: #fff5db; }
}

/* ==========================================================================
   8. TRUST PILLARS — LUXURY BENTO GRID
   ========================================================================== */
.trust {
  background: #070605;
  border-bottom: 1px solid var(--jj-line);
  border-top: 1px solid var(--jj-line);
  padding: 30px 0;
}

.trust .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.trust-item {
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  background: linear-gradient(180deg, #110e0a 0%, #090806 100%);
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 20px;
  transition: transform 0.4s var(--jj-ease-spring), border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.trust-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 20px rgba(212,175,55,0.15);
}

.trust-item i {
  font-size: 32px;
  color: var(--jj-gold-2);
  min-width: 36px;
  filter: drop-shadow(0 2px 10px rgba(212,175,55,0.4));
}

.trust-item b {
  display: block;
  font: 600 16px 'Cinzel', serif;
  color: #fff;
  margin-bottom: 4px;
}

.trust-item span {
  display: block;
  color: var(--jj-text-muted);
  font-size: 12px;
  line-height: 1.45;
}

/* ==========================================================================
   9. CURATED EDITS (EDITORIAL MAGAZINE STYLE)
   ========================================================================== */
.section {
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--jj-gold-2);
  font: 700 10.5px 'Cinzel', serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-head h2 {
  font: 600 clamp(26px, 3.2vw, 36px)/1.15 'Cinzel', serif;
  color: #fff;
  margin: 6px 0 8px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}

.section-head p {
  color: #c8beae;
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

.jj-editorial-dark {
  background: linear-gradient(180deg, #070605 0%, #0a0907 100%);
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
}

.jj-edit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

@media (max-width: 600px) {
  .jj-edit-grid {
    grid-template-columns: 1fr;
  }
}

.jj-edit-card {
  position: relative;
  min-height: 380px;
  height: 400px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 28px;
  overflow: hidden;
  background: #090806;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  transition: transform 0.45s var(--jj-ease-spring), border-color 0.45s ease, box-shadow 0.45s ease;
}

.jj-edit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 30px rgba(212,175,55,0.15);
}

.jj-edit-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.85s var(--jj-ease-cinematic), filter 0.5s ease;
}

.jj-edit-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.1) brightness(1.05);
}

.jj-edit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 20%, rgba(0,0,0,0.45) 55%, rgba(4,4,3,0.96) 100%);
  pointer-events: none;
}

.jj-edit-copy {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.jj-edit-copy span {
  font: 800 10px 'Cinzel', serif;
  letter-spacing: 0.3em;
  color: var(--jj-gold-2);
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
  display: block;
}

.jj-edit-copy h3 {
  font: 500 27px/1.2 'Cinzel', serif;
  margin: 8px 0 6px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}

.jj-edit-copy small {
  color: #d0c6b6;
  font-size: 13px;
  line-height: 1.5;
  display: block;
}

/* ==========================================================================
   10. 5 KARIGARI STEPS BLUEPRINT
   ========================================================================== */
.jj-karigari-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 40px;
}

.jj-karigari-timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(212,175,55,0.1), #d4af37 50%, rgba(212,175,55,0.1));
  z-index: 0;
}

@media(max-width: 1024px) {
  .jj-karigari-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .jj-karigari-timeline::before {
    display: none;
  }
}

.jj-karigari-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #13110c 0%, #080705 100%);
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 24px;
  padding: 28px 22px;
  transition: transform 0.4s var(--jj-ease-spring), border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.jj-karigari-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 20px 45px rgba(0,0,0,0.65), 0 0 25px rgba(212,175,55,0.2);
}

.jj-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1c1810;
  border: 1.5px solid #d4af37;
  color: #fbf0d0;
  font: 700 17px 'Cinzel', serif;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 0 18px rgba(212,175,55,0.35);
}

.jj-karigari-card h4 {
  font: 600 19px 'Cinzel', serif;
  color: #fff;
  margin: 0 0 10px;
}

.jj-karigari-card p {
  color: #b5ac9d;
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   11. CELESTIAL SILHOUETTES ORBIT GRID
   ========================================================================== */
.jj-orbit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

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

@media(max-width: 500px) {
  .jj-orbit-grid {
    grid-template-columns: 1fr;
  }
}

.jj-orbit-card {
  position: relative;
  border-radius: 26px;
  background: #0c0b08;
  border: 1px solid var(--jj-line);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.4s var(--jj-ease-spring), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jj-orbit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 22px 55px rgba(0,0,0,0.6), 0 0 30px rgba(212,175,55,0.16);
}

.jj-orbit-disc {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(212,175,55,0.35);
  box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.jj-orbit-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--jj-ease-cinematic);
}

.jj-orbit-card:hover .jj-orbit-disc img {
  transform: scale(1.16);
}

.jj-orbit-card h3 {
  font: 600 16px 'Cinzel', serif;
  color: #fff;
  margin: 0 0 4px;
}

.jj-orbit-card small {
  color: var(--jj-gold-2);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==========================================================================
   12. LIVE DYNAMIC CATALOGUE SHOWCASE & PRODUCT CARDS
   ========================================================================== */
.jj-tone-section {
  background: radial-gradient(circle at 15% 45%, rgba(212,175,55,0.05), transparent 35%), #080705;
}

.jj-tabs-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.jj-tab-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: #0e0c09;
  color: #cfc5b4;
  font: 700 11px 'Cinzel', serif;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.jj-tab-btn:hover,
.jj-tab-btn.active {
  background: var(--jj-gold-gradient);
  color: #0b0904;
  border-color: #ffd700;
  box-shadow: 0 6px 18px rgba(212,175,55,0.35);
  transform: translateY(-2px);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

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

.product-card {
  background: linear-gradient(180deg, #110e0a 0%, #080705 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--jj-ease-spring), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 16px 45px rgba(0,0,0,0.7), 0 0 20px rgba(212,175,55,0.15);
}

.product-media {
  aspect-ratio: 1/1;
  background: #14110b;
  overflow: hidden;
  position: relative;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--jj-ease-cinematic);
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-body {
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body h3 {
  font: 600 15px/1.2 'Cinzel', serif;
  color: #fff;
  margin: 0 0 4px;
  transition: color 0.3s ease;
}

.product-card:hover .product-body h3 {
  color: var(--jj-gold-1);
}

.meta {
  font-size: 11.5px;
  color: var(--jj-text-muted);
  font-weight: 500;
}

.price {
  font: 700 22px/1 'Cormorant Garamond', serif;
  color: var(--jj-gold-2);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.mini-btn {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: #13100b;
  color: #f1e6d4;
  border-radius: 999px;
  font: 700 10.5px 'Cinzel', serif;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mini-btn:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: #ffd700;
  color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212,175,55,0.22);
}

.mini-btn.js-wish:hover {
  border-color: #f43f5e;
  color: #f43f5e;
  background: rgba(244, 63, 94, 0.12);
}

/* ==========================================================================
   13. BRIDAL SANCTUARY & SHOP BY GENDER
   ========================================================================== */
.jj-bridal-band {
  padding-top: 20px;
}

.jj-feature-banner {
  position: relative;
  min-height: 340px;
  border: 1px solid rgba(212,175,55,0.38);
  border-radius: 20px;
  overflow: hidden;
  background: #080705;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

.jj-feature-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.jj-feature-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,4,3,0.94) 0%, rgba(4,4,3,0.72) 45%, rgba(4,4,3,0.18) 85%);
}

.jj-feature-overlay {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 44px 40px;
}

@media(max-width: 768px) {
  .jj-feature-overlay {
    padding: 30px 20px;
  }
}

.jj-feature-overlay h2 {
  font: 600 clamp(28px, 3.8vw, 40px)/1.15 'Cinzel', serif;
  color: #fff;
  margin: 8px 0 10px;
}

.jj-feature-overlay p {
  line-height: 1.65;
  max-width: 480px;
  color: #d6ccbd;
  font-size: 13.5px;
  margin-bottom: 22px;
}

.jj-gender-section {
  background: linear-gradient(180deg, #090806 0%, #050504 100%);
}

.jj-gender-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media(max-width: 992px) {
  .jj-gender-grid {
    grid-template-columns: 1fr;
  }
}

.jj-gender-card {
  position: relative;
  min-height: 320px;
  aspect-ratio: 3/3.8;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 20px;
  overflow: hidden;
  background: #080705;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  transition: transform 0.35s var(--jj-ease-spring), border-color 0.35s ease, box-shadow 0.35s ease;
}

.jj-gender-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 18px 45px rgba(0,0,0,0.65), 0 0 24px rgba(212,175,55,0.18);
}

.jj-gender-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.85s var(--jj-ease-cinematic);
}

.jj-gender-card:hover img {
  transform: scale(1.06);
}

.jj-gender-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06) 25%, rgba(0,0,0,0.45) 60%, rgba(4,4,3,0.94) 100%);
  pointer-events: none;
}

.jj-gender-card > div {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.jj-gender-card h3 {
  font: 600 22px 'Cinzel', serif;
  margin: 4px 0 2px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.jj-gender-card small {
  color: #d0c5b4;
  font-size: 11.5px;
}

/* ==========================================================================
   14. BESPOKE 3D CAD ATELIER & GIFT FINDER
   ========================================================================== */
.jj-bespoke-stage {
  background: radial-gradient(circle at 75% 30%, rgba(212,175,55,0.12) 0%, transparent 60%), #080705;
  border: 1px solid rgba(212,175,55,0.32);
  border-radius: 20px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  box-shadow: 0 18px 50px rgba(0,0,0,0.7);
  position: relative;
  overflow: hidden;
}

@media(max-width: 992px) {
  .jj-bespoke-stage {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }
}

.jj-gift-finder-box {
  background: radial-gradient(circle at top right, rgba(212,175,55,0.15) 0%, transparent 60%), #0d0c09;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 32px;
  padding: 44px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.7);
}

@media(max-width: 768px) {
  .jj-gift-finder-box {
    padding: 28px 20px;
  }
}

.jj-gift-filters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-top: 24px;
}

@media(max-width: 900px) {
  .jj-gift-filters-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 550px) {
  .jj-gift-filters-grid {
    grid-template-columns: 1fr;
  }
}

.jj-gift-select-wrap label {
  display: block;
  font: 700 11px/1 'Cinzel', serif;
  letter-spacing: 0.14em;
  color: var(--jj-gold-2);
  margin-bottom: 9px;
  text-transform: uppercase;
}

.jj-gift-select-wrap select {
  width: 100%;
  background: #14120e;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 14px;
  padding: 14px 16px;
  color: #fff;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.jj-gift-select-wrap select:focus {
  border-color: #ffd700;
  box-shadow: 0 0 18px rgba(212,175,55,0.3);
}

/* Dynamic Live Gift Finder Results Shelf */
.jj-gift-results-shelf {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(212,175,55,0.2);
  display: none;
}

.jj-gift-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 18px;
}

@media(max-width: 992px) {
  .jj-gift-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 550px) {
  .jj-gift-results-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   15. ULTRA-LUXURY PATRON TESTIMONIALS (VOGUE / CARTIER GRADE)
   ========================================================================== */
.jj-patron-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

@media(max-width: 992px) {
  .jj-patron-grid {
    grid-template-columns: 1fr;
  }
}

.jj-patron-card {
  position: relative;
  background: linear-gradient(150deg, rgba(22, 18, 12, 0.88) 0%, rgba(10, 9, 6, 0.96) 100%);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 28px;
  padding: 38px 32px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.65), inset 0 1px 1px rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 0.45s var(--jj-ease-spring), border-color 0.45s ease, box-shadow 0.45s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.jj-patron-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 30px 80px rgba(0,0,0,0.75), 0 0 35px rgba(212,175,55,0.22);
}

/* Giant Gold Watermark Quote */
.jj-patron-watermark {
  position: absolute;
  top: 10px;
  right: 22px;
  font: 700 130px/1 'Cinzel', serif;
  color: rgba(212, 175, 55, 0.05);
  pointer-events: none;
  user-select: none;
  line-height: 0.8;
}

.jj-patron-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.jj-patron-stars {
  display: flex;
  gap: 5px;
  color: #ffd700;
  font-size: 17px;
  filter: drop-shadow(0 0 8px rgba(255,215,0,0.6));
}

.jj-patron-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #10b981;
  font: 800 10px 'Cinzel', serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.jj-patron-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--jj-gold-2);
  font: 600 11px/1 'Cinzel', serif;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  width: max-content;
}

.jj-patron-card p {
  color: #e5ded3;
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}

.jj-patron-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  position: relative;
  z-index: 1;
}

.jj-patron-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f1b13 0%, #352c1a 100%);
  border: 1.5px solid var(--jj-gold-3);
  display: grid;
  place-items: center;
  color: #fbf0d0;
  font: 700 17px/1 'Cinzel', serif;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  flex-shrink: 0;
}

.jj-patron-author strong {
  display: block;
  color: #fff;
  font: 600 16px 'Cinzel', serif;
  letter-spacing: 0.04em;
}

.jj-patron-author small {
  display: block;
  color: #9e9484;
  font-size: 12px;
  margin-top: 3px;
}

.jj-city-badge {
  display: inline-block;
  color: var(--jj-gold-2);
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   16. VIP SERVICES & FOOTER BRAND
   ========================================================================== */
.jj-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width: 992px) {
  .jj-service-grid {
    grid-template-columns: 1fr;
  }
}

.jj-service-card {
  border: 1px solid var(--jj-line);
  border-radius: 26px;
  background: linear-gradient(180deg, #100e0a 0%, #080705 100%);
  padding: 34px 28px;
  text-decoration: none;
  transition: transform 0.4s var(--jj-ease-spring), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.jj-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 24px 60px rgba(0,0,0,0.65), 0 0 25px rgba(212,175,55,0.15);
}

.jj-service-card > i {
  font-size: 32px;
  color: var(--jj-gold-2);
  display: block;
  margin-bottom: 20px;
}

.jj-service-card > span {
  display: block;
  font: 600 24px 'Cinzel', serif;
  color: #fff;
}

.jj-service-card small {
  display: block;
  color: #aaa191;
  line-height: 1.75;
  margin: 12px 0 24px;
  font-size: 14px;
  flex: 1;
}

.jj-service-card b {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--jj-gold-2);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.jj-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 18px;
  background: transparent !important;
}

.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: transparent !important;
  filter: drop-shadow(0 2px 14px rgba(212, 175, 55, 0.5));
}

.jj-footer-brand-text strong {
  display: block;
  font: 700 18px/1.1 'Cinzel', serif;
  letter-spacing: 0.18em;
  color: #fff;
}

.jj-footer-brand-text small {
  display: block;
  color: var(--jj-gold-2);
  font-size: 11px;
  letter-spacing: 0.38em;
  font-weight: 700;
  margin-top: 3px;
}

/* ==========================================================================
   17. ACCESSIBILITY & TOAST
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #110e0a;
  border: 1px solid #d4af37;
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font: 600 13px 'Cinzel', serif;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 20px rgba(212,175,55,0.3);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.35s var(--jj-ease-spring);
  z-index: 100000;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

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