/* ================================================================
   JAGDISH CLOTH STORES — Premium Website
   Design System: Luxury Heritage (Maroon + Gold)
   Typography: Cormorant Garamond (Display) + Inter (Body)
   ================================================================ */

/* ── 0. PRELOADER ─────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--maroon-deepest, #080202);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212,175,55,0.3);
  animation: preloaderPulse 1.6s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4), 0 0 0 0 rgba(212,175,55,0.2); }
  50%       { box-shadow: 0 0 0 18px rgba(212,175,55,0.05), 0 0 40px 10px rgba(212,175,55,0.15); }
}
.preloader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #FDF8F0;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.2;
}
.preloader-name em {
  display: block;
  font-style: italic;
  font-size: 0.9rem;
  color: #D4AF37;
  letter-spacing: 0.35em;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 6px;
}
.preloader-bar {
  width: 160px;
  height: 1.5px;
  background: rgba(212,175,55,0.15);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.preloader-progress {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent, #D4AF37, #E8C94B, #D4AF37, transparent);
  width: 40%;
  border-radius: 100px;
  animation: preloaderSlide 1.2s ease-in-out infinite;
}
@keyframes preloaderSlide {
  0%   { left: -40%; }
  100% { left: 100%; }
}
.preloader-dots {
  display: flex;
  gap: 8px;
}
.preloader-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D4AF37;
  opacity: 0.3;
  animation: dotBlink 1.2s ease-in-out infinite;
}
.preloader-dot:nth-child(2) { animation-delay: 0.2s; }
.preloader-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBlink {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.2); }
}

/* ── 1. DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Colors */
  --maroon-deepest: #080202;
  --maroon-deep:    #0E0404;
  --maroon-primary: #7B1A1A;
  --maroon-mid:     #8B0000;
  --maroon-light:   #A52020;
  --maroon-muted:   rgba(123, 26, 26, 0.6);

  --gold-primary:   #D4AF37;
  --gold-light:     #E8C94B;
  --gold-pale:      #F5E27A;
  --gold-dark:      #B8962E;
  --gold-muted:     rgba(212, 175, 55, 0.15);
  --gold-border:    rgba(212, 175, 55, 0.25);
  --gold-glow:      rgba(212, 175, 55, 0.3);

  --cream:          #FDF8F0;
  --cream-warm:     #F5EDD8;
  --text-light:     #FDF8F0;
  --text-muted:     rgba(253, 248, 240, 0.65);
  --text-dim:       rgba(253, 248, 240, 0.4);
  --text-dark:      #1A0808;

  /* Glass */
  --glass-dark:     rgba(14, 4, 4, 0.7);
  --glass-maroon:   rgba(123, 26, 26, 0.25);
  --glass-border:   rgba(212, 175, 55, 0.2);

  /* Typography */
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Inter', system-ui, sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 9rem;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  /* Transition */
  --tr-fast:  0.18s ease;
  --tr-base:  0.38s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-slow:  0.7s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --sh-card:  0 8px 48px rgba(0,0,0,0.45);
  --sh-gold:  0 0 40px rgba(212,175,55,0.18);
  --sh-glow:  0 0 80px rgba(212,175,55,0.25);
  --sh-sm:    0 2px 16px rgba(0,0,0,0.3);
}

/* ── 2. RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--maroon-deepest);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

/* ── 3. ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes scrollLine {
  0%   { height: 0; opacity: 1; }
  100% { height: 60px; opacity: 0; }
}
@keyframes countUp {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes particleFloat {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0.8; }
  50%  { transform: translateY(-60px) translateX(20px) scale(1.1); opacity: 0.4; }
  100% { transform: translateY(-120px) translateX(-10px) scale(0.8); opacity: 0; }
}

/* Reveal classes for scroll animations */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1),
              transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal        { transform: translateY(40px); }
.reveal-left   { transform: translateX(-50px); }
.reveal-right  { transform: translateX(50px); }
.revealed {
  opacity: 1 !important;
  transform: none !important;
}
.reveal[style*="--delay"], .reveal-left[style*="--delay"], .reveal-right[style*="--delay"] {
  transition-delay: var(--delay, 0s);
}

/* ── 4. TYPOGRAPHY UTILITIES ──────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: var(--sp-sm);
}
.section-title em {
  font-style: italic;
  color: var(--gold-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}

.section-header {
  text-align: left;
  margin-bottom: var(--sp-xl);
}
.section-header.center, .section-header .center {
  text-align: center;
}
.section-header.center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: var(--sp-sm) 0 var(--sp-md);
  position: relative;
}
.gold-divider::before {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: var(--gold-primary);
  background: var(--maroon-deepest);
  padding: 0 6px;
}
.gold-divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* ── 5. BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--tr-base);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(253,248,240,0.4);
}
.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold-primary);
  border: 1.5px solid var(--gold-border);
  transition: var(--tr-base);
}
.btn-outline-gold:hover {
  background: var(--gold-muted);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

/* ── 6. NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--tr-base);
}
.navbar.scrolled {
  background: rgba(8, 2, 2, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold-border);
  transition: var(--tr-base);
}
.nav-logo:hover .logo-img {
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px var(--gold-glow);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 4px;
  transition: var(--tr-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-light);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: var(--tr-base);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 7. HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
/* AI Slideshow Background */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  animation: heroKenBurns 12s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
.hero-slide-1 { background-image: url('hero1.png'); }
.hero-slide-2 { background-image: url('hero2.png'); }
.hero-slide-3 { background-image: url('hero3.png'); }
@keyframes heroKenBurns {
  0%   { transform: scale(1.0) translate(0,0); }
  100% { transform: scale(1.08) translate(-1%,-1%); }
}
.hero-img { display: none; /* Keep for SEO alt text, hidden visually */ }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 2, 2, 0.88) 0%,
    rgba(80, 10, 10, 0.55) 35%,
    rgba(8, 2, 2, 0.82) 100%
  );
  z-index: 1;
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-primary);
  opacity: 0.6;
  animation: particleFloat var(--dur, 6s) var(--delay, 0s) ease-in infinite;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: var(--sp-md);
  padding-top: 120px;
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
  animation: fadeInUp 0.9s 0.2s both;
}
.badge-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-primary);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-display);
  margin-bottom: var(--sp-md);
  animation: fadeInUp 0.9s 0.4s both;
}
.title-assamese {
  display: block;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  opacity: 0.9;
}
.title-main {
  display: block;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #FDF8F0 0%, #D4AF37 40%, #FDF8F0 70%, #E8C94B 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
  animation: fadeInUp 0.9s 0.6s both;
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: var(--sp-lg);
  animation: fadeInUp 0.9s 0.75s both;
}
.hero-location svg { flex-shrink: 0; }

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.9s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  animation: fadeInUp 1s 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 0;
  background: var(--gold-primary);
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* Corner decorations */
.hero-corner-deco {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 2;
  opacity: 0.4;
}
.hero-corner-deco.top-left    { top: 100px; left: 40px;    border-top: 1.5px solid var(--gold-primary);  border-left: 1.5px solid var(--gold-primary);  z-index: 3; }
.hero-corner-deco.top-right   { top: 100px; right: 40px;   border-top: 1.5px solid var(--gold-primary);  border-right: 1.5px solid var(--gold-primary); z-index: 3; }
.hero-corner-deco.bottom-left  { bottom: 100px; left: 40px;  border-bottom: 1.5px solid var(--gold-primary); border-left: 1.5px solid var(--gold-primary);  z-index: 3; }
.hero-corner-deco.bottom-right { bottom: 100px; right: 40px; border-bottom: 1.5px solid var(--gold-primary); border-right: 1.5px solid var(--gold-primary); z-index: 3; }

/* ── 8. STATS BANNER ──────────────────────────────────────────── */
.stats-banner {
  background: linear-gradient(135deg, var(--maroon-primary) 0%, var(--maroon-mid) 50%, var(--maroon-primary) 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--sp-lg);
  position: relative;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-primary);
  line-height: 1;
  display: inline;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,248,240,0.7);
  font-weight: 500;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold-border), transparent);
  flex-shrink: 0;
}

/* ── 9. ABOUT SECTION ─────────────────────────────────────────── */
.about-section {
  padding: var(--sp-3xl) 0;
  background: var(--maroon-deepest);
  position: relative;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.about-image-col { position: relative; }

.about-img-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: visible;
}
.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  transition: transform 0.6s ease;
}
.about-img-frame:hover .about-img {
  transform: scale(1.02);
}
.img-gold-border {
  position: absolute;
  inset: -10px;
  border: 1.5px solid var(--gold-border);
  border-radius: calc(var(--r-lg) + 10px);
  pointer-events: none;
  z-index: -1;
}
.img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-gold);
  animation: float 3s ease-in-out infinite;
}
.img-badge-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.img-badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26,8,8,0.7);
  font-weight: 600;
}

.about-text-col { padding-left: var(--sp-md); }

.about-text {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: var(--sp-md);
  font-size: 1.02rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--gold-border);
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
}
.feature-icon {
  color: var(--gold-primary);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.about-feature strong {
  display: block;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.about-feature p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ── 10. COLLECTIONS SECTION ──────────────────────────────────── */
.collections-section {
  padding: var(--sp-3xl) 0;
  background: linear-gradient(180deg, var(--maroon-deepest) 0%, #120505 50%, var(--maroon-deepest) 100%);
  position: relative;
}
.collections-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(123,26,26,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}

.collection-card {
  background: linear-gradient(145deg, rgba(30, 8, 8, 0.8), rgba(18, 5, 5, 0.9));
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-lg);
  position: relative;
  overflow: hidden;
  transition: var(--tr-base);
  cursor: default;
  backdrop-filter: blur(10px);
}
.collection-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: var(--tr-base);
}
.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--gold-muted) 0%, transparent 60%);
  opacity: 0;
  transition: var(--tr-base);
  pointer-events: none;
}
.collection-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.45);
  box-shadow: var(--sh-card), var(--sh-gold);
}
.collection-card:hover::before { opacity: 1; }
.collection-card:hover::after  { opacity: 1; }

.card-floor-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: var(--sp-md);
  font-weight: 600;
}

.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--sp-md);
  color: var(--gold-primary);
  opacity: 0.8;
  transition: var(--tr-base);
}
.collection-card:hover .card-icon {
  opacity: 1;
  transform: scale(1.1);
}
.card-icon svg { width: 100%; height: 100%; }

.card-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: var(--sp-sm);
  line-height: 1.2;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: var(--sp-md);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--sp-md);
}
.card-tags span {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 100px;
  padding: 4px 12px;
  font-weight: 500;
  transition: var(--tr-fast);
}
.collection-card:hover .card-tags span {
  color: var(--gold-primary);
  border-color: var(--gold-border);
}

.card-bottom {
  border-top: 1px solid rgba(212,175,55,0.1);
  padding-top: var(--sp-sm);
}
.card-note {
  font-size: 0.72rem;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 600;
}

/* ── 11. VIRTUAL TOUR SECTION ─────────────────────────────────── */
.virtual-tour-section {
  padding: var(--sp-3xl) 0;
  background: var(--maroon-deepest);
  position: relative;
}
.virtual-tour-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(123,26,26,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.tour-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: var(--sp-md);
  flex-wrap: wrap;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 0;
}

.tour-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 24px;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  font-family: var(--font-body);
  background: rgba(30,8,8,0.5);
  border: 1px solid rgba(212,175,55,0.1);
  border-bottom: none;
  cursor: pointer;
  transition: var(--tr-base);
  position: relative;
  bottom: -1px;
}
.tour-tab:hover {
  background: rgba(212,175,55,0.06);
  border-color: var(--gold-border);
}
.tour-tab.active {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold-primary);
  border-bottom-color: var(--maroon-deepest);
}
.tour-tab.active .tab-floor {
  color: var(--gold-primary);
}
.tab-floor {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--tr-fast);
}
.tab-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 2px;
}

.tour-frame-container { position: relative; }

.tour-frame-wrapper {
  border: 1px solid var(--gold-border);
  border-top: none;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--sh-card);
}

.tour-panel {
  display: none;
  width: 100%;
}
.tour-panel.active { display: block; }
.tour-panel iframe {
  display: block;
  width: 100%;
  border: none;
  min-height: 500px;
}

.tour-overlay-label {
  position: absolute;
  bottom: var(--sp-sm);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8,2,2,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  pointer-events: none;
}
.tour-overlay-label svg { color: var(--gold-primary); }

/* ── 12. VIDEO SECTION ────────────────────────────────────────── */
.video-section {
  padding: var(--sp-3xl) 0;
  background: linear-gradient(180deg, var(--maroon-deepest) 0%, #130303 50%, var(--maroon-deepest) 100%);
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(123,26,26,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.video-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.video-frame-wrapper {
  flex-shrink: 0;
}
.video-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--sh-card), var(--sh-gold);
  position: relative;
}
.video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 40px rgba(212,175,55,0.08);
  pointer-events: none;
  z-index: 1;
}

.video-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: var(--sp-md);
}
.video-title em {
  font-style: italic;
  color: var(--gold-primary);
}

.video-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--sp-lg);
}

.video-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}
.video-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.vh-dot {
  color: var(--gold-primary);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ── 13. WHY CHOOSE US ────────────────────────────────────────── */
.why-section {
  padding: var(--sp-3xl) 0;
  background: var(--maroon-deepest);
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.02'%3E%3Cpath d='M20 0L40 20L20 40L0 20z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.why-card {
  background: linear-gradient(145deg, rgba(20,5,5,0.8), rgba(12,3,3,0.9));
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  transition: var(--tr-base);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  transition: width 0.5s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: var(--sh-sm), 0 0 30px rgba(212,175,55,0.1);
}
.why-card:hover::before { width: 80%; }

.why-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--sp-md);
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: var(--tr-base);
}
.why-icon svg {
  width: 22px;
  height: 22px;
}
.why-card:hover .why-icon {
  background: rgba(212,175,55,0.18);
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: scale(1.08);
}

.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: var(--sp-xs);
}
.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── 14. REVIEWS SECTION ─────────────────────────────────────── */
.reviews-section {
  padding: var(--sp-3xl) 0;
  background: linear-gradient(180deg, #130303 0%, var(--maroon-deepest) 50%, #100202 100%);
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(123,26,26,0.2) 0%, transparent 65%);
  pointer-events: none;
}

/* Google Rating Summary */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
  padding: var(--sp-lg) var(--sp-xl);
  background: linear-gradient(135deg, rgba(30,8,8,0.8), rgba(20,5,5,0.9));
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.reviews-summary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}
.rs-score {
  text-align: center;
}
.rs-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  display: block;
}
.rs-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 8px 0 6px;
}
.rs-star {
  width: 22px;
  height: 22px;
  fill: var(--gold-primary);
}
.rs-star.half { fill: url(#halfGrad); }
.rs-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.rs-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold-border), transparent);
  flex-shrink: 0;
}
.rs-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 200px;
}
.rs-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
}
.rs-bar-label {
  width: 32px;
  color: var(--text-muted);
  flex-shrink: 0;
  text-align: right;
}
.rs-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(212,175,55,0.1);
  border-radius: 100px;
  overflow: hidden;
}
.rs-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.rs-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.rs-platform-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.rs-platform-name {
  font-size: 0.7rem;
  color: var(--gold-primary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.review-card {
  background: linear-gradient(145deg, rgba(22,5,5,0.85), rgba(14,4,4,0.92));
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  position: relative;
  overflow: hidden;
  transition: var(--tr-base);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold-primary);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.35);
  box-shadow: var(--sh-card), 0 0 30px rgba(212,175,55,0.08);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon-light), var(--maroon-primary));
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-primary);
  flex-shrink: 0;
  text-transform: uppercase;
}
.review-meta {
  flex: 1;
  min-width: 0;
}
.review-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-date {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.review-google-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

.review-stars {
  display: flex;
  gap: 3px;
}
.review-star {
  width: 16px;
  height: 16px;
  fill: var(--gold-primary);
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  text-transform: uppercase;
  font-weight: 600;
  border-top: 1px solid rgba(212,175,55,0.1);
  padding-top: 10px;
}
.review-badge svg { width: 12px; height: 12px; }

.reviews-cta {
  text-align: center;
  margin-top: var(--sp-lg);
}

/* ── 15. SOCIAL SECTION ───────────────────────────────────────── */
.social-section {
  padding: var(--sp-3xl) 0;
  background: linear-gradient(135deg, #100303, #0E0404, #100303);
  position: relative;
}
.social-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(123,26,26,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.social-card {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  background: linear-gradient(145deg, rgba(25,6,6,0.85), rgba(15,4,4,0.9));
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  padding: var(--sp-lg) var(--sp-md);
  transition: var(--tr-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.social-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: var(--sh-card), var(--sh-gold);
}
.social-card:hover::after { transform: scaleX(1); }

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--tr-base);
}
.social-icon svg { width: 24px; height: 24px; }

.social-icon.facebook {
  background: rgba(24, 119, 242, 0.15);
  border: 1px solid rgba(24, 119, 242, 0.3);
  color: #1877F2;
}
.social-icon.instagram {
  background: rgba(214, 73, 101, 0.15);
  border: 1px solid rgba(214, 73, 101, 0.3);
  color: #E1306C;
}
.social-icon.maps {
  background: rgba(66, 133, 244, 0.12);
  border: 1px solid rgba(66, 133, 244, 0.3);
  color: #EA4335;
}
.social-card:hover .social-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(212,175,55,0.15);
}

.social-info h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 4px;
}
.social-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.social-cta {
  font-size: 0.72rem;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  font-weight: 600;
  transition: var(--tr-fast);
}
.social-card:hover .social-cta {
  letter-spacing: 0.15em;
}

/* ── 15. FOOTER ───────────────────────────────────────────────── */
.footer-section {
  background: var(--maroon-deep);
  border-top: 1px solid var(--gold-border);
}

.footer-top {
  padding: var(--sp-3xl) 0 var(--sp-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: var(--sp-xl);
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold-border);
  margin-bottom: var(--sp-md);
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: var(--sp-sm);
}
.footer-gstin {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: var(--sp-sm);
}
.footer-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--tr-fast);
}
.footer-social-link:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: var(--gold-muted);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: var(--sp-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--tr-fast);
  position: relative;
  padding-left: 0;
}
.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 8px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: var(--sp-md);
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}
.contact-item svg {
  flex-shrink: 0;
  color: var(--gold-primary);
  margin-top: 2px;
}
.contact-item a {
  color: var(--text-muted);
  transition: var(--tr-fast);
}
.contact-item a:hover { color: var(--gold-primary); }

/* Footer Map */
.footer-map {
  border-top: 1px solid var(--gold-border);
  overflow: hidden;
  position: relative;
}
.footer-map::before {
  content: 'OUR LOCATION';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: rgba(8,2,2,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 8px 24px;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold-primary);
  font-weight: 600;
  pointer-events: none;
}
.footer-map iframe { display: block; filter: grayscale(20%) contrast(1.05); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--gold-border);
  padding: var(--sp-md) 0;
  background: rgba(0,0,0,0.3);
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-credit {
  font-size: 0.72rem !important;
  color: var(--gold-primary) !important;
  opacity: 0.6;
}

/* ── 16. RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid        { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .about-text-col    { padding-left: 0; }
  .about-img         { height: 380px; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .video-content     { grid-template-columns: 1fr; }
  .video-frame-wrapper { display: flex; justify-content: center; }
  .reviews-grid      { grid-template-columns: 1fr 1fr; }
  .rs-divider        { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(8,2,2,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--sp-xl) var(--sp-lg);
    gap: var(--sp-lg);
    border-left: 1px solid var(--gold-border);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  .nav-links.open { right: 0; }
  .nav-link {
    font-size: 1rem;
    color: var(--text-muted);
  }

  .collections-grid  { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .social-cards      { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .reviews-grid      { grid-template-columns: 1fr; }
  .rs-stats          { min-width: 100%; }
  .reviews-summary   { flex-direction: column; text-align: center; gap: var(--sp-md); }

  .stats-container   { flex-direction: column; gap: var(--sp-md); }
  .stat-divider      { width: 60px; height: 1px; }

  .hero-corner-deco  { display: none; }

  .tour-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .tour-tab          { flex-shrink: 0; }

  .video-frame iframe { width: 100% !important; height: auto !important; min-height: 280px; }

  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  :root {
    --sp-xl: 3rem;
    --sp-2xl: 4rem;
    --sp-3xl: 5rem;
  }
  .hero-content      { padding-top: 100px; }
  .hero-ctas         { flex-direction: column; align-items: center; }
  .btn               { width: 100%; justify-content: center; }
  .about-img         { height: 280px; }
  .img-badge         { display: none; }
}
