/* =============================================
   NARESH NAGI JEWELLERS — LUXURY CSS
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  --gold-primary: #B8976A;         /* muted champagne gold */
  --gold-light: #D4B87C;           /* soft warm highlight */
  --gold-dark: #8A7040;            /* deep antique gold */
  --gold-pale: #E8D8B8;            /* light cream gold */
  --black: #080808;
  --near-black: #0D0D0D;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --white: #FAFAFA;
  --off-white: #F4EDE0;
  --text-light: rgba(255,255,255,0.72);
  --text-muted: rgba(255,255,255,0.40);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Bodoni Moda', 'Didot', 'Georgia', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 0 30px rgba(184,151,106,0.20);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.6);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.loading { overflow: hidden; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s, visibility 0.8s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.preloader-svg {
  width: 140px;
  height: 140px;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.5));
}

.preloader-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.preloader-tagline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 0.8s 1.5s forwards;
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

#navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  color: var(--black) !important;
  padding: 10px 24px;
  border-radius: 1px;
  font-weight: 600;
  letter-spacing: 0.14em;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184,151,106,0.28);
}

.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--gold-primary);
  display: block;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: subtleZoom 20s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(8,8,8,0.70) 0%, rgba(8,8,8,0.50) 60%, rgba(8,8,8,0.30) 100%),
    linear-gradient(to bottom, rgba(8,8,8,0.60) 0%, rgba(8,8,8,0.40) 50%, rgba(8,8,8,0.70) 100%);
}

/* Dark radial vignette — focuses attention on center text */
.hero-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(4,3,2,0.55) 0%,
    rgba(4,3,2,0.30) 30%,
    transparent 65%
  );
  z-index: -1;
  pointer-events: none;
}

/* Particle Canvas */
#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Hero Content — centered typography showcase */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: visible;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 28px;
  opacity: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9.5vw, 7.5rem);
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: 0.06em;
  line-height: 1.30;
  margin-bottom: 36px;
  padding-bottom: 4px;
  overflow: visible;
  position: relative;
}

/* Each word — metallic gradient + shimmer */
.hero-word {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity;
  margin-right: 0.20em;
  position: relative;
  /* Realistic metallic gold — top-left highlight, bottom-right shadow */
  background: linear-gradient(
    145deg,
    #F5E6C8 0%,
    #EEDAAC 8%,
    #E0C890 16%,
    #D4B87C 28%,
    #C9A96C 40%,
    #B8965A 52%,
    #C9A96C 60%,
    #DFCA94 72%,
    #F0DEB4 80%,
    #D4B87C 88%,
    #A88548 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #D4B87C;
  /* Shimmer + sheen animation */
  animation: shimmer 6s ease-in-out infinite, sheen 8s ease-in-out infinite;
  /* Depth shadow beneath text — not glow-heavy */
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.50))
          drop-shadow(0 1px 2px rgba(0,0,0,0.40))
          drop-shadow(0 0 14px rgba(212,184,124,0.10));
}

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

/* Reflective sheen — simulates light sweeping across gold surface */
@keyframes sheen {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

.hero-word:last-child {
  margin-right: 0;
}

/* "Jewellers" — on its own line, refined luxury sub-line */
.hero-title-gold {
  display: block;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.28em;
  margin-top: 0.14em;
  font-size: 0.55em;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.14em;
  line-height: 1.8;
  margin-bottom: 28px;
  opacity: 0;                     /* scroll-reveal controls this */
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  flex: 1;
  max-width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark));
}

.hero-divider::after {
  background: linear-gradient(90deg, var(--gold-dark), transparent);
}

.divider-gem {
  color: var(--gold-primary);
  font-size: 0.55rem;
  opacity: 0.6;
}

.hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
}

.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
}

.badge {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold-pale);
  background: rgba(184,151,106,0.06);
  border: 1px solid rgba(184,151,106,0.18);
  padding: 7px 16px;
  border-radius: 1px;
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
}

.badge span { color: var(--gold-primary); font-size: 0.5rem; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s 3s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold-primary));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.2); opacity: 1; }
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 34px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  transition: left 0.6s;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184,151,106,0.30); }
.btn-primary:hover::before { left: 100%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid rgba(184,151,106,0.35);
  color: var(--gold-light);
  background: transparent;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-ghost:hover {
  background: rgba(184,151,106,0.08);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light), var(--gold-primary), var(--gold-dark));
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 28px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }

.section-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.8;
}

.gold-line {
  width: 60px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 0 0 28px;
  position: relative;
}

.gold-line::after {
  content: '◆';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 0.5rem;
}

.gold-line.centered {
  margin: 0 auto 28px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ============================================
   LEGACY SECTION
   ============================================ */
.legacy-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--near-black) 100%);
}

.legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.legacy-image-wrap {
  position: relative;
}

.legacy-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-deep);
  filter: brightness(0.9) contrast(1.05);
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

.legacy-img:hover {
  transform: scale(1.02);
  filter: brightness(1) contrast(1.05);
}

.legacy-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

.badge-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.badge-text {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  text-align: center;
  line-height: 1.3;
}

.legacy-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
  font-weight: 300;
}

.legacy-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-primary);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   COLLECTIONS
   ============================================ */
.collections-section {
  padding: 100px 0;
  background: var(--near-black);
}

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

.collection-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  animation-delay: var(--delay);
  cursor: pointer;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(201,168,76,0.15), 0 0 0 1px rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.35);
}

.card-image-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.collection-card:hover .card-image-wrap img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

.collection-card:hover .card-overlay { opacity: 1; }

.card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.6);
  padding: 4px 10px;
}

.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}

.collection-card:hover .card-shine { left: 150%; }

.card-info {
  padding: 20px;
}

.card-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.card-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.card-footer {
  padding-top: 12px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.card-purity {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

/* ============================================
   HALLMARK SECTION
   ============================================ */
.hallmark-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.hallmark-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--near-black), var(--dark));
}

.hallmark-inner {
  position: relative;
  text-align: center;
}

.hallmark-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.9;
  font-weight: 300;
}

.hallmark-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.hallmark-feat {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 36px 24px;
  border-radius: 4px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  animation-delay: var(--delay);
}

.hallmark-feat:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.05);
}

.feat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.feat-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.3));
}

.hallmark-feat h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.hallmark-feat p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark), var(--near-black));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 36px 28px;
  border-radius: 4px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
  animation-delay: var(--delay);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-primary);
  opacity: 0.25;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
}

.stars {
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.test-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 24px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
}

.author-info span {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.google-rating-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
  border-radius: 4px;
  max-width: 400px;
  margin: 0 auto;
}

.google-g {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Arial', sans-serif;
  color: #4285F4;
  flex-shrink: 0;
}

.rating-info strong {
  display: block;
  font-size: 0.8rem;
  color: var(--white);
  margin-bottom: 2px;
}

.rating-badge {
  margin-left: auto;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 100px 0;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 32px 0 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-item a:hover { color: var(--gold-light); }

.map-placeholder {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: var(--shadow-deep);
}

.map-placeholder iframe { display: block; }

.map-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95), rgba(8,8,8,0.7), transparent);
  padding: 20px 20px 16px;
}

.map-overlay-info strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.map-overlay-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.map-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.map-link:hover { color: var(--gold-light); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--black); }

.footer-top {
  padding: 72px 0 48px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.footer-logo span {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
}

.footer-divider-gem {
  margin-top: 20px;
  color: var(--gold-primary);
  opacity: 0.5;
  font-size: 0.9rem;
}

.footer-links-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links-col a:hover { color: var(--gold-light); }

.footer-contact-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.footer-contact-col p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-phone {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.footer-phone:hover { color: var(--white); }

.footer-hours {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 40px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
}

.floating-cta:hover {
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 14px 36px rgba(201,168,76,0.5);
}

.floating-cta svg {
  width: 18px;
  height: 18px;
  fill: var(--black);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
  50% { box-shadow: 0 8px 36px rgba(201,168,76,0.65); }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .legacy-grid { grid-template-columns: 1fr; gap: 48px; }
  .legacy-img { height: 380px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .hallmark-features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-jewel-wrap { width: 36vw; opacity: 0.6; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: flex; z-index: 1001; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 80px 24px 40px;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 1000;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.2em;
  }

  .nav-cta { padding: 14px 32px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 100px 24px 60px; margin-left: 0; }
  .hero-jewel-wrap { display: none; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-badges { flex-direction: column; gap: 8px; }

  /* Legacy */
  .legacy-section { padding: 64px 0; }
  .legacy-grid { gap: 32px; }
  .legacy-img { height: 280px; }
  .legacy-image-wrap { order: -1; }
  .legacy-stats { flex-direction: row; gap: 16px; }

  /* Collections */
  .collections-section { padding: 64px 0; }
  .collections-grid { grid-template-columns: 1fr; }

  /* Hallmark */
  .hallmark-section { padding: 64px 0; }
  .hallmark-features { grid-template-columns: 1fr; gap: 16px; }

  /* Testimonials */
  .testimonials-section { padding: 64px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-section { padding: 64px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-top { padding: 48px 0 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Floating CTA */
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 18px; }
  .floating-cta span { display: none; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.9rem; }
  .hero-title { font-size: 2.5rem; }
  .legacy-stats { gap: 12px; }
  .stat-number { font-size: 1.8rem; }
}
