/* ============================================
   ROYAL KUNDAN HOUSE — COMPLETE STYLESHEET
   Brand: Deep Black + Antique Gold + Maroon
   Aesthetic: Mughal Luxury, Heritage, Regal
   ============================================ */

:root {
  --gold: #C8922A;
  --gold-light: #E8B84B;
  --gold-pale: #F5D98B;
  --gold-deep: #8A5E10;
  --black: #0A0804;
  --black-soft: #14100A;
  --black-card: #1A1410;
  --maroon: #6B1A1A;
  --cream: #FDF8EE;
  --cream-dark: #F5EDD8;
  --text-primary: #E8D9B8;
  --text-muted: #9A8A6A;
  --border: rgba(200,146,42,0.2);
  --font-display: 'Cinzel', serif;
  --font-body: 'EB Garamond', 'Cormorant Garamond', serif;
  --font-ui: 'Cormorant Garamond', serif;
}

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

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

body {
  background: var(--black);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* AMBIENT PARTICLES */
.ambient {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: drift linear infinite;
}
@keyframes drift {
  0% { opacity: 0; transform: translateY(100vh) translateX(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-20px) translateX(var(--drift-x, 30px)); }
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(10,8,4,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(10,8,4,0.98);
  box-shadow: 0 4px 30px rgba(200,146,42,0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-emblem { flex-shrink: 0; animation: rotate-slow 20s linear infinite; }
@keyframes rotate-slow { to { transform: rotate(360deg); } }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.logo-since {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep)) !important;
  color: var(--black) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 600;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,146,42,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(107,26,26,0.08) 0%, transparent 50%),
              var(--black);
}
.hero-texture {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(200,146,42,0.015) 40px, rgba(200,146,42,0.015) 80px);
}
.hero-ornament {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,146,42,0.15);
  animation: pulse-ring 4s ease-in-out infinite;
}
.hero-ornament-1 { width: 600px; height: 600px; top: -100px; right: -100px; }
.hero-ornament-2 { width: 400px; height: 400px; top: 0; right: 100px; animation-delay: 2s; border-color: rgba(200,146,42,0.08); }
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.6; }
}
.jewelry-visual {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  opacity: 0.85;
  animation: float-jewel 6s ease-in-out infinite;
}
@keyframes float-jewel {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50% { transform: translateY(-50%) translateY(-20px); }
}
.crown-jewel { filter: drop-shadow(0 0 20px rgba(200,146,42,0.3)); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  max-width: 600px;
  margin-left: max(24px, calc(50vw - 600px));
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 90px);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-line-1 { display: block; color: var(--gold-pale); }
.hero-line-2 { display: block; color: var(--gold-light); }
.hero-line-3 { display: block; color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(200,146,42,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,146,42,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  color: var(--gold-light);
  padding: 14px 0;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  border-bottom: 1px solid var(--gold);
}
.btn-secondary:hover { letter-spacing: 0.15em; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-outline:hover { background: rgba(200,146,42,0.1); }

.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold-light); }
.stat-lbl { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.4; height: 20px; }
}

/* OFFER BANNER */
.offer-banner {
  background: linear-gradient(135deg, var(--maroon), #8B0000, var(--maroon));
  border-top: 1px solid rgba(200,146,42,0.3);
  border-bottom: 1px solid rgba(200,146,42,0.3);
  overflow: hidden;
  padding: 12px 0;
}
.offer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.offer-text { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.12em; color: var(--gold-pale); }
.offer-text strong { color: white; }
.offer-icon { color: var(--gold-light); font-size: 0.8rem; }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '◆';
  font-size: 0.5rem;
  color: var(--gold-deep);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1.15;
}
.section-title em { color: var(--gold); font-style: italic; font-weight: 400; }

/* ABOUT */
.about {
  padding: 120px 0;
  background: var(--black-soft);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-frame {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-svg { width: 100%; max-width: 320px; filter: drop-shadow(0 0 30px rgba(200,146,42,0.2)); }
.about-year-badge {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-shadow: 0 0 30px rgba(200,146,42,0.5);
}
.about-floater {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.about-floater span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-content .section-eyebrow { justify-content: flex-start; }
.about-content .section-eyebrow::before { display: none; }
.about-content .section-title { text-align: left; font-size: clamp(28px, 4vw, 44px); }
.about-body {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 20px;
}
.about-pillars { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(200,146,42,0.05);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; }
.pillar-text { display: flex; flex-direction: column; }
.pillar-text strong { color: var(--gold-light); font-size: 0.95rem; font-family: var(--font-display); }
.pillar-text span { color: var(--text-muted); font-size: 0.85rem; }

/* COLLECTIONS */
.collections {
  padding: 120px 0;
  background: var(--black);
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.collection-card-large { grid-column: span 2; }
.collection-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,146,42,0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.collection-card:hover { border-color: rgba(200,146,42,0.5); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(200,146,42,0.1); }
.collection-card:hover::after { opacity: 1; }

.collection-visual {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(ellipse at center, rgba(200,146,42,0.06), transparent 70%);
}
.collection-card-large .collection-visual { min-height: 260px; }
.collection-visual svg { width: 100%; max-width: 240px; filter: drop-shadow(0 0 15px rgba(200,146,42,0.25)); }
.collection-card-large .collection-visual svg { max-width: 280px; }

.collection-info { padding: 20px 24px 28px; }
.collection-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.collection-info p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 14px; }
.collection-price { color: var(--gold); font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 12px; }
.collection-cta {
  display: inline-block;
  color: var(--gold-light);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(200,146,42,0.4);
  padding-bottom: 2px;
}
.collection-cta:hover { color: var(--gold); letter-spacing: 0.25em; }

/* TESTIMONIALS */
.testimonials {
  padding: 120px 0;
  background: var(--black-soft);
  position: relative;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.testi-card:hover { border-color: rgba(200,146,42,0.4); }
.testi-card-featured {
  background: linear-gradient(135deg, rgba(200,146,42,0.08), var(--black-card));
  border-color: rgba(200,146,42,0.35);
}
.testi-quote {
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 16px;
  font-family: serif;
}
.testi-text { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-pale);
  flex-shrink: 0;
}
.testi-author > div:nth-child(2) { flex: 1; }
.testi-author strong { display: block; color: var(--gold-light); font-size: 0.9rem; font-family: var(--font-display); }
.testi-author span { font-size: 0.75rem; color: var(--text-muted); }
.testi-stars { color: var(--gold); font-size: 0.85rem; }

/* CONTACT */
.contact {
  padding: 120px 0;
  background: var(--black);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-info .section-eyebrow { justify-content: flex-start; }
.contact-info .section-eyebrow::before { display: none; }
.contact-info .section-title { text-align: left; font-size: clamp(28px, 4vw, 44px); margin-bottom: 20px; }
.contact-body { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--gold-light); font-size: 0.85rem; font-family: var(--font-display); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }
.contact-item span { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.map-placeholder {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.map-pin-visual svg { width: 180px; }
.map-link {
  color: var(--gold-light);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.map-link:hover { color: var(--gold); }

/* FOOTER */
.footer {
  background: #050302;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 16px; line-height: 1.7; }
.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: all 0.3s;
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .jewelry-visual { display: none; }
  .hero-content { margin-left: 0; max-width: 100%; padding: 100px 24px 80px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card-large { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 44px; }
  .hero-stats { gap: 16px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
  .contact-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}
