/* ============================================
   Sri Ram Ram Govardhan Jewellers
   Main Stylesheet
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Cinzel:wght@400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --ivory:        #FAF8F3;
  --ivory-dark:   #F2EDE4;
  --gold:         #C5973A;
  --gold-light:   #E2B84A;
  --gold-bright:  #F0CC6A;
  --gold-dark:    #8A6520;
  --gold-muted:   #A07830;
  --charcoal:     #1A1510;
  --charcoal-soft:#2D2318;
  --brown:        #3D2B1A;
  --text:         #3A2E22;
  --text-light:   #7A6E5F;
  --text-muted:   #A89C8E;
  --white:        #FFFFFF;
  --black:        #0A0806;
  --border:       rgba(197,151,58,0.25);
  --border-light: rgba(197,151,58,0.12);

  /* Gradients */
  --gold-gradient:       linear-gradient(135deg, #C5973A 0%, #E8C97A 40%, #F0CC6A 60%, #C5973A 100%);
  --gold-gradient-soft:  linear-gradient(135deg, rgba(197,151,58,0.15) 0%, rgba(240,204,106,0.08) 100%);
  --dark-gradient:       linear-gradient(180deg, #1A1510 0%, #2D2318 100%);
  --hero-gradient:       linear-gradient(135deg, #0F0C08 0%, #1A1510 40%, #251A0F 100%);
  --card-bg:             linear-gradient(145deg, #FAF8F3 0%, #F0EAE0 100%);

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-cinzel: 'Cinzel', serif;
  --font-sans:   'Jost', -apple-system, sans-serif;

  /* Spacing */
  --section-py:  100px;
  --container:   1280px;
  --gutter:      24px;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(10,8,6,0.08);
  --shadow-md:   0 8px 32px rgba(10,8,6,0.12);
  --shadow-lg:   0 20px 60px rgba(10,8,6,0.18);
  --shadow-gold: 0 8px 32px rgba(197,151,58,0.25);

  /* Transitions */
  --ease-out:    cubic-bezier(0.22,1,0.36,1);
  --ease-in-out: cubic-bezier(0.65,0,0.35,1);
  --duration:    0.45s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration) var(--ease-out);
}

ul, ol { list-style: none; }

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Utility Classes --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-pad { padding: var(--section-py) 0; }

.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.text-ivory   { color: var(--ivory); }
.text-charcoal{ color: var(--charcoal); }

.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 16px auto;
  border-radius: 2px;
}

.gold-line-left { margin: 16px 0; }

.section-label {
  font-family: var(--font-cinzel);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 560px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-cinzel);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out);
}

.btn-gold:hover::after { transform: translateX(0); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(197,151,58,0.4); }

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 13px 35px;
}

.btn-outline:hover {
  background: var(--gold-gradient);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--ivory);
}

.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================
   NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.5s var(--ease-out);
}

.header.scrolled {
  background: rgba(10,8,6,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.nav-logo-top {
  font-family: var(--font-cinzel);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--ivory);
  line-height: 1;
}

.nav-logo-bottom {
  font-family: var(--font-cinzel);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-logo-line {
  width: 100%;
  height: 1px;
  background: var(--gold-gradient);
  margin: 3px 0;
}

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

.nav-link {
  font-family: var(--font-cinzel);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,248,243,0.8);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold-gradient);
  transition: width 0.4s var(--ease-out);
}

.nav-link:hover,
.nav-link.active { color: var(--gold); }

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta {
  font-family: var(--font-cinzel);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--charcoal);
  background: var(--gold-gradient);
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: all 0.4s var(--ease-out);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-nav-link {
  font-family: var(--font-cinzel);
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--ivory);
  text-transform: uppercase;
  transition: color 0.3s;
}

.mobile-nav-link:hover { color: var(--gold); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hero-gradient);
}

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

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: 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='%23C5973A' fill-opacity='1'%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");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,8,6,0.85) 0%, rgba(26,21,16,0.7) 50%, rgba(10,8,6,0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 0.3s forwards;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold-gradient);
}

.hero-eyebrow-text {
  font-family: var(--font-cinzel);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.05;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 0.5s forwards;
}

.hero-title .italic { font-style: italic; color: var(--gold); }
.hero-title .block  { display: block; }

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(250,248,243,0.65);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 0.9s forwards;
}

.hero-stats {
  position: absolute;
  right: var(--gutter);
  bottom: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
  opacity: 0;
  animation: fadeSlideLeft 1s var(--ease-out) 1.1s forwards;
}

.hero-stat-item {
  text-align: right;
  border-right: 1px solid rgba(197,151,58,0.4);
  padding-right: 20px;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  display: block;
}

.hero-stat-num .gold { color: var(--gold); }

.hero-stat-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(250,248,243,0.5);
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.5s forwards;
}

.hero-scroll-text {
  font-family: var(--font-cinzel);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(250,248,243,0.4);
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* --- Marquee Ticker --- */
.marquee-wrap {
  background: var(--charcoal);
  border-top: 1px solid rgba(197,151,58,0.2);
  border-bottom: 1px solid rgba(197,151,58,0.2);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 30px;
  white-space: nowrap;
}

.marquee-item span {
  font-family: var(--font-cinzel);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--ivory);
  text-transform: uppercase;
  opacity: 0.7;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

/* ============================================
   COLLECTIONS SECTION
   ============================================ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--ivory-dark);
}

.collection-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease-out);
}

.collection-card:hover .collection-card-bg { transform: scale(1.08); }

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,8,6,0.85) 0%, rgba(10,8,6,0.2) 50%, transparent 100%);
  z-index: 1;
  transition: background 0.5s;
}

.collection-card:hover .collection-card-overlay {
  background: linear-gradient(0deg, rgba(10,8,6,0.9) 0%, rgba(10,8,6,0.4) 60%, rgba(197,151,58,0.1) 100%);
}

.collection-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.5s var(--ease-out);
}

.collection-card:hover .collection-card-content { transform: translateY(0); }

.collection-card-num {
  font-family: var(--font-cinzel);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 8px;
}

.collection-card-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 10px;
}

.collection-card-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(250,248,243,0.65);
  line-height: 1.7;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out) 0.05s;
}

.collection-card:hover .collection-card-desc {
  opacity: 1;
  transform: translateY(0);
}

.collection-card-link {
  font-family: var(--font-cinzel);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s 0.1s;
}

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

.collection-card-link::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.3s;
}

.collection-card:hover .collection-card-link::after { transform: translateX(4px); }

/* Jewellery card gradient backgrounds */
.bg-gold-jewel {
  background: linear-gradient(145deg, #8B6914 0%, #C9951A 30%, #E8BB35 55%, #A07828 80%, #6B4F10 100%);
}
.bg-diamond {
  background: linear-gradient(145deg, #1a2840 0%, #2a4060 30%, #3d6080 55%, #a8c8e8 75%, #e8f4ff 100%);
}
.bg-silver {
  background: linear-gradient(145deg, #555565 0%, #8888a0 30%, #b0b8c8 55%, #d8e0e8 80%, #f0f4f8 100%);
}
.bg-bridal {
  background: linear-gradient(145deg, #5c1a2e 0%, #8b3050 30%, #c05070 55%, #e8a0b0 80%, #f8d8e0 100%);
}
.bg-temple {
  background: linear-gradient(145deg, #7a3808 0%, #b05810 30%, #d87820 55%, #e8a838 80%, #f0c860 100%);
}
.bg-antique {
  background: linear-gradient(145deg, #3a2808 0%, #6a4818 30%, #8a6028 55%, #a88040 80%, #c8a060 100%);
}
.bg-wedding {
  background: linear-gradient(145deg, #2a1040 0%, #4a2870 30%, #6a4898 55%, #9878c8 80%, #c8a8e8 100%);
}
.bg-rings {
  background: linear-gradient(145deg, #303830 0%, #486048 30%, #688068 55%, #98a898 80%, #c0d0c0 100%);
}

/* ============================================
   HERITAGE SECTION
   ============================================ */
.heritage {
  background: var(--charcoal);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.heritage::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197,151,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.heritage::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197,151,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.heritage-visual {
  position: relative;
}

.heritage-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.heritage-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #8B6914 0%, #C9951A 35%, #E8BB35 60%, #A07828 85%, #6B4F10 100%);
  position: relative;
}

.heritage-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.heritage-ornament {
  font-family: var(--font-cinzel);
  font-size: 80px;
  color: rgba(250,248,243,0.15);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 10px;
  text-align: center;
}

.heritage-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: var(--shadow-gold);
}

.heritage-img-badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}

.heritage-img-badge-text {
  font-family: var(--font-cinzel);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--charcoal);
  text-transform: uppercase;
  text-align: center;
}

.heritage-accent-line {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 3px;
  height: 60%;
  background: var(--gold-gradient);
}

.heritage-text .section-label { color: var(--gold); }
.heritage-text .section-title { color: var(--ivory); }
.heritage-text .section-subtitle { color: rgba(250,248,243,0.6); max-width: 100%; }

.heritage-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.heritage-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.heritage-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1px solid rgba(197,151,58,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.heritage-feature-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 4px;
}

.heritage-feature-desc {
  font-size: 0.85rem;
  color: rgba(250,248,243,0.5);
  line-height: 1.7;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: var(--section-py) 0;
  background: var(--ivory);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 60px;
  border: 1px solid var(--border-light);
}

.why-card {
  padding: 48px 32px;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}

.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { background: var(--ivory); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
  transition: all 0.4s;
}

.why-card:hover .why-icon {
  background: var(--gold-gradient);
  color: var(--charcoal);
  border-color: transparent;
}

.why-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}

.why-num span { color: var(--gold); }

.why-label {
  font-family: var(--font-cinzel);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.why-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================
   BEST SELLERS
   ============================================ */
.bestsellers {
  padding: var(--section-py) 0;
  background: var(--ivory-dark);
  overflow: hidden;
}

.bestsellers-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 16px var(--gutter) 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.bestsellers-track::-webkit-scrollbar { display: none; }

.seller-card {
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  scroll-snap-align: start;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}

.seller-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border); }

.seller-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.seller-img-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease-out);
}

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

.seller-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,6,0);
  transition: background 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seller-card:hover .seller-img-overlay { background: rgba(10,8,6,0.3); }

.seller-img-btn {
  font-family: var(--font-cinzel);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--ivory);
  border: 1px solid rgba(250,248,243,0.6);
  padding: 10px 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s 0.05s;
}

.seller-card:hover .seller-img-btn { opacity: 1; transform: translateY(0); }

.seller-info {
  padding: 20px;
}

.seller-category {
  font-family: var(--font-cinzel);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
}

.seller-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.seller-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.seller-tag {
  display: inline-block;
  font-family: var(--font-cinzel);
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--gold-dark);
  background: rgba(197,151,58,0.1);
  padding: 4px 10px;
  border: 1px solid rgba(197,151,58,0.2);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--charcoal);
  position: relative;
}

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

.testimonial-card {
  background: rgba(250,248,243,0.04);
  border: 1px solid rgba(197,151,58,0.15);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s;
}

.testimonial-card:hover {
  background: rgba(250,248,243,0.07);
  border-color: rgba(197,151,58,0.3);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(250,248,243,0.75);
  line-height: 1.85;
  margin-bottom: 28px;
}

.testimonial-divider {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cinzel);
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  min-width: 44px;
}

.testimonial-name {
  font-family: var(--font-cinzel);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--ivory);
  margin-bottom: 3px;
}

.testimonial-loc {
  font-size: 11px;
  color: rgba(250,248,243,0.4);
}

.testimonial-stars {
  position: absolute;
  top: 32px;
  right: 28px;
  display: flex;
  gap: 3px;
}

.testimonial-stars span { color: var(--gold); font-size: 12px; }

/* ============================================
   INSTAGRAM GRID
   ============================================ */
.instagram-preview {
  padding: var(--section-py) 0;
  background: var(--ivory);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 48px;
}

.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.insta-item-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out);
}

.insta-item:hover .insta-item-bg { transform: scale(1.1); }

.insta-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,6,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.insta-item:hover .insta-item-overlay {
  background: rgba(197,151,58,0.35);
}

.insta-icon {
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s;
  color: var(--ivory);
}

.insta-item:hover .insta-icon { opacity: 1; transform: scale(1); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #251A0F 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg-ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-cinzel);
  font-size: 300px;
  font-weight: 700;
  color: rgba(197,151,58,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 20px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta .section-title { color: var(--ivory); }
.cta .section-subtitle { color: rgba(250,248,243,0.6); margin: 0 auto 40px; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(197,151,58,0.15);
}

.footer-main {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand-name {
  font-family: var(--font-cinzel);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-family: var(--font-cinzel);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 0.82rem;
  color: rgba(250,248,243,0.4);
  line-height: 1.85;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(197,151,58,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,248,243,0.5);
  transition: all 0.3s;
  font-size: 14px;
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197,151,58,0.1);
}

.footer-col-title {
  font-family: var(--font-cinzel);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(197,151,58,0.15);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.82rem;
  color: rgba(250,248,243,0.45);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover { color: var(--gold); }
.footer-link::before { content: '›'; color: var(--gold); opacity: 0.5; font-size: 1rem; }

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

.footer-contact-icon {
  color: var(--gold);
  min-width: 16px;
  margin-top: 2px;
  font-size: 13px;
}

.footer-contact-text {
  font-size: 0.82rem;
  color: rgba(250,248,243,0.45);
  line-height: 1.65;
}

.footer-contact-text a { color: rgba(250,248,243,0.45); }
.footer-contact-text a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(197,151,58,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(250,248,243,0.25);
  letter-spacing: 1px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-link {
  font-size: 11px;
  color: rgba(250,248,243,0.25);
  transition: color 0.3s;
}

.footer-bottom-link:hover { color: var(--gold); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--hero-gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%23C5973A' 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");
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.breadcrumb-item {
  font-family: var(--font-cinzel);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(250,248,243,0.4);
  text-transform: uppercase;
}

.breadcrumb-item.active { color: var(--gold); }

.breadcrumb-sep { color: rgba(197,151,58,0.4); font-size: 10px; }

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 16px;
}

.page-hero-title em { font-style: italic; color: var(--gold); }

.page-hero-subtitle {
  font-size: 1rem;
  color: rgba(250,248,243,0.55);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  padding: var(--section-py) 0;
  background: var(--ivory);
}

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

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-img:nth-child(2) { margin-top: 40px; }

.about-img-inner {
  width: 100%;
  height: 100%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.trust-item {
  padding: 28px;
  border: 1px solid var(--border-light);
  background: var(--white);
}

.trust-item-icon {
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 12px;
}

.trust-item-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.trust-item-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}

.craftsmanship {
  padding: var(--section-py) 0;
  background: var(--charcoal);
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.craft-card {
  text-align: center;
  padding: 48px 28px;
  background: rgba(250,248,243,0.03);
  border: 1px solid rgba(197,151,58,0.12);
  transition: all 0.4s;
}

.craft-card:hover {
  background: rgba(250,248,243,0.06);
  border-color: rgba(197,151,58,0.25);
  transform: translateY(-4px);
}

.craft-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.craft-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 12px;
}

.craft-desc {
  font-size: 0.85rem;
  color: rgba(250,248,243,0.5);
  line-height: 1.8;
}

/* ============================================
   COLLECTIONS PAGE
   ============================================ */
.collections-page {
  padding: var(--section-py) 0;
  background: var(--ivory);
}

.collections-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}

.coll-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
}

.coll-card:hover { box-shadow: var(--shadow-lg); z-index: 1; transform: scale(1.02); }

.coll-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.coll-img-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease-out);
}

.coll-card:hover .coll-img-bg { transform: scale(1.1); }

.coll-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,8,6,0);
  transition: background 0.4s;
}

.coll-card:hover .coll-img-overlay { background: rgba(10,8,6,0.25); }

.coll-body {
  padding: 28px 24px;
}

.coll-category {
  font-family: var(--font-cinzel);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
}

.coll-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.2;
}

.coll-desc {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.coll-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cinzel);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(197,151,58,0.3);
  transition: all 0.3s;
}

.coll-link:hover { gap: 14px; border-color: var(--gold); }

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-section {
  padding: var(--section-py) 0;
  background: var(--ivory);
}

.gallery-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: var(--font-cinzel);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 10px 24px;
  border: 1px solid var(--border-light);
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--charcoal);
  color: var(--gold);
  border-color: var(--charcoal);
}

.masonry-grid {
  columns: 4;
  column-gap: 12px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.masonry-img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.masonry-item:hover .masonry-img { transform: scale(1.05); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,6,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}

.masonry-item:hover .masonry-overlay { background: rgba(197,151,58,0.3); }

.masonry-zoom {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s;
  color: var(--ivory);
  font-size: 28px;
}

.masonry-item:hover .masonry-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 30px;
  color: var(--ivory);
  font-size: 32px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox-close:hover { opacity: 1; color: var(--gold); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.contact-info-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(197,151,58,0.1);
  border: 1px solid rgba(197,151,58,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-detail-label {
  font-family: var(--font-cinzel);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-detail-value a { color: var(--charcoal); }
.contact-detail-value a:hover { color: var(--gold); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 24px;
  background: var(--charcoal);
  border: 1px solid rgba(197,151,58,0.15);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(197,151,58,0.08);
}

.hours-day {
  font-family: var(--font-cinzel);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: rgba(250,248,243,0.5);
}

.hours-time {
  font-size: 11px;
  color: var(--gold);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  padding: 48px 40px;
  border: 1px solid var(--border-light);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-cinzel);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--ivory);
  border: 1px solid var(--border-light);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: all 0.3s;
  outline: none;
  appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(197,151,58,0.1);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-btn {
  width: 100%;
  padding: 16px;
  background: var(--gold-gradient);
  color: var(--charcoal);
  font-family: var(--font-cinzel);
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.4s;
  text-transform: uppercase;
}

.form-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.map-wrap {
  margin-top: var(--section-py);
  height: 400px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197,151,58,0.15);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(145deg, #1A1510 0%, #251A0F 100%);
}

.map-placeholder-icon { font-size: 48px; color: var(--gold); opacity: 0.6; }

.map-placeholder-text {
  font-family: var(--font-cinzel);
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(250,248,243,0.4);
  text-transform: uppercase;
}

.map-link {
  font-family: var(--font-cinzel);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  border-bottom: 1px solid rgba(197,151,58,0.4);
  padding-bottom: 2px;
  transition: all 0.3s;
}

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

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all 0.3s;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

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

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes counterUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Gold Shimmer on Text */
.text-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 40%, var(--gold) 60%, var(--gold-bright) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 3; }
}

@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .nav-links { gap: 28px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .heritage-grid { gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .collections-page-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 400px; }
  .craft-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-py: 56px; --gutter: 16px; }
  .collections-grid { grid-template-columns: 1fr; }
  .collections-page-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry-grid { columns: 2; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .craft-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
  .hours-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}
