/* =========================================================
   RIMJHIM SAREES — LUXURY STYLESHEET
   Design tokens, base, layout, and reusable components
   ========================================================= */

:root {
  /* Colors */
  --white: #FFFFFF;
  --ivory: #F8F5F0;
  --burgundy: #8B1E3F;
  --burgundy-dark: #6B1630;
  --gold: #C9A227;
  --gold-light: #E4C860;
  --black: #1A1A1A;
  --gray-dark: #3A3A3A;
  --gray: #6E6E6E;
  --gray-light: #E9E5DD;
  --border-hairline: rgba(139, 30, 63, 0.12);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 8rem);
  --container-w: 1240px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;

  /* Shadows */
  --shadow-soft: 0 10px 40px rgba(26, 26, 26, 0.06);
  --shadow-card: 0 20px 60px rgba(139, 30, 63, 0.08);
  --shadow-lift: 0 30px 70px rgba(139, 30, 63, 0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--white);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--gold-light); color: var(--black); }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--black);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* Signature gold zari-border divider */
.zari-divider {
  position: relative;
  width: 120px;
  height: 14px;
  margin: 1.1rem 0 1.8rem;
}
.zari-divider svg { width: 100%; height: 100%; overflow: visible; }
.zari-divider path {
  stroke: var(--gold);
  stroke-width: 1.4;
  fill: none;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawZari 1.4s var(--ease) forwards;
  animation-delay: 0.3s;
}
.zari-divider circle {
  fill: var(--burgundy);
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 1.4s;
}
@keyframes drawZari { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--section-pad) auto;
  margin-bottom: 3.5rem;
}
.section-head .zari-divider { margin-left: auto; margin-right: auto; }
.section-head p { color: var(--gray); font-size: 1.02rem; }

section { padding: var(--section-pad) 0; }
.bg-ivory { background: var(--ivory); }

/* =========================================================
   BUTTONS (with ripple)
   ========================================================= */

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(139, 30, 63, 0.28);
}
.btn-primary:hover { background: var(--burgundy-dark); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(139, 30, 63, 0.35); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.4px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); transform: translateY(-3px); }

.btn-outline.on-dark { color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline.on-dark:hover { background: var(--white); color: var(--black); }

.btn-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  color: var(--black);
  box-shadow: 0 12px 30px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(201, 162, 39, 0.45); }

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(3.5); opacity: 0; } }

/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.navbar.solid {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  padding: 0.9rem 0;
}
.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.4px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--burgundy);
  font-size: 1.1rem;
  background: var(--white);
}
.navbar.solid .brand-mark,
.navbar:not(.solid) .brand-mark { transition: all var(--dur) var(--ease); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.02em;
  transition: color var(--dur) ease;
}
.brand-text .tag {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--dur) ease;
}
.navbar:not(.solid) .brand-text .name { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--dur) ease;
}
.navbar:not(.solid) .nav-links a { color: var(--white); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--burgundy); }
.navbar:not(.solid) .nav-links a.active { color: var(--gold-light); }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.ig-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.4px solid var(--gold);
  color: var(--burgundy);
  transition: all var(--dur) var(--ease);
}
.navbar:not(.solid) .ig-btn { color: var(--white); border-color: rgba(255,255,255,0.6); }
.ig-btn:hover { background: var(--gold); color: var(--white); transform: rotate(12deg) scale(1.08); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav-toggle span {
  height: 2px; background: var(--black); border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.navbar:not(.solid) .nav-toggle span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */

.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  animation: floatPulse 2.6s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7); }
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,10,15,0.55) 0%, rgba(20,10,15,0.45) 40%, rgba(20,10,15,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 1.5rem;
}
.hero-content .eyebrow { color: var(--gold-light); justify-content: center; }
.hero-content .eyebrow::before { display: none; }
.hero-content h1 {
  color: var(--white);
  overflow: hidden;
}
.hero-content h1 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: heroLineUp 0.9s var(--ease) forwards;
}
.hero-content h1 span:nth-child(1) { animation-delay: 0.2s; }
.hero-content h1 span:nth-child(2) { animation-delay: 0.4s; }
@keyframes heroLineUp { to { opacity: 1; transform: translateY(0); } }

.hero-content .zari-divider { margin-left: auto; margin-right: auto; }
.hero-sub {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.4rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) forwards;
  animation-delay: 0.9s;
}
.hero-btns {
  display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) forwards;
  animation-delay: 1.1s;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.75);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Page (inner) hero, smaller, for About/Collections/Gallery/Contact */
.page-hero {
  position: relative;
  height: 56vh;
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.page-hero .hero-bg { animation: none; transform: scale(1.02); }
.page-hero .hero-content h1 span { animation-delay: 0.15s; }
.page-hero .hero-content { max-width: 700px; }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */

.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-zoom { opacity: 0; transform: scale(0.94); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-zoom.in-view { opacity: 1; transform: scale(1); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-left.in-view { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-right.in-view { opacity: 1; transform: translateX(0); }
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* =========================================================
   ABOUT / STATS
   ========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-images img {
  border-radius: 18px;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-card);
}
.about-images .img-tall { grid-row: span 2; height: 100%; aspect-ratio: 3/4.4; }
.about-images .img-small { aspect-ratio: 4/3; }
.about-images .floaty { animation: floatY 5s ease-in-out infinite; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.exp-badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lift);
}
.exp-badge .num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.exp-badge .lbl { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; }

.about-text p { margin-bottom: 1.3rem; color: var(--gray); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat-card {
  text-align: center;
  padding: 1.8rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-hairline);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.stat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.stat-card .num { font-family: var(--font-display); font-size: 2.3rem; color: var(--burgundy); font-weight: 700; }
.stat-card .lbl { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--gray); margin-top: 0.4rem; }

/* =========================================================
   COLLECTIONS — GLASS CARDS
   ========================================================= */

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.collection-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.collection-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lift); }
.collection-card .img-wrap { overflow: hidden; aspect-ratio: 4/5; }
.collection-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.collection-card:hover .img-wrap img { transform: scale(1.12); }
.collection-card .glass-info {
  position: relative;
  padding: 1.6rem 1.5rem 1.8rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-hairline);
}
.collection-card .glass-info h3 { margin-bottom: 0.4rem; }
.collection-card .glass-info p { font-size: 0.9rem; color: var(--gray); margin-bottom: 1.1rem; }
.collection-card .card-link {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--burgundy); font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: gap var(--dur) var(--ease);
}
.collection-card .card-link:hover { gap: 0.9rem; }
.collection-card .tag-pill {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  color: var(--burgundy);
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  padding: 2.4rem 2rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-hairline);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) ease;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: var(--gold); }
.why-card .icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  margin-bottom: 1.3rem;
}
.why-card h3 { margin-bottom: 0.6rem; }
.why-card p { font-size: 0.92rem; color: var(--gray); }

/* =========================================================
   GALLERY — MASONRY + LIGHTBOX
   ========================================================= */

.masonry {
  column-count: 4;
  column-gap: 1.2rem;
}
.masonry .g-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
}
.masonry .g-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease), filter 0.7s ease;
}
.masonry .g-item:hover img { transform: scale(1.08); filter: brightness(0.85); }
.masonry .g-item .g-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 1.2rem;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity var(--dur) ease;
}
.masonry .g-item:hover .g-overlay { opacity: 1; }
.masonry .g-item .g-overlay span {
  color: var(--white); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
}

.filter-bar {
  display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-bar button {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--border-hairline);
  font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gray-dark);
  transition: all var(--dur) ease;
}
.filter-bar button.active,
.filter-bar button:hover { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }

.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(15,10,12,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 86vw; max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.lightbox.active img { opacity: 1; transform: scale(1); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur) ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }
/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testi-card {
  padding: 2.2rem;
  border-radius: 20px;
  background: var(--ivory);
  border: 1px solid var(--border-hairline);
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.testi-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 1rem; font-size: 0.95rem; }
.testi-card p { font-size: 0.95rem; color: var(--gray-dark); font-style: italic; margin-bottom: 1.4rem; }
.testi-person { display: flex; align-items: center; gap: 0.8rem; }
.testi-person .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-display); font-weight: 700;
}
.testi-person .who strong { display: block; font-size: 0.9rem; color: var(--black); }
.testi-person .who span { font-size: 0.76rem; color: var(--gray); }
/* =========================================================
   INSTAGRAM SECTION
   ========================================================= */

.insta-head { text-align: center; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
  margin-top: 3rem;
}
.insta-item {
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.insta-item:hover img { transform: scale(1.12); }
.insta-item::after {
  content: '\f16d';
  font-family: 'insta-icon';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(139,30,63,0.55);
  color: var(--white); font-size: 1.4rem;
  opacity: 0; transition: opacity var(--dur) ease;
}
.insta-item svg { position: absolute; inset: 0; margin: auto; width: 26px; height: 26px; color: var(--white); opacity: 0; transition: opacity var(--dur) ease; z-index: 2; }
.insta-item:hover svg { opacity: 1; }
.insta-item .dim { position: absolute; inset: 0; background: rgba(139,30,63,0.5); opacity: 0; transition: opacity var(--dur) ease; }
.insta-item:hover .dim { opacity: 1; }

.follow-btn {
  margin: 2.6rem auto 0;
  display: table;
  position: relative;
}
.follow-btn::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 999px;
  border: 1.4px solid var(--gold);
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing { 0% { transform: scale(1); opacity: 0.9; } 100% { transform: scale(1.25); opacity: 0; } }

/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}
.contact-form {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-hairline);
  border-radius: 22px;
  padding: 2.6rem;
  box-shadow: var(--shadow-card);
}
.field { margin-bottom: 1.4rem; }
.field label {
  display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-dark); margin-bottom: 0.5rem;
}
.field input, .field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  transition: border-color var(--dur) ease, box-shadow var(--dur) ease;
}
.field input:focus, .field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.15);
  outline: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.form-msg { font-size: 0.88rem; margin-top: 1rem; min-height: 1.2rem; }
.form-msg.success { color: #2f7d4f; }

.contact-info-card {
  background: var(--burgundy);
  color: var(--white);
  border-radius: 22px;
  padding: 2.6rem;
  margin-bottom: 1.6rem;
  box-shadow: var(--shadow-lift);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 0.3rem; }
.contact-info-card .tag { color: var(--gold-light); font-size: 0.85rem; margin-bottom: 1.6rem; display: block; }
.info-row { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1.2rem; font-size: 0.92rem; }
.info-row svg { flex-shrink: 0; color: var(--gold-light); margin-top: 2px; }
.contact-actions { display: flex; gap: 0.9rem; margin-top: 1.6rem; flex-wrap: wrap; }

.map-embed {
  border-radius: 22px;
  overflow: hidden;
  height: 260px;
  border: 1px solid var(--border-hairline);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* =========================================================
   CTA STRIP
   ========================================================= */

.cta-strip {
  position: relative;
  text-align: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  color: var(--white);
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(201,162,39,0.18), transparent 60%);
}
.cta-strip h2 { color: var(--white); position: relative; }
.cta-strip .zari-divider { margin: 1rem auto 1.8rem; }
.cta-strip .zari-divider path { stroke: var(--gold-light); }
.cta-strip .zari-divider circle { fill: var(--gold-light); }
.cta-strip p { max-width: 520px; margin: 0 auto 2rem; color: rgba(255,255,255,0.85); position: relative; }
.cta-strip .hero-btns { position: relative; }
/* =========================================================
   FOOTER
   ========================================================= */

footer {
  background: var(--white);
  border-top: 1px solid var(--border-hairline);
  padding-top: 4.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { color: var(--gray); font-size: 0.92rem; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); margin-bottom: 1.2rem; font-weight: 500;
}
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: var(--gray); font-size: 0.92rem; transition: color var(--dur) ease, padding-left var(--dur) ease; }
.footer-col ul li a:hover { color: var(--burgundy); padding-left: 4px; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border-hairline);
  display: flex; align-items: center; justify-content: center;
  color: var(--burgundy);
  transition: all var(--dur) ease;
}
.footer-social a:hover { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }
.footer-bottom {
  border-top: 1px solid var(--border-hairline);
  padding: 1.6rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--gray);
  flex-wrap: wrap; gap: 0.6rem;
}
.footer-bottom .made { display: flex; align-items: center; gap: 0.4rem; }
/* =========================================================
   MISC
   ========================================================= */

.badge-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.4rem; }
.mini-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--gray-dark);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-hairline);
}
.mini-badge svg { color: var(--gold); }

.lazy-img { background: linear-gradient(100deg, var(--ivory) 8%, #f0ece3 18%, var(--ivory) 33%); background-size: 200% 100%; animation: shimmer 1.6s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.lazy-img.loaded { animation: none; background: none; }
/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1080px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .masonry { column-count: 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: min(78vw, 320px);
    background: var(--white); flex-direction: column; justify-content: center; gap: 2rem;
    transition: right var(--dur) var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,0.15); }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--black) !important; font-size: 1rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-actions .ig-btn { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .collection-grid, .why-grid, .testi-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry { column-count: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 520px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { column-count: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns, .filter-bar { flex-direction: column; align-items: center; }
  .exp-badge { left: 12px; bottom: -18px; padding: 1rem 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

