:root {
  --white: #FFFFFF;
  --light-gray: #FAF8F5; /* Warm Ivory */
  --marble-gray: #F4F2EE; /* Soft Marble */
  --dark-gray: #1E2229; /* Deep Charcoal */
  --black: #0E1118; /* Premium Velvet Obsidian */
  --text-primary: #0E1118;
  --text-secondary: #5A6270; /* Soft Charcoal */
  --accent: #C5A059; /* Soft Luxury Gold */
  --gold: #D4AF37; /* Bright Champagne Gold */
  --gold-deep: #8C6325; /* WCAG-AA gold for small text on light backgrounds */
  --cream: #FDFBF7; /* Ultra Cream */
  --bone: #EAD9BD;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text-primary); background-color: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; }
p { text-wrap: pretty; }
/* ── HERO ENTRANCE ANIMATION ── */
.hero-section .hero-text-top,
.hero-section .hero-center-box,
.navigation-menu { opacity: 0; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes navFadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-entrance .navigation-menu { animation: navFadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards; }
.hero-entrance .hero-text-top   { animation: heroFadeUp  1s   cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards; }
.hero-entrance .hero-center-box { animation: heroFadeUp  1s   cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards; }

/* ── NAVIGATION ── */

.navigation-menu { position: fixed; top: 0; left: 0; width: 100%; padding: 12px 5vw; display: flex; justify-content: space-between; align-items: center; z-index: 9999; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.05); }
.navbar-logo { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--black); text-decoration: none; text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.8; pointer-events: auto; font-weight: 700; position: relative; z-index: 10001; }
.find-button { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.9rem; color: var(--black); text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em; pointer-events: auto; }

/* ── 1. HERO ── */
.hero-section {
  height: 100vh;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 8vh 5vw 4vh 5vw;
  background: var(--white);
  z-index: 1;
}

/* Background circular orbits */
.hero-orbit {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(197, 160, 89, 0.12);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.orbit-outer  { width: 85vh; height: 85vh; animation: compassRotate 120s linear infinite; }
.orbit-middle { width: 60vh; height: 60vh; border-style: dashed; animation: compassRotate 90s linear infinite reverse; }
.orbit-inner  { width: 35vh; height: 35vh; animation: compassRotate 60s linear infinite; }

/* Soft Auric Glow */
.hero-auric-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 45vh; height: 45vh;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Hairline metadata grid */
.hero-meta-grid {
  position: absolute;
  inset: 6vh 5vw 4vh 5vw;
  pointer-events: none;
  z-index: 4;
  border: 1px solid rgba(197, 160, 89, 0.1);
}
.meta-item {
  position: absolute;
  font-family: 'Antonio', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding: 1.5rem;
  text-transform: uppercase;
}
.meta-item.top-left { top: 0; left: 0; }
.meta-item.top-right { top: 0; right: 0; }
.meta-item.bottom-left { bottom: 0; left: 0; }
.meta-item.bottom-right { bottom: 0; right: 0; }

/* Giant layered editorial title */
.hero-text-container {
  width: 100%;
  text-align: center;
  z-index: 3;
  margin-top: 6vh;
  pointer-events: none;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 10rem) !important;
  line-height: 1.1 !important;
  margin: 0;
  text-align: center;
  /* Display font is set by the condensed-label rule (Antonio) per design spec §3 */
  font-weight: 500 !important;
  color: var(--black);
  text-transform: uppercase;
}

/* Centered floating gemstone container */
.hero-gem-container {
  position: absolute;
  top: 55%; left: 50%;
  transform: translate(-50%, -50%);
  width: 65vh; height: 65vh;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
#hero-gem-canvas {
  width: 100%; height: 100%;
  object-fit: contain;
}

/* Editorial details footer */
.hero-editorial-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 4;
  margin-bottom: 8vh;
  padding: 0 2vw;
}
.hero-desc-wrapper {
  max-width: 300px;
}
.hero-desc-wrapper.text-left {
  text-align: left;
}
.hero-desc-wrapper.text-right {
  text-align: right;
}
.hero-kicker {
  font-family: 'Antonio', sans-serif !important;
  font-size: 0.8rem !important;
  color: var(--gold-deep) !important;
  letter-spacing: 0.25em !important;
  margin-bottom: 0.8rem;
  display: block;
}
.hero-description {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  color: var(--text-secondary) !important;
  margin: 0;
}

/* Compass Breathing CTA */
.compass-scroll-btn {
  position: relative;
  width: 90px; height: 90px;
  background: transparent;
  border: none;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.compass-ring {
  position: absolute;
  width: 100%; height: 100%;
  animation: compassRotate 45s linear infinite;
}
.btn-text {
  font-family: 'Antonio', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--black);
  transition: color 0.3s ease, transform 0.3s ease;
}
.compass-scroll-btn:hover {
  color: var(--accent);
}
.compass-scroll-btn:hover .btn-text {
  color: var(--accent);
  transform: scale(1.05);
}

/* ── Elevate z-index of all subsequent sections so hero gem slides below them ── */
.editorial-intro, .play-reel-section, .testimonials-section { position: relative; z-index: 10; background: var(--white); }

/* ── 2. EDITORIAL INTRO ── */
.editorial-intro { padding: 15vh 5vw; display: flex; gap: 5vw; background: var(--white); color: var(--black); }
.intro-left { width: 60%; }
.intro-left h2 { font-family: 'Cinzel', serif; font-size: clamp(1.875rem, 5vw, 3.75rem); line-height: 1.2; text-transform: uppercase; color: var(--black); }
.intro-right { width: 40%; padding-top: 2rem; }
.intro-right p { font-size: 1.2rem; color: rgba(5, 11, 38, 0.8); line-height: 1.6; }

/* ── 3. PLAY REEL ── */
.play-reel-section { padding: 0 5vw 10vh 5vw; background: var(--white); }
.play-reel-container { width: 100%; height: 70vh; background: var(--black); border-radius: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.3s ease; position: relative; overflow: hidden; }
.play-reel-container:hover { transform: scale(0.98); }
.reel-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transition: opacity 0.6s ease; }
.play-reel-container.playing .reel-video { opacity: 1; }
.play-reel-container.playing .play-btn { opacity: 0; pointer-events: none; }
.play-btn { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; color: var(--white); transition: opacity 0.4s ease; }
.play-icon { width: 80px; height: 80px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease, border-color 0.3s ease; }
.play-reel-container:hover .play-icon { transform: scale(1.1); border-color: rgba(255,255,255,0.8); }
.play-btn span { font-family: 'Inter', sans-serif; letter-spacing: 0.2em; font-size: 0.9rem; text-transform: uppercase; font-weight: 500; }

/* ── 4. TESTIMONIALS ── */
.testimonials-section { display: flex; padding: 15vh 5vw; background: var(--light-gray); gap: 5vw; }
.test-left { width: 60%; }
.test-left h2 { font-family: 'Cinzel', serif; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1; margin-bottom: 4rem; }
.review-box { max-width: 500px; }
.review-box p { font-size: 1.2rem; line-height: 1.6; margin-bottom: 2rem; font-style: italic; }
.review-box span { font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); }
.test-right { width: 40%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.rating-huge { font-family: 'Cinzel', serif; font-size: clamp(5rem, 12vw, 9.375rem); line-height: 1; margin-bottom: 1rem; }
.rating-stars { font-size: 2rem; letter-spacing: 0.2em; margin-bottom: 1rem; }


/* ── 6. GEMS TO DISCOVER ── */
.catalog-section { position: relative; background: #06080F; color: var(--white); padding: 0 !important; z-index: 10000; }
.catalog-container { display: grid !important; grid-template-columns: 0.6fr 1fr 0.8fr !important; height: 100vh !important; padding: 0 !important; }
.catalog-left { display: flex; flex-direction: column; justify-content: center; }
.catalog-heading { font-family: 'Cinzel', serif; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.1; text-transform: uppercase; color: var(--white); }
.catalog-card-track { position: relative; overflow: hidden; }
.catalog-card { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.catalog-card.active { opacity: 1 !important; transform: translateY(0) !important; }
.catalog-right { display: flex; flex-direction: column; justify-content: center; overflow-y: auto; }
.gem-list { list-style: none; padding: 0; margin: 0; }
.gem-list li { font-family: 'Cormorant Garamond', serif; color: rgba(255,255,255,0.45); cursor: pointer; transition: all 0.3s ease; }
.gem-list li:hover span:last-child, .scroll-gem-list li:hover span:last-child { color: var(--white) !important; }
.gem-list li.active, .scroll-gem-list li.active span:last-child { color: var(--white) !important; }
.scroll-gem-list li.active span:first-child { color: var(--accent) !important; opacity: 1 !important; }

/* ── 7. PROVENANCE (Must Keep) ── */
.provenance-section-new { padding: 15vh 5vw; background: var(--black); color: var(--white); display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.1); }
.prov-left { width: 45%; }
.prov-kicker { font-family: 'Inter', sans-serif; letter-spacing: 0.2em; color: var(--text-secondary); margin-bottom: 2rem; text-transform: uppercase; }
.prov-title { font-family: 'Cinzel', serif; font-size: clamp(1.875rem, 4vw, 3.75rem); line-height: 1.2; margin-bottom: 2rem; }
.prov-author { font-style: italic; color: var(--text-secondary); margin-bottom: 4rem; }
.prov-btn { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: var(--white); padding: 1rem 2rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; }
.prov-right { width: 50%; display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.badge-container { width: 150px; height: 150px; margin-bottom: 3rem; animation: rotateBadge 15s linear infinite; }
@keyframes rotateBadge { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.gjepc-badge { width: 100%; height: 100%; color: #D4AF37; overflow: visible; } /* Gold accent for the badge */
.gjepc-badge text { fill: #D4AF37; font-size: 12.5px; letter-spacing: 2.5px; font-family: 'Inter', sans-serif; font-weight: 500; }
.prov-text-block h2 { font-family: 'Cinzel', serif; font-size: 3rem; margin-bottom: 1rem; }
.prov-lead { font-size: 1.2rem; margin-bottom: 1rem; color: var(--white); }
.prov-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; max-width: 400px; margin-left: auto; }

/* ── 8. PORTFOLIO ── */
.portfolio-section { background: var(--light-gray); height: 200vh; position: relative; z-index: 10; }
.portfolio-sticky-container { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; padding: 0 5vw; overflow: hidden; }
.portfolio-header { min-width: 30vw; flex-shrink: 0; }
.portfolio-header h2 { font-family: 'Cinzel', serif; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.1; text-transform: uppercase; margin-bottom: 1.5rem; }
.portfolio-track { display: flex; gap: 4vw; padding-left: calc(50vw - 200px); padding-right: calc(50vw - 200px); }
.portfolio-card { width: 400px; height: 500px; background: var(--white); border-radius: 20px; padding: 3rem; display: flex; flex-direction: column; box-shadow: 0 20px 40px rgba(0,0,0,0.05); flex-shrink: 0; }
.portfolio-num { font-family: 'Cinzel', serif; font-size: 4rem; color: var(--dark-gray); margin-bottom: auto; }
.portfolio-card h3 { font-family: 'Inter', sans-serif; font-size: 1.5rem; text-transform: uppercase; margin-bottom: 1rem; }
.portfolio-card p { color: var(--text-secondary); line-height: 1.6; }
.portfolio-cta-card { width: 400px; height: 500px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.large-circle-btn { width: 200px; height: 200px; border-radius: 50%; background: var(--black); color: var(--white); display: flex; align-items: center; justify-content: center; text-decoration: none; text-transform: uppercase; font-weight: 600; letter-spacing: 0.1em; font-size: 1.2rem; transition: transform 0.3s ease; text-align: center; line-height: 1.4; }
.large-circle-btn:hover { transform: scale(1.05); }

/* ── 9. TYPO TRANSITION ── */
.typo-transition { padding: 20vh 5vw; background: var(--white); text-align: center; }
.typo-massive { font-family: 'Cinzel', serif; font-size: clamp(3.125rem, 8vw, 7.5rem); line-height: 1; text-transform: uppercase; }

/* ── 10. SAFE-HAVEN QUOTE ── */
.quote-section { display: flex; padding: 15vh 5vw; background: var(--light-gray); gap: 5vw; align-items: center; }
.quote-left { width: 40%; height: 60vh; background: var(--dark-gray); border-radius: 20px; }
.quote-right { width: 60%; padding-left: 5vw; }
.quote-mark { font-family: 'Cinzel', serif; font-size: 8rem; color: var(--black); line-height: 0; display: block; margin-bottom: 2rem; }
.quote-right h2 { font-family: 'Cinzel', serif; font-size: clamp(1.875rem, 4vw, 3.75rem); line-height: 1.2; margin-bottom: 2rem; font-style: italic; }
.quote-author { font-size: 1.2rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── 11. JOURNAL ── */
.journal-section { padding: 15vh 5vw; background: var(--white); position: relative; }
.journal-title { font-family: 'Cinzel', serif; font-size: clamp(3.125rem, 8vw, 7.5rem); text-align: center; margin-bottom: 10vh; }
.journal-list { display: flex; flex-direction: column; }
.journal-item { display: flex; justify-content: space-between; padding: 2rem 0; border-top: 1px solid rgba(0,0,0,0.1); font-family: 'Inter', sans-serif; font-size: 1.5rem; cursor: pointer; transition: padding 0.3s ease; }
.journal-item:hover { padding-left: 2rem; padding-right: 2rem; background: var(--light-gray); }
.j-date { color: var(--text-secondary); font-size: 1rem; }
#journal-hover-canvas { position: fixed; top: 0; left: 0; margin-top: -200px; margin-left: -200px; width: 400px; height: 400px; pointer-events: none; opacity: 0; z-index: 100; transition: opacity 0.3s ease; }

/* ── 12. GRAND FOOTER ── */
.grand-footer { background: var(--light-gray); padding: 10vh 5vw 5vh 5vw; display: flex; flex-direction: column; }
.footer-top-row { display: flex; justify-content: space-between; margin-bottom: 10vh; }
.footer-email { position: relative; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--black); padding-bottom: 0.5rem; width: 30%; margin-top: 1rem; }
.footer-email input { border: none; background: transparent; flex-grow: 1; outline: none; font-size: 1.2rem; font-family: 'Inter', sans-serif; padding-top: 0.5rem; }
.footer-email input:focus { background: rgba(0,0,0,0.02); transition: background 0.3s ease; }
.footer-email input::placeholder { color: transparent; }
.footer-email label { position: absolute; top: 0.5rem; left: 0; font-family: 'Inter', sans-serif; font-size: 1.2rem; color: rgba(0,0,0,0.4); pointer-events: none; transition: all 0.2s ease; }
.footer-email input:focus ~ label, .footer-email input:not(:placeholder-shown) ~ label { top: -0.8rem; font-size: 0.75rem; color: var(--black); }
.footer-email button { background: transparent; border: none; font-size: 1.2rem; cursor: pointer; transform-origin: center; transition: transform 0.2s ease; }
.footer-email button:active { transform: scale(0.9); }
.footer-links { display: flex; gap: 8vw; flex-grow: 1; justify-content: flex-end; }
.f-col { display: flex; flex-direction: column; gap: 2rem; font-size: 0.9rem; letter-spacing: 0.1em; color: var(--black); text-align: left; text-transform: uppercase; font-weight: 500; }
.f-label { color: var(--text-secondary); font-size: 0.9rem; font-weight: 400; }
.f-col a { color: var(--black); text-decoration: none; }
.footer-massive-logo { text-align: center; margin-bottom: 5vh; border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 5vh; }
.footer-massive-logo .footer-logo-text { font-family: 'Cinzel', serif; font-size: clamp(2.4rem, 12.5vw, 15.625rem); line-height: 0.8; letter-spacing: -0.02em; font-weight: 700; white-space: nowrap; }
.footer-bottom { display: flex; justify-content: space-between; font-size: 0.8rem; letter-spacing: 0.1em; color: var(--text-secondary); text-transform: uppercase; }
.f-bottom-left, .f-bottom-right { display: flex; gap: 2rem; }
.f-bottom-left a, .f-bottom-right a { color: var(--text-secondary); text-decoration: none; }

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 991px) {
  /* HERO */
  .hero-section {
    justify-content: space-between;
    padding: 12vh 5vw 4vh;
  }
  .hero-title {
    font-size: clamp(3rem, 12vw, 5rem) !important;
  }
  .orbit-outer  { width: min(85vh, 95vw); height: min(85vh, 95vw); }
  .orbit-middle { width: min(60vh, 75vw); height: min(60vh, 75vw); }
  .orbit-inner  { width: min(35vh, 50vw); height: min(35vh, 50vw); }
  .hero-auric-glow { width: min(45vh, 80vw); height: min(45vh, 80vw); }
  .hero-gem-container {
    width: min(65vh, 90vw);
    height: min(65vh, 90vw);
    top: 50%;
  }
  .hero-editorial-footer {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2vh;
  }
  .hero-desc-wrapper.text-left, 
  .hero-desc-wrapper.text-right {
    text-align: center;
  }
  .compass-scroll-btn {
    order: -1;
    margin-bottom: 1rem;
  }
  .hero-meta-grid {
    display: none; /* Hide meta grid on mobile to declutter */
  }

  /* GENERAL SECTIONS */
  .editorial-intro, .testimonials-section, .catalog-container, .provenance-section-new, .quote-section {
    flex-direction: column;
    gap: 3rem;
  }
  .intro-left, .intro-right, .test-left, .test-right, .catalog-left, .catalog-right, .prov-left, .prov-right, .quote-left, .quote-right {
    width: 100%;
    padding: 0;
  }
  .intro-left, .test-left, .catalog-left, .prov-left {
    text-align: center;
  }

  /* PLAY REEL */
  .play-reel-container {
    height: 50vh;
  }

  /* CATALOG — disable the desktop scroll-jack; stack as one tap-driven column */
  .catalog-section { height: auto !important; }
  .catalog-container {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    height: auto !important;
    position: relative !important;
    top: auto !important;
    gap: 3rem;
    padding: 12vh 6vw !important;
  }
  .catalog-left, .catalog-center, .catalog-right {
    width: 100% !important;
    border: none !important;
    padding: 0 !important;
  }
  .catalog-left { flex-direction: column; gap: 2rem; }
  .catalog-right { overflow: visible !important; }
  .catalog-card-track { width: 100%; max-width: 360px; margin: 0 auto; height: 500px; }

  /* PROVENANCE */
  .prov-right { align-items: center; text-align: center; }
  .prov-desc { margin: 0 auto; }
  
  /* PORTFOLIO */
  .portfolio-section { height: auto; padding: 10vh 0; }
  .portfolio-sticky-container { position: relative; height: auto; overflow: visible; display: block; padding: 0; }
  .portfolio-header { padding: 0 5vw; margin-bottom: 3rem; text-align: center; }
  .portfolio-track { display: flex; flex-direction: column; gap: 2rem; padding: 0 5vw; align-items: center; }
  .portfolio-card, .portfolio-cta-card { width: 100%; max-width: 400px; height: auto; min-height: 300px; }

  /* FOOTER */
  .footer-top-row { flex-direction: column; gap: 3rem; }
  .footer-email, .footer-links { width: 100%; }
  .footer-links { flex-direction: column; gap: 2rem; text-align: center; }
  .f-bottom-left, .f-bottom-right { justify-content: center; width: 100%; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; align-items: center; }
}

/* ==========================================================================
   💎 HONEST GEMS — ELITE LUXURY STYLE & TYPOGRAPHY OVERLAY
   ========================================================================== */

/* ── 1. GLOBAL TYPOGRAPHY REFINE ── */
body {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

/* display titles */
h1, h2, h3, .brand-title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* narrative editorial quotes */
.editorial-quote, 
.quote-section h2, 
.review-box p, 
.quote-author {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

/* condensed skeuomorphic UI labels */
.hero-title,
.hero-kicker,
.catalog-heading,
.card-info h3,
.astrological-data span,
.portfolio-header h2,
.portfolio-num,
.typo-transition h2,
.footer-massive-logo .footer-logo-text,
.find-button {
  font-family: 'Antonio', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

/* restict line length for elite readability */
p {
  max-width: 60ch;
  line-height: 1.65;
}

/* ── 2. VELVET NOISE TEXTURE ── */
.has-velvet-noise {
  position: relative;
  isolation: isolate;
}
.has-velvet-noise::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(197, 160, 89, 0.03) 1px, transparent 1.5px),
    radial-gradient(circle at 80% 70%, rgba(14, 17, 24, 0.02) 1px, transparent 1.5px);
  background-size: 10px 10px, 14px 14px;
  mix-blend-mode: multiply;
  opacity: 0.8;
  border-radius: inherit;
}
.has-velvet-noise > * {
  position: relative;
  z-index: 1;
}

/* ── 3. STYLED GLASS NAVIGATION ── */
.navigation-menu {
  background: rgba(253, 251, 247, 0.8) !important;
  backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2) !important;
  transition: all 0.4s ease;
}
.navigation-menu:hover {
  background: rgba(253, 251, 247, 0.9) !important;
  border-bottom: 1px solid rgba(197, 160, 89, 0.35) !important;
}
.navbar-logo {
  color: var(--black) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar-logo:hover {
  transform: scale(1.03);
}
.find-button {
  border: 1px solid rgba(197, 160, 89, 0.3) !important;
  padding: 10px 24px;
  border-radius: 40px;
  background: rgba(197, 160, 89, 0.05) !important;
  color: var(--black) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.find-button:hover {
  background: var(--accent) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.15);
}
/* Secondary, text-only nav link (e.g. JOURNAL). Overrides the pill styling above. */
.find-button.ghost {
  background: transparent !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  font-weight: 600 !important;
}
.find-button.ghost:hover {
  background: transparent !important;
  color: var(--accent) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ── 4. THE EDITORIAL LIGHT HERO ── */
/* Custom luxury properties managed in Component 1 */

/* ── 5. LIGHT TESTIMONIALS ── */
.testimonials-section {
  background-color: var(--light-gray) !important;
  color: var(--black) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12vh 8vw !important;
}
.test-left h2 {
  color: var(--black) !important;
  font-family: 'Antonio', sans-serif !important;
  letter-spacing: 0.05em !important;
}
.review-box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  padding: 2.5rem 0 !important;
}
.review-box p {
  font-size: 1.65rem !important;
  color: var(--black) !important;
}
.review-box span {
  color: rgba(5, 11, 38, 0.6) !important;
  font-family: 'Antonio', sans-serif !important;
  letter-spacing: 0.08em !important;
  font-weight: 700 !important;
}
.review-box .quote-author {
  color: var(--accent) !important;
  font-family: 'Antonio', sans-serif !important;
}
.test-right {
  color: var(--black) !important;
}
.test-right p {
  color: var(--text-secondary) !important;
  opacity: 0.75;
  font-size: 0.95rem;
  font-style: italic;
}
.rating-huge {
  color: var(--black) !important;
}
.stars-huge {
  color: var(--accent) !important;
}

/* ── 6. OBSIDIAN SLABS (CATALOG) ── */
.catalog-section {
  background: var(--black) !important;
  padding: 12vh 5vw !important;
}
.catalog-heading {
  color: var(--white) !important;
  letter-spacing: 0.05em !important;
}
.card-canvas {
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
}
.astrological-data span {
  color: var(--accent) !important;
}
.gem-list li {
  color: rgba(255, 255, 255, 0.35) !important;
  font-family: 'Antonio', sans-serif !important;
  letter-spacing: 0.08em !important;
  transition: all 0.3s ease !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.gem-list li.active {
  color: var(--gold) !important;
  border-left: 2px solid var(--accent) !important;
  padding-left: 15px !important;
}
.gem-list li.active .zodiac-icon {
  color: var(--gold) !important;
}
.scroll-gem-list li.active span:last-child { color: var(--white) !important; }
.scroll-gem-list li.active span:first-child { color: var(--accent) !important; opacity: 1; }
.scroll-gem-list li:hover span:last-child { color: var(--white) !important; }

/* ── 7. PROVENANCE TRUST ── */
.provenance-section-new {
  background: var(--black) !important;
  color: var(--white) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 12vh 8vw !important;
}
.prov-title {
  color: var(--white) !important;
}
.prov-desc {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
  opacity: 0.85 !important;
}
.prov-text-block h2 {
  color: var(--white) !important;
  font-family: 'Antonio', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  font-size: 2.2rem !important;
  margin-bottom: 1.2rem !important;
}
.prov-lead {
  color: var(--gold) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.45rem !important;
  font-style: italic !important;
  line-height: 1.5 !important;
  margin-bottom: 1.2rem !important;
}
.prov-btn {
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  font-family: 'Antonio', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  padding: 1rem 2.2rem !important;
  border-radius: 50px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.prov-btn:hover {
  background: var(--white) !important;
  color: var(--black) !important;
  border-color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}
.badge-stamp {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.badge-stamp:hover {
  transform: rotate(15deg) scale(1.05);
}

/* Slow GJEPC rotation */
.rotate-slow-compass {
  animation: compassRotate 45s linear infinite;
}
.rotate-slow-compass:hover {
  animation-play-state: paused;
}
@keyframes compassRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── 8. PORTFOLIO & LETTER SPACING ── */
.portfolio-section {
  background: var(--light-gray) !important;
}
.portfolio-header h2 {
  letter-spacing: 0.05em !important;
  font-kerning: normal !important;
  color: var(--black) !important;
}
.portfolio-card {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.4s ease;
}
.portfolio-card:hover {
  border-color: rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06) !important;
}
.portfolio-num {
  color: var(--accent) !important;
}

/* ── 9. TYPOGRAPHIC TRANSITION ── */
.typo-transition {
  background: var(--white) !important;
  padding: 15vh 5vw !important;
}
.typo-transition h2 {
  color: var(--black) !important;
  letter-spacing: 0.12em !important;
  line-height: 1.4 !important;
}

/* ── 10. SAFE-HAVEN QUOTE ── */
.quote-section {
  background-color: var(--light-gray) !important;
  color: var(--black) !important;
}
.quote-section h2 {
  color: var(--black) !important;
}
.quote-section .quote-author {
  color: rgba(5, 11, 38, 0.7) !important;
}
.quote-left .quote-media {
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  padding: 8px;
  background: var(--white);
}
.quote-mark {
  color: var(--accent) !important;
  opacity: 0.35;
}

/* ── 11. JOURNAL CURSOR INVENTORY ── */
.journal-section {
  background: var(--white) !important;
  color: var(--black) !important;
  padding: 10vh 5vw;
}
.journal-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--black);
  margin-bottom: 3rem;
  text-transform: uppercase;
}
.journal-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  padding: 2.5rem 0 !important;
  color: var(--black) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Antonio', sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
  cursor: pointer;
}
.journal-item span {
  color: var(--black) !important;
}
.journal-item .j-date {
  color: rgba(5, 11, 38, 0.5) !important;
  font-size: 0.9rem;
}
.journal-item:hover {
  background: rgba(0, 0, 0, 0.015);
}

/* ── 12. GRAND VAULT FOOTER ── */
.grand-footer {
  background-color: var(--light-gray) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  position: relative;
  overflow: hidden;
  padding-top: 10vh !important;
}
.footer-email {
  border-bottom: 2px solid var(--black) !important;
}
.footer-email input {
  color: var(--black) !important;
}
.footer-email input::placeholder {
  color: var(--text-secondary) !important;
  opacity: 0.55 !important;
}
.footer-email button {
  color: var(--black) !important;
}
.footer-massive-logo .footer-logo-text {
  color: rgba(0, 0, 0, 0.03) !important;
  letter-spacing: 0.15em !important;
  transition: color 0.5s ease;
}
.grand-footer:hover .footer-massive-logo .footer-logo-text {
  color: rgba(0, 0, 0, 0.05) !important;
}
.footer-ornament {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(197, 160, 89, 0.25);
  pointer-events: none;
}
.footer-ornament.top-left { top: 20px; left: 20px; border-right: none; border-bottom: none; }
.footer-ornament.top-right { top: 20px; right: 20px; border-left: none; border-bottom: none; }
.footer-ornament.bottom-left { bottom: 20px; left: 20px; border-right: none; border-top: none; }
.footer-ornament.bottom-right { bottom: 20px; right: 20px; border-left: none; border-top: none; }

/* ── 13. CUSTOM MOUSE CURSOR ── */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  mix-blend-mode: difference;
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}
#custom-cursor.hovered {
  width: 44px;
  height: 44px;
  background-color: rgba(214, 168, 79, 0.25);
  border: 1px solid var(--gold);
  mix-blend-mode: normal;
}

/* Hide default browser cursor on desktop devices when custom cursor is active */
/* Only hide the system cursor when JS has confirmed the custom cursor is live
   (the .has-custom-cursor class is added in initCustomCursor). */
@media (min-width: 992px) {
  html.has-custom-cursor, html.has-custom-cursor body {
    cursor: none;
  }
  html.has-custom-cursor a, html.has-custom-cursor button, html.has-custom-cursor li,
  html.has-custom-cursor .portfolio-card, html.has-custom-cursor .journal-item,
  html.has-custom-cursor .play-reel-container {
    cursor: none !important;
  }
}

/* Hide custom cursor on mobile devices */
@media (max-width: 991px) {
  #custom-cursor {
    display: none !important;
  }
}

/* ── 14. TEXT ANIMATION MASKS ── */
.line-wrapper, .char-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.split-line, .split-char {
  display: inline-block;
}

/* ── 14. SplitType Animation Clipping Classes ── */
.line-wrapper {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
}
.char-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.split-line {
  display: inline-block;
}
.split-char {
  display: inline-block;
  transform-origin: bottom left;
}

/* ==========================================================================
   💎 HONEST GEMS — FULL-SITE LUXURY INTERACTIVE ELEVATION STYLES
   ========================================================================== */

/* 1. Testimonial Slider Styles */
.testimonial-slider-container {
  position: relative;
  width: 100%;
  max-width: 550px;
  min-height: 250px;
  margin-top: 2rem;
}
.testimonial-slider-container .review-box {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: none !important;
  padding: 0 !important;
}
.testimonial-slider-container .review-box.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.slider-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.nav-arrow {
  background: transparent;
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: var(--black);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-arrow:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.15);
}
.nav-indicator {
  font-family: 'Antonio', sans-serif !important;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

/* ==========================================================================
   💎 JOURNAL PAGE STYLES
   ========================================================================== */
.journal-page-hero {
  padding: 25vh 5vw 10vh;
  text-align: center;
  background: var(--obsidian);
}
.journal-page-hero h1 {
  font-family: 'Cinzel', serif !important;
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.journal-page-hero p {
  font-family: 'Antonio', sans-serif !important;
  color: var(--accent);
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  text-transform: uppercase;
}

/* ── EDITORIAL FEATURED ── */
.editorial-featured {
  padding: 20vh 5vw 10vh;
  background: transparent;
}
.featured-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s ease;
  background: #0f121a;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(197, 160, 89, 0.15);
}
.featured-card:hover .featured-image {
  transform: scale(1.02);
}
.featured-card:active {
  transform: scale(0.98);
}
.featured-image {
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.featured-content {
  padding: 4rem 5vw;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ── VISUAL BREAK ── */
.journal-break {
  background: transparent;
  padding: 12vh 5vw;
  text-align: center;
}
.break-content {
  max-width: 800px;
  margin: 0 auto;
}
.break-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-style: italic;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.break-content p {
  font-family: 'Antonio', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}
.break-email {
  display: flex;
  border-bottom: 2px solid rgba(197, 160, 89, 0.5);
  padding-bottom: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
}
.break-email input {
  border: none;
  background: transparent;
  flex-grow: 1;
  outline: none;
  font-size: 1.2rem;
  font-family: 'Inter', sans-serif;
  color: var(--white);
}
.break-email button {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  font-family: 'Antonio', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--accent);
}

/* ── EDITORIAL BENTO GRID ── */
.editorial-bento-section {
  padding: 5vh 5vw 15vh;
  background: transparent;
}
.editorial-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4vw;
  max-width: 1400px;
  margin: 0 auto;
}
.bento-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.bento-image {
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.bento-image-wrapper {
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  flex-grow: 1;
}
.bento-card:hover .bento-image {
  transform: scale(1.03);
}
.bento-card:active {
  transform: scale(0.98);
}
.bento-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bento-large { grid-column: span 12; }
.bento-large .bento-image { aspect-ratio: 16 / 9; }

.bento-small { grid-column: span 12; }
.bento-small .bento-image { aspect-ratio: 1 / 1; }

.bento-wide { grid-column: span 12; }
.bento-wide .bento-image { aspect-ratio: 16 / 9; }

@media (min-width: 768px) {
  .bento-large { grid-column: span 12; }
  .bento-small { grid-column: span 6; }
  .bento-wide { grid-column: span 12; }
}

@media (min-width: 1024px) {
  .bento-large { grid-column: span 8; grid-row: span 2; }
  .bento-large .bento-image { height: 100%; aspect-ratio: auto; min-height: 500px; }
  .bento-small { grid-column: span 4; }
  .bento-wide { grid-column: span 12; }
}

.diamond-bg { background: url('assets/journal/diamond_venus_1779637106552.jpg') center/cover no-repeat; }
.emerald-bg { background: url('assets/journal/emerald_mercury_1779637123044.jpg') center/cover no-repeat; }
.ruby-bg { background: url('assets/journal/ruby_sun_1779637137032.jpg') center/cover no-repeat; }
.pearl-bg { background: url('assets/journal/pearl_moon_1779637152102.jpg') center/cover no-repeat; }
.sapphire-bg { background: url('assets/journal/sapphire_saturn_1779637167247.jpg') center/cover no-repeat; }

.blog-meta {
  font-family: 'Antonio', sans-serif !important;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.blog-meta .tag {
  background: rgba(197, 160, 89, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(197, 160, 89, 0.3);
}
.blog-title {
  font-family: 'Antonio', sans-serif !important;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
  transition: color 0.3s ease;
}
.featured-content .blog-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
}
.blog-excerpt {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.featured-content .blog-excerpt {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
}
.read-more {
  font-family: 'Antonio', sans-serif !important;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  margin-top: 1rem;
  display: inline-block;
  transition: color 0.3s ease;
}
.featured-content .read-more {
  color: var(--white);
}
.featured-card:hover .read-more {
  color: var(--accent);
}
.bento-card:hover .blog-title {
  color: var(--accent);
}
/* 3. 3D Card Parallax & Coin tilts */
.portfolio-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.portfolio-card > * {
  transform: translateZ(30px); /* Lifts content in 3D space */
}
.gjepc-badge {
  transform-style: preserve-3d;
  perspective: 800px;
  transition: transform 0.1s ease;
}

/* 4. Context-Aware Cursor Labels */
#custom-cursor {
  display: flex;
  align-items: center;
  justify-content: center;
}
#custom-cursor span {
  font-family: 'Antonio', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  pointer-events: none;
}
#custom-cursor.hovered span {
  opacity: 1;
  transform: scale(1);
}

/* 5. Gold Compass Seal Interactive Breathing */
.compass-scroll-btn {
  transform-origin: center;
  animation: breathingBtn 3s ease-in-out infinite alternate;
}
@keyframes breathingBtn {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}

/* 6. Footer Submit Feedback Overlay */
.footer-feedback-toast {
  font-family: 'Antonio', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-feedback-toast.active {
  opacity: 1;
  transform: translateY(0);
}

/* ── 7. KEYBOARD FOCUS VISIBILITY (a11y) ───────────────────────────────────── */
/* Visible gold ring for keyboard users; does not show on mouse/touch focus. */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Restore a focus ring on inputs that explicitly disable the outline. */
.footer-email input:focus-visible,
.break-email input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
/* Zodiac list items read better with an inset ring against the dark panel. */
.scroll-gem-list li:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

/* ── 8. REDUCED MOTION ─────────────────────────────────────────────────────── */
/* Honour prefers-reduced-motion: stop the infinite decorative animations
   (orbits, badge spin, compass rotation, breathing CTA) and snap transitions.
   JS reveals and the 3D auto-rotation are disabled separately in script.js. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   💎 PRODUCT PAGE (PDP) — light theme, fully responsive, namespaced .pdp-*
   ========================================================================== */
.pdp-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16vh 5vw 0;
}
.pdp-main * { min-width: 0; } /* never let a grid/flex child force overflow */

/* Breadcrumb */
.pdp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-family: 'Antonio', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4vh;
}
.pdp-breadcrumb a { color: var(--text-secondary); text-decoration: none; transition: color 0.3s ease; }
.pdp-breadcrumb a:hover { color: var(--accent); }
.pdp-breadcrumb .sep { color: rgba(0, 0, 0, 0.25); }
.pdp-breadcrumb [aria-current] { color: var(--black); }

/* ── HERO ── */
.pdp-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

/* Image placeholders — dark "display case" so future gem photos pop */
.pdp-ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(197, 160, 89, 0.12) 0%, transparent 62%),
    #0E1118;
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 4px;
  overflow: hidden;
  color: rgba(212, 175, 55, 0.6);
}
.pdp-gallery { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 13vh; }
.pdp-gallery-main { aspect-ratio: 4 / 5; }
.pdp-gallery-main svg { width: 34%; height: 34%; }
.pdp-gallery-main::after {
  content: 'IMAGE — COMING SOON';
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'Antonio', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(197, 160, 89, 0.55);
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 4px 9px;
  border-radius: 30px;
}
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pdp-thumbs .pdp-ph { aspect-ratio: 1; }

/* Info column */
.pdp-info { padding-top: 0.25rem; }
.pdp-kicker {
  display: block;
  font-family: 'Antonio', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.pdp-title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.05;
  color: var(--black);
  margin: 0 0 1rem;
  text-wrap: balance;
}
.pdp-zodiac {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.75rem;
}
.pdp-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.pdp-stars { color: var(--gold); letter-spacing: 0.12em; }
.pdp-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin-bottom: 1.75rem;
}
.pdp-price .amount {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  color: var(--black);
  line-height: 1;
}
.pdp-price .unit {
  font-family: 'Antonio', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.pdp-lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 48ch;
  margin: 0 0 2rem;
  text-wrap: pretty;
}
.pdp-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.pdp-pill {
  font-family: 'Antonio', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid rgba(197, 160, 89, 0.4);
  background: rgba(197, 160, 89, 0.07);
  padding: 0.5rem 0.95rem;
  border-radius: 40px;
  white-space: nowrap;
}
.pdp-divider { height: 1px; background: rgba(0, 0, 0, 0.1); margin: 2rem 0; }
.pdp-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.25rem; }
.pdp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Antonio', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2rem;
  border-radius: 50px;
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pdp-btn-primary { background: var(--accent); color: var(--white); flex: 1 1 12rem; }
.pdp-btn-primary:hover { background: var(--black); border-color: var(--black); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14); }
.pdp-btn-ghost { background: transparent; color: var(--black); flex: 0 1 auto; }
.pdp-btn-ghost:hover { background: rgba(197, 160, 89, 0.08); transform: translateY(-2px); }
.pdp-reassure {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.pdp-reassure .sep { color: rgba(0, 0, 0, 0.25); }

/* ── SECTIONS (specs / editorial / trust / related) ── */
.pdp-section {
  margin-top: clamp(7vh, 11vh, 13vh);
  padding-top: clamp(7vh, 11vh, 13vh);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.pdp-section-kicker {
  display: block;
  font-family: 'Antonio', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.pdp-section-title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.1;
  color: var(--black);
  margin: 0;
  text-wrap: balance;
}

/* Specs */
.pdp-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(2rem, 5vw, 5rem);
  margin: 2.5rem 0 0;
}
.pdp-spec {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.pdp-spec dt {
  font-family: 'Antonio', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.pdp-spec dd {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--black);
  text-align: right;
  text-wrap: balance;
}

/* Editorial */
.pdp-editorial-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 2.5rem;
}
.pdp-editorial-lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  line-height: 1.5;
  color: var(--black);
  margin: 0 0 1.5rem;
  text-wrap: pretty;
}
.pdp-editorial-body p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.25rem; max-width: 62ch; text-wrap: pretty; }
.pdp-editorial-body p:last-child { margin-bottom: 0; }

/* Trust strip */
.pdp-trust-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: 2.5rem;
}
.pdp-trust-text p { color: var(--text-secondary); line-height: 1.7; margin-top: 1.25rem; max-width: 58ch; text-wrap: pretty; }
.pdp-trust-seal { display: flex; justify-content: center; }
.pdp-trust-seal .gjepc-badge { width: clamp(120px, 14vw, 170px); height: clamp(120px, 14vw, 170px); color: var(--gold); }

/* Related */
.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2.5rem;
}
.pdp-related-card { text-decoration: none; display: flex; flex-direction: column; gap: 0.85rem; }
.pdp-related-card .pdp-ph { aspect-ratio: 3 / 4; transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.pdp-related-card:hover .pdp-ph { border-color: rgba(197, 160, 89, 0.6); transform: translateY(-4px); }
.pdp-related-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--black); }
.pdp-related-sub { font-family: 'Antonio', sans-serif; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }

/* Entrance (only when motion is welcome — content always visible otherwise) */
@media (prefers-reduced-motion: no-preference) {
  .pdp-animate { opacity: 0; transform: translateY(18px); animation: pdpFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
  @keyframes pdpFadeUp { to { opacity: 1; transform: none; } }
}

/* ── PDP RESPONSIVE ── */
@media (max-width: 900px) {
  .pdp-hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .pdp-gallery { position: static; }
  .pdp-gallery-main { aspect-ratio: 16 / 12; }
  .pdp-editorial-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pdp-trust-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pdp-trust-seal { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .pdp-main { padding-top: 13vh; }
  .pdp-specs-grid { grid-template-columns: 1fr; }
  .pdp-cta { flex-direction: column; }
  .pdp-btn { width: 100%; }
  .pdp-thumbs { gap: 0.6rem; }
  .pdp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-spec { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .pdp-spec dd { text-align: left; }
}

/* ── T1 SAFETY: reduce letter-spacing at very small screens so footer logo stays on one line */
@media (max-width: 480px) {
  .footer-massive-logo .footer-logo-text { letter-spacing: 0.06em !important; }
}

/* ── T3 CATALOG CARD LINK ───────────────────────────────────────────────────── */
.catalog-card-link {
  display: inline-block;
  margin-top: 1.1rem;
  font-family: 'Antonio', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(197, 160, 89, 0.4);
  padding-bottom: 3px;
  width: fit-content;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.catalog-card-link:hover { color: var(--white); border-color: var(--white); }

/* ── T4 MOBILE NAV / HAMBURGER ──────────────────────────────────────────────── */
.nav-toggle { display: none; }
@media (min-width: 769px) {
  .nav-links { display: flex; gap: 1.5rem; align-items: center; }
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 0; background: transparent; border: none;
    cursor: pointer; z-index: 10001; position: relative;
  }
  .nav-toggle span {
    display: block; width: 24px; height: 2px; background: var(--black);
    border-radius: 2px; transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  }
  .navigation-menu.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navigation-menu.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .navigation-menu.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 10000;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
    background: rgba(253, 251, 247, 0.98); backdrop-filter: blur(16px);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    padding-bottom: env(safe-area-inset-bottom, 20px);
  }
  .navigation-menu.nav-open .nav-links { opacity: 1; visibility: visible; transform: none; }
  .nav-links .find-button { font-size: 1.1rem; padding: 14px 30px; }
}

/* ── 20. UX TACTILE FEEDBACK ── */
.find-button:active, .prov-btn:active, .large-circle-btn:active, .compass-scroll-btn:active {
  transform: scale(0.97) !important;
}