/* ==========================================================================
   THE EXPLODED DAYTONA RAINBOW (REF. 126595RBOW)
   300-Frame Scroll-Driven Horological Animation & Luxury Showcase
   Palette: Deep Burgundy Velvet, 18k Everose Gold, Rainbow Sapphires, Pristine Silver
   ========================================================================== */

:root {
  /* Burgundy Velvet Tones */
  --bg-velvet-dark: #0a0105;
  --bg-velvet-base: #14030a;
  --bg-velvet-mid: #220512;
  --bg-velvet-light: #34091c;
  --bg-velvet-card: rgba(28, 6, 16, 0.78);
  --bg-velvet-card-hover: rgba(44, 10, 26, 0.88);
  --bg-glass-nav: rgba(16, 3, 9, 0.86);

  /* 18k Everose Gold Palette */
  --gold-highlight: #ffdfd4;
  --gold-primary: #e5a88c;
  --gold-mid: #c9886e;
  --gold-shadow: #8f4e39;
  --gold-gradient: linear-gradient(135deg, #ffdfd4 0%, #e5a88c 45%, #b96e54 80%, #f6d0be 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(255, 223, 212, 0.2) 0%, rgba(229, 168, 140, 0.12) 100%);
  --gold-border: rgba(229, 168, 140, 0.32);
  --gold-border-bright: rgba(255, 223, 212, 0.65);
  --gold-glow: 0 0 25px rgba(229, 168, 140, 0.3);

  /* Radiant Rainbow Sapphire Spectrum */
  --rainbow-ruby: #e60039;
  --rainbow-orange: #ff6b1a;
  --rainbow-yellow: #ffc800;
  --rainbow-emerald: #00cc66;
  --rainbow-cyan: #00b4d8;
  --rainbow-sapphire: #2563eb;
  --rainbow-violet: #9333ea;
  --rainbow-gradient: linear-gradient(90deg, 
    #ff1a40 0%, 
    #ff6a00 16.6%, 
    #ffd000 33.3%, 
    #05d86c 50%, 
    #00aaff 66.6%, 
    #6366f1 83.3%, 
    #c026d3 100%
  );
  --rainbow-gradient-conic: conic-gradient(
    #ff1a40, #ff6a00, #ffd000, #05d86c, #00aaff, #6366f1, #c026d3, #ff1a40
  );
  --rainbow-glow: 0 0 30px rgba(255, 106, 0, 0.35), 0 0 50px rgba(0, 170, 255, 0.25);

  /* Pristine Silver / White */
  --text-white: #ffffff;
  --text-silver: #f0f3f8;
  --text-muted: #b0b8c8;
  --text-dim: #7e8799;

  /* Typography */
  --font-serif: 'Cinzel', serif, Georgia;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Easing */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s var(--ease-luxury);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-velvet-dark);
  color: var(--text-silver);
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ==========================================================================
   PLUSH BURGUNDY VELVET BACKDROP
   ========================================================================== */
.velvet-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 15%, #34091c 0%, #17040c 45%, #0a0105 100%);
  overflow: hidden;
}

.velvet-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  mix-blend-mode: screen;
}

.glow-top {
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 450px;
  background: radial-gradient(circle, rgba(229, 168, 140, 0.32) 0%, rgba(88, 12, 40, 0.5) 60%, transparent 80%);
}

.glow-center {
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: 600px;
  background: radial-gradient(circle, rgba(78, 10, 36, 0.55) 0%, rgba(30, 4, 14, 0.4) 70%, transparent 100%);
}

.glow-bottom {
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 60, 110, 0.22) 0%, rgba(45, 6, 22, 0.6) 65%, transparent 90%);
}

.particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.velvet-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.4;
}

/* ==========================================================================
   HERO FLOATING NAVIGATION (LOGO & RESERVE ONLY)
   ========================================================================== */
.hero-floating-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.6rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  pointer-events: none;
}

.hero-floating-nav .brand-group,
.hero-floating-nav .hero-reserve-box {
  pointer-events: auto;
}

.hero-floating-nav .brand-group {
  display: flex;
  align-items: center;
  animation: heroLogoEntrance 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-floating-nav .hero-reserve-box {
  animation: heroReserveEntrance 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.hero-floating-nav .cta-reserve-header {
  background: rgba(14, 2, 6, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.42rem 1.05rem;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  border: 1px solid rgba(229, 168, 140, 0.45);
  border-radius: 3px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(229, 168, 140, 0.05);
}

.brand-group {
  display: flex;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 1.4rem;
}

.rolex-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-primary);
  transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.brand-link:hover .rolex-logo {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 0 10px rgba(229, 168, 140, 0.7));
}

.rolex-coronet {
  width: 26px;
  height: 18px;
  fill: var(--gold-primary);
  filter: drop-shadow(0 0 8px rgba(229, 168, 140, 0.6));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.rolex-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text-white);
  transition: color 0.3s ease;
}

.brand-divider {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
  opacity: 0.7;
}

.tlf-logo {
  display: flex;
  flex-direction: column;
}

.tlf-badge {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tlf-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-silver);
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--gold-gradient);
  transition: width 0.3s var(--ease-luxury);
}

.nav-item:hover {
  color: var(--gold-highlight);
}

.nav-item:hover::after {
  width: 100%;
}

.nav-login {
  color: var(--text-muted);
}

.cta-reserve-header {
  position: relative;
  background: transparent;
  color: var(--gold-highlight);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--gold-primary);
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta-reserve-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  transition: 0.6s ease;
}

.cta-reserve-header:hover::before {
  left: 150%;
}

.cta-reserve-header:hover {
  border-color: var(--gold-highlight);
  box-shadow: 0 0 22px rgba(229, 168, 140, 0.55), inset 0 0 8px rgba(229, 168, 140, 0.2);
  transform: translateY(-1px) scale(1.02);
  background: rgba(229, 168, 140, 0.14);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
  transition: 0.3s ease;
}

.mobile-drawer {
  display: none;
}

/* ==========================================================================
   HERO TRACK: 300-FRAME STICKY CANVAS ANIMATION
   ========================================================================== */
.scroll-animation-track {
  position: relative;
  width: 100%;
  height: 520vh; /* Long scroll track for buttery-smooth 300 frame scrub */
  background: #0d0206;
}

.sticky-viewport {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.watch-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: #0d0206;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  animation: heroCanvasEntrance 2.2s cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: transform, opacity;
}

.canvas-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(10, 1, 5, 0.6) 80%, rgba(10, 1, 5, 0.95) 100%);
  z-index: 2;
  pointer-events: none;
}

.canvas-gem-refraction {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, 
    rgba(255, 26, 64, 0.12), 
    rgba(255, 170, 0, 0.12), 
    rgba(0, 204, 102, 0.12), 
    rgba(0, 170, 255, 0.12), 
    transparent 70%);
  filter: blur(60px);
  mix-blend-mode: screen;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

/* Story Overlays */
.story-overlay-container {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-card {
  position: absolute;
  max-width: 860px;
  width: 90%;
  padding: 2.2rem 2.6rem;
  background: rgba(14, 2, 7, 0.82);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.5s var(--ease-luxury), transform 0.5s var(--ease-luxury), visibility 0.5s ease;
  pointer-events: auto;
}

.story-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Beat 1: Hero Assembled View */
.story-card.beat-1 {
  top: 15%;
  border-color: rgba(229, 168, 140, 0.45);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 1.1rem;
  background: rgba(229, 168, 140, 0.08);
  border: 1px solid rgba(229, 168, 140, 0.25);
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
  animation: pulse-gem 2s infinite ease-in-out;
}

.badge-text {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  font-weight: 600;
}

.main-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.18;
  color: var(--gold-highlight);
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.gradient-gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 14px rgba(229, 168, 140, 0.3));
}

.sub-headline {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-silver);
  max-width: 760px;
  margin: 0 auto 1.5rem;
}

.spec-ref {
  color: var(--gold-primary);
  font-weight: 500;
  font-family: var(--font-mono);
}

.scroll-guide-prompt {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--gold-primary);
  letter-spacing: 0.2em;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(229, 168, 140, 0.2);
  border-radius: 4px;
}

.guide-scroll-arrow {
  animation: bounce-down 1.8s infinite ease-in-out;
}

/* Beat 2 & 3: Floating Left or Right Cards */
.story-card.beat-2 {
  left: 6%;
  top: 25%;
  max-width: 480px;
  text-align: left;
}

.story-card.beat-3 {
  right: 6%;
  top: 22%;
  max-width: 490px;
  text-align: left;
}

.story-card.beat-4 {
  bottom: 14%;
  max-width: 760px;
  text-align: center;
}

.card-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.rainbow-eyebrow {
  background: var(--rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.story-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.story-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.story-stats-row {
  display: flex;
  gap: 1.8rem;
  border-top: 1px solid rgba(229, 168, 140, 0.16);
  padding-top: 1.1rem;
}

.s-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.s-stat-val {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-highlight);
}

.s-stat-lbl {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.14em;
}

.story-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.story-btn-primary {
  background: var(--gold-gradient);
  border: none;
  border-radius: 4px;
  padding: 0.75rem 2rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  color: #120207;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.story-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 168, 140, 0.4);
}

.story-btn-secondary {
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--gold-primary);
  border: 1px solid rgba(229, 168, 140, 0.35);
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.story-btn-secondary:hover {
  background: rgba(229, 168, 140, 0.1);
  color: #fff;
}

/* Interactive HUD Bar at Bottom of Sticky Canvas */
.hud-timeline-bar {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1080px;
  background: rgba(12, 2, 6, 0.88);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 0.85rem 1.6rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
}

.hud-left-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  white-space: nowrap;
}

.hud-dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00e676;
  box-shadow: 0 0 8px #00e676;
}

.hud-frame-label {
  color: var(--text-silver);
}

.hud-frame-label strong {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

.hud-sep {
  color: var(--text-dim);
}

.hud-state-label {
  color: var(--gold-highlight);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.hud-center-scrubber {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 500px;
}

.scrub-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  white-space: nowrap;
}

#manual-scrubber {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(229, 168, 140, 0.22);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

#manual-scrubber::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: grab;
  box-shadow: 0 0 10px rgba(229, 168, 140, 0.8);
  transition: transform 0.15s ease;
}

#manual-scrubber::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.hud-right-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hud-action-btn {
  background: rgba(229, 168, 140, 0.08);
  border: 1px solid rgba(229, 168, 140, 0.35);
  color: var(--gold-primary);
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.25s ease;
}

.hud-action-btn:hover {
  background: var(--gold-primary);
  color: #120308;
}

/* ==========================================================================
   DECONSTRUCTING THE MASTERPIECE: INTERACTIVE FEATURE
   ========================================================================== */
.deconstruction-section {
  position: relative;
  padding: 8rem 2rem 6rem;
  max-width: 1440px;
  margin: 0 auto;
}

.section-heading-container {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 1.4rem;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.35rem;
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold-primary);
  opacity: 0.4;
}

.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  font-weight: 600;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Interactive Canvas & Inspector Grid */
.deconstruction-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 2.8rem;
  align-items: start;
}

.canvas-panel {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.interactive-canvas-wrap {
  position: relative;
  background: var(--bg-velvet-card);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.canvas-image-layer {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  overflow: hidden;
  background: #000;
}

.canvas-core-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-luxury), filter 0.4s ease;
}

.canvas-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(229, 168, 140, 0.6), transparent);
  box-shadow: 0 0 10px rgba(229, 168, 140, 0.8);
  opacity: 0.6;
  pointer-events: none;
  animation: scan-vertical 5s infinite linear;
}

/* Hotspot Pins & Reticles */
.hotspot-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.pin-button {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(14, 2, 6, 0.88);
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.pin-core {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.pin-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  opacity: 0.6;
  animation: pin-pulse-wave 2.2s infinite ease-out;
}

.hotspot-pin.active .pin-button,
.hotspot-pin:hover .pin-button {
  transform: scale(1.15);
  border-color: #ffffff;
  background: var(--gold-primary);
  color: #120308;
  box-shadow: 0 0 25px rgba(229, 168, 140, 0.7);
}

.hotspot-pin.pin-bezel.active .pin-button {
  background: var(--rainbow-gradient);
  border-color: #fff;
  color: #fff;
  box-shadow: var(--rainbow-glow);
}

/* Hover Tooltip on Pin */
.pin-hover-tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(16, 3, 9, 0.95);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 0.8rem 1.1rem;
  min-width: 220px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s var(--ease-luxury);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
  z-index: 20;
}

.hotspot-pin:hover .pin-hover-tooltip,
.hotspot-pin:focus-within .pin-hover-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.tooltip-gem-bar {
  height: 2px;
  width: 100%;
  background: var(--rainbow-gradient);
  margin-bottom: 0.5rem;
  border-radius: 2px;
}

.gem-diamond {
  background: linear-gradient(90deg, #b9e2fe, #ffffff, #d2f1ff);
}

.gem-rose {
  background: var(--gold-gradient);
}

.gem-calibre {
  background: linear-gradient(90deg, #ffc800, #ff6b1a, #00b4d8);
}

.tooltip-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold-primary);
  letter-spacing: 0.12em;
  margin-bottom: 0.2rem;
}

.pin-hover-tooltip strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.pin-hover-tooltip p {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.canvas-hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  background: rgba(12, 2, 6, 0.92);
  border-top: 1px solid rgba(229, 168, 140, 0.18);
  font-family: var(--font-mono);
  font-size: 0.74rem;
}

.hud-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hud-label {
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.hud-val {
  color: var(--gold-primary);
  font-weight: 600;
}

/* Component Navigation Tabs */
.component-nav-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.comp-tab {
  background: var(--bg-velvet-card);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 0.85rem 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.comp-tab:hover {
  border-color: var(--gold-primary);
  background: var(--bg-velvet-card-hover);
}

.comp-tab.active {
  border-color: var(--gold-highlight);
  background: rgba(48, 12, 28, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(229, 168, 140, 0.15);
}

.tab-gem {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.gem-rainbow {
  background: var(--rainbow-gradient);
  box-shadow: 0 0 8px rgba(255, 106, 0, 0.5);
}

.gem-diamond {
  background: #ffffff;
  box-shadow: 0 0 8px #bfe5ff;
}

.gem-dial {
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}

.gem-movement {
  background: #ffaa00;
  box-shadow: 0 0 8px #ffaa00;
}

.tab-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-silver);
  text-align: center;
  letter-spacing: 0.04em;
}

.comp-tab.active .tab-label {
  color: var(--gold-highlight);
}

/* Inspector Sidebar */
.inspector-sidebar {
  position: relative;
}

.inspector-card {
  background: var(--bg-velvet-card);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 2.2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
  transition: border-color 0.3s ease;
}

.card-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(229, 168, 140, 0.18);
  margin-bottom: 1.6rem;
}

.layer-pill {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.14em;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00e676;
  box-shadow: 0 0 8px #00e676;
}

.comp-detail {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.comp-detail.active {
  display: block;
}

.detail-visual-box {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(229, 168, 140, 0.25);
  background: #0b0205;
}

.detail-macro-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.detail-visual-box:hover .detail-macro-thumb {
  transform: scale(1.04);
}

.macro-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: rgba(14, 2, 6, 0.85);
  border: 1px solid var(--gold-primary);
  color: var(--gold-highlight);
  padding: 0.35rem 0.7rem;
  border-radius: 3px;
  backdrop-filter: blur(8px);
}

.diamond-badge { border-color: #bfe5ff; color: #ffffff; }
.gold-badge { border-color: var(--gold-primary); color: var(--gold-highlight); }
.movement-badge { border-color: #ffaa00; color: #ffe082; }

.diamond-sparkle-display {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #2e081a 0%, #0d0206 80%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sparkle-gem {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #ffffff;
  transform: rotate(45deg);
  box-shadow: 0 0 25px #b0e0ff, 0 0 45px #ffffff;
  animation: sparkle-glow 3s infinite ease-in-out;
}

.sparkle-gem.g1 { top: 40%; left: 35%; animation-delay: 0s; }
.sparkle-gem.g2 { top: 48%; left: 60%; transform: rotate(45deg) scale(1.3); animation-delay: 1s; }
.sparkle-gem.g3 { top: 30%; left: 52%; transform: rotate(45deg) scale(0.8); animation-delay: 1.8s; }

.dial-preview-canvas {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #1b040e 0%, #080104 90%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dial-inner-ring {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1.5px solid rgba(229, 168, 140, 0.4);
}

.dial-rose-subdial {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, #e5a88c 0%, #8c4228 100%);
  border: 1px solid #ffd0bf;
  box-shadow: 0 0 12px rgba(229, 168, 140, 0.4);
}

.dial-rose-subdial.s1 { left: calc(50% - 44px); top: 50%; transform: translateY(-50%); }
.dial-rose-subdial.s2 { right: calc(50% - 44px); top: 50%; transform: translateY(-50%); }
.dial-rose-subdial.s3 { left: 50%; bottom: 22%; transform: translateX(-50%); }

.detail-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold-highlight);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.detail-desc {
  font-size: 0.95rem;
  color: var(--text-silver);
  line-height: 1.65;
  margin-bottom: 1.6rem;
}

.spec-metrics-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-top: 1px solid rgba(229, 168, 140, 0.14);
  padding-top: 1.3rem;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
}

.m-label { color: var(--text-muted); }
.m-val { color: var(--text-white); font-weight: 600; text-align: right; }

.rainbow-text {
  background: var(--rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.inspector-card-footer {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(229, 168, 140, 0.14);
}

.view-spec-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(229, 168, 140, 0.3);
  color: var(--gold-primary);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-spec-btn:hover {
  background: rgba(229, 168, 140, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-highlight);
}

/* ==========================================================================
   TECHNICAL SPECIFICATIONS PANEL: CLEAN GRID VIEW
   ========================================================================== */
.specs-section {
  position: relative;
  margin-top: 50px;
  padding: 0 2rem 5rem;
  background: transparent;
}

.specs-container {
  max-width: 1360px;
  margin: 0 auto;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.spec-card {
  background: var(--bg-velvet-card);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease-luxury), border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.spec-card:hover::before {
  opacity: 1;
}

.spec-card-rainbow::before {
  background: var(--rainbow-gradient);
}

.spec-card-rainbow:hover {
  border-color: rgba(255, 170, 0, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 106, 0, 0.15);
}

.spec-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}

.spec-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.12em;
}

.spec-icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  border: 1px solid rgba(229, 168, 140, 0.25);
  border-radius: 6px;
  background: rgba(14, 2, 6, 0.6);
}

.spec-icon-box svg {
  width: 22px;
  height: 22px;
}

.mini-rainbow-ring {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid transparent;
  background-image: linear-gradient(var(--bg-velvet-dark), var(--bg-velvet-dark)), var(--rainbow-gradient-conic);
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: rotate-refraction 8s linear infinite;
}

.spec-card-body {
  margin-bottom: 2rem;
}

.spec-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.spec-value {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.04em;
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.spec-detail-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.spec-card-footer {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(229, 168, 140, 0.15);
}

.spec-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
}

.spec-tag.rainbow-accent {
  background: var(--rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* ==========================================================================
   EXCLUSIVITY & TRUST PANEL (THE SELLER DETAIL)
   ========================================================================== */
.seller-trust-section {
  position: relative;
  padding: 6rem 2rem 7rem;
  max-width: 1360px;
  margin: 0 auto;
}

.seller-panel-card {
  position: relative;
  background: var(--bg-velvet-card);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 3.5rem 3.5rem 2.8rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75);
  overflow: hidden;
}

.card-ambient-velvet {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(160, 20, 65, 0.3) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.seller-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.8rem;
}

.seller-badge-identity {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.seller-avatar {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a0d20 0%, #15020a 100%);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(229, 168, 140, 0.3);
}

.avatar-initials {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold-highlight);
  letter-spacing: 0.06em;
}

.verified-pip {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00e676;
  border: 2px solid #140308;
  box-shadow: 0 0 8px #00e676;
}

.sold-by-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-bottom: 0.2rem;
}

.seller-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.05em;
}

.seller-role {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.stock-alert-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(229, 168, 140, 0.08);
  border: 1px solid rgba(229, 168, 140, 0.45);
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 0 25px rgba(229, 168, 140, 0.2);
  position: relative;
}

.alert-gem-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5252;
  box-shadow: 0 0 12px #ff5252, 0 0 20px #ff5252;
  animation: pulse-gem 1.8s infinite ease-in-out;
}

.alert-text {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-highlight);
}

.pricing-display-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-bottom: 2.6rem;
  background: rgba(14, 2, 6, 0.55);
  border: 1px solid rgba(229, 168, 140, 0.2);
  border-radius: 10px;
  padding: 2.2rem 2.4rem;
}

.exclusive-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
}

.price-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-silver);
  letter-spacing: 0.06em;
}

.price-action-box {
  text-align: right;
}

.price-main-wrap {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}

.currency-symbol {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold-primary);
}

.price-number {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 18px rgba(229, 168, 140, 0.35));
}

.currency-conversions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.curr-sep {
  color: var(--gold-primary);
  opacity: 0.5;
}

.panel-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  margin-bottom: 2.6rem;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-bottom: 2.2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(229, 168, 140, 0.08);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.trust-icon-box svg {
  width: 22px;
  height: 22px;
}

.trust-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.04em;
}

.trust-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.escrow-banner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.4rem;
  background: rgba(14, 2, 6, 0.7);
  border: 1px solid rgba(229, 168, 140, 0.16);
  border-radius: 6px;
  font-size: 0.8rem;
}

.escrow-lock-icon {
  font-size: 1.2rem;
  color: var(--gold-primary);
}

.escrow-note {
  color: var(--text-muted);
  font-family: var(--font-sans);
}

/* ==========================================================================
   CALL TO ACTION (THE GRAND FINALE)
   ========================================================================== */
.cta-section {
  position: relative;
  padding: 7rem 2rem 8rem;
  max-width: 1240px;
  margin: 0 auto;
}

.cta-inner-card {
  position: relative;
  background: linear-gradient(135deg, #2a0717 0%, #15030b 100%);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 5rem 3rem;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
}

.cta-rainbow-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 380px;
  background: radial-gradient(ellipse at center, 
    rgba(255, 26, 64, 0.25), 
    rgba(255, 170, 0, 0.2), 
    rgba(0, 204, 102, 0.2), 
    rgba(0, 170, 255, 0.2), 
    rgba(147, 51, 234, 0.25), 
    transparent 75%
  );
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
  animation: rotate-refraction 15s linear infinite;
}

.cta-velvet-darken {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(14, 2, 6, 0.75) 100%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}

.cta-subtext {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-silver);
  margin-bottom: 3.2rem;
  font-weight: 300;
}

.cta-btn-wrapper {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
}

.grand-reserve-btn {
  position: relative;
  background: #120308;
  border: none;
  padding: 3px;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s var(--ease-luxury), box-shadow 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), var(--rainbow-glow);
}

.btn-rainbow-border {
  position: absolute;
  inset: -50%;
  background: var(--rainbow-gradient-conic);
  animation: rotate-refraction 4s linear infinite;
  z-index: 1;
}

.btn-inner-sheen {
  position: absolute;
  inset: 2px;
  background: linear-gradient(135deg, #220512 0%, #0d0106 100%);
  border-radius: 4px;
  z-index: 2;
}

.btn-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.25rem 3.4rem;
}

.btn-icon {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.btn-rainbow-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  background: var(--rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}

.btn-arrow {
  color: var(--gold-highlight);
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.grand-reserve-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 106, 0, 0.5), 0 0 60px rgba(0, 170, 255, 0.4);
}

.grand-reserve-btn:hover .btn-arrow {
  transform: translateX(6px);
}

.cta-perks-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.cta-perks-row span:nth-child(even) {
  color: var(--gold-primary);
  opacity: 0.5;
}

/* ==========================================================================
   FOOTER (MINIMAL)
   ========================================================================== */
.minimal-footer {
  position: relative;
  border-top: none !important;
  border: none !important;
  background: rgba(10, 2, 5, 0.96);
  padding: 3.5rem 2.5rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 480px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  color: var(--gold-primary);
  font-weight: 700;
}

.f-sep { opacity: 0.4; }
.f-tlf { font-family: var(--font-mono); font-size: 0.84rem; color: var(--text-silver); }
.f-copyright { font-size: 0.78rem; color: var(--text-dim); line-height: 1.5; }

.footer-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.f-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s ease;
}

.f-link:hover { color: var(--gold-highlight); }
.f-bullet { color: var(--gold-primary); opacity: 0.4; font-size: 0.7rem; }

.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-primary);
  letter-spacing: 0.12em;
  padding: 0.45rem 0.9rem;
  background: rgba(229, 168, 140, 0.08);
  border: 1px solid rgba(229, 168, 140, 0.22);
  border-radius: 4px;
}

.secure-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00e676;
}

/* ==========================================================================
   VIP RESERVATION MODAL
   ========================================================================== */
.luxury-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 1, 4, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.luxury-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 680px;
  background: linear-gradient(135deg, #220612 0%, #100207 100%);
  border: 1px solid var(--gold-primary);
  border-radius: 14px;
  padding: 3rem 2.8rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(229, 168, 140, 0.2);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s var(--ease-luxury);
  max-height: 90vh;
  overflow-y: auto;
}

.luxury-modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--gold-primary);
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.modal-close-btn:hover {
  transform: scale(1.15);
  color: #fff;
}

.modal-rainbow-line {
  height: 3px;
  width: 100%;
  background: var(--rainbow-gradient);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.modal-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold-highlight);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(14, 2, 6, 0.8);
  border: 1px solid rgba(229, 168, 140, 0.35);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-white);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-highlight);
  box-shadow: 0 0 15px rgba(229, 168, 140, 0.35);
}

.form-price-summary {
  background: rgba(12, 2, 6, 0.6);
  border: 1px solid rgba(229, 168, 140, 0.2);
  border-radius: 6px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.8rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: var(--text-silver);
  margin-bottom: 0.4rem;
}

.summary-line:last-child {
  margin-bottom: 0;
}

.gold-summary {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-highlight);
}

.modal-submit-btn {
  position: relative;
  width: 100%;
  padding: 3px;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--rainbow-glow);
}

.btn-submit-text {
  position: relative;
  z-index: 2;
  display: block;
  background: #16030c;
  color: var(--gold-highlight);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 1rem 2rem;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.modal-submit-btn:hover .btn-submit-text {
  background: #250715;
  color: #fff;
}

.modal-legal-note {
  margin-top: 1.2rem;
  font-size: 0.74rem;
  color: var(--text-dim);
  line-height: 1.5;
  text-align: center;
}

.modal-success-state {
  text-align: center;
  padding: 2rem 0;
}

.success-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.1);
  border: 2px solid #00e676;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 25px rgba(0, 230, 118, 0.4);
}

.success-gem {
  font-size: 1.8rem;
  color: #00e676;
}

.modal-success-state h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-white);
  margin-bottom: 0.8rem;
  letter-spacing: 0.08em;
}

.modal-success-state p {
  font-size: 0.95rem;
  color: var(--text-silver);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 1.8rem;
}

.token-code-box {
  background: rgba(12, 2, 6, 0.8);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 1rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 2rem;
}

.token-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--text-dim);
}

.token-value {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.12em;
}

.modal-done-btn {
  background: var(--gold-gradient);
  border: none;
  border-radius: 4px;
  padding: 0.8rem 2.2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #120308;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.modal-done-btn:hover {
  transform: translateY(-2px);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes pulse-gem {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
    filter: brightness(1.3);
  }
}

@keyframes pin-pulse-wave {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

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

@keyframes scan-vertical {
  0% { top: -5%; }
  100% { top: 105%; }
}

@keyframes sparkle-glow {
  0%, 100% { opacity: 0.4; transform: rotate(45deg) scale(0.8); }
  50% { opacity: 1; transform: rotate(45deg) scale(1.25); }
}

@keyframes heroLogoEntrance {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -14px, 0) scale(0.96);
    transform: translate3d(0, -14px, 0) scale(0.96);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroReserveEntrance {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -14px, 0) scale(0.95);
    transform: translate3d(0, -14px, 0) scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroCanvasEntrance {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.96) translate3d(0, 0, 0);
    transform: scale(0.96) translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
  }
}

@keyframes heroGlowBloom {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* ==========================================================================
   SMOOTH SCROLL REVEALS & WEBSITE-WIDE MOTION LUXURY
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s ease;
  will-change: transform, opacity;
}

.scroll-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-reveal-left.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-reveal-right.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.93) translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-reveal-scale.is-revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Stagger delay utility classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Refined interactive card hovering transitions */
.spec-card, .trust-badge-card, .seller-panel-card, .macro-gallery-card, .tab-btn {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease !important;
}

/* ==========================================================================
   MINIMAL LUXURY ATELIER GALLERY & ANIMATED CLEAR MASTERPIECE
   ========================================================================== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.gallery-section {
  position: relative;
  background: transparent;
  border-top: none;
}

.gallery-section .section-container {
  padding-bottom: 1rem;
}

.gallery-hero-card,
.assembled-hero-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  background: transparent;
  margin-bottom: 0;
  box-shadow: none;
  transition: transform 0.4s ease;
}

.gallery-hero-card:hover {
  border: none;
  transform: translateY(-3px);
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  min-height: 540px;
  max-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #220510 0%, #070104 100%);
  perspective: 1000px;
}

.floating-watch-img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  display: block;
  animation: floatMasterpiece 7s ease-in-out infinite alternate;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.8));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  z-index: 1;
}

.gallery-hero-card:hover .floating-watch-img {
  transform: scale(1.03) translateY(-4px);
  filter: drop-shadow(0 20px 45px rgba(229, 168, 140, 0.2));
}

@keyframes floatMasterpiece {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.3deg);
  }
  100% {
    transform: translateY(6px) rotate(-0.3deg);
  }
}



.gallery-rainbow-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(255, 50, 100, 0.12), rgba(255, 180, 0, 0.12), rgba(0, 220, 150, 0.12), rgba(0, 150, 255, 0.12), transparent 70%);
  filter: blur(50px);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
  animation: pulseRainbowAura 6s ease-in-out infinite alternate;
}

@keyframes pulseRainbowAura {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.85; }
}

/* Master Interactive Hotspots */
.master-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 4;
  cursor: pointer;
}

.m-pin-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  animation: pinPulseRing 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.m-pin-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--gold-highlight);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-highlight);
  transition: transform 0.3s ease, background 0.3s ease;
}

.master-pin:hover .m-pin-dot {
  transform: scale(1.6);
  background: #fff;
}

@keyframes pinPulseRing {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

.m-pin-card {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 240px;
  padding: 0.9rem 1.1rem;
  background: rgba(14, 2, 6, 0.92);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(229, 168, 140, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
  z-index: 10;
  text-align: left;
}

.master-pin:hover .m-pin-card {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.m-pin-layer {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 0.3rem;
}

.m-pin-card strong {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--text-white);
  display: block;
  margin-bottom: 0.25rem;
}

.m-pin-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.gallery-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 1, 4, 0.95) 0%, rgba(7, 1, 4, 0.1) 40%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.gallery-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.2rem 2.8rem;
  z-index: 3;
}

.gallery-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.gallery-hero-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--text-white);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

#gallery,
.gallery-section,
#specs,
.specs-section,
#acquisition,
.acquisition-section,
.minimal-footer,
section,
.assembled-hero-card,
.assembled-img-wrap,
.assembled-hero-content,
.gallery-hero-card {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent;
}

.gallery-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  min-height: 560px;
}

.gallery-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.gallery-text-col .section-heading-container {
  text-align: left;
  margin: 0 0 1.4rem 0;
  max-width: 100%;
}

.gallery-text-col .section-eyebrow {
  justify-content: flex-start;
}

.gallery-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.gallery-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.9rem 1.1rem;
  background: rgba(22, 4, 11, 0.6);
  border: 1px solid rgba(229, 168, 140, 0.15);
  border-radius: 8px;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.gallery-feature-item:hover {
  transform: translateX(4px);
  border-color: var(--gold-highlight);
}

.gallery-feature-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-primary);
  opacity: 0.8;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-top: 0.15rem;
}

.gallery-feature-content strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--text-white);
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.gallery-feature-content p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin: 0;
}

.gallery-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.assembled-img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 560px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  perspective: 1000px;
}

.assembled-watch-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  display: block;
  transform: translateY(45px) scale(0.92);
  opacity: 0;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1), filter 1.8s ease;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 25px rgba(229, 168, 140, 0.2));
  will-change: transform, opacity, filter;
  z-index: 2;
}

.assembled-hero-card.is-revealed .assembled-watch-img,
.assembled-img-wrap.is-revealed .assembled-watch-img,
.gallery-image-col.is-revealed .assembled-watch-img {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1), filter 1.8s ease;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 50px rgba(229, 168, 140, 0.45));
}

.assembled-hero-card:hover,
.gallery-hero-card:hover {
  border: none !important;
  box-shadow: none !important;
}

/* ==========================================================================
   COMPREHENSIVE TEXT & SECTION FADE IN / FADE OUT ENGINE
   ========================================================================== */
.anim-text-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.anim-text-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.anim-fade-up.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-text-reveal.is-revealed.anim-delay-1,
.anim-fade-up.is-revealed.anim-delay-1 { transition-delay: 0.1s; }
.anim-text-reveal.is-revealed.anim-delay-2,
.anim-fade-up.is-revealed.anim-delay-2 { transition-delay: 0.2s; }
.anim-text-reveal.is-revealed.anim-delay-3,
.anim-fade-up.is-revealed.anim-delay-3 { transition-delay: 0.3s; }
.anim-text-reveal.is-revealed.anim-delay-4,
.anim-fade-up.is-revealed.anim-delay-4 { transition-delay: 0.4s; }

.anim-text-shimmer {
  background: linear-gradient(100deg, #d4a574 0%, #ffffff 40%, #e5a88c 60%, #d4a574 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 5s linear infinite;
}

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

/* ==========================================================================
   MINIMAL SPECS GRID
   ========================================================================== */
.specs-section {
  margin-top: 50px !important;
  padding-top: 0 !important;
  background: transparent;
  border: none !important;
  border-top: none !important;
}

.specs-section .section-container {
  padding-top: 0 !important;
}

.minimal-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 1.2rem;
}

.spec-tile {
  background: rgba(22, 4, 11, 0.7);
  border: 1px solid rgba(229, 168, 140, 0.2);
  border-radius: 8px;
  padding: 1.4rem 1.4rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.spec-tile:hover {
  transform: translateY(-3px);
  border-color: var(--gold-highlight);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(229, 168, 140, 0.15);
}

.spec-tile-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-primary);
  opacity: 0.7;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.25rem;
}

.spec-tile-label {
  font-family: var(--font-mono);
  font-size: 0.80rem;
  color: var(--text-silver);
  letter-spacing: 0.2em;
  margin-bottom: 0.2rem;
}

.spec-tile-val {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.spec-tile-sub {
  font-size: 0.80rem;
  color: var(--text-muted);
  line-height: 1.35;
  display: block;
}

/* ==========================================================================
   MINIMAL ACQUISITION CARD
   ========================================================================== */
.acquisition-section {
  background: transparent;
  border: none !important;
  border-top: none !important;
}

.acquisition-card {
  background: radial-gradient(circle at center top, rgba(38, 5, 18, 0.9) 0%, rgba(13, 2, 6, 0.98) 100%);
  border: 1px solid rgba(229, 168, 140, 0.35);
  border-radius: 12px;
  padding: 2.2rem 2rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(229, 168, 140, 0.12);
}

.acq-header {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.acq-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold-primary);
  background: rgba(229, 168, 140, 0.1);
  border: 1px solid rgba(229, 168, 140, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

.acq-stock {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: #ff3366;
  background: rgba(255, 51, 102, 0.1);
  border: 1px solid rgba(255, 51, 102, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

.curator-name {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.2em;
  color: var(--gold-highlight);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.curator-title {
  display: block;
  font-size: 0.80rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.acq-price-box {
  margin-bottom: 1.2rem;
}

.price-aed {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-shadow: 0 0 25px rgba(229, 168, 140, 0.35);
}

.price-usd {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.98rem;
  color: var(--text-silver);
  margin-top: 0.25rem;
}

.acq-guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.g-item {
  font-size: 0.85rem;
  color: var(--text-silver);
  letter-spacing: 0.05em;
}

.acq-reserve-btn {
  position: relative;
  background: var(--gold-gradient);
  color: #120308;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(229, 168, 140, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.acq-reserve-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229, 168, 140, 0.6);
}

@media (max-width: 900px) {
  .gallery-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gallery-text-col .section-heading-container {
    text-align: center;
  }
  .gallery-text-col .section-eyebrow {
    justify-content: center;
  }
  .assembled-img-wrap {
    max-width: 320px;
    min-height: 460px;
    margin: 0 auto;
  }
  .macro-grid {
    grid-template-columns: 1fr;
  }
  .minimal-specs-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1100px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deconstruction-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-card.beat-2,
  .story-card.beat-3 {
    position: static;
    margin: 0 auto;
    max-width: 90%;
    text-align: center;
  }

  .story-stats-row {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-drawer.open {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(14, 2, 6, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold-border);
    padding: 2rem;
    z-index: 99;
  }

  .mobile-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .mobile-link {
    text-decoration: none;
    font-size: 1.1rem;
    color: var(--text-white);
    font-family: var(--font-serif);
    letter-spacing: 0.08em;
  }

  .mobile-cta-wrap {
    width: 100%;
  }

  .mobile-reserve-btn {
    width: 100%;
    text-align: center;
  }

  .main-headline {
    font-size: 1.8rem;
  }

  .hud-timeline-bar {
    bottom: 1rem;
    padding: 0.7rem 1rem;
    flex-direction: column;
    gap: 0.6rem;
  }

  .hud-center-scrubber {
    width: 100%;
    max-width: 100%;
  }

  .pricing-display-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-action-box {
    text-align: left;
  }

  .price-main-wrap {
    justify-content: flex-start;
  }

  .currency-conversions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges-grid {
    grid-template-columns: 1fr;
  }

  .component-nav-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .modal-card {
    padding: 2rem 1.5rem;
  }
}
