/* ============================================
   MAID JEWELLERS — Design System (Vanilla CSS)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  /* Core palette */
  --gold: hsl(43, 85%, 52%);
  --gold-light: hsl(45, 90%, 65%);
  --gold-dark: hsl(40, 75%, 40%);
  --ivory: #FAF8F3;
  --champagne: #E0D5C7;
  --charcoal: #2B2420;
  --warm-white: #FEFDFB;
  --maroon: #7d1b3a;
  --maroon-dark: #5c1429;

  /* Semantic */
  --bg: var(--ivory);
  --fg: var(--charcoal);
  --muted: #7A6F64;
  --border-color: #D8CEBC;
  --card-bg: #FDFCF9;

  /* Fonts */
  --font-serif: 'Outfit', system-ui, sans-serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  /* Shadows */
  --shadow-soft: 0 4px 20px -4px hsla(43, 74%, 49%, 0.15);
  --shadow-elegant: 0 8px 40px -8px hsla(30, 10%, 15%, 0.12);
  --shadow-glow: 0 0 40px hsla(43, 74%, 49%, 0.25);

  /* Layout */
  --container-max: 1400px;
  --radius: 0.25rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Container ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Utility Classes ─── */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-luxury {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--champagne) 100%);
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--ivory);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: padding 0.5s ease, box-shadow 0.5s ease;
  padding: 1rem 0;
}
.navbar.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.navbar-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo img {
  height: 2.5rem;
  width: auto;
  transition: transform 0.3s;
}
.navbar-logo:hover img { transform: scale(1.05); }

.nav-links {
  display: none;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}
.nav-links a {
  position: relative;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg);
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--charcoal);
  transition: width 0.5s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--charcoal); }

/* Hamburger */
.menu-toggle {
  display: flex;
  padding: 0.75rem;
  color: var(--fg);
  font-size: 1.5rem;
  margin-right: -0.5rem;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 36, 32, 0.8);
  backdrop-filter: blur(20px);
}
.mobile-menu-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(125,27,58,0.2), transparent, rgba(218,165,32,0.1));
}
.mobile-menu-links {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding-top: 5rem;
}
.mobile-menu-links a {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--ivory);
  transition: color 0.3s;
}
.mobile-menu-links a:hover,
.mobile-menu-links a.active { color: var(--gold); }
.mobile-menu-divider {
  margin-top: 3rem;
  width: 6rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-hero {
  padding: 1rem 2.5rem;
  font-size: 0.75rem;
  border: 1px solid rgba(250,248,243,0.4);
  color: var(--ivory);
  background: transparent;
}
.btn-hero:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(218,165,32,0.2);
}
.btn-hero-filled {
  padding: 1rem 2.5rem;
  font-size: 0.75rem;
  background: var(--gold);
  color: var(--charcoal);
  border: 1px solid var(--gold);
}
.btn-hero-filled:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 0 30px rgba(218,165,32,0.3);
}
.btn-elegant {
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  background: transparent;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
}
.btn-elegant:hover {
  background: var(--gold);
  color: white;
}
.btn-luxury {
  padding: 0.875rem 2rem;
  font-size: 0.75rem;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: white;
  border: none;
}
.btn-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(125,27,58,0.3);
}
.btn-luxury.full-width { width: 100%; }

/* ─── Hero Slider ─── */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-base { position: absolute; inset: 0; background: var(--charcoal); }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
}
.hero-slide-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenBurns 8s linear forwards;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.hero-slide.active .hero-slide-bg img {
  animation: kenBurns 8s linear forwards;
}
.hero-overlay-base {
  position: absolute; inset: 0;
  background: rgba(43,36,32,0.2);
}
.hero-overlay-gradient-left {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(43,36,32,0.75), rgba(43,36,32,0.4), transparent);
}
.hero-overlay-gradient-right {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(43,36,32,0.75), rgba(43,36,32,0.4), transparent);
}
.hero-content {
  position: relative;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}
.hero-content.align-right { justify-content: flex-end; }
.hero-content.align-left { justify-content: flex-start; }

.hero-text { max-width: 42rem; color: var(--ivory); }
.hero-text.right { text-align: right; }

.hero-subtitle {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s 0.5s forwards;
}
.hero-desc {
  font-size: 1.125rem;
  color: rgba(250,248,243,0.8);
  margin-bottom: 2.5rem;
  max-width: 30rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-text.right .hero-desc { margin-left: auto; }
.hero-cta-wrap {
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}

/* Hero Arrows */
.hero-arrow {
  display: none;
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 3rem; height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(250,248,243,0.3);
  align-items: center; justify-content: center;
  color: rgba(250,248,243,0.7);
  z-index: 10;
  transition: all 0.3s;
  font-size: 1.25rem;
}
.hero-arrow:hover { border-color: var(--gold); color: var(--gold); }
.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 5rem;
  left: 50%; transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}
.hero-dot {
  height: 4px;
  width: 1.5rem;
  background: rgba(250,248,243,0.4);
  transition: all 0.5s;
  border: none; border-radius: 0;
}
.hero-dot.active {
  width: 3rem;
  background: var(--gold);
}

/* ─── Announcement Bar ─── */
.announcement-bar {
  background: var(--maroon);
  color: white;
  padding: 0.5rem 0;
  overflow: hidden;
  position: relative;
}
.announcement-bar-inner {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.announcement-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.announcement-item span { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.05em; }
.announcement-star { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.33%); }
}

/* ─── Indian Divider ─── */
.divider { display: flex; align-items: center; justify-content: center; padding: 2rem 0; }
.divider.large { padding: 2rem 0 4rem; }

.divider-minimal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.divider-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: rgba(218,165,32,0.4);
}
.divider-line {
  width: 4rem; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.divider-star { color: var(--gold); opacity: 0.6; font-size: 1.5rem; }

.divider-mandala { position: relative; }

/* ─── Section Headers ─── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-subtitle {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
}

/* ─── Featured Collections Grid ─── */
.featured-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--ivory), var(--champagne));
  position: relative;
}
.featured-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, hsla(43,85%,52%,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, hsla(43,85%,52%,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.marathi-logo { height: 5rem; margin: -1rem auto 1.5rem; }

.collections-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
.collection-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}
.collection-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elegant); }

.collection-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.collection-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.collection-card:hover .collection-img-wrap img { transform: scale(1.1); }

.collection-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,36,32,0.8), transparent, transparent);
}
.collection-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(to top right, transparent, rgba(250,248,243,0.1), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.collection-card:hover .collection-shimmer { opacity: 1; }

.collection-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.collection-info-subtitle {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.collection-info-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ivory);
  margin-top: 0.25rem;
  transition: color 0.3s;
}
.collection-card:hover .collection-info-title { color: var(--gold); }
.collection-explore {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: rgba(250,248,243,0.7);
  transition: color 0.3s;
}
.collection-card:hover .collection-explore { color: var(--gold); }
.collection-explore svg { transition: transform 0.3s; }
.collection-card:hover .collection-explore svg { transform: translateX(8px); }

/* ─── Services / Expert Care ─── */
.services-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, #FAF8F3, white, #F5F1E8);
  padding: 5rem 0 8rem;
}
.services-blur-1, .services-blur-2 {
  position: absolute;
  width: 24rem; height: 24rem;
  border-radius: 50%;
  background: rgba(218,165,32,0.05);
  filter: blur(60px);
  pointer-events: none;
}
.services-blur-1 { top: 0; left: 0; }
.services-blur-2 { bottom: 0; right: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 80rem;
  margin: 0 auto;
}
.service-card {
  position: relative;
  background: white;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: var(--shadow-elegant);
  transition: all 0.5s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.15);
}
.service-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: all 0.5s;
}
.service-card:hover .service-icon { background: var(--gold); transform: scale(1.1) rotate(5deg); }
.service-icon svg { width: 1.25rem; height: 1.25rem; color: white; }
.service-card h3 {
  font-size: 0.875rem;
  color: #3E2723;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
  line-height: 1.3;
}
.service-card:hover h3 { color: var(--gold); }
.service-card p {
  font-size: 0.75rem;
  color: rgba(93,78,55,0.8);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-accent {
  height: 2px;
  width: 2rem;
  background: linear-gradient(to right, var(--maroon), var(--gold));
  border-radius: 9999px;
  transition: width 0.5s;
}
.service-card:hover .service-accent { width: 100%; }

/* ─── Testimonials ─── */
.testimonials-section {
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, #FFF9E6, #FFE5B4, #FFF4E0);
}
.testimonials-pattern {
  position: absolute; inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 25% 25%, hsl(43,85%,52%) 2px, transparent 2px);
  background-size: 40px 40px;
}
.testimonials-header span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Mobile carousel */
.testimonial-carousel {
  position: relative;
}
.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(218,165,32,0.2);
  display: none;
}
.testimonial-card.active { display: block; }

.testimonial-quote-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--gold), #B8860B);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.testimonial-quote-icon svg { width: 1.25rem; height: 1.25rem; color: white; }

.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 0.75rem; }
.testimonial-stars svg { width: 1rem; height: 1rem; color: var(--gold); fill: var(--gold); }

.testimonial-text {
  color: #3E2723;
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(218,165,32,0.2);
}
.testimonial-avatar {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: rgba(218,165,32,0.1);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(218,165,32,0.3);
  font-family: var(--font-serif);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.875rem;
}
.testimonial-name { font-weight: 600; color: #3E2723; font-size: 0.875rem; }
.testimonial-location { color: rgba(93,78,55,0.6); font-size: 0.75rem; }

/* Carousel arrows */
.testimonial-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid rgba(218,165,32,0.2);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.testimonial-arrow svg { width: 1.25rem; height: 1.25rem; color: var(--gold); }
.testimonial-arrow.prev { left: 0; transform: translateY(-50%) translateX(-0.5rem); }
.testimonial-arrow.next { right: 0; transform: translateY(-50%) translateX(0.5rem); }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.testimonial-dot-btn {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: rgba(218,165,32,0.3);
  transition: all 0.3s;
}
.testimonial-dot-btn.active { background: var(--gold); width: 1.5rem; border-radius: 9999px; }

/* Desktop grid */
.testimonials-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonials-grid .testimonial-card {
  display: block;
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s;
}
.testimonials-grid .testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(218,165,32,0.4);
}
.testimonials-grid .testimonial-quote-icon { width: 3.5rem; height: 3.5rem; margin-bottom: 1.5rem; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.testimonials-grid .testimonial-quote-icon svg { width: 1.75rem; height: 1.75rem; }
.testimonials-grid .testimonial-stars svg { width: 1.25rem; height: 1.25rem; }
.testimonials-grid .testimonial-text { font-size: 1.125rem; margin-bottom: 1.5rem; }
.testimonials-grid .testimonial-author { gap: 1rem; padding-top: 1.5rem; }
.testimonials-grid .testimonial-avatar { width: 3.5rem; height: 3.5rem; font-size: 1.25rem; }
.testimonials-grid .testimonial-name { font-size: 1rem; }

/* Bottom CTA badge */
.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  border: 1px solid rgba(218,165,32,0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 2.5rem;
}
.testimonial-badge-avatars { display: flex; }
.testimonial-badge-avatars .badge-avatar {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--gold), #B8860B);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
  color: white;
  font-size: 0.625rem;
  font-weight: 600;
  margin-left: -0.5rem;
}
.testimonial-badge-avatars .badge-avatar:first-child { margin-left: 0; }
.testimonial-badge-text p:first-child { font-weight: 600; color: #3E2723; font-size: 0.875rem; }
.testimonial-badge-text p:last-child { color: rgba(93,78,55,0.6); font-size: 0.75rem; }

/* ─── Luxury CTA Section ─── */
.luxury-cta {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  margin-top: -1px;
}
.luxury-cta-bg {
  position: absolute;
  inset: 0;
  top: -5rem; bottom: -5rem;
}
.luxury-cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}
.luxury-cta-bg .overlay { position: absolute; inset: 0; background: rgba(43,36,32,0.8); }

.luxury-cta-content {
  position: relative;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}
.cta-decorative {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.cta-dots {
  display: flex; align-items: center; gap: 0.25rem;
}
.cta-dot {
  width: 0.375rem; height: 0.375rem;
  border-radius: 50%;
}
.cta-line {
  height: 1px; width: 5rem;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold));
}
.cta-line.reverse { background: linear-gradient(to left, transparent, var(--gold), var(--gold)); }
.cta-logo-wrap {
  position: relative; padding: 0.5rem;
}
.cta-logo-glow {
  position: absolute; inset: 0;
  background: rgba(218,165,32,0.2);
  border-radius: 50%;
  filter: blur(16px);
}
.cta-logo-circle {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  border: 2px solid rgba(218,165,32,0.3);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.cta-logo-circle img { height: 2rem; }

.luxury-cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--ivory);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.luxury-cta p {
  font-size: 1.125rem;
  color: rgba(250,248,243,0.7);
  margin-bottom: 2.5rem;
  max-width: 40rem;
  margin-left: auto; margin-right: auto;
}
.luxury-cta .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* ─── Footer ─── */
.footer-top-border {
  height: 6px;
  background: linear-gradient(to right, transparent, var(--maroon), transparent);
}
.footer {
  background: linear-gradient(to bottom, #faf8f5, #f0ebe4);
  color: var(--charcoal);
  padding: 2rem 0 3.5rem;
}
.footer-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(125,27,58,0.15);
}
.footer-header img { height: 3.5rem; width: auto; }
.footer-social { display: flex; align-items: center; gap: 1rem; }
.footer-social span { font-size: 0.875rem; color: rgba(43,36,32,0.6); }
.footer-social a {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.footer-social a:hover { background: var(--maroon-dark); transform: scale(1.1); }
.footer-social a svg { width: 1.125rem; height: 1.125rem; color: white; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.footer-section h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-about p {
  color: rgba(43,36,32,0.7);
  font-size: 0.75rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.footer-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.6);
  border-radius: 0.5rem;
  padding: 0.75rem;
  border: 1px solid rgba(125,27,58,0.1);
  font-size: 0.875rem;
}
.footer-hours svg { display: none; }
.footer-hours-open { color: rgba(43,36,32,0.8); font-weight: 500; }
.footer-hours-closed { color: #e74c3c; font-size: 0.75rem; font-weight: 500; }

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(43,36,32,0.7);
  transition: all 0.3s;
}
.footer-links a:hover { color: var(--maroon); transform: translateX(4px); }
.footer-links .link-dot {
  width: 0.375rem; height: 0.375rem;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.footer-locations {
  grid-column: span 2;
}
.location-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.location-card {
  background: rgba(255,255,255,0.6);
  border-radius: 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(125,27,58,0.1);
  transition: all 0.3s;
}
.location-card:hover { border-color: rgba(125,27,58,0.3); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.location-card-name {
  font-weight: 600;
  color: var(--maroon);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.location-card-name svg { width: 0.875rem; height: 0.875rem; }
.location-card p { color: rgba(43,36,32,0.6); font-size: 0.75rem; line-height: 1.5; margin-bottom: 0.5rem; }
.location-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: rgba(43,36,32,0.8);
  font-weight: 500;
  transition: color 0.3s;
}
.location-card a:hover { color: var(--maroon); }
.location-card a svg { width: 0.75rem; height: 0.75rem; }

.footer-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}
.footer-email svg { color: var(--maroon); width: 1rem; height: 1rem; }
.footer-email a { color: rgba(43,36,32,0.7); transition: color 0.3s; }
.footer-email a:hover { color: var(--maroon); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(125,27,58,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(43,36,32,0.5);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--maroon); }

/* ─── WhatsApp Button ─── */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 50;
  opacity: 0; transform: scale(0);
  transition: opacity 0.5s, transform 0.5s;
}
.whatsapp-btn.visible { opacity: 1; transform: scale(1); }
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-pulse {
  position: absolute; inset: 0;
  background: #22c55e;
  border-radius: 50%;
  animation: waPulse 2s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0; }
}
.whatsapp-icon-wrap {
  position: relative;
  background: #22c55e;
  color: white;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(34,197,94,0.4);
  transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.whatsapp-btn:hover .whatsapp-icon-wrap { background: #16a34a; }
.whatsapp-icon-wrap svg { width: 1.5rem; height: 1.5rem; }

.whatsapp-tooltip {
  position: absolute;
  right: 100%; top: 50%; transform: translateY(-50%);
  margin-right: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-tooltip-inner {
  background: #111;
  color: white;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  position: relative;
}
.whatsapp-tooltip-inner::after {
  content: '';
  position: absolute;
  right: -0.5rem; top: 50%; transform: translateY(-50%);
  border: 0.5rem solid transparent;
  border-left-color: #111;
}

/* ─── Page Hero ─── */
.page-hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 3rem;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.page-hero-bg .overlay {
  position: absolute; inset: 0;
  background: rgba(43,36,32,0.7);
}
.page-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ivory), var(--champagne));
}
.page-hero-content {
  position: relative;
  text-align: center;
  width: 100%;
}
.page-hero .section-subtitle { color: var(--gold); }
.page-hero.has-image .page-hero-title { color: var(--ivory); }
.page-hero.has-image .page-hero-desc { color: rgba(250,248,243,0.8); }
.page-hero-title {
  font-size: clamp(1.875rem, 5vw, 3.5rem);
  color: var(--fg);
  margin-bottom: 1rem;
}
.page-hero-desc {
  font-size: 1rem;
  max-width: 42rem;
  margin: 0 auto;
  color: var(--muted);
}

/* ─── Jewellery Card / Product Grid ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.jewellery-card {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: box-shadow 0.5s, transform 0.3s;
}
.jewellery-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.12); }

.jewellery-card-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
}
.jewellery-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.jewellery-card:hover .jewellery-card-img img { transform: scale(1.1); }

.jewellery-zoom {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.jewellery-card:hover .jewellery-zoom { opacity: 1; }
.jewellery-zoom-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(218,165,32,0.9);
  display: flex; align-items: center; justify-content: center;
}
.jewellery-zoom-icon svg { width: 1.5rem; height: 1.5rem; color: white; }

.jewellery-shine {
  position: absolute; inset: 0;
  background: linear-gradient(to top right, transparent, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transform: translateX(-100%);
  transition: all 1s ease-out;
}
.jewellery-card:hover .jewellery-shine { opacity: 1; transform: translateX(100%); }

.jewellery-hover-overlay {
  position: absolute; inset: 0;
  background: rgba(43,36,32,0);
  transition: background 0.5s;
}
.jewellery-card:hover .jewellery-hover-overlay { background: rgba(43,36,32,0.2); }

.jewellery-card-info {
  padding: 1rem;
  text-align: center;
}
.jewellery-card-collection {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.jewellery-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--fg);
  transition: color 0.3s;
  line-height: 1.3;
  margin-top: 0.25rem;
}
.jewellery-card:hover .jewellery-card-title { color: var(--gold); }
.jewellery-card-border {
  position: absolute; inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.5s;
  pointer-events: none;
  border-radius: var(--radius);
}
.jewellery-card:hover .jewellery-card-border { border-color: rgba(218,165,32,0.3); }

/* ─── Lightbox Modal ─── */
.lightbox {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(43,36,32,0.7);
  backdrop-filter: blur(20px);
}
.lightbox-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(218,165,32,0.05), transparent, rgba(125,27,58,0.05));
}
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); border-color: rgba(218,165,32,0.5); }
.lightbox-close svg {
  width: 1.5rem; height: 1.5rem;
  color: white;
  transition: all 0.3s;
}
.lightbox-close:hover svg { color: var(--gold); transform: rotate(90deg); }
.lightbox-content {
  position: relative;
  max-width: 24rem;
  width: 100%;
  display: flex; flex-direction: column; align-items: center;
  animation: lightboxIn 0.4s ease-out;
}
@keyframes lightboxIn {
  from { transform: scale(0.9) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.lightbox-frame {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 0.375rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
}
.lightbox-frame-inner {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}
.lightbox-frame-inner img {
  max-width: 100%;
  max-height: 50vh;
  width: auto; height: auto;
  object-fit: contain;
}
.lightbox-corners { display: none; }
.lightbox-info {
  margin-top: 1rem;
  text-align: center;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 20rem;
}
.lightbox-info .collection-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
  display: block;
}
.lightbox-info .title-label {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: white;
}
.lightbox-hint {
  position: absolute;
  bottom: 0.75rem;
  left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ─── Gallery Filter ─── */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s;
  border: 1px solid var(--border-color);
  background: white;
  color: var(--fg);
}
.filter-btn.active {
  background: var(--maroon);
  color: white;
  border-color: var(--maroon);
}
.filter-btn:hover:not(.active) { border-color: var(--maroon); }

/* ─── Contact Page ─── */
.quick-contact-bar {
  background: var(--maroon);
  padding: 1.5rem 0;
}
.quick-contact-items {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  color: white;
}
.quick-contact-items a {
  display: flex; align-items: center; gap: 0.5rem;
  color: white;
  transition: color 0.3s;
  font-weight: 500;
}
.quick-contact-items a:hover { color: var(--gold); }
.quick-contact-items svg { width: 1.25rem; height: 1.25rem; }
.quick-contact-items .separator { color: rgba(218,165,32,0.4); }

.contact-content {
  padding: 4rem 0 5rem;
  background: linear-gradient(to bottom, #faf8f5, var(--bg));
}

.location-tabs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.location-tabs { display: flex; flex-direction: column; gap: 1rem; }
.location-tab {
  cursor: pointer;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  background: white;
  transition: all 0.3s;
}
.location-tab:hover { border-color: rgba(125,27,58,0.5); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.location-tab.active {
  background: var(--maroon);
  color: white;
  border-color: var(--maroon);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: scale(1.02);
}
.location-tab-inner { display: flex; align-items: flex-start; gap: 1rem; }
.location-tab-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(125,27,58,0.1);
}
.location-tab.active .location-tab-icon { background: rgba(255,255,255,0.2); }
.location-tab-icon svg { width: 1.5rem; height: 1.5rem; color: var(--maroon); }
.location-tab.active .location-tab-icon svg { color: white; }
.location-tab h3 { font-weight: 600; font-size: 1.125rem; margin-bottom: 0.25rem; }
.location-tab p { font-size: 0.875rem; margin-bottom: 0.5rem; }
.location-tab.active p { color: rgba(255,255,255,0.8); }
.location-tab:not(.active) p { color: var(--muted); }
.location-tab .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.location-tab.active .phone-link { color: var(--gold); }
.location-tab:not(.active) .phone-link { color: var(--maroon); }
.location-tab .phone-link svg { width: 1rem; height: 1rem; }

.hours-card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(to right, rgba(218,165,32,0.1), rgba(218,165,32,0.05));
  border: 1px solid rgba(218,165,32,0.3);
}
.hours-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.hours-card-header svg { width: 1.25rem; height: 1.25rem; color: var(--gold); }
.hours-card-header h3 { font-weight: 600; }
.hours-card p { font-size: 0.875rem; color: var(--muted); }
.hours-card .open-hours { font-weight: 500; color: var(--fg); }
.hours-card .closed { color: #dc2626; font-weight: 500; margin-top: 0.25rem; }

.map-container {
  height: 400px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid #e5e7eb;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ─── Book Appointment ─── */
.benefits-section {
  padding: 3rem 0;
  background: linear-gradient(to bottom right, #FAF8F3, #F5F1E8, #F0EBE0);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
.benefit-card-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(218,165,32,0.2), rgba(218,165,32,0.05));
  border-radius: 0.5rem;
  transition: transform 0.5s;
}
.benefit-card:hover .benefit-card-bg { transform: scale(1.05); }
.benefit-card {
  position: relative;
}
.benefit-card-inner {
  position: relative;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(218,165,32,0.2);
  transition: border-color 0.5s;
}
.benefit-card:hover .benefit-card-inner { border-color: rgba(218,165,32,0.4); }
.benefit-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--gold), #B8860B);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.5s;
}
.benefit-card:hover .benefit-icon { transform: scale(1.1); }
.benefit-icon svg { width: 1.5rem; height: 1.5rem; color: white; }
.benefit-card h3 { font-family: var(--font-serif); font-size: 1.125rem; color: #3E2723; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.875rem; color: rgba(93,78,55,0.8); }

.appointment-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom right, #FAF8F3, white, #F5F1E8);
}
.appointment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
.appointment-form {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(218,165,32,0.1);
}
.appointment-form h2 { font-family: var(--font-serif); font-size: 1.875rem; color: #3E2723; margin-bottom: 0.5rem; }
.appointment-form > p { color: rgba(93,78,55,0.8); margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.form-group { position: relative; margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5D4E37;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.form-input-wrap { position: relative; }
.form-input-wrap svg {
  position: absolute;
  left: 1rem; top: 50%; transform: translateY(-50%);
  width: 1.25rem; height: 1.25rem;
  color: rgba(218,165,32,0.6);
  pointer-events: none;
  transition: color 0.3s;
}
.form-input-wrap input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background: #FAF8F3;
  border: 2px solid rgba(218,165,32,0.2);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #3E2723;
  transition: border-color 0.3s;
  outline: none;
}
.form-input-wrap input:focus { border-color: var(--gold); }
.form-input-wrap input:focus + svg,
.form-input-wrap:focus-within svg { color: var(--gold); }
.form-input-wrap input::placeholder { color: rgba(93,78,55,0.4); }

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.time-slot {
  padding: 0.625rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  text-align: center;
  transition: all 0.3s;
  background: #FAF8F3;
  color: #5D4E37;
  border: 2px solid rgba(218,165,32,0.2);
  font-family: var(--font-sans);
}
.time-slot:hover { border-color: var(--gold); background: rgba(218,165,32,0.05); }
.time-slot.selected {
  background: linear-gradient(to bottom right, var(--gold), #B8860B);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(218,165,32,0.3);
  transform: scale(1.05);
}

.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #FAF8F3;
  border: 2px solid rgba(218,165,32,0.2);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #3E2723;
  resize: none;
  outline: none;
  transition: border-color 0.3s;
}
.form-textarea:focus { border-color: var(--gold); }
.form-textarea::placeholder { color: rgba(93,78,55,0.4); }
.form-submit { margin-top: 2rem; }

.sidebar-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: linear-gradient(to bottom right, #FAF8F3, white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid rgba(218,165,32,0.2);
  transition: border-color 0.5s;
}
.sidebar-card:hover { border-color: rgba(218,165,32,0.4); }
.sidebar-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.sidebar-card-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(218,165,32,0.1);
  display: flex; align-items: center; justify-content: center;
}
.sidebar-card-icon svg { width: 1.25rem; height: 1.25rem; color: var(--gold); }
.sidebar-card h3 { font-family: var(--font-serif); font-size: 1.125rem; color: #3E2723; }
.sidebar-card p { font-size: 0.875rem; color: #5D4E37; }
.sidebar-card .hours-row { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
.sidebar-card .hours-row span:first-child { font-weight: 600; }
.sidebar-card .closed-text { color: #dc2626; }
.sidebar-card .gold-text { color: var(--gold); }

/* Confirmation */
.confirmation {
  text-align: center;
  padding: 5rem 0;
}
.confirmation-icon {
  width: 6rem; height: 6rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--gold), #B8860B);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 40px rgba(218,165,32,0.3);
  animation: scaleIn 0.6s ease-out;
}
.confirmation-icon svg { width: 3rem; height: 3rem; color: white; }
@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.confirmation h2 { font-family: var(--font-serif); font-size: 2rem; color: #3E2723; margin-bottom: 1rem; }
.confirmation p { color: #5D4E37; font-size: 1.125rem; max-width: 28rem; margin: 0 auto 2rem; }

/* ─── About Page ─── */
.story-section { padding: 6rem 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.story-image {
  position: relative;
  order: 2;
}
.story-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
}
.story-image-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 8rem; height: 8rem;
  border-bottom: 2px solid rgba(218,165,32,0.4);
  border-right: 2px solid rgba(218,165,32,0.4);
}
.story-text { order: 1; }
.story-text h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 1.5rem; }
.story-text p { color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.story-text p.large { font-size: 1.125rem; }

/* Timeline */
.timeline-section { padding: 6rem 0; background: rgba(224,213,199,0.3); }
.timeline { max-width: 56rem; margin: 0 auto; }
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}
.timeline-item.reverse { flex-direction: row-reverse; text-align: right; }
.timeline-circle {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  background: rgba(218,165,32,0.1);
  border: 1px solid rgba(218,165,32,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.timeline-circle span { font-family: var(--font-serif); font-size: 1.25rem; color: var(--gold); }
.timeline-content h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.timeline-content p { color: var(--muted); }

/* Values */
.values-section { padding: 6rem 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
.value-card {
  text-align: center;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: border-color 0.3s;
}
.value-card:hover { border-color: rgba(218,165,32,0.3); }
.value-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.875rem; color: var(--muted); }

/* CTA with BG */
.cta-bg-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.cta-bg-section .bg-image { position: absolute; inset: 0; }
.cta-bg-section .bg-image img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg-section .bg-image .overlay { position: absolute; inset: 0; background: rgba(43,36,32,0.8); }
.cta-bg-section .cta-inner {
  position: relative;
  text-align: center;
}
.cta-bg-section h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--ivory); margin-bottom: 1.5rem; }
.cta-bg-section p { color: rgba(250,248,243,0.7); font-size: 1.125rem; max-width: 32rem; margin: 0 auto 2.5rem; }

/* ─── Craftsmanship Page ─── */
.craft-intro { padding: 6rem 0; }
.craft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.craft-image { position: relative; }
.craft-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-elegant); transition: transform 0.6s; }
.craft-image:hover img { transform: scale(1.02); }
.craft-image-accent-tr {
  position: absolute;
  top: -1rem; right: -1rem;
  width: 8rem; height: 8rem;
  border-top: 2px solid rgba(218,165,32,0.4);
  border-right: 2px solid rgba(218,165,32,0.4);
}
.craft-image-accent-bl {
  position: absolute;
  bottom: -1rem; left: -1rem;
  width: 8rem; height: 8rem;
  border-bottom: 2px solid rgba(218,165,32,0.4);
  border-left: 2px solid rgba(218,165,32,0.4);
}

.process-section { padding: 6rem 0; background: rgba(224,213,199,0.3); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
.process-card {}
.process-card .step-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: rgba(218,165,32,0.2);
  margin-bottom: 1rem;
}
.process-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.process-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.stats-section { padding: 5rem 0; background: var(--charcoal); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--gold); margin-bottom: 0.5rem; }
.stat-label { font-family: var(--font-sans); font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,248,243,0.6); }

.innovation-section { padding: 6rem 0; }
.innovation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.innovation-image {
  order: 2;
}
.innovation-image img {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
}
.innovation-text { order: 1; }

.craft-cta { padding: 6rem 0; background: linear-gradient(180deg, var(--ivory), var(--champagne)); }

/* ─── Scroll Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.from-left {
  transform: translateX(-50px);
}
.animate-on-scroll.from-left.visible {
  transform: translateX(0);
}
.animate-on-scroll.from-right {
  transform: translateX(50px);
}
.animate-on-scroll.from-right.visible {
  transform: translateX(0);
}

/* ─── Responsive ─── */
@media (min-width: 640px) {
  .location-cards { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .navbar-inner { padding: 0 3rem; }
  .navbar-logo img { height: 3rem; }
  .hero-title { font-size: clamp(3rem, 6vw, 5rem); }

  .quick-contact-items { display: flex; }

  .collections-grid { grid-template-columns: repeat(2, 1fr); }

  .service-card { padding: 2rem; border-radius: 1rem; }
  .service-icon { width: 4rem; height: 4rem; border-radius: 0.75rem; margin-bottom: 1.5rem; }
  .service-icon svg { width: 2rem; height: 2rem; }
  .service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
  .service-card p { font-size: 1rem; margin-bottom: 1.5rem; -webkit-line-clamp: unset; }
  .service-accent { height: 4px; }

  .services-grid { gap: 2rem; }

  .footer-header { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-hours svg { display: block; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  .marathi-logo { height: 7rem; }

  .product-grid { gap: 2rem; }
  .jewellery-card-info { padding: 1.25rem; }
  .jewellery-card-collection { font-size: 0.75rem; }
  .jewellery-card-title { font-size: 1.125rem; }

  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .story-image { order: 1; }
  .story-text { order: 2; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }

  .page-hero { padding-top: 8rem; padding-bottom: 4rem; min-height: 450px; }
  .page-hero-desc { font-size: 1.125rem; }

  .lightbox-content { max-width: 56rem; }
  .lightbox-close { top: 1.5rem; right: 1.5rem; }
  .lightbox-frame { border-radius: 1rem; padding: 0.5rem; }
  .lightbox-frame-inner { border-radius: 0.75rem; }
  .lightbox-frame-inner img { max-height: 65vh; }
  .lightbox-corners { display: block; }
  .lightbox-corner {
    position: absolute;
    width: 4rem; height: 4rem;
  }
  .lightbox-corner.tl { top: 0; left: 0; border-top: 2px solid rgba(218,165,32,0.4); border-left: 2px solid rgba(218,165,32,0.4); border-top-left-radius: 0.75rem; }
  .lightbox-corner.tr { top: 0; right: 0; border-top: 2px solid rgba(218,165,32,0.4); border-right: 2px solid rgba(218,165,32,0.4); border-top-right-radius: 0.75rem; }
  .lightbox-corner.bl { bottom: 0; left: 0; border-bottom: 2px solid rgba(218,165,32,0.4); border-left: 2px solid rgba(218,165,32,0.4); border-bottom-left-radius: 0.75rem; }
  .lightbox-corner.br { bottom: 0; right: 0; border-bottom: 2px solid rgba(218,165,32,0.4); border-right: 2px solid rgba(218,165,32,0.4); border-bottom-right-radius: 0.75rem; }
  .lightbox-info { padding: 1.25rem 2rem; border-radius: 0.75rem; max-width: none; }
  .lightbox-info .collection-label { font-size: 0.75rem; letter-spacing: 0.3em; }
  .lightbox-info .title-label { font-size: 1.875rem; }
  .lightbox-hint { bottom: 1rem; font-size: 0.75rem; padding: 0.5rem 1rem; }

  .location-tabs-grid { grid-template-columns: 1fr 1fr; }
  .map-container { height: 100%; min-height: 400px; }

  .appointment-grid { grid-template-columns: 2fr 1fr; }
  .appointment-form { padding: 2.5rem; }

  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .innovation-grid { grid-template-columns: repeat(2, 1fr); }
  .innovation-image { order: 1; }
  .innovation-text { order: 2; }

  .luxury-cta .cta-buttons { flex-direction: row; }
  .cta-logo-circle { width: 4rem; height: 4rem; }
  .cta-logo-circle img { height: 2.5rem; }

  .footer { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }

  .hero-arrow { display: flex; }
  .hero-title { font-size: clamp(4rem, 7vw, 6rem); }

  .collections-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  .testimonial-carousel { display: none; }
  .testimonial-dots { display: none; }
  .testimonials-grid { display: grid; }

  .product-grid { grid-template-columns: repeat(3, 1fr); }

  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid { grid-template-columns: repeat(4, 1fr); }

  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-locations { grid-column: span 2; }

  .marathi-logo { height: 8rem; }
}

@media (min-width: 1280px) {
  .product-grid.four-col { grid-template-columns: repeat(4, 1fr); }
}
