/* =====================================================
   ASHA CHUDI BHANDAR — Combined Best Design
   Design System: Dark Luxury Gold
   Merges: warm-indian (D1) + monochrome-gold (D2)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  /* Backgrounds (D2 dark luxury base) */
  --bg-0: #080808;
  --bg-1: #111111;
  --bg-2: #1a1a1a;
  --bg-3: #242424;

  /* Gold system */
  --gold:        #D4AF37;
  --gold-hover:  #BF9E2E;
  --gold-light:  #EDD678;
  --gold-glow:   rgba(212, 175, 55, 0.10);
  --gold-border: rgba(212, 175, 55, 0.25);

  /* Text */
  --text-1: #F2F2F2;
  --text-2: #A8A8A8;
  --text-3: #5C5C5C;

  /* Borders */
  --border-0: rgba(255, 255, 255, 0.05);
  --border-1: rgba(255, 255, 255, 0.09);

  /* Fonts */
  --f-h: 'Playfair Display', Georgia, serif;   /* headings */
  --f-b: 'Inter', system-ui, -apple-system, sans-serif; /* body */

  /* Transitions */
  --t:      300ms ease;
  --t-slow: 600ms ease-out;

  /* Shadows */
  --shadow:      0 8px 40px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.12);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg-0);
  overscroll-behavior-y: none; /* prevent bounce gap on iOS/Android fast scroll */
}
body {
  font-family: var(--f-b);
  background: var(--bg-1);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior-y: none; /* fallback for older mobile browsers */
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t); }
ul, ol { list-style: none; }

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

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

.section-title {
  font-family: var(--f-h);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.15;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 60ch;
  font-weight: 300;
}

/* Ornament divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 52px;
}
.ornament-line {
  width: 64px;
  height: 1px;
  background: var(--gold-border);
}
.ornament-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes floatDot {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gold-border);
  transition: all var(--t);
}
.navbar.scrolled {
  background: rgba(8, 8, 8, 0.97);
  border-bottom-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 14px; }
.logo-icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--f-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  transition: all var(--t);
}
.logo:hover .logo-icon {
  background: var(--gold);
  color: var(--bg-0);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--f-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.logo-tagline {
  font-size: 0.625rem;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* Desktop nav links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  transition: color var(--t);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 9px 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-left: 8px;
  transition: all var(--t);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg-0);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  min-width: 40px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all var(--t);
  display: block;
}

/* ===== MOBILE NAV ===== */
/* Overlay backdrop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 998;
  cursor: pointer;
}
.nav-overlay.active { display: block; }

/* Slide-in panel (from right) */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-2);
  border-left: 1px solid var(--gold-border);
  z-index: 999;
  padding: 96px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav.active { right: 0; }

.mobile-nav .nav-link {
  font-size: 0.9375rem;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-0);
  letter-spacing: 2px;
  color: var(--text-2);
}
.mobile-nav .nav-link::after {
  bottom: 10px;
  left: 16px;
  right: 16px;
}
.mobile-nav .nav-cta {
  margin-top: 20px;
  text-align: center;
  padding: 15px;
  margin-left: 0;
  display: block;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.45) contrast(1.15);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(8, 8, 8, 0.94) 0%,
    rgba(8, 8, 8, 0.68) 50%,
    rgba(8, 8, 8, 0.42) 100%
  );
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; padding-top: 32px; padding-bottom: 32px; }

.hero-content {
  max-width: 680px;
  animation: fadeInUp 0.85s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: floatDot 2.2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--f-h);
  font-size: clamp(2rem, 6.5vw, 4.25rem);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.08;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-title .highlight {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  display: block;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.05em;
}

.hero-description {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: rgba(242, 242, 242, 0.68);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 52ch;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--gold);
  color: var(--bg-0);
  font-family: var(--f-b);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all var(--t);
  min-height: 48px;
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: var(--text-1);
  font-family: var(--f-b);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(242, 242, 242, 0.28);
  cursor: pointer;
  transition: all var(--t);
  min-height: 48px;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat-number {
  font-family: var(--f-h);
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.6875rem;
  color: rgba(242, 242, 242, 0.45);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
}

/* ===== TRUST BAR (D2 style — gold bg) ===== */
.trust-bar {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.trust-marquee {
  display: inline-block;
  animation: marquee 22s linear infinite;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bg-0);
  margin-right: 40px;
}
.trust-item .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--bg-0);
  border-radius: 50%;
  opacity: 0.45;
}

/* ===== PRODUCTS (D2 dark + grayscale reveal) ===== */
.products { background: var(--bg-2); }
.products-header {
  text-align: center;
  margin-bottom: 0;
}
.products-header .section-subtitle { margin: 0 auto; }

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

.product-card {
  background: var(--bg-1);
  border: 1px solid var(--border-0);
  cursor: pointer;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.product-card-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--t-slow), transform var(--t-slow);
}
.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

/* gradient overlay at bottom of image */
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.55) 0%, transparent 50%);
  pointer-events: none;
}

/* tag: top-right (D2 style) */
.product-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--bg-0);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}

.product-card-body {
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--border-0);
  flex: 1;
}
.product-card-title {
  font-family: var(--f-h);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.product-card-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
}

.product-card-footer { padding: 16px 22px; }
.product-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.product-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--t);
}
.product-card:hover .product-card-link svg { transform: translateX(5px); }

/* ===== ABOUT (D2 gold-frame image + dark bg) ===== */
.about { background: var(--bg-1); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  padding: 20px 20px 0 0;
}
.about-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: grayscale(100%);
  position: relative;
  z-index: 2;
  transition: filter var(--t-slow);
}
.about-image-wrapper:hover img { transform: scale(1.02); }

/* Gold frame border behind image */
.about-image-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 92%;
  border: 1.5px solid var(--gold);
  z-index: 1;
  opacity: 0.45;
}

.about-content .section-eyebrow,
.about-content .section-title { text-align: left; }
.about-content .section-title { margin-bottom: 22px; }

.about-text {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 18px;
  font-weight: 300;
}
.about-text strong { color: var(--gold-light); font-weight: 600; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.about-feature { display: flex; align-items: center; gap: 14px; }
.about-feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-border);
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  background: var(--gold-glow);
}
.about-feature-text {
  font-family: var(--f-h);
  font-size: 0.9375rem;
  color: var(--text-1);
}

/* ===== BRIDAL (D2 dark, square numbering) ===== */
.bridal { background: var(--bg-2); }
.bridal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.bridal-content .section-eyebrow,
.bridal-content .section-title,
.bridal-content .section-subtitle {
  text-align: left;
  margin-inline: 0;
}

.bridal-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bridal-feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--border-0);
  background: var(--bg-1);
  transition: border-color var(--t);
}
.bridal-feature-item:hover { border-color: var(--gold-border); }
.bridal-feature-num {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--f-h);
  font-size: 1.125rem;
  color: var(--gold);
  font-weight: 600;
}
.bridal-feature-text h4 {
  font-family: var(--f-h);
  font-size: 1.0625rem;
  color: var(--text-1);
  margin-bottom: 6px;
}
.bridal-feature-text p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 300;
}

.bridal-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bridal-img {
  overflow: hidden;
  position: relative;
}
.bridal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--t-slow), transform var(--t-slow);
  display: block;
}
.bridal-img:hover img {
  transform: scale(1.05);
}
.bridal-img:nth-child(1) { grid-column: 1 / -1; height: 280px; }
.bridal-img:nth-child(2),
.bridal-img:nth-child(3) { height: 210px; }

/* ===== WHY US (D1 colored icons + D2 card style) ===== */
.why-us { background: var(--bg-1); }
.why-us-header { text-align: center; }
.why-us-header .section-subtitle { margin: 0 auto; }

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-us-card {
  padding: 36px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border-0);
  text-align: center;
  transition: all var(--t);
}
.why-us-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}
.why-us-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
}
/* Warm tinted icon backgrounds (D1 character) */
.why-us-icon.icon-1 { background: rgba(255, 152, 60, 0.12); }
.why-us-icon.icon-2 { background: rgba(212, 175, 55, 0.12); }
.why-us-icon.icon-3 { background: rgba(76, 175, 100, 0.10); }
.why-us-icon.icon-4 { background: rgba(140, 100, 210, 0.10); }

.why-us-title {
  font-family: var(--f-h);
  font-size: 1.0625rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.why-us-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 300;
}

/* ===== GALLERY (D1 mosaic layout + D2 grayscale reveal) ===== */
.gallery { background: var(--bg-0); }
.gallery-header { text-align: center; }
.gallery-header .section-subtitle { margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--t-slow), transform var(--t-slow);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  font-family: var(--f-h);
  font-size: 1.25rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: translateY(12px);
  transition: transform var(--t);
  text-align: center;
  padding: 0 16px;
}
.gallery-item:hover .gallery-item-label { transform: translateY(0); }

/* Mosaic spans (D1 layout) */
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

/* ===== SCROLL-TRIGGERED COLOR REVEAL ===== */
.product-card-image.color-revealed img,
.gallery-item.color-revealed img,
.bridal-img.color-revealed img,
.about-image-wrapper.color-revealed img {
  filter: grayscale(0%);
}

/* ===== TESTIMONIALS (D2 big-quote style) ===== */
.testimonials { background: var(--bg-2); }
.testimonials-header { text-align: center; }
.testimonials-header .section-subtitle { margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 36px 32px;
  border: 1px solid var(--gold-border);
  background: var(--bg-1);
  position: relative;
  transition: border-color var(--t), box-shadow var(--t);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: var(--f-h);
  font-size: 7rem;
  color: rgba(212, 175, 55, 0.07);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9375rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial-text {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-1);
  line-height: 1.8;
  margin-bottom: 26px;
  font-weight: 300;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--f-h);
  font-size: 1.125rem;
  color: var(--gold);
  background: var(--bg-3);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--f-h);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 3px;
}
.testimonial-role {
  font-size: 0.6875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 120px 0;
  background: var(--bg-0);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--f-h);
  font-size: clamp(1.75rem, 4vw, 2.875rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.cta-text {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--gold);
  color: var(--bg-0);
  font-family: var(--f-b);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all var(--t);
  min-height: 48px;
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: var(--text-1);
  font-family: var(--f-b);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(242, 242, 242, 0.28);
  cursor: pointer;
  transition: all var(--t);
  min-height: 48px;
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

/* ===== CONTACT ===== */
.contact { background: var(--bg-1); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  padding: 36px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
}
.contact-info .section-eyebrow,
.contact-info .section-title { text-align: left; }
.contact-info .section-title { margin-bottom: 14px; }
.contact-text {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 300;
}
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.contact-item-value {
  font-family: var(--f-h);
  font-size: 0.9375rem;
  color: var(--text-1);
}
.contact-item-value a { transition: color var(--t); }
.contact-item-value a:hover { color: var(--gold); }

.contact-map {
  overflow: hidden;
  border: 1px solid var(--border-1);
  min-height: 460px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: none;
  filter: grayscale(100%) invert(90%) contrast(1.1);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--gold-border);
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-desc {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 30ch;
  font-weight: 300;
}
.footer-heading {
  font-family: var(--f-h);
  font-size: 0.9375rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-size: 0.875rem;
  color: var(--text-3);
  transition: color var(--t), padding-left var(--t);
}
a.footer-link:hover { color: var(--gold); padding-left: 6px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
  border-top: 1px solid var(--border-0);
}
.footer-copyright { font-size: 0.75rem; color: var(--text-3); }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-1);
  display: grid;
  place-items: center;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-3);
  transition: all var(--t);
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); }

/* ===== WHATSAPP CONTACT BUTTON (in contact section) ===== */
.whatsapp-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 14px 28px;
  background: #25D366;
  color: #ffffff;
  font-family: var(--f-b);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #25D366;
  cursor: pointer;
  transition: all var(--t);
}
.whatsapp-contact-btn svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  flex-shrink: 0;
  transition: fill var(--t);
}
.whatsapp-contact-btn:hover {
  background: transparent;
  color: #25D366;
}
.whatsapp-contact-btn:hover svg {
  fill: #25D366;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  display: grid;
  place-items: center;
  color: var(--gold);
  z-index: 997;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--t);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--gold); color: var(--bg-0); }

/* ======================================================
   RESPONSIVE BREAKPOINTS
   ====================================================== */

/* === Tablet: 1024px === */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
  }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .gallery-item:nth-child(6) { display: none; }

  .about-grid { gap: 48px; }
  .about-image-wrapper img { height: 440px; }

  .bridal-grid { gap: 48px; }
  .contact-grid { gap: 40px; }
}

/* === Mobile: 768px === */
@media (max-width: 768px) {
  section { padding: 64px 0; }

  /* Nav — reversed on mobile: solid+gold at top, fades when scrolled */
  .navbar {
    background: rgba(8, 8, 8, 0.98);
    border-bottom-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.18);
  }
  .navbar.scrolled {
    background: rgba(8, 8, 8, 0.72);
    border-bottom-color: var(--gold-border);
    box-shadow: none;
  }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Typography — tighten on mobile */
  .section-eyebrow { font-size: 9.5px; letter-spacing: 3px; margin-bottom: 10px; }
  .section-title { font-size: 1.35rem; letter-spacing: 1px; margin-bottom: 10px; }
  .section-subtitle { font-size: 0.875rem; line-height: 1.7; }
  .ornament { margin: 16px 0 36px; }

  /* Hero */
  .hero .container { padding-top: 16px; padding-bottom: 24px; }
  .hero-stats { gap: 24px; }
  .hero-stat-number { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.625rem; }
  .hero-description { font-size: 0.875rem; margin-bottom: 28px; }

  /* Buttons — compact on mobile */
  .btn-primary,
  .btn-secondary { padding: 12px 22px; font-size: 0.6875rem; }

  /* Two-column products on tablet-mobile */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .product-card-title { font-size: 1rem; }
  .product-card-desc { font-size: 0.8125rem; }
  .product-card-body { padding: 16px 16px 14px; }
  .product-card-footer { padding: 12px 16px; }

  /* About stacked */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image-wrapper { padding: 16px 16px 0 0; }
  .about-image-wrapper img { height: 300px; }
  .about-features { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-feature-icon { width: 34px; height: 34px; font-size: 0.9rem; }
  .about-feature-text { font-size: 0.8125rem; }
  .about-text { font-size: 0.875rem; }

  /* Bridal stacked */
  .bridal-grid { grid-template-columns: 1fr; gap: 36px; }
  .bridal-images { order: -1; }
  .bridal-img:nth-child(1) { height: 240px; }
  .bridal-img:nth-child(2),
  .bridal-img:nth-child(3) { height: 180px; }
  .bridal-feature-item { padding: 14px; gap: 14px; }
  .bridal-feature-num { width: 36px; height: 36px; font-size: 1rem; }
  .bridal-feature-text h4 { font-size: 0.9375rem; }
  .bridal-feature-text p { font-size: 0.8125rem; }

  /* Why us 2-col on mobile */
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-card { padding: 24px 16px; }
  .why-us-icon { width: 52px; height: 52px; font-size: 1.4rem; margin-bottom: 14px; }
  .why-us-title { font-size: 0.9375rem; margin-bottom: 8px; }
  .why-us-desc { font-size: 0.8125rem; }

  /* Gallery 2-col */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item { aspect-ratio: 1; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .gallery-item:nth-child(6) { display: block; }
  .gallery-item-label { font-size: 1rem; }

  /* Testimonials single col */
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .testimonial-card { padding: 24px 20px; }
  .testimonial-text { font-size: 0.875rem; margin-bottom: 18px; }
  .testimonial-name { font-size: 0.9rem; }

  /* CTA */
  .cta-section { padding: 64px 0; }
  .cta-title { font-size: 1.5rem; }
  .cta-text { font-size: 0.9375rem; margin-bottom: 28px; }
  .btn-gold,
  .btn-outline-white { padding: 12px 22px; font-size: 0.6875rem; }

  /* Contact stacked */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info { padding: 24px 20px; }
  .contact-map { min-height: 300px; }
  .contact-map iframe { min-height: 300px; }
  .contact-icon { width: 38px; height: 38px; font-size: 1rem; }
  .contact-item-value { font-size: 0.875rem; }

  /* WhatsApp contact button — compact on mobile */
  .whatsapp-contact-btn {
    padding: 11px 20px;
    font-size: 0.6875rem;
    gap: 9px;
    margin-top: 20px;
    letter-spacing: 1.5px;
  }
  .whatsapp-contact-btn svg { width: 17px; height: 17px; }

  /* Footer 2-col */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .footer-heading { font-size: 0.8125rem; margin-bottom: 14px; }
  .footer-link { font-size: 0.8125rem; }

  /* Float positions */
  .back-to-top { bottom: 16px; right: 16px; width: 36px; height: 36px; }
  .back-to-top svg { width: 15px; height: 15px; }
}

/* === Small Mobile: 480px === */
@media (max-width: 480px) {
  section { padding: 48px 0; }
  .container { padding: 0 16px; }

  /* Typography — even tighter */
  .section-title { font-size: 1.2rem; }
  .section-subtitle { font-size: 0.8375rem; }

  /* Hero */
  .hero-badge { font-size: 0.625rem; letter-spacing: 2px; }
  .hero-description { font-size: 0.8375rem; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
  }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-stat { flex: 1 1 calc(33% - 8px); }
  .hero-stat-number { font-size: 1.25rem; }

  /* Products single col */
  .products-grid { grid-template-columns: 1fr; }
  .product-card-image { aspect-ratio: 16 / 10; }
  .product-card-title { font-size: 0.9375rem; }

  /* About */
  .about-features { grid-template-columns: 1fr; }
  .about-image-wrapper img { height: 260px; }

  /* Why us single col */
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-card { padding: 20px 16px; }

  /* Gallery single col */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { aspect-ratio: 16 / 9; grid-column: span 1 !important; }

  /* Testimonials */
  .testimonial-card { padding: 20px 16px; }

  /* CTA actions stacked */
  .cta-title { font-size: 1.3rem; }
  .cta-text { font-size: 0.875rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-gold,
  .cta-actions .btn-outline-white { width: 100%; justify-content: center; }

  /* Contact */
  .contact-info { padding: 20px 16px; }
  .contact-item { gap: 12px; }
  .contact-item-label { font-size: 0.625rem; }
  .contact-item-value { font-size: 0.8375rem; }

  /* WhatsApp button full width on small phones */
  .whatsapp-contact-btn {
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
    font-size: 0.6875rem;
  }

  /* Footer single col */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-desc { max-width: none; }
  .footer-heading { font-size: 0.75rem; }
  .footer-link { font-size: 0.75rem; }

  /* Mobile nav full width on very small screens */
  .mobile-nav { width: 100%; right: -100%; }
}

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
