/* ═══════════════════════════════════════════════════════
   Gul Jewellers — Main Stylesheet
   Theme: Dark Gold Cinematic | Cormorant Garamond + Jost
═══════════════════════════════════════════════════════ */

/* ── 1. CSS Custom Properties ── */
:root {
  --bg:          #0A0804;
  --surface:     #13100A;
  --accent:      #C9A84C;
  --accent-dk:   #9A7A2E;
  --text:        #F0E6CC;
  --muted:       #8A7A60;
  --dark-bg:     #050403;
  --border:      rgba(201,168,76,0.18);
  --border-hover:rgba(201,168,76,0.45);

  --radius:      4px;
  --radius-lg:   8px;

  --shadow-warm: 0 8px 40px rgba(201,168,76,0.10);
  --shadow-hover:0 20px 60px rgba(201,168,76,0.20);
  --glow:        0 0 60px rgba(201,168,76,0.08);

  --font-heading:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Jost', system-ui, sans-serif;

  --nav-h:       72px;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --trans:       0.35s var(--ease);
  --trans-fast:  0.18s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 3. Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

.italic { font-style: italic; }

p { max-width: 65ch; }

/* ── 4. Section Layout ── */
.section {
  padding: 100px 0;
  position: relative;
}

.section--dark {
  background: var(--dark-bg);
}

.section--surface {
  background: var(--surface);
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header .rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 20px auto 0;
  position: relative;
}
.section-header .rule::before,
.section-header .rule::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.section-header .rule::before { left: -8px; }
.section-header .rule::after  { right: -8px; }

/* ── 5. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

/* Ghost style (primary) */
.btn--ghost {
  color: var(--accent);
  border: 1px solid var(--accent);
  background: transparent;
}
.btn--ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
  z-index: 0;
}
.btn--ghost:hover::before { transform: scaleX(1); transform-origin: left; }
.btn--ghost:hover { color: var(--dark-bg); }
.btn--ghost span, .btn--ghost svg { position: relative; z-index: 1; }

/* Solid accent */
.btn--accent {
  background: var(--accent);
  color: var(--dark-bg);
  border: 1px solid var(--accent);
}
.btn--accent:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ── 6. NAV ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

#nav.scrolled {
  background: rgba(10, 8, 4, 0.88);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-logo .logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  line-height: 1;
}
.nav-logo .logo-tag {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--trans-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--trans);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  font-size: 0.72rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 910;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 905;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 32px) 40px 40px;
  gap: 8px;
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--trans-fast), padding-left var(--trans-fast);
}
.nav-drawer a:hover { color: var(--accent); padding-left: 8px; }
.nav-drawer a:last-of-type { border-bottom: none; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 904;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ── 7. HERO ── */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-bg);
}

/* Parallax layers */
.hero-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-layer--geo {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%);
}

.hero-layer--motif {
  pointer-events: none;
}

/* Floating geometric SVG motifs */
.hero-diamond {
  position: absolute;
  opacity: 0;
  fill: none;
  stroke: var(--accent);
  animation: floatDiamond 8s ease-in-out infinite;
}
.hero-diamond:nth-child(1) { top: 12%; left: 8%;  width: 60px;  animation-delay: 0s;   animation-duration: 9s; }
.hero-diamond:nth-child(2) { top: 70%; left: 4%;  width: 40px;  animation-delay: 2s;   animation-duration: 11s; }
.hero-diamond:nth-child(3) { top: 20%; right: 6%; width: 80px;  animation-delay: 1s;   animation-duration: 10s; }
.hero-diamond:nth-child(4) { top: 60%; right: 8%; width: 50px;  animation-delay: 3s;   animation-duration: 8s;  }
.hero-diamond:nth-child(5) { top: 85%; right: 15%;width: 35px;  animation-delay: 1.5s; animation-duration: 12s; }
.hero-diamond:nth-child(6) { top: 45%; left: 2%;  width: 28px;  animation-delay: 4s;   animation-duration: 9s;  }

.hero-ring {
  position: absolute;
  opacity: 0;
  border: 1px solid var(--accent);
  border-radius: 50%;
  animation: floatRing 10s ease-in-out infinite;
}
.hero-ring:nth-child(1) { top: 30%; left: 12%;  width: 80px;  height: 80px;  animation-delay: 0.5s; }
.hero-ring:nth-child(2) { top: 55%; right: 10%; width: 120px; height: 120px; animation-delay: 2.5s; animation-duration: 14s; }
.hero-ring:nth-child(3) { top: 15%; right: 20%; width: 50px;  height: 50px;  animation-delay: 1.2s; animation-duration: 11s; }

@keyframes floatDiamond {
  0%   { opacity: 0; transform: translateY(20px) rotate(0deg); }
  10%  { opacity: 0.35; }
  50%  { opacity: 0.5; transform: translateY(-15px) rotate(15deg); }
  90%  { opacity: 0.35; }
  100% { opacity: 0; transform: translateY(20px) rotate(0deg); }
}

@keyframes floatRing {
  0%   { opacity: 0; transform: scale(0.85) translateY(10px); }
  15%  { opacity: 0.25; }
  50%  { opacity: 0.35; transform: scale(1) translateY(-10px); }
  85%  { opacity: 0.25; }
  100% { opacity: 0; transform: scale(0.85) translateY(10px); }
}

/* Central glow pulse */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
  max-width: 880px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 8px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-rule {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto 28px;
}

.hero-tagline {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-since {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-since span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-since-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--muted));
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(1.3); opacity: 0.9; }
}

/* ── 8. ABOUT / PILLARS ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}

.pillar-card {
  background: var(--surface);
  padding: 48px 36px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.45s var(--ease);
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.pillar-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.pillar-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; }
.pillar-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.pillar-card p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: none;
}

/* About prose section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-visual {
  position: relative;
}
.about-frame {
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-frame-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  pointer-events: none;
}
.about-since-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
}
.about-since-badge .yr {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
.about-since-badge .lbl {
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.about-text .eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
  max-width: none;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.about-stat .number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.about-stat .label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── 9. PRODUCTS ── */
.product-section { background: var(--bg); }

.category-block { margin-bottom: 80px; }
.category-block:last-child { margin-bottom: 0; }

.cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
}
.cat-header h3 {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cat-header h3::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* Grid layout: 4 equal columns */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.card-img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .card-img-wrap img { transform: scale(1.05); }

/* Image placeholder — shown when img absent */
.card-img-wrap.no-img::after {
  content: attr(data-cat);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
}
.card-img-wrap.no-img svg { display: none; }

/* Placeholder pattern overlay */
.card-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 24px,
      rgba(201,168,76,0.03) 24px,
      rgba(201,168,76,0.03) 25px
    );
  z-index: 0;
}
.card-img-wrap img { position: relative; z-index: 1; }

.card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}
.card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.card-enquire {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--trans-fast), color var(--trans-fast);
}
.card-enquire:hover { color: var(--text); gap: 10px; }
.card-enquire svg { width: 14px; height: 14px; }

.card-wa {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  transition: var(--trans);
}
.card-wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: white;
  transform: scale(1.1);
}
.card-wa svg { width: 16px; height: 16px; }

/* Category view-all link */
.view-all-wrap {
  text-align: center;
  margin-top: 36px;
}

/* ── 10. TESTIMONIALS ── */
.testimonial-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 32px;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.testimonial-track:hover { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testimonial-item {
  width: 360px;
  flex-shrink: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.9rem;
}
.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── 11. CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.contact-info h2 { margin-bottom: 12px; }
.contact-info > p {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; }
.contact-detail-body .label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-detail-body .value {
  font-size: 0.9rem;
  color: var(--text);
}
.contact-detail-body a.value:hover { color: var(--accent); }

.hours-note {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--accent);
  opacity: 0.8;
}

.contact-wa-btn {
  margin-top: 36px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
}

/* ── 12. FOOTER ── */
footer {
  background: var(--dark-bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .logo-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.footer-brand .logo-tag {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 32ch;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--trans-fast), padding-left var(--trans-fast);
  display: block;
}
.footer-col ul a:hover { color: var(--text); padding-left: 6px; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--trans);
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-copy span { color: var(--accent); }

/* ── 13. FLOATING SOCIAL SIDEBAR ── */
.floating-social {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: transform 0.6s 0.8s var(--ease);
}
.floating-social.visible { transform: translateY(-50%) translateX(0); }

.floating-social a {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 14px;
  transition: var(--trans);
  overflow: hidden;
  position: relative;
}
.floating-social a:first-child  { background: #25D366; border-radius: 6px 0 0 0; }
.floating-social a:nth-child(2) { background: #E1306C; }
.floating-social a:last-child   { background: #1877F2; border-radius: 0 0 0 6px; }

.floating-social a svg { width: 20px; height: 20px; flex-shrink: 0; fill: white; }
.floating-social a .soc-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 500;
  color: white;
  transition: max-width 0.35s var(--ease), margin-left 0.35s var(--ease);
}
.floating-social a:hover .soc-label { max-width: 100px; margin-left: 8px; }

/* ── 14. SCROLL TO TOP ── */
#scroll-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 46px;
  height: 46px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--trans);
  color: var(--accent);
}
#scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
#scroll-top:hover {
  background: var(--accent);
  color: var(--dark-bg);
  border-color: var(--accent);
  transform: translateY(-3px);
}
#scroll-top svg { width: 18px; height: 18px; }

/* ── 15. COLLECTION PAGE ── */
.collection-hero {
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}
.collection-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.collection-hero .container { position: relative; z-index: 2; }
.collection-hero h1 { margin-bottom: 8px; }
.collection-hero p { color: var(--muted); font-size: 0.95rem; }

.filter-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 500;
  background: rgba(10,8,4,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.filter-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }

.filter-tab {
  flex-shrink: 0;
  padding: 18px 32px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: var(--trans);
  background: none;
  position: relative;
}
.filter-tab:hover { color: var(--text); }
.filter-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 64px 0 80px;
}
@media (max-width: 1100px) { .collection-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px)  { .collection-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px)  { .collection-grid { grid-template-columns: 1fr; } }

.collection-grid .product-card .card-img-wrap { aspect-ratio: 3/4; }

.cat-section { margin-bottom: 80px; }
.cat-section:last-child { margin-bottom: 0; }
.cat-section-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.cat-section.hidden { display: none; }

/* ── 16. MISC UTILITIES ── */
.gold-text { color: var(--accent); }
.muted-text { color: var(--muted); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Separator */
.sep {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* Reveal utility — GSAP animates from this via gsap.from() */
.reveal { }

/* Gold shimmer text */
.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--muted) 0%,
    var(--accent) 35%,
    #fff8e7 50%,
    var(--accent) 65%,
    var(--muted) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3.5s linear infinite;
}
@keyframes shimmer {
  from { background-position: 200% center; }
  to   { background-position: -200% center; }
}

/* ── 17. GEOMETRIC DECORATION ── */
.geo-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
  opacity: 0.35;
}
.geo-corner--tl { top: 24px; left: 24px; border-top: 1px solid var(--accent); border-left: 1px solid var(--accent); }
.geo-corner--tr { top: 24px; right: 24px; border-top: 1px solid var(--accent); border-right: 1px solid var(--accent); }
.geo-corner--bl { bottom: 24px; left: 24px; border-bottom: 1px solid var(--accent); border-left: 1px solid var(--accent); }
.geo-corner--br { bottom: 24px; right: 24px; border-bottom: 1px solid var(--accent); border-right: 1px solid var(--accent); }

/* ── 18. MEDIA QUERIES ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 72px 0; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .cat-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .product-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .about-stats { flex-direction: column; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
