/* ============================================================
   KAMALA JEWELLERY — Luxury Design System
   ============================================================ */

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

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:          #F8F3EA;
  --bg2:         #F2EAD8;
  --bg3:         #EDE3CC;
  --gold:        #C89A3D;
  --gold-dark:   #A97718;
  --gold-light:  #EEDBB4;
  --champagne:   #F5EDD8;
  --brown:       #2A1F18;
  --text:        #3C2E27;
  --accent:      #8C5A24;
  --ivory:       #FAF6EE;
  --taupe:       #9A8070;
  --border:      rgba(200,154,61,0.22);
  --glass:       rgba(248,243,234,0.70);

  --font-head:   'Cormorant Garamond', serif;
  --font-body:   'Inter', sans-serif;

  --ease-lux:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out4:   cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h:       260px;
  --section-v:   clamp(80px, 10vw, 140px);
  --section-h:   clamp(24px, 5vw, 80px);
  --radius:      6px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); border: none; background: none; cursor: pointer; }
ul, ol { list-style: none; }

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── SCROLL PROGRESS ─────────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9999;
}

/* ── LOADER ──────────────────────────────────────────────── */
/* Hide hero content until JS is ready — prevents flash of unstyled content */
body:not(.js-ready) .hero-title span,
body:not(.js-ready) .hero-subtitle,
body:not(.js-ready) .hero-actions,
body:not(.js-ready) .hero-eyebrow {
  opacity: 0 !important;
  visibility: hidden;
}

#loader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s var(--ease-lux), visibility 0.8s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.loader-logo img {
  width: 110px;
  display: block; margin: 0 auto;
  opacity: 0;
  animation: fadeUp 1s var(--ease-lux) 0.3s forwards;
}
.loader-wordmark {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brown);
  overflow: hidden;
  margin-top: 12px;
}
.loader-wordmark span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 0.9s var(--ease-lux) 0.6s forwards;
}
.loader-line {
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: expandLine 1s var(--ease-lux) 1.2s forwards;
  margin-top: 10px;
}
.loader-tagline {
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-lux) 1.8s forwards;
  margin-top: 8px;
}

@keyframes fadeUp   { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform: translateY(0); } }
@keyframes slideUp  { to { opacity:1; transform: translateY(0); } }
@keyframes expandLine { to { width: 200px; } }

/* ── NAVIGATION ──────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 clamp(24px,4vw,60px);
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background 0.5s var(--ease-lux), height 0.4s var(--ease-lux);
}
#navbar.scrolled {
  background: rgba(248,243,234,0.97);
  height: 180px;
  box-shadow: 0 2px 32px rgba(42,31,24,0.10);
  border-bottom: 1px solid var(--border);
}

.nav-left, .nav-right {
  display: flex; align-items: center; gap: clamp(20px,2.5vw,40px);
  flex: 1;
}
.nav-right { justify-content: flex-end; }

.nav-center {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; flex-shrink: 0; line-height: 1;
}
.nav-center img {
  width: 230px; height: 230px; object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(169,119,24,0.25));
  margin-bottom: -62px;
  transition: width 0.4s, height 0.4s, margin-bottom 0.4s;
}
#navbar.scrolled .nav-center img { width: 145px; height: 145px; margin-bottom: -40px; }

.nav-brand-name {
  font-family: var(--font-head);
  font-size: clamp(18px,2vw,26px);
  font-weight: 700; letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #fff;
  position: relative; z-index: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
  transition: color 0.4s;
}
.nav-brand-sub {
  font-family: var(--font-head);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.50em; text-transform: uppercase;
  color: #ffe8a0;
  margin-top: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.30);
  padding-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: color 0.4s, border-color 0.4s, text-shadow 0.4s;
}
.nav-brand-tagline {
  font-size: 8px; font-weight: 500;
  letter-spacing: 0.30em; text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  margin-top: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: color 0.4s, text-shadow 0.4s;
}

/* When navbar gets solid bg on scroll → switch to dark colours */
#navbar.scrolled .nav-brand-name {
  color: var(--brown);
  text-shadow: none;
}
#navbar.scrolled .nav-brand-sub {
  color: var(--accent);
  border-bottom-color: var(--border);
  text-shadow: none;
}
#navbar.scrolled .nav-brand-tagline {
  color: var(--taupe);
  text-shadow: none;
}
/* Active pill on scrolled (solid bg) — use light gold tint */
#navbar.scrolled .nav-link.active {
  background: rgba(200,154,61,0.14);
  box-shadow: none;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brown); white-space: nowrap;
  position: relative; padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-link::after { display: none; }

.nav-link:hover { color: var(--brown); }

.nav-link.active {
  color: var(--brown);
  background: rgba(255,255,255,0.92);
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(42,31,24,0.10);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dark); color: #fff8ee;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 11px 24px; border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(169,119,24,0.38);
  transition: background 0.3s, transform 0.3s var(--ease-out4), box-shadow 0.3s;
}
.nav-cta:hover {
  background: var(--brown); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42,31,24,0.30);
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--brown);
  transition: transform 0.4s var(--ease-lux), opacity 0.3s;
}

/* Mobile Nav */
#mobile-nav {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 40px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease-lux), visibility 0.5s;
}
#mobile-nav.open { opacity: 1; visibility: visible; }
#mobile-nav .nav-link {
  font-size: 36px; font-family: var(--font-head);
  font-weight: 300; letter-spacing: 0.08em;
}

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative; width: 100%;
  height: calc(100vh + var(--nav-h));
  min-height: 900px;
  margin-top: calc(-1 * var(--nav-h));
  overflow: hidden; display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; background: #e8d8a8; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: right center;
  will-change: transform;
}
.hero-bg::after { content: none; }

.hero-content {
  position: relative; z-index: 2;
  padding: calc(var(--nav-h) + 100px) 0 0 8%;
  max-width: 760px;
}
.hero-eyebrow { display: none; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 400; line-height: 1.0;
  color: var(--brown); margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-title span { display: block; }
.hero-title span:nth-child(odd)  { font-weight: 300; }
.hero-title span:nth-child(even) { font-weight: 700; font-style: italic; }

.hero-subtitle {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 600; line-height: 1.85;
  color: #ffe8a0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
  max-width: 390px;
  margin-bottom: 44px; opacity: 0;
}

.hero-tagline {
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: rgba(30, 18, 8, 0.85);
  margin-bottom: 40px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(255,255,255,0.30);
  max-width: 420px;
  opacity: 0;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; opacity: 0; }

/* Decorative corner frames */
#hero::before, #hero::after {
  content: ''; position: absolute;
  width: 64px; height: 64px;
  border-color: rgba(169,119,24,0.50); border-style: solid;
  z-index: 3; pointer-events: none;
}
#hero::before { top: 22px; left: 22px; border-width: 1.5px 0 0 1.5px; }
#hero::after  { bottom: 22px; right: 22px; border-width: 0 1.5px 1.5px 0; }

.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--accent); font-size: 8px; letter-spacing: 0.35em;
  text-transform: uppercase; z-index: 2; opacity: 0;
  animation: fadeUp 1s var(--ease-lux) 2.8s forwards;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-dark); color: #fff8ee;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 15px 38px; border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(169,119,24,0.35);
  transition: background 0.3s, transform 0.3s var(--ease-out4), box-shadow 0.3s;
}
.btn-primary:hover {
  background: var(--brown); transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(42,31,24,0.28);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--brown); font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 15px 0;
  border-bottom: 1.5px solid var(--gold-dark);
  transition: color 0.3s, gap 0.3s var(--ease-lux);
}
.btn-secondary:hover { color: var(--accent); gap: 16px; }

/* ── GOLD TICKER ─────────────────────────────────────────── */
#gold-ticker {
  position: relative; z-index: 10;
  background: var(--brown); color: var(--ivory);
  padding: 18px clamp(24px,5vw,60px);
  display: flex; align-items: center; gap: 48px;
  border-top: 1px solid rgba(200,154,61,0.25);
}
.ticker-label {
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-light);
  white-space: nowrap; flex-shrink: 0;
}
.ticker-items { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.ticker-item { display: flex; align-items: baseline; gap: 10px; }
.ticker-metal { font-size: 10px; letter-spacing: 0.2em; color: rgba(238,219,180,0.7); text-transform: uppercase; }
.ticker-price { font-family: var(--font-head); font-size: 22px; font-weight: 400; color: var(--ivory); }
.ticker-change { font-size: 11px; font-weight: 500; }
.ticker-change.up { color: #6fcf97; }
.ticker-change.down { color: #eb5757; }
.ticker-updated { margin-left: auto; font-size: 9px; letter-spacing: 0.2em; color: var(--taupe); text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }

/* ── SECTION SHARED ──────────────────────────────────────── */
.section-pad { padding: var(--section-v) var(--section-h); }

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.40em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; flex-shrink: 0;
  width: 36px; height: 1px; background: var(--gold);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300; line-height: 1.06;
  color: var(--brown);
}
.section-title em { font-style: italic; font-weight: 600; }

.section-body {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300; line-height: 1.85;
  color: var(--taupe);
}

/* Gold divider */
.gold-divider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px 0;
}

/* ── COLLECTIONS ─────────────────────────────────────────── */
#collections {
  padding: var(--section-v) var(--section-h);
  background: var(--bg);
}
.collections-head {
  text-align: center; margin-bottom: 64px;
}
.collections-head .section-title { margin-bottom: 16px; }
.collections-head .eyebrow { justify-content: center; }
.collections-head .eyebrow::before { display: none; }

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

.col-card {
  position: relative; border-radius: 8px;
  overflow: hidden; aspect-ratio: 3/4;
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s;
}
.col-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(42,31,24,0.18);
}
.col-card-img {
  position: absolute; inset: 0;
}
.col-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-lux);
}
.col-card:hover .col-card-img img { transform: scale(1.07); }

.col-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg,
    rgba(42,31,24,0.80) 0%,
    rgba(42,31,24,0.28) 55%,
    transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 30px 26px;
  transition: background 0.5s;
}

/* Gold border glow on hover */
.col-card::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border-color 0.4s;
  pointer-events: none; z-index: 2;
}
.col-card:hover::after { border-color: var(--gold); }

.col-card-tag {
  font-size: 9px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 6px;
}
.col-card-name {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500; color: var(--ivory);
  line-height: 1.1; margin-bottom: 10px;
}
.col-card-desc {
  font-size: 12px; color: rgba(238,219,180,0.75);
  line-height: 1.6; margin-bottom: 18px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s var(--ease-lux);
}
.col-card:hover .col-card-desc { opacity: 1; transform: translateY(0); }

.col-card-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-light);
  border-bottom: 1px solid rgba(238,219,180,0.4);
  padding-bottom: 3px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s 0.05s, transform 0.4s 0.05s var(--ease-lux), gap 0.3s;
}
.col-card:hover .col-card-btn { opacity: 1; transform: translateY(0); }
.col-card-btn:hover { gap: 12px; color: var(--gold-light); }

/* ── HERITAGE ────────────────────────────────────────────── */
#heritage {
  padding: clamp(60px,7vw,100px) var(--section-h);
  background: var(--champagne);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.heritage-img-wrap { position: relative; }
.heritage-img-main {
  width: 100%; border-radius: 8px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(42,31,24,0.16);
}
.heritage-img-main img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-lux);
}
.heritage-img-main:hover img { transform: scale(1.04); }
.heritage-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 110px; height: 110px;
  background: var(--gold-dark); border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; color: var(--ivory);
  box-shadow: 0 12px 40px rgba(169,119,24,0.45);
}
.heritage-badge-num {
  font-family: var(--font-head); font-size: 32px;
  font-weight: 300; line-height: 1;
}
.heritage-badge-label {
  font-size: 8px; letter-spacing: 0.2em;
  text-transform: uppercase; margin-top: 2px;
}

.heritage-text .eyebrow { margin-bottom: 16px; }
.heritage-text .section-title { margin-bottom: 20px; }
.heritage-text .section-body { margin-bottom: 32px; }

.heritage-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 24px; margin-bottom: 40px;
  padding: 28px; background: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.hstat-num {
  font-family: var(--font-head);
  font-size: clamp(32px,3.5vw,48px);
  font-weight: 300; color: var(--gold-dark); line-height: 1;
}
.hstat-label {
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--taupe); margin-top: 4px;
}

/* ── WHY CHOOSE ──────────────────────────────────────────── */
#why {
  padding: clamp(48px,6vw,80px) var(--section-h);
  background: var(--bg);
}
.why-head { text-align: center; margin-bottom: 28px; }
.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  justify-content: center;
}
.why-eyebrow::before,
.why-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-dark);
}
.why-main-heading {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 700;
  line-height: 1.0;
  color: #1a1108;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}
.why-main-heading em {
  font-style: italic;
  font-weight: 700;
  color: var(--accent);
}
.why-sub {
  font-size: 14px;
  color: var(--taupe);
  line-height: 1.8;
  max-width: 460px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 40px 32px;
  background: var(--ivory);
  border-radius: 10px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(169,119,24,0.14);
}
.why-icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--champagne));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  transition: background 0.3s;
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ivory);
}
.why-icon svg { width: 24px; height: 24px; }
.why-title {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 600;
  color: var(--brown); margin-bottom: 10px;
}
.why-text { font-size: 13px; color: var(--taupe); line-height: 1.7; }

/* ── NEW ARRIVALS ────────────────────────────────────────── */
#arrivals {
  padding: var(--section-v) var(--section-h);
  background: var(--bg2);
}
.arrivals-head {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px; gap: 40px;
}
.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.arrival-card {
  background: var(--ivory);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s;
}
.arrival-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(42,31,24,0.14);
}
.arrival-img {
  position: relative; overflow: hidden;
  aspect-ratio: 1;
}
.arrival-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-lux);
}
.arrival-card:hover .arrival-img img { transform: scale(1.07); }
.arrival-img-actions { display: none; }
.arrival-action-btn {
  width: 36px; height: 36px;
  background: rgba(248,243,234,0.90);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown);
  backdrop-filter: blur(8px);
  transition: background 0.2s, color 0.2s;
}
.arrival-action-btn:hover { background: var(--gold-dark); color: var(--ivory); }
.arrival-action-btn svg { width: 16px; height: 16px; }

.arrival-body { padding: 18px 20px 22px; }
.arrival-cat {
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 5px;
}
.arrival-name {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 500;
  color: var(--brown); margin-bottom: 8px; line-height: 1.2;
}
.arrival-price {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 400; color: var(--accent);
}
.arrival-cta {
  display: block; text-align: center;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-dark);
  padding: 10px; margin-top: 12px;
  border-top: 1px solid var(--border);
  transition: color 0.3s;
}
.arrival-cta:hover { color: var(--brown); }

/* ── BRIDAL BANNER ───────────────────────────────────────── */
#bridal-banner {
  position: relative; width: 100%;
  height: clamp(480px, 65vh, 700px);
  overflow: hidden;
  display: flex; align-items: center;
}
.bridal-bg { position: absolute; inset: 0; }
.bridal-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.bridal-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(42,31,24,0.75) 0%,
    rgba(42,31,24,0.45) 45%,
    rgba(42,31,24,0.10) 80%,
    transparent 100%);
}
.bridal-content {
  position: relative; z-index: 2;
  padding: 0 var(--section-h);
  max-width: 640px;
}
.bridal-eyebrow {
  font-size: 10px; letter-spacing: 0.40em;
  text-transform: uppercase; color: var(--gold-light);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.bridal-eyebrow::before {
  content: ''; width: 36px; height: 1px;
  background: var(--gold-light); display: block;
}
.bridal-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 300; line-height: 1.05;
  color: var(--ivory); margin-bottom: 20px;
}
.bridal-title em { font-weight: 600; font-style: italic; }
.bridal-body {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: rgba(250,246,238,0.80); margin-bottom: 40px;
  max-width: 420px;
}

/* ── STATS ───────────────────────────────────────────────── */
#stats {
  padding: 52px var(--section-h);
  background: var(--brown);
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; position: relative;
}
#stats::before {
  content: ''; position: absolute; top: 0; left: var(--section-h); right: var(--section-h);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stat-item {
  padding: 28px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(48px,5vw,72px);
  font-weight: 300; color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-light);
  opacity: 0.7;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
#testimonials {
  padding: var(--section-v) var(--section-h);
  background: var(--bg);
}
.testimonials-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 56px;
}
.rating-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: var(--ivory); border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.rating-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.rating-score {
  font-family: var(--font-head); font-size: 28px;
  font-weight: 400; color: var(--brown);
}
.rating-count { font-size: 11px; color: var(--taupe); letter-spacing: 0.05em; }

.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.testi-card {
  background: var(--ivory); border-radius: 10px;
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(169,119,24,0.12);
}
.testi-quote-icon {
  font-family: var(--font-head); font-size: 72px;
  font-weight: 300; line-height: 0.8;
  color: var(--gold-light); margin-bottom: 12px;
}
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text {
  font-family: var(--font-head); font-size: 17px;
  font-weight: 400; font-style: italic;
  line-height: 1.7; color: var(--brown); margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--champagne));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 18px; color: var(--gold-dark);
  border: 1px solid var(--border);
}
.testi-name { font-weight: 600; font-size: 13px; color: var(--brown); }
.testi-location { font-size: 11px; color: var(--taupe); letter-spacing: 0.08em; }

/* ── VISIT STORE ─────────────────────────────────────────── */
#visit-store {
  padding: var(--section-v) var(--section-h);
  background: var(--bg2);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.store-map-wrap { border-radius: 10px; overflow: hidden; box-shadow: 0 16px 48px rgba(42,31,24,0.16); }
.store-map-wrap iframe { width: 100%; height: 460px; border: none; display: block; filter: sepia(15%) saturate(0.9); }

.store-info .eyebrow { margin-bottom: 14px; }
.store-info .section-title { margin-bottom: 20px; }
.store-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.store-detail-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
}
.store-detail-icon svg { width: 18px; height: 18px; }
.store-detail-label {
  font-size: 9px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--taupe); margin-bottom: 3px;
}
.store-detail-value { font-size: 14px; font-weight: 400; color: var(--brown); line-height: 1.6; }
.store-detail-value a { color: var(--accent); transition: color 0.3s; }
.store-detail-value a:hover { color: var(--brown); }

.store-hours-title {
  font-family: var(--font-head); font-size: 20px;
  font-weight: 500; color: var(--brown); margin-bottom: 12px;
}
.store-hours-item {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--taupe);
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.store-hours-item:last-child { border-bottom: none; }
.store-hours-item span:last-child { color: var(--gold-dark); font-weight: 500; }

.store-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* ── GALLERY ─────────────────────────────────────────────── */
#gallery {
  padding: var(--section-v) var(--section-h);
  background: var(--bg);
}
.gallery-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 8px;
}
.gallery-item {
  position: relative; overflow: hidden;
  aspect-ratio: 1; border-radius: 4px;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-lux), filter 0.5s;
  filter: saturate(0.85);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(42,31,24,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s;
}
.gallery-overlay svg {
  width: 26px; height: 26px; color: var(--ivory);
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s var(--ease-out4);
}
.gallery-item:hover img { transform: scale(1.09); filter: saturate(1); }
.gallery-item:hover .gallery-overlay { background: rgba(42,31,24,0.35); }
.gallery-item:hover .gallery-overlay svg { opacity: 1; transform: scale(1); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #1a1008;
  padding: 80px var(--section-h) 40px;
  position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; top: 0;
  left: var(--section-h); right: var(--section-h);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
/* Large lotus watermark */
footer::after {
  content: '✿'; font-size: 360px;
  position: absolute; bottom: -60px; right: -40px;
  color: rgba(200,154,61,0.05); line-height: 1;
  pointer-events: none; z-index: 0;
}
.footer-top {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(200,154,61,0.18);
  margin-bottom: 36px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-logo img { width: 120px; filter: brightness(1.15); }

.footer-brand-name {
  display: flex;
  flex-direction: column;
  margin-top: -2px;
}
.fbname-top {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #e8c87a;
  line-height: 1.1;
}
.fbname-bot {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-top: 2px;
}
.footer-tagline {
  font-family: var(--font-head); font-size: 17px;
  font-weight: 300; font-style: italic;
  color: #e8c87a; line-height: 1.65; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(200,154,61,0.35);
  display: flex; align-items: center; justify-content: center;
  color: #e8c87a; font-size: 12px;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.footer-social a:hover { border-color: var(--gold); background: rgba(200,154,61,0.18); color: #fff; }
.footer-social a svg { width: 14px; height: 14px; }

.footer-col-title {
  font-size: 9px; letter-spacing: 0.40em;
  text-transform: uppercase; color: #c9a84c;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,154,61,0.25);
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 13px; }
.footer-link {
  font-size: 13px; font-weight: 400; color: #d4b483;
  letter-spacing: 0.04em;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-link:hover { color: #fff8ee; padding-left: 6px; }

.footer-contact-item {
  display: flex; gap: 10px; margin-bottom: 14px;
  font-size: 13px; font-weight: 400; color: #d4b483; line-height: 1.65;
}
.footer-contact-item a { color: #d4b483; transition: color 0.3s; }
.footer-contact-item a:hover { color: #fff; }
.footer-contact-icon { color: #c9a84c; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: #8a7060;
  letter-spacing: 0.05em; flex-wrap: wrap; gap: 16px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: #8a7060; transition: color 0.3s; }
.footer-legal a:hover { color: #e8c87a; }

/* ── INSTAGRAM CTA BAR ───────────────────────────────────── */
#instagram-cta {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  padding: 22px var(--section-h);
  position: relative;
  z-index: 10;
}
.ig-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.ig-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.18);
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}
.ig-icon svg { width: 24px; height: 24px; }
.ig-text { flex: 1; min-width: 180px; }
.ig-handle {
  font-family: var(--font-head);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}
.ig-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.82);
  margin-top: 4px;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #c13584;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 40px;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.ig-btn:hover {
  background: #c13584;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}
@media (max-width: 640px) {
  .ig-inner { justify-content: center; text-align: center; }
  .ig-text { flex: unset; }
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
#whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px;
  width: 52px; height: 52px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.40); z-index: 500;
  transition: transform 0.3s var(--ease-out4);
}
#whatsapp-btn:hover { transform: scale(1.12); }
#whatsapp-btn svg { width: 26px; height: 26px; color: white; }

/* ── BACK TO TOP ─────────────────────────────────────────── */
#back-to-top {
  position: fixed; bottom: 28px; left: 28px;
  width: 44px; height: 44px;
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease-out4);
  z-index: 490; color: var(--gold-dark);
  box-shadow: 0 4px 18px rgba(42,31,24,0.12);
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-3px); }
#back-to-top svg { width: 18px; height: 18px; }

/* ── COLLECTION PAGE ─────────────────────────────────────── */
#jewellery-hero {
  position: relative;
  height: calc(65vh + var(--nav-h));
  min-height: 680px;
  margin-top: calc(-1 * var(--nav-h));
  overflow: hidden; display: flex; align-items: center;
}
.jewellery-hero-bg { position: absolute; inset: 0; }
.jewellery-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.jewellery-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(42,31,24,0.70) 0%, rgba(42,31,24,0.30) 50%, transparent 100%);
}
.jewellery-hero-content {
  position: relative; z-index: 2;
  padding: calc(var(--nav-h) + 40px) var(--section-h) 0;
}
.jewellery-hero-content .section-title { color: var(--ivory); }
.jewellery-hero-content .eyebrow { color: var(--gold-light); }
.jewellery-hero-content .eyebrow::before { background: var(--gold-light); }
.jewellery-hero-content .section-body { color: rgba(250,246,238,0.75); max-width: 480px; margin-top: 14px; }

/* Filters */
.jewellery-filters {
  padding: 28px var(--section-h);
  background: var(--champagne);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(42,31,24,0.07);
}
.filter-btn {
  padding: 8px 20px; border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe); background: transparent;
  transition: all 0.3s var(--ease-lux);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold-dark); border-color: var(--gold-dark);
  color: var(--ivory);
}

/* Jewellery grid */
.jewellery-section { padding: var(--section-v) var(--section-h); background: var(--bg); }
.jewellery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.jewellery-card {
  background: var(--ivory); border-radius: 8px;
  border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s;
}
.jewellery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(169,119,24,0.16);
}
.jewellery-card-img { aspect-ratio: 1; overflow: hidden; }
.jewellery-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-lux);
}
.jewellery-card:hover .jewellery-card-img img { transform: scale(1.07); }
.jewellery-card-body { padding: 20px 22px 24px; }
.jewellery-card-cat {
  font-size: 9px; letter-spacing: 0.30em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 5px;
}
.jewellery-card-name {
  font-family: var(--font-head); font-size: 20px;
  font-weight: 500; color: var(--brown);
  margin-bottom: 6px; line-height: 1.2;
}
.jewellery-card-desc { font-size: 12px; color: var(--taupe); line-height: 1.6; margin-bottom: 16px; }
.jewellery-card-action {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s var(--ease-lux);
}
.jewellery-card-action:hover { gap: 12px; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
#about-hero {
  position: relative;
  height: calc(75vh + var(--nav-h));
  min-height: 760px;
  margin-top: calc(-1 * var(--nav-h));
  overflow: hidden; display: flex; align-items: flex-end;
}
.about-hero-bg { position: absolute; inset: 0; }
.about-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(42,31,24,0.80) 0%, rgba(42,31,24,0.25) 55%, transparent 100%);
}
.about-hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--section-h) 90px;
}
.about-hero-content .section-title { color: var(--ivory); font-size: clamp(40px,5.5vw,72px); }
.about-hero-content .eyebrow { color: var(--gold-light); }
.about-hero-content .eyebrow::before { background: var(--gold-light); }

#about-story {
  padding: var(--section-v) var(--section-h);
  background: var(--bg);
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center;
}
.about-story-content .section-title { margin-bottom: 20px; }
.about-story-content .section-body { margin-bottom: 32px; }

.about-img-stack { position: relative; }
.about-img-stack img:first-child {
  width: 88%; border-radius: 8px;
  box-shadow: 0 20px 56px rgba(42,31,24,0.16);
  aspect-ratio: 3/4; object-fit: cover;
}
.about-img-stack img:last-child {
  position: absolute; bottom: -36px; right: -16px;
  width: 52%; border-radius: 8px;
  border: 5px solid var(--bg);
  box-shadow: 0 12px 36px rgba(42,31,24,0.20);
  aspect-ratio: 1; object-fit: cover;
}

#about-counters {
  padding: 72px var(--section-h);
  background: var(--brown);
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
}
.counter-item { padding: 40px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.05); }
.counter-item:last-child { border-right: none; }
.counter-num {
  font-family: var(--font-head); font-size: clamp(48px,5vw,70px);
  font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.counter-label {
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-light); opacity: 0.7;
}

/* Timeline */
.timeline { max-width: 720px; margin: 60px auto 0; }
.timeline-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 28px; padding-bottom: 40px; position: relative;
}
.timeline-item:not(:last-child)::before {
  content: ''; position: absolute;
  left: 39px; top: 24px; width: 1px;
  height: calc(100% - 24px);
  background: linear-gradient(180deg, var(--gold), var(--border));
}
.timeline-year {
  font-family: var(--font-head); font-size: 13px;
  font-weight: 600; color: var(--gold-dark);
  text-align: right; padding-top: 4px;
}
.timeline-dot {
  position: absolute; left: 35px; top: 8px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px var(--border);
}
.timeline-title {
  font-family: var(--font-head); font-size: 19px;
  font-weight: 500; color: var(--brown); margin-bottom: 5px;
}
.timeline-text { font-size: 13px; color: var(--taupe); line-height: 1.7; }

/* About values */
#about-values {
  padding: var(--section-v) var(--section-h);
  background: var(--bg2);
}
.about-values-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border); margin-top: 56px;
}
.value-item {
  background: var(--bg2); padding: 44px 32px;
  transition: background 0.4s;
}
.value-item:hover { background: var(--ivory); }
.value-icon {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--border); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.value-item:hover .value-icon { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--ivory); }
.value-icon svg { width: 22px; height: 22px; }
.value-title {
  font-family: var(--font-head); font-size: 20px;
  font-weight: 500; color: var(--brown); margin-bottom: 9px;
}
.value-text { font-size: 13px; color: var(--taupe); line-height: 1.7; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
#contact-hero {
  position: relative;
  height: calc(55vh + var(--nav-h));
  min-height: 620px;
  margin-top: calc(-1 * var(--nav-h));
  overflow: hidden; display: flex; align-items: center;
}
.contact-hero-bg { position: absolute; inset: 0; }
.contact-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(42,31,24,0.72) 0%, rgba(42,31,24,0.35) 50%, transparent 100%);
}
.contact-hero-content {
  position: relative; z-index: 2;
  padding: calc(var(--nav-h) + 40px) var(--section-h) 0;
}
.contact-hero-content .section-title { color: var(--ivory); }
.contact-hero-content .eyebrow { color: var(--gold-light); }
.contact-hero-content .eyebrow::before { background: var(--gold-light); }
.contact-hero-content .section-body { color: rgba(250,246,238,0.75); max-width: 440px; margin-top: 14px; }

#contact-section {
  padding: var(--section-v) var(--section-h);
  background: var(--bg);
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.contact-info .eyebrow { margin-bottom: 14px; }
.contact-info .section-title { margin-bottom: 18px; }
.contact-info .section-body { margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.contact-detail-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: var(--gold-dark);
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-label { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--taupe); margin-bottom: 3px; }
.contact-detail-value { font-size: 14px; font-weight: 400; color: var(--brown); line-height: 1.55; }
.contact-hours-title { font-family: var(--font-head); font-size: 20px; font-weight: 500; color: var(--brown); margin-bottom: 12px; }
.hours-item { display: flex; justify-content: space-between; font-size: 13px; color: var(--taupe); padding: 8px 0; border-bottom: 1px solid var(--border); }
.hours-item:last-child { border-bottom: none; }
.hours-item span:last-child { color: var(--gold-dark); font-weight: 500; }

.contact-form-wrap {
  background: var(--ivory); border-radius: 10px;
  border: 1px solid var(--border); padding: 48px 44px;
  box-shadow: 0 12px 48px rgba(42,31,24,0.08);
}
.contact-form-title { font-family: var(--font-head); font-size: 28px; font-weight: 400; color: var(--brown); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--taupe); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 0;
  background: transparent; border: none;
  border-bottom: 1px solid var(--border);
  color: var(--brown); font-size: 15px; font-family: var(--font-body);
  outline: none; transition: border-color 0.3s; border-radius: 0;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-bottom-color: var(--gold-dark); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(154,128,112,0.5); font-size: 14px; }
.form-textarea { resize: none; height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-submit {
  width: 100%; padding: 17px; background: var(--gold-dark); color: var(--ivory);
  font-size: 11px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  border-radius: var(--radius); transition: background 0.3s, transform 0.3s var(--ease-out4), box-shadow 0.3s;
}
.form-submit:hover { background: var(--brown); transform: translateY(-1px); box-shadow: 0 10px 32px rgba(42,31,24,0.22); }

#map-section { height: 460px; position: relative; }
#map-section iframe { width: 100%; height: 100%; border: none; filter: sepia(15%); }
.map-overlay-card {
  position: absolute; bottom: 36px; left: var(--section-h);
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 26px;
  box-shadow: 0 10px 36px rgba(42,31,24,0.14);
}
.map-overlay-name { font-family: var(--font-head); font-size: 17px; font-weight: 500; color: var(--brown); margin-bottom: 4px; }
.map-overlay-addr { font-size: 12px; color: var(--taupe); line-height: 1.55; }

/* ── REVEAL CLASSES ──────────────────────────────────────── */
.reveal       { opacity: 0; transform: translateY(40px); }
.reveal-left  { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-scale { opacity: 0; transform: scale(0.92); }

/* ── SAFETY NET: force visible if GSAP never fires ────────── */
/* Applies after 1.5s — if scroll animations haven't triggered,
   content becomes visible so nothing stays hidden forever     */
@keyframes revealFallback {
  to { opacity: 1 !important; transform: none !important; }
}
.reveal, .reveal-left, .reveal-right, .reveal-scale,
.stagger-children > * {
  animation: revealFallback 0.01s 1.5s forwards;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

/* ─ Slide-in Drawer Nav ─ */
.nav-drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(42,31,24,0.45);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.nav-drawer-overlay.open { opacity: 1; pointer-events: auto; }

#nav-drawer {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100%;
  background: var(--bg);
  z-index: 1101;
  display: flex; flex-direction: column;
  padding: 0;
  box-shadow: -8px 0 40px rgba(42,31,24,0.18);
  transition: right 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  overflow-y: auto;
}
#nav-drawer.open { right: 0; }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.drawer-logo {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none;
}
.drawer-logo img { width: 60px; height: 60px; object-fit: contain; }
.drawer-logo-name {
  font-family: var(--font-head); font-size: 14px;
  font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--brown);
  margin-top: 2px; line-height: 1;
}
.drawer-logo-sub {
  font-size: 9px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--accent);
}
.drawer-close {
  width: 36px; height: 36px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown); background: none;
  transition: background 0.3s, color 0.3s;
  flex-shrink: 0;
}
.drawer-close:hover { background: var(--brown); color: var(--ivory); }
.drawer-close svg { width: 16px; height: 16px; }

.drawer-links {
  display: flex; flex-direction: column;
  padding: 24px 0; flex: 1;
}
.drawer-link {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--brown);
  padding: 14px 28px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.25s, color 0.25s;
  text-decoration: none;
}
.drawer-link svg { width: 16px; height: 16px; color: var(--gold-dark); opacity: 0; transition: opacity 0.25s; }
.drawer-link:hover { background: var(--champagne); color: var(--accent); }
.drawer-link:hover svg { opacity: 1; }
.drawer-link.active { color: var(--accent); font-weight: 600; }

.drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.drawer-footer .nav-cta {
  width: 100%; justify-content: center;
  padding: 13px 20px;
}
.drawer-sub {
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--taupe);
  text-align: center; margin-top: 12px;
}

/* ─ 1280px ─ */
@media (max-width: 1280px) {
  :root { --nav-h: 220px; }
  .collections-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  #stats { grid-template-columns: repeat(2,1fr); }
  #about-counters { grid-template-columns: repeat(2,1fr); }
  .about-values-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(3,1fr); }
}

/* ─ 1024px ─ */
@media (max-width: 1024px) {
  :root {
    --nav-h: 200px;
    --section-h: clamp(20px,4vw,48px);
    --section-v: clamp(56px,7vw,100px);
  }
  #heritage { grid-template-columns: 1fr; gap: 48px; }
  #about-story-full { grid-template-columns: 1fr; }
  #about-commitment { grid-template-columns: 1fr; }
  #about-visit { grid-template-columns: 1fr; }
  #contact-section { grid-template-columns: 1fr; gap: 48px; }
  #visit-store { grid-template-columns: 1fr; gap: 40px; }
  .jewellery-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .heritage-stats { grid-template-columns: 1fr 1fr 1fr; }
}

/* ─ 768px ─ */
@media (max-width: 768px) {
  :root {
    --nav-h: 150px;
    --section-h: 20px;
    --section-v: clamp(48px,8vw,80px);
  }

  /* Navbar — solid ivory background from the start on mobile, never transparent */
  #navbar {
    justify-content: center;
    padding: 0 16px;
    background: var(--bg) !important;
    border-bottom: 1px solid var(--border) !important;
    box-shadow: 0 2px 16px rgba(42,31,24,0.08) !important;
  }
  /* Navbar: hide desktop links, show hamburger */
  .nav-left, .nav-right { display: none; }
  .nav-hamburger {
    display: flex;
    position: absolute; right: 16px; top: 50%;
    transform: translateY(-50%);
    z-index: 1200;
  }
  .nav-center img {
    width: 100px; height: 100px;
    margin-bottom: -28px;
  }
  .nav-brand-name { font-size: 16px; letter-spacing: 0.25em; }
  .nav-brand-sub  { font-size: 10px; letter-spacing: 0.38em; }
  /* Mobile always has solid bg — keep text dark */
  .nav-brand-name { color: var(--brown) !important; text-shadow: none !important; }
  .nav-brand-sub  { color: var(--accent) !important; border-bottom-color: var(--border) !important; text-shadow: none !important; }
  .nav-brand-tagline { color: var(--taupe) !important; text-shadow: none !important; }
  .nav-brand-tagline { font-size: 8px; }

  /* Show drawer overlay */
  .nav-drawer-overlay { display: block; }

  /* Sections */
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .why-grid         { grid-template-columns: 1fr 1fr; }
  .testi-grid       { grid-template-columns: 1fr; }
  #stats            { grid-template-columns: 1fr 1fr; padding: 40px 20px; }
  .footer-top       { grid-template-columns: 1fr; gap: 32px; }
  .form-row         { grid-template-columns: 1fr; gap: 0; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .heritage-img-badge { display: none; }
  .heritage-stats   { grid-template-columns: 1fr 1fr; }
  .testimonials-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .arrivals-grid    { grid-template-columns: 1fr 1fr; }
  #about-counters   { grid-template-columns: 1fr 1fr; padding: 48px 20px; }
  .counter-item     { padding: 32px 16px; }

  /* About page local grids */
  .about-hero-inner { grid-template-columns: 1fr !important; gap: 36px !important; padding: 48px 20px !important; }
  #about-pillars    { grid-template-columns: 1fr 1fr !important; }
  .about-hero-stats { grid-template-columns: 1fr 1fr; }
  .story-stats      { grid-template-columns: 1fr 1fr; }
  #about-commitment { grid-template-columns: 1fr !important; }
  #about-story-full { grid-template-columns: 1fr !important; }
  #about-visit      { grid-template-columns: 1fr !important; }

  /* Contact page */
  .contact-form-wrap { padding: 32px 20px !important; }
  #map-section { height: 320px; }
  .map-overlay-card { left: 16px; bottom: 16px; }

  /* Hero content */
  .hero-content {
    padding: calc(var(--nav-h) + 32px) 24px 0 24px !important;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - var(--nav-h));
  }
  .hero-title {
    font-size: clamp(38px, 10vw, 56px) !important;
    line-height: 1.0 !important;
    margin-bottom: 14px !important;
  }
  .hero-tagline {
    font-size: 13px !important;
    letter-spacing: 0.03em !important;
    color: rgba(30,18,8,0.88) !important;
    text-shadow: 0 1px 4px rgba(255,255,255,0.25) !important;
    margin-bottom: 28px !important;
    opacity: 1 !important;
  }
  .hero-actions { gap: 12px; flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { font-size: 10px; padding: 13px 24px; }

  /* Show jewellery clearly on mobile — position image to centre-right where jewellery sits */
  .hero-bg img {
    object-position: 85% center !important;
  }
  /* Reduce image opacity on mobile for home page hero only */
  #hero .hero-bg img {
    opacity: 0.55 !important;
  }
  /* Subtle bottom overlay only — keeps text readable without black face on left */
  .hero-bg::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.08) 0%,
      rgba(0,0,0,0.18) 50%,
      rgba(0,0,0,0.35) 100%
    ) !important;
  }

  /* Jewellery hero */
  .jewellery-hero-content { padding: calc(var(--nav-h) + 30px) 20px 0 !important; }
  .about-hero-content { padding: 0 20px 60px !important; }
  .contact-hero-content { padding: calc(var(--nav-h) + 30px) 20px 0 !important; }

  /* Gold ticker */
  #gold-ticker { padding: 14px 20px; gap: 20px; overflow-x: auto; flex-wrap: nowrap; }
  .ticker-items { flex-wrap: nowrap; gap: 28px; }
  .ticker-updated { display: none; }

  /* Heritage */
  #heritage { padding: 48px 20px; }

  /* Why */
  #why { padding: 36px 20px 48px; }
  .why-head { margin-bottom: 20px; }

  /* Bridal */
  .bridal-content { padding: 0 20px; }
  .bridal-title { font-size: clamp(32px,8vw,52px); }

  /* Footer */
  footer { padding: 56px 20px 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  /* Collections */
  .collections-head { padding: 0 20px; }

  /* Arrivals */
  #arrivals { padding: 48px 20px; }
  .arrivals-head { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* Testimonials */
  #testimonials { padding: 48px 20px; }

  /* Visit store */
  #visit-store { padding: 48px 20px; }
  .store-map-wrap iframe { height: 320px !important; }

  /* Jewellery page */
  .jewellery-filters { padding: 18px 20px; gap: 8px; }
  .filter-btn { padding: 7px 14px; font-size: 9px; }
  .jewellery-section { padding: 40px 20px; }

  /* Stat items */
  .stat-num { font-size: clamp(36px,7vw,56px); }

  /* Section typography */
  .section-title { font-size: clamp(28px,6vw,48px); }
  .section-body  { font-size: 14px; }

  /* Whatsapp / back to top */
  #whatsapp-btn { width: 46px; height: 46px; bottom: 20px; right: 20px; }
  #back-to-top  { width: 38px; height: 38px; bottom: 20px; left: 20px; }
}

/* ─ 480px ─ */
@media (max-width: 480px) {
  :root {
    --nav-h: 130px;
    --section-h: 16px;
  }

  .nav-center img { width: 84px; height: 84px; margin-bottom: -24px; }
  .nav-brand-name { font-size: 14px; letter-spacing: 0.2em; }

  .collections-grid { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .arrivals-grid    { grid-template-columns: 1fr; }
  .jewellery-grid   { grid-template-columns: 1fr; }
  #stats            { grid-template-columns: 1fr 1fr; }
  #about-counters   { grid-template-columns: 1fr 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  #about-pillars    { grid-template-columns: 1fr !important; }
  .heritage-stats   { grid-template-columns: 1fr; }
  .about-hero-stats { grid-template-columns: 1fr 1fr; }
  .story-stats      { grid-template-columns: 1fr 1fr; }

  .hero-title { font-size: clamp(32px,10vw,46px) !important; }
  .btn-primary  { padding: 13px 26px; font-size: 10px; }
  .btn-secondary { font-size: 10px; }

  .col-card-name { font-size: 20px; }

  .testi-card { padding: 28px 20px; }
  .why-card   { padding: 28px 20px; }

  .footer-social { gap: 10px; }
  .footer-logo img { width: 80px; }

  /* Bridal banner */
  #bridal-banner { height: clamp(400px,70vh,560px); }
  .bridal-title { font-size: clamp(28px,8vw,44px); }
  .bridal-content { padding: 0 16px; }

  #about-quote { padding: 52px 16px; }
  .quote-text  { font-size: clamp(16px,4.5vw,22px); }

  /* Contact form */
  .contact-form-wrap { padding: 28px 16px !important; }
  .form-submit { padding: 15px; }

  /* Timeline */
  .timeline-item { grid-template-columns: 60px 1fr; gap: 16px; }
  .timeline-year { font-size: 11px; }

  /* Why icon */
  .why-icon { width: 48px; height: 48px; }
}

