/* ================================================
   EXOTIC COLLECTION — Homepage Styles
   Mobile-First Architecture (325px/375px/425px)
   ================================================ */

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,6,10,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--pearl);
}

.hero-h1 em { font-style: italic; }

.hero-body {
  font-size: 14px;
  color: rgba(240,236,232,0.85);
  font-weight: 300;
  max-width: 100%;
  line-height: 1.8;
  margin-bottom: 2.25rem;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-ctas .btn { width: 100%; height: 48px; justify-content: center; }

@media (min-width: 375px) {
  .hero-h1 { font-size: 38px; }
  .hero-body { font-size: 15px; }
}

@media (min-width: 600px) {
  .hero-h1 { font-size: 42px; }
  .hero-ctas { flex-direction: row; justify-content: center; }
  .hero-ctas .btn { width: auto; }
}

@media (min-width: 769px) {
  .hero { height: 100vh; min-height: 640px; text-align: left; }
  .hero-overlay {
    background: linear-gradient(110deg, rgba(7,6,10,0.82) 0%, rgba(7,6,10,0.55) 55%, rgba(7,6,10,0.3) 100%);
  }
  .hero-content { max-width: 660px; padding: 2rem 2rem 2rem 5vw; }
  .hero-h1 { font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.08; }
  .hero-body { font-size: clamp(1rem, 1.5vw, 1.1rem); max-width: 500px; }
  .hero-ctas { flex-direction: row; }
  .hero-ctas .btn { width: auto; }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-chevron {
  width: 24px;
  height: 24px;
  border-right: 1px solid rgba(201,168,76,0.5);
  border-bottom: 1px solid rgba(201,168,76,0.5);
  transform: rotate(45deg);
  animation: chevronBounce 2s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes chevronBounce {
  0%,100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
  50%      { transform: rotate(45deg) translateY(5px); opacity: 1; }
}

/* ─── Gem Category Bar ──────────────────────────── */
.gem-bar {
  background: var(--bg-primary);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  position: relative;
  z-index: 5;
}

.gem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 2.5rem 1.25rem;
}

.gem-card {
  position: relative;
  background: var(--bg-card);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
}

.gem-card:hover { 
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(201,168,76,0.15);
  transform: translateY(-4px);
}

.gem-card-img {
  height: 160px;
  width: 100%;
  position: relative;
}

.gem-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.gem-card:hover .gem-card-img img { transform: scale(1.08); }

.gem-card-body {
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.gem-dot { 
  width: 8px; height: 8px; border-radius: 50%; 
  margin-bottom: 0.2rem; 
  box-shadow: 0 0 10px currentColor;
  transition: transform var(--transition-fast);
}

.gem-card:hover .gem-dot { transform: scale(1.5); }

.gem-name { 
  font-family: var(--font-display); 
  font-size: 1.1rem; 
  font-style: italic; 
  letter-spacing: 0.1em;
  color: var(--gold);
}

.gem-sub { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

@media (min-width: 425px) {
  .gem-grid { gap: 20px; padding: 3rem 2rem; }
  .gem-card-img { height: 180px; }
}

@media (min-width: 769px) {
  .gem-bar { background: var(--bg-surface); }
  .gem-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    padding: 0;
  }
  .gem-card { border: none; border-radius: 0; background: var(--bg-card); }
  .gem-card-img { height: 180px; }
  .gem-card-body { 
    position: static; 
    padding: 1rem; 
    background: transparent; 
    backdrop-filter: none;
    border-top: none; 
  }
  .gem-name { font-size: 1rem; color: var(--pearl); }
}

/* ─── Featured Collection ───────────────────────── */
.featured-collection { background: var(--bg-primary); }

.featured-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 48px;
  border-bottom: var(--border-gold);
  padding-bottom: 3rem;
}

.featured-row:last-of-type { border-bottom: none; }

.featured-img {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  position: relative;
}

.featured-details { padding: 0 20px; }

.featured-details h3 { font-size: 22px; margin-bottom: 0.75rem; }

.featured-story {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.featured-details .btn { width: 100%; height: 48px; justify-content: center; margin-top: 1.5rem; }

@media (min-width: 375px) {
  .featured-details h3 { font-size: 24px; }
}

@media (min-width: 769px) {
  .featured-row {
    flex-direction: row;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
  }
  .featured-row-reverse { grid-template-columns: 40% 60%; }
  .featured-row-reverse .featured-img { order: 2; }
  .featured-row-reverse .featured-details { order: 1; }
  .featured-img { height: 520px; aspect-ratio: auto; }
  .featured-details { padding: 1rem 0; }
  .featured-details .btn { width: auto; }
}

/* ─── Two Locations ─────────────────────────────── */
.locations-section { background: var(--bg-surface); }

.locations-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-card { width: 100%; }

.location-img {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}

.location-body { padding: 20px; }

.location-body h3 { font-size: 24px; font-style: italic; margin-bottom: 0.6rem; }
.location-body p { font-size: 13px; margin-bottom: 1.25rem; }

.location-body .btn { width: 100%; height: 48px; justify-content: center; }

@media (min-width: 769px) {
  .locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .location-img { height: 260px; aspect-ratio: auto; }
  .location-body { padding: 1.75rem; }
}

/* ─── Pashmina Band ─────────────────────────────── */
.pashmina-band {
  position: relative;
  padding: 4rem 20px;
  text-align: center;
  overflow: hidden;
}

.pashmina-content h2 { font-size: 28px; margin-bottom: 1.25rem; }
.pashmina-sub { font-size: 14px; padding: 0 24px; }
.pashmina-content .btn { width: 100%; height: 48px; justify-content: center; margin-top: 2rem; }

@media (min-width: 375px) { .pashmina-content h2 { font-size: 32px; } }
@media (min-width: 425px) { .pashmina-content h2 { font-size: 36px; } }

@media (min-width: 769px) {
  .pashmina-band { padding: 7rem 2rem; min-height: 480px; }
  .pashmina-content h2 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
  .pashmina-sub { font-size: 1rem; max-width: 520px; }
  .pashmina-content .btn { width: auto; }
}

.pashmina-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.pashmina-overlay { position: absolute; inset: 0; background: rgba(7,6,10,0.78); }
.pashmina-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }

/* ─── Stats ─────────────────────────────────────── */
.stats-section { background: var(--bg-card); border-top: var(--border-gold); border-bottom: var(--border-gold); }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}

.stat-item { padding: 16px; border: 1px solid rgba(201,168,76,0.05); }

.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; }

@media (min-width: 375px) { .stat-number { font-size: 32px; } }
@media (min-width: 425px) { .stat-number { font-size: 36px; } }

@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(6, 1fr); }
  .stat-item { padding: 1.5rem 1rem; border: none; }
  .stat-number { font-size: 2.75rem; }
}

/* ─── Testimonials ──────────────────────────────── */
.testimonials-section { background: var(--bg-surface); }

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 2rem;
}

.testimonial-card { padding: 20px; }

.testimonial-quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--pearl);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author .testimonial-name { font-size: 14px; color: var(--gold); }
.testimonial-author .label-mono { font-size: 12px; }

@media (min-width: 769px) {
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

/* ─── Instagram Grid ────────────────────────────── */
.instagram-section { background: var(--bg-primary); }

.instagram-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (min-width: 375px) { .instagram-grid { gap: 2px; } }
@media (min-width: 425px) { .instagram-grid { grid-template-columns: repeat(3, 1fr); } }

@media (min-width: 1024px) {
  .instagram-grid { grid-template-columns: repeat(6, 1fr); gap: 6px; }
}

.insta-item { aspect-ratio: 1; overflow: hidden; }
.insta-item img { width: 100%; height: 100%; object-fit: contain; }

/* ─── Utility ───────────────────────────────────── */
.text-center { text-align: center; }

/* Mobile Reveal Fallback */
@media (max-width: 768.8px) {
  .reveal {
    opacity: 0.1; /* Start slightly visible to trigger lazy loading if needed */
    transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
  }
}
