:root {
  --gold: #C9A84C;
  --gold-dark: #A8882F;
  --gold-light: #E8D5A3;
  --rose-gold: #D4A0A0;
  --rose-gold-light: #F0D6D6;
  --pearl: #FFF8F0;
  --white: #FFFFFF;
  --off-white: #FAF6F2;
  --charcoal: #2C2C2C;
  --black: #1A1A1A;
  --text: #3A3A3A;
  --text-light: #7A7A7A;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Montserrat', sans-serif;
  --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 4px 40px rgba(0,0,0,0.08);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Preloader */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo { font-family: var(--font-heading); font-size: 2.5rem; color: var(--gold); letter-spacing: 6px; font-weight: 400; }
.preloader-line {
  width: 60px; height: 1px; background: var(--gold); margin: 20px auto;
  animation: loaderLine 1.5s ease-in-out infinite;
}
@keyframes loaderLine {
  0% { width: 60px; opacity: 0.3; }
  50% { width: 180px; opacity: 1; }
  100% { width: 60px; opacity: 0.3; }
}

/* Navigation */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}
nav.scrolled {
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}
.nav-logo {
  font-family: var(--font-heading); font-size: 1.8rem; color: var(--gold);
  letter-spacing: 4px; text-decoration: none; font-weight: 400;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none; color: var(--white);
  transition: color 0.3s ease; font-weight: 400;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--black) !important;
  padding: 10px 28px; border-radius: 0;
  transition: all 0.3s ease !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.hamburger span {
  width: 28px; height: 1.5px; background: var(--gold);
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Hero Slider */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  overflow: hidden;
}
.hero-slider {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.3) 50%, rgba(26,26,26,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 3;
  height: 100%; display: flex; align-items: center;
  max-width: 1400px; margin: 0 auto; padding: 0 60px;
}
.hero-text { max-width: 720px; }
.hero-subtitle {
  font-family: var(--font-ui); font-size: 0.75rem; letter-spacing: 6px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; font-weight: 300;
  opacity: 0; transform: translateY(20px);
  transition: all 0.8s ease 0.3s;
}
.hero-slide.active .hero-subtitle { opacity: 1; transform: translateY(0); }
.hero-title {
  font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 7rem);
  color: var(--white); font-weight: 400; line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s ease 0.5s;
}
.hero-slide.active .hero-title { opacity: 1; transform: translateY(0); }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 1.3rem; color: rgba(255,255,255,0.7);
  max-width: 520px; line-height: 1.7; margin-bottom: 40px;
  font-weight: 300;
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s ease 0.7s;
}
.hero-slide.active .hero-desc { opacity: 1; transform: translateY(0); }
.hero-btns {
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s ease 0.9s;
}
.hero-slide.active .hero-btns { opacity: 1; transform: translateY(0); }
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }
.btn {
  font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none; padding: 16px 40px;
  transition: all 0.4s ease; display: inline-block; font-weight: 500;
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--gold); color: var(--black);
}
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.3); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-dots {
  position: absolute; bottom: 100px; right: 60px; z-index: 3;
  display: flex; gap: 12px;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent; cursor: pointer;
  transition: all 0.3s ease; padding: 0;
}
.hero-dot.active { background: var(--gold); border-color: var(--gold); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,0.4);
  font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 3px;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll i { font-size: 0.8rem; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 9998;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 35px rgba(37,211,102,0.7); }
}

/* Section base */
.section {
  padding: 120px 60px;
  max-width: 1400px; margin: 0 auto;
}
.section-label {
  font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; font-weight: 400;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--charcoal); font-weight: 400; line-height: 1.2;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.2rem; color: var(--text-light);
  max-width: 600px; line-height: 1.8;
}
.section-header { text-align: center; margin-bottom: 80px; }
.section-header .section-desc { margin-left: auto; margin-right: auto; }

/* Brand Story */
.story-section { background: var(--off-white); }
.story-inner {
  max-width: 1400px; margin: 0 auto; padding: 120px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.story-image { position: relative; height: 500px; overflow: hidden; }
.story-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.story-image:hover img { transform: scale(1.05); }
.story-image::before {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.15);
  z-index: 1;
}
.story-content .section-title { margin-bottom: 24px; }
.story-content p {
  font-size: 1.15rem; line-height: 1.9; color: var(--text-light);
  margin-bottom: 20px;
}
.story-signature {
  font-family: var(--font-heading); font-size: 1.2rem; color: var(--gold);
  font-style: italic; margin-top: 30px;
}

/* Featured Collections */
.collections-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.collection-card {
  position: relative; overflow: hidden; cursor: pointer;
  height: 480px; background: var(--black);
}
.collection-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
  opacity: 0.7;
}
.collection-card:hover img { transform: scale(1.08); }
.collection-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px;
  transition: all 0.4s ease;
}
.collection-card:hover .collection-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
}
.collection-overlay h3 {
  font-family: var(--font-heading); font-size: 1.6rem; color: var(--white);
  font-weight: 400; margin-bottom: 6px;
}
.collection-overlay p {
  font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.collection-link {
  font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--white); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s ease;
}
.collection-card:hover .collection-link { opacity: 1; transform: translateY(0); }
.collection-link:hover { color: var(--gold); }

/* New Arrivals */
.arrivals-section { background: var(--off-white); padding: 120px 60px; }
.arrivals-wrapper { max-width: 1400px; margin: 0 auto; }
.arrivals-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.arrival-item {
  position: relative; overflow: hidden;
  cursor: pointer; background: var(--white);
}
.arrival-img {
  height: 340px; overflow: hidden; position: relative;
}
.arrival-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.arrival-item:hover .arrival-img img { transform: scale(1.06); }
.arrival-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--black);
  font-family: var(--font-ui); font-size: 0.55rem; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 14px; font-weight: 500;
}
.arrival-info { padding: 20px 24px 24px; }
.arrival-info h4 {
  font-family: var(--font-heading); font-size: 1.1rem; color: var(--charcoal);
  font-weight: 400; margin-bottom: 4px;
}
.arrival-info .category {
  font-family: var(--font-ui); font-size: 0.55rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 8px;
}
.arrival-info .price {
  font-family: var(--font-heading); font-size: 1.2rem; color: var(--gold-dark);
}
.arrival-wishlist {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s ease;
  color: var(--text-light);
}
.arrival-wishlist:hover { background: var(--gold); color: var(--white); }

/* Craftsmanship */
.craft-section { background: var(--black); }
.craft-section .section-title { color: var(--white); }
.craft-section .section-desc { color: rgba(255,255,255,0.6); }
.craft-section .section-label { color: var(--rose-gold); }
.craft-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  max-width: 1400px; margin: 0 auto; padding: 0 60px 120px;
}
.craft-card { text-align: center; padding: 40px 24px; }
.craft-icon {
  width: 80px; height: 80px; margin: 0 auto 24px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--rose-gold);
  transition: all 0.4s ease;
}
.craft-card:hover .craft-icon {
  border-color: var(--rose-gold); background: rgba(212,160,160,0.1);
  transform: translateY(-4px);
}
.craft-card h4 {
  font-family: var(--font-heading); font-size: 1.2rem;
  color: var(--white); font-weight: 400; margin-bottom: 10px;
}
.craft-card p {
  font-size: 1rem; color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* Custom Jewelry */
.custom-section { background: linear-gradient(135deg, var(--off-white) 0%, var(--pearl) 100%); }
.custom-content { text-align: center; max-width: 800px; margin: 0 auto; }
.custom-content .section-desc { margin: 0 auto 40px; }
.custom-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  margin: 60px 0;
  text-align: left;
}
.custom-step { position: relative; padding-left: 40px; }
.custom-step-num {
  position: absolute; left: 0; top: 0;
  font-family: var(--font-heading); font-size: 2.5rem;
  color: var(--gold); font-weight: 400; line-height: 1;
  opacity: 0.5;
}
.custom-step h5 {
  font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--charcoal);
  margin-bottom: 8px; padding-top: 4px;
}
.custom-step p {
  font-size: 1rem; color: var(--text-light); line-height: 1.7;
}

/* Testimonials */
.testimonials {
  background: var(--off-white); overflow: hidden;
  padding: 120px 60px;
}
.testimonials-inner { max-width: 1400px; margin: 0 auto; position: relative; }
.testimonial-track {
  display: flex; gap: 30px;
  transition: transform 0.6s ease;
  margin-top: 60px;
}
.testimonial-card {
  min-width: calc(33.333% - 20px); padding: 40px;
  background: var(--white); position: relative;
  border: 1px solid rgba(0,0,0,0.04);
  flex-shrink: 0;
}
.testimonial-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 1.1rem; line-height: 1.8; color: var(--text);
  font-style: italic; margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-author img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
}
.testimonial-author h5 {
  font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--charcoal);
}
.testimonial-author span {
  font-size: 0.9rem; color: var(--text-light);
}
.testimonial-nav {
  display: flex; justify-content: center; gap: 12px; margin-top: 40px;
}
.testimonial-nav button {
  width: 44px; height: 44px; border: 1px solid rgba(0,0,0,0.1);
  background: var(--white); cursor: pointer;
  transition: all 0.3s ease; font-size: 1rem; color: var(--charcoal);
}
.testimonial-nav button:hover { border-color: var(--gold); color: var(--gold); }

/* Stats */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(0,0,0,0.06); margin: 0;
}
.stat-item {
  background: var(--white); text-align: center; padding: 60px 24px;
}
.stat-item .num {
  font-family: var(--font-heading); font-size: 3rem; color: var(--gold);
  font-weight: 400;
}
.stat-item .label {
  font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-light); margin-top: 8px;
}

/* Contact */
.contact-section { background: var(--black); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-desc { color: rgba(255,255,255,0.6); }
.contact-grid {
  max-width: 1400px; margin: 0 auto; padding: 120px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-info h3 {
  font-family: var(--font-heading); font-size: 2rem; color: var(--white);
  font-weight: 400; margin-bottom: 20px;
}
.contact-info p {
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
  line-height: 1.8; margin-bottom: 30px;
}
.contact-detail {
  display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start;
}
.contact-detail i {
  color: var(--gold); font-size: 1.2rem; width: 24px; text-align: center;
  margin-top: 3px;
}
.contact-detail span {
  color: rgba(255,255,255,0.7); font-size: 1.05rem;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--font-body); font-size: 1rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px; color: var(--white); outline: none;
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold); background: rgba(255,255,255,0.08);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.contact-form select { color: rgba(255,255,255,0.5); cursor: pointer; }
.contact-form select option { color: var(--black); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { width: 100%; padding: 18px; font-size: 0.75rem; }
.form-success {
  display: none; text-align: center; padding: 40px;
  border: 1px solid rgba(201,168,76,0.3);
}
.form-success i { font-size: 3rem; color: var(--gold); margin-bottom: 16px; }
.form-success h4 { font-family: var(--font-heading); color: var(--white); font-size: 1.5rem; font-weight: 400; margin-bottom: 8px; }
.form-success p { color: rgba(255,255,255,0.6); }

/* Footer */
footer {
  background: #111; padding: 80px 60px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
}
.footer-brand .nav-logo { font-size: 1.5rem; }
.footer-brand p {
  color: rgba(255,255,255,0.4); font-size: 1rem; line-height: 1.7;
  margin-top: 16px; max-width: 360px;
}
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.4); text-decoration: none;
  font-size: 1rem; margin-bottom: 10px; transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1400px; margin: 60px auto 0;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between;
  font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
}

/* Scroll Animations */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Responsive */
@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .arrivals-grid { grid-template-columns: repeat(2, 1fr); }
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: calc(50% - 15px); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-image { height: 350px; }
  nav { padding: 20px 30px; }
  nav.scrolled { padding: 14px 30px; }
  .section { padding: 80px 30px; }
  .story-inner { padding: 80px 30px; }
  .arrivals-section { padding: 80px 30px; }
  .testimonials { padding: 80px 30px; }
  .contact-grid { padding: 80px 30px; }
  .craft-grid { padding: 0 30px 80px; }
  .craft-section .section { padding-bottom: 40px; }
  footer { padding: 60px 30px 30px; }
  .hero-content { padding: 0 30px; }
  .hero-dots { right: 30px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,26,26,0.98); backdrop-filter: blur(30px);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 32px; z-index: -1;
  }
  .nav-links.mobile-open a { font-size: 0.9rem; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-desc { font-size: 1.05rem; }
  .hero-btns { flex-direction: column; }
  .btn { text-align: center; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card { height: 380px; }
  .arrivals-grid { grid-template-columns: 1fr; }
  .arrival-img { height: 280px; }
  .craft-grid { grid-template-columns: 1fr; gap: 0; }
  .custom-steps { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 100%; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 40px 16px; }
  .stat-item .num { font-size: 2.2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .story-image { height: 280px; }
  .hero-dots { display: none; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.3rem; bottom: 20px; right: 20px; }
}
@media (max-width: 480px) {
  nav { padding: 16px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .nav-logo { font-size: 1.3rem; }
  .hero-content { padding: 0 20px; }
  .section { padding: 60px 20px; }
  .arrivals-section { padding: 60px 20px; }
  .story-inner { padding: 60px 20px; }
  .testimonials { padding: 60px 20px; }
  .contact-grid { padding: 60px 20px; }
  .craft-grid { padding: 0 20px 60px; }
  footer { padding: 40px 20px 80px; }
  .section-header { margin-bottom: 50px; }
}

/* AI Image Loading Shimmer */
.ai-loading {
  position: relative;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.hero-slide.ai-loading, .collection-card.ai-loading, .arrival-img.ai-loading {
  background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
  background-size: 200% 100%;
}
.arrival-img.ai-loading { min-height: 340px; }
.collection-card.ai-loading { min-height: 480px; }

/* AI Generated Badge */
.ai-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: 0.55rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 4px 12px;
}
.ai-badge i { font-size: 0.65rem; }
.ai-regenerate {
  font-family: var(--font-ui); font-size: 0.5rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  background: none; border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px; cursor: pointer; transition: all 0.3s;
  margin-top: 8px;
}
.ai-regenerate:hover { border-color: var(--gold); color: var(--gold); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.5);
}
.nav-overlay.active { display: block; }