/* ============================================================
   HOME PAGE – SPECIFIC STYLES (Dark Luxe Theme)
   ============================================================ */

/* ── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip {
  background: #111111;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: var(--sp-md) 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 160px;
}
.trust-strip-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  flex-shrink: 0;
}
.trust-strip-text strong {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 2px;
}
.trust-strip-text span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.trust-strip-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.2);
  flex-shrink: 0;
}

/* ── CATEGORY PILLS ─────────────────────────────────────────── */
.section-sm { padding: var(--sp-lg) 0; }
.cat-quick { background: #111111; }
.cat-pills-row {
  display: flex;
  justify-content: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}
.cat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: var(--transition);
}
.cat-pill:hover { transform: translateY(-4px); }
.cat-pill-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.2);
  background: #1A1A1A;
  transition: var(--transition);
}
.cat-pill:hover .cat-pill-img {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.cat-pill-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-pill:hover .cat-pill-img img { transform: scale(1.1); }
.cat-pill span {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.cat-pill:hover span { color: var(--gold); }
.cat-pill--gold .cat-pill-img { border-color: var(--gold); }
.cat-pill--gold span { color: var(--gold); }



/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: hidden;
  background: #010101;
  margin-top: calc(-1 * var(--header-h));
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity, transform;
  animation: heroSlideZoom 24s linear infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 8s; }
.hero-slide:nth-child(3) { animation-delay: 16s; }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) saturate(1.1);
}

@keyframes heroSlideZoom {
  0% { opacity: 0; transform: scale(1); }
  5% { opacity: 1; }
  33% { opacity: 1; }
  38% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; }
}
/* Multi-layer overlay for depth */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.75) 100%),
    linear-gradient(to right, rgba(0,0,0,0.65) 0%, transparent 60%);
}

/* Decorative gold corner ring */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 120px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

/* Thin gold rule above eyebrow */
.hero-content::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto var(--sp-sm);
  opacity: 0.7;
}

.hero-subtitle {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-md);
  font-weight: 500;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 300;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: var(--sp-md);
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: transparent;
  background: linear-gradient(135deg, #E2C97E 0%, #C9A84C 45%, #8B6E2F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-top: -0.1em;
}

.hero-subline {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.75;
  margin: 0 auto var(--sp-sm);
  font-weight: 300;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .hero-container {
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: 80vh;
  }
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
  .hero-subline {
    font-size: 0.95rem;
    padding: 0 15px;
  }
  .hero-actions .btn {
    min-width: 160px;
    padding: 14px 30px;
    font-size: 0.75rem;
  }
  .hero-stats {
    gap: var(--sp-md);
    flex-wrap: wrap;
  }
}

.hero-desc {
  display: none;
}

/* Thin gold rule below text */
.hero-divider {
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.7), transparent);
  margin: var(--sp-md) auto var(--sp-lg);
}

.hero-actions {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-actions .btn {
  min-width: 200px;
  padding: 18px 44px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.hero-actions .btn-gold {
  background: var(--gold);
  color: #0A0A0A;
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(201,168,76,0.35);
  position: relative;
  overflow: hidden;
}
.hero-actions .btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}
.hero-actions .btn-gold:hover::before { left: 100%; }
.hero-actions .btn-gold:hover {
  background: #E2C97E;
  border-color: #E2C97E;
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(201,168,76,0.45);
}

.hero-actions .btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: #ffffff;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Floating stats bar */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--sp-xl);
  margin-top: var(--sp-xl);
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold);
  font-weight: 400;
  line-height: 1.1;
}
.hero-stat .stat-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  color: rgba(255,255,255,0.35);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.7), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8) translateY(-8px); }
  50% { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* ── TRUST STRIP ──────────────────────────────────────────────
   Positioned seamlessly below hero with NO gap
   ──────────────────────────────────────────────────────────── */
.trust-strip {
  background: linear-gradient(to bottom, #111111, #0F0F0F);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: var(--sp-lg) 0;
  position: relative;
}
.trust-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
}


/* ── CATEGORIES ─────────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr 1fr;
  grid-template-rows: 420px;
  gap: var(--sp-sm);
}

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  background: #1A1A1A;
}
.category-card:hover .category-img-wrap img { transform: scale(1.08); }
.category-img-wrap { position: absolute; inset: 0; }
.category-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
  z-index: 1;
  transition: var(--transition);
}
.category-card:hover::after { background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.35) 60%, transparent 100%); }

.category-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-md);
  z-index: 2;
  transition: var(--transition);
  text-align: center;
}
.category-info h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  color: #ffffff;
  margin-bottom: 4px;
  transition: var(--transition);
  font-weight: 400;
}
.category-card:hover .category-info h3 { color: var(--gold); }
.category-count {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ── BRAND STRIP ────────────────────────────────────────────── */
.brand-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}
.brand-strip-text { max-width: 480px; }
.brand-desc {
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-md);
  margin-top: var(--sp-md);
  line-height: 1.8;
}
.brand-strip-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.brand-strip-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.brand-strip-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
}

/* ── FEATURES ───────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}
.feature-item {
  text-align: center;
  padding: var(--sp-lg);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  background: #111111;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--gradient-gold);
  height: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-item:hover::before { transform: scaleX(1); }
.feature-item:hover {
  border-color: rgba(201,168,76,0.35);
  background: #161616;
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(201,168,76,0.12);
}
.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--sp-md);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
  background: rgba(201,168,76,0.06);
}
.feature-item:hover .feature-icon {
  background: var(--gradient-gold);
  color: #0A0A0A;
  border-color: transparent;
  box-shadow: 0 0 24px rgba(201,168,76,0.4);
  transform: scale(1.1);
}
.feature-item h3 { font-family: var(--font-serif); font-weight: 400; font-size: var(--fs-lg); margin-bottom: var(--sp-sm); color: #ffffff; }
.feature-item p { color: rgba(255,255,255,0.45); font-size: var(--fs-sm); }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  min-width: 100%;
  padding: var(--sp-xl) var(--container-pad);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
  background: #111111;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: var(--shadow-sm);
  margin: 10px;
}

.testimonial-stars { color: var(--gold); font-size: var(--fs-lg); }
.testimonial-text {
  max-width: 680px;
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}
.testimonial-text::before { content: '\201C'; color: var(--gold); }
.testimonial-text::after  { content: '\201D'; color: var(--gold); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.3);
  object-fit: cover;
}
.testimonial-author div { text-align: left; }
.testimonial-author strong { display: block; color: #ffffff; font-family: var(--font-serif); font-size: var(--fs-md); font-weight: 600; }
.testimonial-author span { font-size: var(--fs-xs); color: rgba(255,255,255,0.4); letter-spacing: 0.1em; }
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}
.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: var(--fs-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
  background: rgba(201,168,76,0.06);
}
.slider-btn:hover {
  background: var(--gold);
  color: #0A0A0A;
  border-color: var(--gold);
}
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: var(--transition);
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ── INSTAGRAM GALLERY ──────────────────────────────────────── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: #111111;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(2px);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay svg { fill: none; stroke: #ffffff; }

/* ── NEWSLETTER ─────────────────────────────────────────────── */
.newsletter {
  background: #111111;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}
.newsletter-text h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: var(--sp-sm) 0;
  color: #ffffff;
}
.newsletter-text p { color: rgba(255,255,255,0.5); font-size: var(--fs-md); }
.newsletter-form { display: flex; flex-direction: column; gap: var(--sp-sm); }
.newsletter-input-group { display: flex; }
.newsletter-input-group input {
  flex: 1;
  background: #161616;
  border: 1px solid rgba(201,168,76,0.2);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 14px 18px;
  color: #ffffff;
  font-size: var(--fs-sm);
  outline: none;
  transition: var(--transition);
}
.newsletter-input-group input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input-group input:focus { border-color: var(--gold); background: #1A1A1A; }
.newsletter-input-group .btn {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 28px;
}
.newsletter-note { font-size: var(--fs-xs); color: rgba(255,255,255,0.3); }
.newsletter-success {
  color: var(--gold);
  font-size: var(--fs-sm);
  font-family: var(--font-serif);
  font-style: italic;
  padding: var(--sp-sm);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.06);
}

/* ── TRENDING COLLECTION ────────────────────────────────────── */
.trending-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-md);
  min-height: 500px;
}
.trending-hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1A1A1A;
}
.trending-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.trending-hero-card:hover img { transform: scale(1.05); }
.trending-hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
}
.trending-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-xl);
  z-index: 2;
  text-align: center;
}
.trending-card-content h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  color: #ffffff;
  margin-bottom: var(--sp-xs);
  font-weight: 400;
}
.trending-card-content > p {
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-sm);
}
.trending-side-cards {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: var(--sp-md);
}
.trending-sm-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #111111;
  border: 1px solid rgba(201,168,76,0.12);
  transition: var(--transition);
}
.trending-sm-card:hover { border-color: rgba(201,168,76,0.35); }
.trending-sm-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.trending-sm-card:hover img { transform: scale(1.07); }
.trending-sm-info {
  padding: var(--sp-lg) var(--sp-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trending-sm-info h4 {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  margin-bottom: 4px;
  color: #ffffff;
  font-weight: 400;
}
.trending-sm-info > p { font-size: var(--fs-xs); color: rgba(255,255,255,0.45); margin-bottom: var(--sp-sm); }
.trending-link {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  transition: var(--transition);
}
.trending-link:hover { color: #E2C97E; letter-spacing: 0.15em; }

/* ── OCCASION STRIP ─────────────────────────────────────────── */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}
.occasion-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  border: 1px solid rgba(201,168,76,0.12);
  background: #111111;
  transition: var(--transition);
}
.occasion-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(201,168,76,0.15); }
.occasion-img { aspect-ratio: 3/2; overflow: hidden; background: #1A1A1A; }
.occasion-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.occasion-card:hover .occasion-img img { transform: scale(1.07); }
.occasion-info {
  padding: var(--sp-md);
  text-align: center;
}
.occasion-info h4 { font-family: var(--font-serif); font-weight: 400; font-size: var(--fs-lg); margin-bottom: 4px; transition: var(--transition); color: #ffffff; }
.occasion-card:hover .occasion-info h4 { color: var(--gold); }
.occasion-info span { font-size: var(--fs-xs); color: rgba(255,255,255,0.4); letter-spacing: 0.08em; }

/* ── RESPONSIVE HOME ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .categories-grid .category-card { height: 300px; }
  .categories-grid .category-card--large { grid-column: span 1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .newsletter-inner { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .brand-strip-inner { grid-template-columns: 1fr; }
  .brand-strip-img img { height: 360px; }
  .brand-strip-text { max-width: 100%; order: -1; }
  .trending-grid { grid-template-columns: 1fr; }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-divider { display: none; }
  .trust-strip-inner { gap: var(--sp-md); }
  .trust-strip-item { min-width: 140px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(2.4rem, 9vw, 4rem); }
  .hero-container { padding-top: calc(var(--header-h) + 24px); padding-bottom: 100px; }
  .hero-stats { gap: var(--sp-lg); margin-top: var(--sp-lg); }
  .hero-stat .stat-number { font-size: 1.5rem; }
  .categories-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .categories-grid .category-card { height: 240px; }
  .features-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-scroll-indicator { display: none; }
  .cat-pills-row { gap: var(--sp-md); }
  .cat-pill-img { width: 70px; height: 70px; }
  .trending-sm-card { grid-template-columns: 1fr; }
  .trending-sm-info { border-top: 1px solid rgba(201,168,76,0.1); }
  .occasion-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.2rem, 11vw, 3rem); }
  .hero-actions .btn { min-width: 100%; }
  .hero-slide img { object-position: center !important; }
  .hero-title { margin-bottom: 12px; }
  .hero-stats { display: none; } /* clean up on tiny screens */
  .hero-container { padding-bottom: 80px; }
  .cat-pills-row { gap: 12px; justify-content: flex-start; overflow-x: auto; padding-bottom: 10px; -webkit-overflow-scrolling: touch; }
  .cat-pill { flex-shrink: 0; }
  .cat-pill-img { width: 64px; height: 64px; }
  .cat-pill span { font-size: 0.6rem; }
  .trending-grid { gap: var(--sp-sm); }
  .trending-hero-card { height: 350px; }
  .trending-card-content { padding: var(--sp-lg); }
}
/* ── HERO ANIMATIONS ────────────────────────────────────────── */
.animate-fade {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-subtitle { animation-delay: 0.2s; }
.hero-title    { animation-delay: 0.4s; }
.hero-subline  { animation-delay: 0.6s; }
.hero-divider  { 
  width: 0;
  animation: dividerExpand 1s ease 0.8s forwards;
}
.hero-actions  { animation-delay: 1s; }
.hero-stats    { animation-delay: 1.2s; }

@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes dividerExpand {
  to { width: 100px; }
}

/* Staggered stats */
.hero-stat {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-stat:nth-child(1) { animation-delay: 1.3s; }
.hero-stat:nth-child(2) { animation-delay: 1.5s; }
.hero-stat:nth-child(3) { animation-delay: 1.7s; }

/* Subtle floating for title */
.hero-title em {
  animation: shimmer 3s infinite alternate;
}
@keyframes shimmer {
  from { filter: brightness(1); }
  to { filter: brightness(1.3) drop-shadow(0 0 10px rgba(201,168,76,0.3)); }
}
