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

:root {
  --navy:      #1B2B6B;
  --navy-d:    #0d1a44;
  --navy-l:    #2d4a9e;
  --gold:      #C8963E;
  --gold-l:    #e8b455;
  --gold-d:    #a67830;
  --cream:     #FDF8F0;
  --cream2:    #F5EDD8;
  --text:      #1a1a2e;
  --muted:     #6b7280;
  --white:     #ffffff;
  --green:     #25D366;

  --gradient-brand: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
  --gradient-gold:  linear-gradient(135deg, var(--gold-d) 0%, var(--gold-l) 100%);
  --gradient-hero:  linear-gradient(135deg, #0d1a44 0%, #1B2B6B 55%, #2a4494 100%);

  --radius:    14px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(27,43,107,.08);
  --shadow:    0 4px 24px rgba(27,43,107,.12);
  --shadow-lg: 0 12px 48px rgba(27,43,107,.20);
  --shadow-xl: 0 24px 80px rgba(27,43,107,.28);

  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-out:    cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Scroll Progress ─────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 9999;
  width: 0%;
  transition: width .1s linear;
  box-shadow: 0 0 12px rgba(200,150,62,.7);
}

/* ── Reveal Animations ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .32s; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-out);
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: left .55s;
}
.btn:hover::before { left: 100%; }
.btn:hover  { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27,43,107,.3);
}
.btn-primary:hover { box-shadow: 0 10px 36px rgba(27,43,107,.45); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5a);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { box-shadow: 0 10px 36px rgba(37,211,102,.45); }

.btn-full { width: 100%; justify-content: center; margin-top: 12px; }

/* ── Section Labels ──────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .55;
}
.section-label.center { display: flex; justify-content: center; }

.section-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(30px,4.5vw,52px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
}
.section-title.center { text-align: center; }
.section-sub {
  color: var(--muted);
  max-width: 580px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
}

/* ── NAVBAR ──────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background .4s, box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(253,248,240,.93);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(200,150,62,.18), 0 4px 24px rgba(27,43,107,.08);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(200,150,62,.1);
  transition: box-shadow .3s;
}
.nav-logo:hover .nav-logo-img { box-shadow: 0 0 0 4px rgba(200,150,62,.2), 0 0 24px rgba(200,150,62,.2); }
.nav-brand {
  font-family: 'Cormorant', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  transition: color .4s;
}
.nav-brand span {
  display: block;
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--gold-l);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color .4s;
}
.navbar.scrolled .nav-brand { color: var(--navy); }
.navbar.scrolled .nav-brand span { color: var(--gold); }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  position: relative;
  padding: 4px 0;
  transition: color .3s;
}
.navbar.scrolled .nav-links a { color: var(--navy); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: width .3s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-l); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .2s;
}
.nav-toggle:hover { background: rgba(27,43,107,.06); }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, background .4s;
}
.navbar.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-hero);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/3.jpeg') center/cover no-repeat;
  opacity: .11;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,26,68,.55) 0%, rgba(27,43,107,.65) 50%, rgba(13,26,68,.88) 100%);
}

/* Floating decorative shapes */
.hero-shapes { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(200,150,62,.05);
  border: 1px solid rgba(200,150,62,.12);
  animation: floatShape 9s ease-in-out infinite;
}
.hero-shape:nth-child(1) { width: 460px; height: 460px; top: -120px; right: -80px; animation-delay: 0s; }
.hero-shape:nth-child(2) { width: 280px; height: 280px; bottom: 80px; left: -70px; animation-delay: -4s; animation-duration: 11s; }
.hero-shape:nth-child(3) { width: 160px; height: 160px; top: 35%; right: 12%; animation-delay: -6s; animation-duration: 8s; background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.07); }
@keyframes floatShape {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-22px) rotate(6deg); }
  66%      { transform: translateY(12px) rotate(-4deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 110px 24px 80px;
  max-width: 760px;
}
.hero-logo {
  width: min(360px, 80vw);
  margin: 0 auto 28px;
  filter: drop-shadow(0 4px 32px rgba(0,0,0,.5));
  animation: fadeInDown .8s var(--ease-out) both;
}
.hero-tagline {
  font-size: clamp(12px,1.8vw,15px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-l);
  font-weight: 300;
  margin-bottom: 40px;
  animation: fadeInUp .8s var(--ease-out) .2s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp .8s var(--ease-out) .4s both;
}
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4);
  animation: bounceScroll 2.2s ease-in-out infinite;
  z-index: 2;
  transition: color .3s;
}
.hero-scroll:hover { color: rgba(255,255,255,.75); }

@keyframes bounceScroll {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: .4; }
  50%      { transform: translateX(-50%) translateY(12px); opacity: .85; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── ABOUT ───────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(200,150,62,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(28px,3.5vw,44px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 15.5px;
  line-height: 1.85;
}
.about-stats {
  display: flex;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--cream2);
}
.stat {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%;
  height: 60%;
  width: 1px;
  background: var(--cream2);
}
.stat-num {
  display: block;
  font-family: 'Cormorant', serif;
  font-size: 40px;
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.about-image { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3/4;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease-out);
}
.about-image:hover .about-img-wrap img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--cream2);
}
.about-badge img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.about-badge span { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.4; }

/* ── COLLECTION ──────────────────────────────── */
.collection {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
  margin-top: 56px;
}
/* Make select items taller for visual variety */
.gallery-item:nth-child(1),
.gallery-item:nth-child(6),
.gallery-item:nth-child(11) { grid-row: span 2; }

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .38s var(--ease-spring), box-shadow .38s var(--ease-out);
}
.gallery-item:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-xl); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,20,60,.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 16px;
  transition: background .35s ease;
}
.gallery-item:hover .gallery-overlay {
  background: linear-gradient(180deg, rgba(10,20,60,.25) 0%, rgba(10,20,60,.96) 100%);
}

.gallery-info { display: flex; flex-direction: column; }

.gallery-code {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold-l);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.gallery-name {
  font-family: 'Cormorant', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin: 0 0 6px;
}

.gallery-details {
  font-size: 11px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
  font-family: 'Montserrat', sans-serif;
}
.gallery-item:hover .gallery-details {
  opacity: 1;
  transform: translateY(0);
}

.gallery-view-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
  padding: 6px 18px;
  border-radius: 50px;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease .06s, transform .3s ease .06s, border-color .2s, background .2s;
  cursor: pointer;
}
.gallery-item:hover .gallery-view-btn {
  opacity: 1;
  transform: translateY(0);
}
.gallery-view-btn:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
}
.collection-cta { text-align: center; margin-top: 56px; }

/* ── LIGHTBOX ────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5,10,30,.96);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.lightbox.active { display: flex; }
.lb-img-wrap {
  max-width: 90vw; max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.8);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 52px; height: 52px;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(8px);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 24px; right: 24px; font-size: 28px; }
.lb-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.1); }
.lb-next:hover { transform: translateY(-50%) scale(1.1); }
.lb-counter {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: 13px;
  letter-spacing: 3px;
  background: rgba(255,255,255,.08);
  padding: 8px 22px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

/* ── WHY US ──────────────────────────────────── */
.why-us {
  padding: 120px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(200,150,62,.07) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(45,74,158,.3) 0%, transparent 50%);
}
.why-us .section-label { color: var(--gold-l); }
.why-us .section-title { color: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.feature-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform .38s var(--ease-spring), background .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-10px);
  border-color: rgba(200,150,62,.2);
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(200,150,62,.13);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--gold-l);
  transition: transform .35s var(--ease-spring), background .3s;
  flex-shrink: 0;
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(4deg); background: rgba(200,150,62,.22); }
.feature-card h3 {
  font-family: 'Cormorant', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.feature-card p { color: rgba(255,255,255,.6); font-size: 14.5px; line-height: 1.75; }

/* ── CONTACT ─────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(200,150,62,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  margin-top: 56px;
  align-items: start;
}
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--cream2);
  margin-bottom: 14px;
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s, background .3s;
}
.contact-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(6px);
  border-color: rgba(200,150,62,.2);
}
.contact-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(27,43,107,.08), rgba(27,43,107,.03));
  border-radius: 14px;
}
.contact-card h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-card p { font-size: 14px; color: var(--muted); line-height: 1.9; }
.contact-card a { color: var(--navy); font-weight: 700; transition: color .2s; }
.contact-card a:hover { color: var(--gold); }
.gstin {
  font-size: 11.5px;
  margin-top: 8px;
  letter-spacing: .5px;
  color: var(--muted);
  background: var(--cream2);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
}
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 460px;
  position: relative;
}
.contact-map::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(200,150,62,.15);
  z-index: 1;
  pointer-events: none;
}
.contact-map iframe { height: 100%; }

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--navy-d);
  color: rgba(255,255,255,.65);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,150,62,.5), transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(200,150,62,.1);
}
.footer-name {
  font-family: 'Cormorant', serif;
  font-size: 19px;
  color: var(--white);
  font-weight: 700;
}
.footer-tagline { font-size: 11px; letter-spacing: 2px; color: var(--gold-l); margin-top: 5px; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a {
  font-size: 13px;
  transition: color .2s, padding-left .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold-l); padding-left: 6px; }
.footer-contact p { font-size: 13px; margin-bottom: 10px; }
.footer-contact a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-contact a:hover { color: var(--gold-l); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── WhatsApp Float ──────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 800;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #25D366, #1ebe5a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.4);
  transition: transform .38s var(--ease-spring), box-shadow .3s;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 10px 40px rgba(37,211,102,.55);
  animation: none;
}
@keyframes waPulse {
  0%   { box-shadow: 0 4px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.45); }
  70%  { box-shadow: 0 4px 24px rgba(37,211,102,.4), 0 0 0 18px rgba(37,211,102,.0); }
  100% { box-shadow: 0 4px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.0); }
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(11) { grid-row: span 1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .footer-top { grid-template-columns: 1fr; }
  .about-badge { left: 16px; bottom: -16px; }
  .contact-map { height: 340px; }
  .footer-top { gap: 32px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(253,248,240,.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease-out);
  }
  .nav-links.open { max-height: 440px; }
  .nav-links a {
    padding: 18px 28px;
    border-bottom: 1px solid var(--cream2);
    width: 100%;
    font-size: 14px;
  }
  .nav-links a::after { display: none; }

  .hero-content { padding: 100px 20px 80px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item:nth-child(6) { grid-row: span 1; }

  .about-stats { gap: 0; }
  .stat-num { font-size: 32px; }

  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ── Reduced Motion ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-logo, .hero-tagline, .hero-btns { animation: none; opacity: 1; transform: none; }
  .scroll-progress { transition: none; }
}

@media (max-width: 480px) {
  .section-title { font-size: 26px; }
  .about, .collection, .why-us, .contact { padding: 80px 0; }
  .hero-btns { flex-direction: column; align-items: center; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-grid { gap: 10px; }
}
