/* ========================================
   Mahi Jewellery — Premium Luxury Styles
   ======================================== */

/* ---------- Variables ---------- */
:root {
  --rose: #B76E79;
  --rose-light: #D4A0A8;
  --rose-glow: rgba(183, 110, 121, 0.35);
  --emerald: #0D4949;
  --emerald-dark: #062828;
  --emerald-light: #1A6B6B;
  --burgundy: #4A0F1A;
  --burgundy-dark: #2A080E;
  --burgundy-light: #6E1A2A;
  --charcoal: #1A1A1E;
  --charcoal-2: #121215;
  --charcoal-3: #26262C;
  --gold: #C9A96E;
  --gold-light: #DFC48A;
  --gold-glow: rgba(201, 169, 110, 0.25);
  --black: #08080A;
  --black-2: #0D0D10;
  --white: #F5F0EB;
  --white-2: #D4CDC4;
  --font-primary: 'Cormorant Garamond', serif;
  --font-secondary: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
  --transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --whatsapp: #25D366;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--rose); color: var(--black); }

/* ---------- Global Background Textures ---------- */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(74, 15, 26, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(13, 73, 73, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(183, 110, 121, 0.03) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}
.bg-marble {
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: .4;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--rose), var(--emerald)); border-radius: 3px; }

/* ---------- Loading Screen ---------- */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal-2) 50%, var(--black) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { position: relative; display: flex; align-items: center; justify-content: center; }
.loader-logo img {
  width: 90px; height: 90px; object-fit: contain; border-radius: 50%;
  filter: drop-shadow(0 0 30px var(--rose-glow)); position: relative; z-index: 1;
  animation: loaderLogoPulse 2s ease-in-out infinite;
}
@keyframes loaderLogoPulse {
  0%, 100% { filter: drop-shadow(0 0 20px var(--rose-glow)); }
  50% { filter: drop-shadow(0 0 50px var(--rose-glow)); }
}
.loader-ring, .loader-ring-2 {
  position: absolute; border-radius: 50%;
}
.loader-ring {
  width: 160px; height: 160px; border: 1px solid rgba(183, 110, 121, 0.15);
  animation: loaderRing 3s linear infinite;
}
.loader-ring-2 {
  width: 200px; height: 200px; border: 1px solid rgba(183, 110, 121, 0.08);
  animation: loaderRing 4s linear infinite reverse;
}
@keyframes loaderRing { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.loader-sub {
  font-family: var(--font-secondary); font-size: .6rem; letter-spacing: 8px;
  color: var(--gold); margin-top: 28px; text-transform: uppercase;
}
.loader-dots { display: flex; gap: 10px; margin-top: 48px; }
.loader-dots span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--rose);
  animation: dotPulse 1.4s ease-in-out infinite both;
}
.loader-dots span:nth-child(1) { animation-delay: -.32s; }
.loader-dots span:nth-child(2) { animation-delay: -.16s; }
.loader-dots span:nth-child(3) { animation-delay: 0s; }
@keyframes dotPulse {
  0%, 80%, 100% { transform: scale(0); opacity: .3; }
  40% { transform: scale(1); opacity: 1; }
}

/* ---------- Navigation ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 50px; display: flex; align-items: center;
  justify-content: space-between; transition: var(--transition); background: transparent;
}
nav.scrolled {
  background: rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(30px) saturate(1.3);
  -webkit-backdrop-filter: blur(30px) saturate(1.3);
  padding: 12px 50px;
  border-bottom: 1px solid rgba(183, 110, 121, 0.1);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
.nav-logo {
  font-family: var(--font-primary); font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 300; letter-spacing: 5px; color: var(--rose);
  text-transform: uppercase; display: flex; align-items: center; gap: 14px;
}
.nav-logo-img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 1.5px solid var(--rose);
  box-shadow: 0 0 20px rgba(183, 110, 121, 0.15);
  transition: var(--transition);
}
.nav-logo:hover .nav-logo-img { box-shadow: 0 0 30px var(--rose-glow); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--font-secondary); font-size: .65rem; font-weight: 400;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--white-2);
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transition: var(--transition);
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--rose), var(--burgundy-light));
  color: var(--white) !important; padding: 12px 28px; border-radius: 2px;
  font-weight: 500 !important; letter-spacing: 2px; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.2);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--rose-light), var(--rose)) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--rose-glow) !important;
}
.nav-cta::after { display: none !important; }

/* ---------- Hamburger ---------- */
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; z-index: 1001; }
.hamburger span {
  width: 28px; height: 1.5px; background: var(--white);
  transition: var(--transition); border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Mobile Nav Overlay ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 36px;
  opacity: 0; visibility: hidden; transition: all .5s ease;
}
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-primary); font-size: 1.8rem;
  color: var(--white); letter-spacing: 4px; transition: var(--transition);
}
.mobile-nav a:hover { color: var(--rose); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  overflow: hidden; padding: 0 60px;
  background: linear-gradient(160deg, var(--black) 0%, var(--charcoal-2) 40%, var(--emerald-dark) 80%, var(--black) 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 40%, rgba(183, 110, 121, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(13, 73, 73, 0.12) 0%, transparent 50%);
  z-index: 0;
}
.hero-overlay {
  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%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='60' height='60' filter='url(%23n)' opacity='.02'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.hero-content {
  position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-text {
  opacity: 0; transform: translateY(50px);
  animation: heroIn 1.5s ease forwards .6s;
}
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
.hero-subtitle {
  font-family: var(--font-secondary); font-size: .7rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px;
}
.hero-subtitle::before {
  content: ''; width: 50px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  font-weight: 400; line-height: 1.08; letter-spacing: 1px; margin-bottom: 20px; color: var(--white);
}
.hero-title .rose { color: var(--rose); font-style: italic; }
.hero-desc {
  font-family: var(--font-secondary); font-size: .85rem; font-weight: 300;
  line-height: 1.9; color: var(--white-2); max-width: 500px; margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 12px; padding: 18px 38px;
  font-family: var(--font-secondary); font-size: .65rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; border: none;
  cursor: pointer; transition: var(--transition); position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0; transition: var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--burgundy-light) 100%);
  color: var(--white); box-shadow: 0 4px 25px var(--rose-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 45px var(--rose-glow); }
.btn-outline {
  border: 1.5px solid var(--gold); color: var(--gold); background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); box-shadow: 0 12px 45px var(--gold-glow); }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; opacity: 0; animation: heroIn 1.5s ease forwards .9s; }
.hero-ring {
  width: clamp(280px, 32vw, 480px); height: clamp(280px, 32vw, 480px);
  border-radius: 50%; border: 1px solid rgba(183, 110, 121, 0.12);
  position: relative; display: flex; align-items: center; justify-content: center;
  animation: ringPulse 5s ease-in-out infinite;
}
.hero-ring::before {
  content: ''; position: absolute; inset: -20px; border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.06); animation: ringRotate 20s linear infinite;
}
@keyframes ringRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.hero-ring-inner {
  width: clamp(200px, 24vw, 380px); height: clamp(200px, 24vw, 380px);
  border-radius: 50%; border: 1px solid rgba(183, 110, 121, 0.1);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-ring-inner::after {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px dashed rgba(201, 169, 110, 0.08);
  animation: ringRotate 30s linear infinite reverse;
}
.hero-ring-center {
  width: clamp(120px, 16vw, 250px); height: clamp(120px, 16vw, 250px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.12) 0%, rgba(13, 73, 73, 0.06) 50%, transparent 100%);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.hero-logo-img {
  width: clamp(70px, 9vw, 140px); height: clamp(70px, 9vw, 140px);
  object-fit: contain; border-radius: 50%;
  filter: drop-shadow(0 0 30px var(--rose-glow)) drop-shadow(0 0 60px rgba(201, 169, 110, 0.1));
}
@keyframes ringPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gold); font-family: var(--font-secondary); font-size: .55rem;
  letter-spacing: 4px; text-transform: uppercase; animation: scrollBounce 2.5s infinite;
}
.hero-scroll .line { width: 1px; height: 50px; background: linear-gradient(180deg, var(--gold), transparent); }
@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Light Rays */
.light-ray {
  position: absolute; width: 1px; height: 200%;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: .03; transform: rotate(25deg);
  animation: rayMove 8s linear infinite; pointer-events: none; z-index: 0;
}
@keyframes rayMove {
  0% { transform: rotate(25deg) translateY(-50%); }
  100% { transform: rotate(25deg) translateY(50%); }
}

/* ---------- Sparkle Particles ---------- */
.sparkle { position: absolute; pointer-events: none; z-index: 1; }
.sparkle::before {
  content: '✦'; font-size: inherit; color: var(--gold);
  opacity: 0; animation: sparkleFade 3s ease-in-out infinite; display: block;
}
@keyframes sparkleFade {
  0%, 100% { opacity: 0; transform: scale(.3) rotate(0deg); }
  30% { opacity: .8; transform: scale(1) rotate(180deg); }
  60% { opacity: .4; transform: scale(.7) rotate(360deg); }
}

/* ---------- Cursor Glow ---------- */
.cursor-glow {
  position: fixed; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.03) 0%, transparent 70%);
  pointer-events: none; z-index: 0; transform: translate(-50%, -50%);
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ---------- Section Common ---------- */
.section { padding: 130px 60px; position: relative; z-index: 1; }
.section-dark { background: linear-gradient(180deg, var(--charcoal-2) 0%, var(--black-2) 100%); }
.section-black { background: var(--black); }
.section-emerald { background: linear-gradient(160deg, var(--emerald-dark) 0%, var(--black) 50%, var(--charcoal-2) 100%); }
.section-header { text-align: center; margin-bottom: 80px; opacity: 0; transform: translateY(30px); transition: all .8s ease; }
.section-header.visible { opacity: 1; transform: translateY(0); }
.section-tag {
  font-family: var(--font-secondary); font-size: .6rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.section-tag::before, .section-tag::after {
  content: ''; width: 50px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 400; letter-spacing: 1px; color: var(--white);
  margin-bottom: 16px; line-height: 1.15;
}
.section-subtitle {
  font-family: var(--font-secondary); font-size: .8rem; font-weight: 300;
  color: var(--white-2); max-width: 620px; margin: 0 auto; line-height: 1.9;
}
.container { max-width: 1400px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; opacity: 0; transform: translateX(-40px); transition: all .9s ease; }
.about-visual.visible { opacity: 1; transform: translateX(0); }
.about-image-wrap {
  position: relative; overflow: hidden;
  border: 1px solid rgba(183, 110, 121, 0.1);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}
.about-image-wrap img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  display: block; transition: var(--transition);
}
.about-image-wrap:hover img { transform: scale(1.03); }
.about-image-wrap::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(183, 110, 121, 0.08); transition: var(--transition);
  pointer-events: none;
}
.about-image-wrap:hover::after { inset: 16px; border-color: rgba(183, 110, 121, 0.2); }
.about-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.6), transparent 40%);
  pointer-events: none;
}
.about-badge {
  position: absolute; bottom: -8px; right: -8px; width: 130px; height: 130px;
  background: linear-gradient(135deg, var(--rose), var(--burgundy));
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  color: var(--white); box-shadow: 0 8px 30px rgba(183, 110, 121, 0.3);
}
.about-badge strong { font-size: 2.2rem; font-weight: 600; line-height: 1; font-family: var(--font-display); }
.about-badge span { font-size: .6rem; letter-spacing: 3px; text-transform: uppercase; font-family: var(--font-secondary); margin-top: 4px; }
.about-text { opacity: 0; transform: translateX(40px); transition: all .9s ease; }
.about-text.visible { opacity: 1; transform: translateX(0); }
.about-text .section-tag { justify-content: flex-start; }
.about-text .section-tag::after { display: none; }
.about-text .section-title { text-align: left; }
.about-text p { font-family: var(--font-secondary); font-size: .82rem; font-weight: 300; line-height: 2; color: var(--white-2); margin-bottom: 20px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.about-stat {
  text-align: center; padding: 24px 16px;
  border: 1px solid rgba(183, 110, 121, 0.08);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}
.about-stat:hover { border-color: var(--rose); background: rgba(183, 110, 121, 0.06); transform: translateY(-4px); }
.about-stat strong { display: block; font-size: 2rem; color: var(--gold); font-weight: 400; font-family: var(--font-display); }
.about-stat span { font-family: var(--font-secondary); font-size: .6rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white-2); }

/* ---------- Collections ---------- */
.collections-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.collection-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: linear-gradient(160deg, var(--charcoal-3), var(--charcoal-2));
  aspect-ratio: 3/4; display: flex; align-items: flex-end;
  opacity: 0; transform: translateY(30px); transition: all .8s ease;
  border: 1px solid rgba(183, 110, 121, 0.05);
}
.collection-card.visible { opacity: 1; transform: translateY(0); }
.collection-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: var(--transition);
}
.collection-card:hover img { transform: scale(1.08); }
.collection-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.95) 0%, rgba(8, 8, 10, 0.4) 30%, transparent 100%);
  transition: var(--transition);
}
.collection-card:hover .collection-card-overlay {
  background: linear-gradient(to top, rgba(183, 110, 121, 0.25) 0%, rgba(8, 8, 10, 0.5) 30%, transparent 100%);
}
.collection-card:hover {
  border-color: rgba(183, 110, 121, 0.15); transform: translateY(-4px) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.collection-card-content {
  position: relative; z-index: 2; padding: 40px 30px;
  width: 100%; transform: translateY(20px); transition: var(--transition);
}
.collection-card:hover .collection-card-content { transform: translateY(0); }
.collection-card-number { font-family: var(--font-secondary); font-size: .55rem; letter-spacing: 3px; color: var(--gold); margin-bottom: 8px; }
.collection-card-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; letter-spacing: .5px; color: var(--white); margin-bottom: 8px; }
.collection-card-desc {
  font-family: var(--font-secondary); font-size: .72rem; font-weight: 300;
  color: var(--white-2); line-height: 1.7; max-width: 280px;
  opacity: 0; transform: translateY(10px); transition: all .5s ease .1s;
}
.collection-card:hover .collection-card-desc { opacity: 1; transform: translateY(0); }
.collection-card-line { width: 40px; height: 1.5px; background: linear-gradient(90deg, var(--rose), var(--gold)); margin-top: 14px; transition: var(--transition); }
.collection-card:hover .collection-card-line { width: 80px; }

/* ---------- Gallery / Slider ---------- */
.gallery-section { overflow: hidden; }
.gallery-slider-container {
  position: relative; max-width: 1400px; margin: 0 auto;
  overflow: hidden;
}
.gallery-slider-track {
  display: flex; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-slide {
  min-width: 33.333%; padding: 0 8px; box-sizing: border-box;
  aspect-ratio: 4/3; overflow: hidden; position: relative; cursor: pointer;
}
.gallery-slide img {
  width: 100%; height: 100%; object-fit: contain; transition: var(--transition);
  background: var(--black);
}
.gallery-slide:hover img { transform: scale(1.08); }
.gallery-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(183, 110, 121, 0.2), rgba(13, 73, 73, 0.2));
  opacity: 0; transition: var(--transition); display: flex;
  align-items: center; justify-content: center;
}
.gallery-slide:hover .gallery-slide-overlay { opacity: 1; }
.gallery-slide-overlay span {
  font-family: var(--font-secondary); font-size: .65rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--white);
  border: 1px solid var(--white); padding: 12px 28px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.gallery-slide.featured { min-width: 66.666%; aspect-ratio: auto; }

.gallery-controls {
  display: flex; justify-content: center; gap: 14px; margin-top: 40px;
}
.gallery-arrow {
  width: 52px; height: 52px; border: 1px solid rgba(183, 110, 121, 0.15);
  background: transparent; color: var(--rose); cursor: pointer;
  transition: var(--transition); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem;
}
.gallery-arrow:hover {
  background: var(--rose); color: var(--black); border-color: var(--rose);
  box-shadow: 0 8px 25px var(--rose-glow);
}
.gallery-dots {
  display: flex; justify-content: center; gap: 10px; margin-top: 20px;
}
.gallery-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(183, 110, 121, 0.2); border: none;
  cursor: pointer; transition: var(--transition);
}
.gallery-dot.active { background: var(--rose); width: 28px; border-radius: 4px; box-shadow: 0 0 15px var(--rose-glow); }

/* ---------- Testimonials ---------- */
.testimonials-slider { overflow: hidden; position: relative; padding: 0 40px; }
.testimonials-track {
  display: flex; gap: 30px;
  transition: transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 20px 0;
}
.testimonial-card {
  min-width: calc(33.333% - 20px); padding: 50px 40px;
  background: linear-gradient(160deg, rgba(38, 38, 44, 0.6), rgba(18, 18, 21, 0.8));
  border: 1px solid rgba(183, 110, 121, 0.06); position: relative;
  opacity: 0; transform: translateY(20px); transition: all .8s ease;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; left: 28px; font-size: 5rem;
  color: var(--rose); opacity: .15; font-family: var(--font-primary); line-height: 1;
}
.testimonial-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent); opacity: .3;
}
.testimonial-stars { color: var(--gold); font-size: .85rem; margin-bottom: 16px; letter-spacing: 5px; }
.testimonial-text { font-family: var(--font-secondary); font-size: .82rem; font-weight: 300; line-height: 1.9; color: var(--white-2); margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-primary); font-size: 1.3rem; color: var(--black); font-weight: 600;
}
.testimonial-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; color: var(--white); }
.testimonial-role { font-family: var(--font-secondary); font-size: .6rem; letter-spacing: 3px; color: var(--rose); text-transform: uppercase; margin-top: 2px; }
.testimonial-controls { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.testimonial-btn {
  width: 48px; height: 48px; border: 1px solid rgba(183, 110, 121, 0.15);
  background: transparent; color: var(--rose); cursor: pointer;
  transition: var(--transition); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem;
}
.testimonial-btn:hover { background: var(--rose); color: var(--black); border-color: var(--rose); box-shadow: 0 8px 25px var(--rose-glow); }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(183, 110, 121, 0.2); border: none;
  cursor: pointer; transition: var(--transition);
}
.testimonial-dot.active { background: var(--rose); width: 28px; border-radius: 4px; box-shadow: 0 0 15px var(--rose-glow); }

/* ---------- Craftsmanship ---------- */
.craftsmanship-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.craft-item {
  padding: 50px 30px; border: 1px solid rgba(183, 110, 121, 0.06);
  background: linear-gradient(160deg, rgba(38, 38, 44, 0.3), transparent);
  opacity: 0; transform: translateY(30px); transition: all .8s ease; position: relative;
}
.craft-item.visible { opacity: 1; transform: translateY(0); }
.craft-item:hover { border-color: rgba(183, 110, 121, 0.15); transform: translateY(-6px) !important; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); }
.craft-item::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 50px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent); opacity: .5;
}
.craft-icon { font-size: 2.8rem; margin-bottom: 20px; display: inline-block; filter: drop-shadow(0 0 15px rgba(183, 110, 121, 0.15)); }
.craft-number { font-family: var(--font-secondary); font-size: .55rem; letter-spacing: 4px; color: var(--gold); margin-bottom: 12px; }
.craft-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; margin-bottom: 14px; color: var(--white); letter-spacing: .5px; }
.craft-desc { font-family: var(--font-secondary); font-size: .78rem; font-weight: 300; line-height: 1.9; color: var(--white-2); max-width: 320px; margin: 0 auto; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info { opacity: 0; transform: translateY(30px); transition: all .8s ease; }
.contact-info.visible { opacity: 1; transform: translateY(0); }
.contact-info .section-tag { justify-content: flex-start; }
.contact-info .section-tag::after { display: none; }
.contact-info .section-title { text-align: left; }
.contact-details { margin-top: 40px; display: grid; gap: 20px; }
.contact-detail {
  display: flex; align-items: center; gap: 20px; padding: 24px;
  border: 1px solid rgba(183, 110, 121, 0.06);
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}
.contact-detail:hover { border-color: var(--rose); background: rgba(183, 110, 121, 0.04); transform: translateX(4px); }
.contact-detail-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(183, 110, 121, 0.12), rgba(13, 73, 73, 0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
  border: 1px solid rgba(183, 110, 121, 0.08);
}
.contact-detail-text strong { display: block; font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: 4px; font-family: var(--font-display); }
.contact-detail-text span { font-family: var(--font-secondary); font-size: .78rem; font-weight: 300; color: var(--white-2); }
.contact-cta { margin-top: 36px; }
.contact-cta .btn { width: 100%; justify-content: center; padding: 20px; }
.contact-form { opacity: 0; transform: translateY(30px); transition: all .8s ease; }
.contact-form.visible { opacity: 1; transform: translateY(0); }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 18px 22px;
  background: rgba(38, 38, 44, 0.4);
  border: 1px solid rgba(183, 110, 121, 0.08); color: var(--white);
  font-family: var(--font-secondary); font-size: .82rem;
  transition: var(--transition); outline: none;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--rose); background: rgba(8, 8, 10, 0.6);
  box-shadow: 0 0 25px rgba(183, 110, 121, 0.08);
}
.form-group textarea { height: 140px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--charcoal-2); color: var(--white); }
.form-group .btn { width: 100%; justify-content: center; padding: 18px; }

/* ---------- Footer ---------- */
footer {
  background: linear-gradient(180deg, var(--charcoal-2) 0%, var(--black) 100%);
  padding: 90px 60px 0;
  border-top: 1px solid rgba(183, 110, 121, 0.04);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; max-width: 1400px; margin: 0 auto; }
.footer-brand .nav-logo { margin-bottom: 16px; font-size: 1.4rem; }
.footer-brand p { font-family: var(--font-secondary); font-size: .78rem; font-weight: 300; line-height: 1.9; color: var(--white-2); max-width: 340px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 46px; height: 46px; border: 1px solid rgba(183, 110, 121, 0.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 1rem; color: var(--white-2);
  background: rgba(255, 255, 255, 0.02);
}
.footer-social a:hover {
  background: linear-gradient(135deg, var(--rose), var(--burgundy));
  border-color: transparent; color: var(--white); transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--rose-glow);
}
.footer-col h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; margin-bottom: 24px; color: var(--white); letter-spacing: .5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul a { font-family: var(--font-secondary); font-size: .75rem; font-weight: 300; color: var(--white-2); transition: var(--transition); display: inline-block; }
.footer-col ul a:hover { color: var(--rose); padding-left: 6px; }
.footer-bottom { text-align: center; padding: 30px 0; margin-top: 60px; border-top: 1px solid rgba(183, 110, 121, 0.04); font-family: var(--font-secondary); font-size: .65rem; letter-spacing: 2px; color: var(--white-2); }
.footer-bottom .rose { color: var(--rose); }

/* ---------- WhatsApp Button ---------- */
.whatsapp-btn {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer; border: none;
  animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}
.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 45px rgba(37, 211, 102, 0.7); }
}

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: all .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  nav { padding: 20px 30px; }
  nav.scrolled { padding: 12px 30px; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-buttons { justify-content: center; }
  .hero-subtitle { justify-content: center; }
  .hero-subtitle::before { display: none; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .craftsmanship-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .testimonial-card { min-width: calc(50% - 15px); }
  .testimonials-slider { padding: 0; }
  .section { padding: 100px 30px; }
  .gallery-slide { min-width: 50%; }
  .gallery-slide.featured { min-width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 80px 20px; }
  nav { padding: 16px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 0 20px; text-align: center; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .collections-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .craftsmanship-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: calc(100% - 0px); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { grid-template-columns: 1fr; }
  .about-badge { width: 100px; height: 100px; bottom: -4px; right: -4px; }
  .about-badge strong { font-size: 1.6rem; }
  .testimonial-card { padding: 35px 25px; }
  .nav-logo-img { width: 36px; height: 36px; }
  .footer-social a { width: 40px; height: 40px; }
  .gallery-slide { min-width: 100%; }
  .gallery-slide.featured { min-width: 100%; }
  .whatsapp-btn { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .whatsapp-btn svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .hero-title { font-size: 1.8rem; }
  .collection-card { aspect-ratio: 4/5; }
  .hero-subtitle { font-size: .55rem; letter-spacing: 3px; }
  .btn { padding: 14px 22px; font-size: .6rem; }
  .section-tag { font-size: .55rem; }
  .contact-detail { padding: 16px; }
  nav { padding: 12px 16px; }
  .about-badge { width: 80px; height: 80px; }
  .about-badge strong { font-size: 1.3rem; }
}
