/* ═══════════════════════════════════════════════════════════════
   Gold City Jeweller — Main Stylesheet
   Theme: fresh · luxury · clean · minimal · bright
   ═══════════════════════════════════════════════════════════════ */

/* ─── ROOT TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:          #FAFAF8;
  --surface:     #FFFFFF;
  --accent:      #C9A84C;
  --accent-dk:   #A8863A;
  --text:        #1A1A18;
  --muted:       #7A7A72;
  --dark-bg:     #12110E;
  --dark-surface:#1C1A14;
  --radius:      4px;
  --shadow:      0 4px 32px rgba(201,168,76,0.10);
  --shadow-lg:   0 16px 56px rgba(201,168,76,0.16);
  --font-h:      'Cormorant Garamond', Georgia, serif;
  --font-b:      'DM Sans', system-ui, sans-serif;
  --nav-h:       76px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --max-w:       1320px;
  --gutter:      clamp(1.25rem, 4vw, 2.5rem);
}

/* ─── 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-b);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
h1,h2,h3,h4 { font-family: var(--font-h); line-height: 1.15; font-weight: 600; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────────── */
.section-pre {
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.12;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }

/* ─── LAYOUT UTILITIES ────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.section--alt { background: var(--surface); }

/* ─── GOLD RULE ───────────────────────────────────────────────── */
.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-block: 1.25rem;
}
.gold-rule--center { margin-inline: auto; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
              backdrop-filter 0.35s var(--ease);
}
.nav.scrolled {
  background: rgba(250,250,248,0.88);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15), var(--shadow);
}
.nav__logo {
  font-family: var(--font-h);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav__logo span { font-style: italic; font-weight: 400; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1e1508;
  position: relative;
  transition: color 0.25s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after { width: 100%; }
.nav.scrolled .nav__links a { color: var(--text); }
.nav.scrolled .nav__links a:hover { color: var(--accent); }
.nav__cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  transition: background 0.25s, color 0.25s;
}
.nav__cta:hover { background: var(--accent); color: #fff; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  color: #1e1508;
}
.nav.scrolled .nav__hamburger { color: var(--text); }
.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

/* ─── MOBILE DRAWER ───────────────────────────────────────────── */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 85vw);
  background: var(--dark-bg);
  z-index: 300;
  padding: 2rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  border-left: 1px solid rgba(201,168,76,0.2);
}
.drawer.open { transform: translateX(0); }
.drawer__close {
  align-self: flex-end;
  color: var(--muted);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.drawer__close:hover { color: var(--accent); }
.drawer__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.drawer__links li { border-bottom: 1px solid rgba(201,168,76,0.1); }
.drawer__links a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--bg);
  letter-spacing: 0.03em;
  transition: color 0.2s, padding-left 0.2s;
}
.drawer__links a:hover { color: var(--accent); padding-left: 0.5rem; }
.drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(18,17,14,0.7);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.drawer__overlay.visible { opacity: 1; pointer-events: all; }

/* ═══════════════════════════════════════════════════════════════
   HERO — Layout B: Full-bleed centered, parallax layers
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: #fdf6e3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Warm beige gradient background ───────────────────────────── */
.hero__layer {
  position: absolute;
  inset: -20%;
  will-change: transform;
}
.hero__bg {
  inset: 0;
  background:
    radial-gradient(ellipse 100% 75% at 70% 25%, rgba(201,152,50,0.28)  0%, transparent 55%),
    radial-gradient(ellipse 55%  55% at 15% 80%, rgba(180,130,40,0.18)  0%, transparent 50%),
    radial-gradient(ellipse 45%  45% at 90% 75%, rgba(190,145,55,0.14)  0%, transparent 45%),
    linear-gradient(155deg, #fdf6e3 0%, #f5e8c8 40%, #faf2dc 70%, #fdf8ed 100%);
}

/* ── Bokeh glow orbs ──────────────────────────────────────────── */
.hero__bokeh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bokeh__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat linear infinite;
  opacity: 0;
}
.bokeh__orb--1 {
  width: 500px; height: 500px;
  left: 52%; top: -15%;
  background: radial-gradient(circle, rgba(201,152,50,0.38) 0%, transparent 65%);
  animation-duration: 14s; animation-delay: 0s;
}
.bokeh__orb--2 {
  width: 300px; height: 300px;
  left: 70%; top: 48%;
  background: radial-gradient(circle, rgba(190,140,45,0.26) 0%, transparent 65%);
  animation-duration: 18s; animation-delay: -6s;
}
.bokeh__orb--3 {
  width: 220px; height: 220px;
  left: 6%; top: 18%;
  background: radial-gradient(circle, rgba(180,130,40,0.20) 0%, transparent 65%);
  animation-duration: 22s; animation-delay: -10s;
}
.bokeh__orb--4 {
  width: 400px; height: 400px;
  left: 28%; top: 55%;
  background: radial-gradient(circle, rgba(201,152,50,0.18) 0%, transparent 65%);
  animation-duration: 26s; animation-delay: -4s;
}
.bokeh__orb--5 {
  width: 180px; height: 180px;
  left: 85%; top: 8%;
  background: radial-gradient(circle, rgba(201,160,60,0.28) 0%, transparent 65%);
  animation-duration: 16s; animation-delay: -8s;
}
@keyframes orbFloat {
  0%   { opacity: 0;   transform: translateY(0)    scale(0.9); }
  15%  { opacity: 1; }
  85%  { opacity: 0.7; }
  100% { opacity: 0;   transform: translateY(-50px) scale(1.1); }
}

/* ── Shimmer sweep ────────────────────────────────────────────── */
.hero__shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    108deg,
    transparent 35%,
    rgba(255,220,120,0.18) 50%,
    transparent 65%
  );
  animation: shimmerSweep 7s ease-in-out infinite;
  transform: translateX(-120%);
}
@keyframes shimmerSweep {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(220%); }
}

/* ── Sparkle particles (created in JS) ──────────────────────────*/
.hero__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sparkle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #C9A84C;
  animation: sparklePulse var(--sp-dur, 3s) ease-in-out infinite;
  animation-delay: var(--sp-delay, 0s);
  opacity: 0;
}
.sparkle::before, .sparkle::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}
.sparkle::before { width: 100%; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.sparkle::after  { width: 1px; height: 100%; top: 50%; left: 50%; transform: translate(-50%,-50%); }
@keyframes sparklePulse {
  0%, 100% { opacity: 0;    transform: scale(0.4); }
  40%, 60% { opacity: 0.9;  transform: scale(1.2); }
  50%      { opacity: 1;    transform: scale(1.5); }
}

/* ── Geometric SVG layer (slow rotation) ────────────────────────*/
.hero__geo {
  display: flex;
  align-items: center;
  justify-content: center;
  inset: -30%;
  pointer-events: none;
  user-select: none;
}
.hero__geo-svg {
  width: 100%;
  height: 100%;
  max-width: 1600px;
  opacity: 0.9;
  animation: geoRotate 90s linear infinite;
  transform-origin: center;
}
@keyframes geoRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--text);
  padding-inline: var(--gutter);
  max-width: 820px;
}
.hero__est {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin-bottom: 1.5rem;
  background: rgba(201,168,76,0.1);
  padding: 0.35rem 1rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2px;
}
.hero__title {
  font-family: var(--font-h);
  font-size: clamp(3.8rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1.0;
  color: #1e1508;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 24px rgba(201,152,50,0.12);
}
.hero__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
  display: block;
}
.hero__tagline {
  font-family: var(--font-h);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: #5c4318;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}
.hero__rule {
  width: 56px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin: 0 auto 2rem;
  border: none;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
/* Override btn colours inside the light hero */
.hero__actions .btn--ghost {
  border-color: #1e1508;
  color: #1e1508;
}
.hero__actions .btn--ghost:hover {
  background: #1e1508;
  color: var(--bg);
}
.hero__actions .btn--ghost-light {
  border-color: var(--accent);
  color: var(--accent-dk);
  background: rgba(201,168,76,0.08);
}
.hero__actions .btn--ghost-light:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(90,60,10,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  padding: 0.85rem 2rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--ghost {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--accent);
  color: var(--dark-bg);
}
.btn--ghost-light {
  border: 1px solid rgba(250,250,248,0.4);
  color: rgba(250,250,248,0.85);
  background: transparent;
}
.btn--ghost-light:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--solid {
  background: var(--accent);
  color: var(--dark-bg);
  border: 1px solid var(--accent);
}
.btn--solid:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
}
.btn--dark {
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--accent);
  background: transparent;
}
.btn--dark:hover {
  background: var(--accent);
  color: var(--dark-bg);
  border-color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════
   PILLARS
   ═══════════════════════════════════════════════════════════════ */
.pillars {
  background: var(--surface);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pillar {
  padding: 3rem 2.5rem;
  background: var(--surface);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.pillar::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}
.pillar:hover::before { width: 60%; }
.pillar:hover { background: #fefdf9; }
.pillar__icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: block;
  opacity: 0.7;
}
.pillar h3 {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.pillar p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════════════════════ */
.cat-section { margin-bottom: clamp(4rem, 6vw, 5.5rem); }
.cat-section:last-child { margin-bottom: 0; }

/* Grid type 2: 1 large featured + 3 small */
.product-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card__img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(145deg, #1c1912 0%, #2a2316 50%, #1c1912 100%);
  position: relative;
}
.card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), opacity 0.3s;
}
.card:hover .card__img-wrap img { transform: scale(1.05); }
/* Placeholder when image is absent */
.card__img-wrap.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__img-wrap.no-img::after {
  content: '';
  width: 56px; height: 56px;
  background: var(--accent);
  opacity: 0.25;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
/* Featured card (first child) has no aspect-ratio override — uses same 3/4 */
.card--featured .card__img-wrap { aspect-ratio: 3/4; }

.card__body {
  padding: 1.25rem 1.25rem 1.5rem;
}
.card__cat {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.card__name {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.card--featured .card__name { font-size: 1.45rem; }
.card__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card--featured .card__desc { -webkit-line-clamp: 3; }
.card__action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.2s;
}
.card__action:hover { gap: 0.75rem; }
.card__action svg { width: 14px; height: 14px; }

.cat-view-all {
  margin-top: 2.25rem;
  text-align: right;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about {
  background: var(--dark-bg);
  color: var(--bg);
  overflow: hidden;
  position: relative;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__geo {
  width: 100%;
  max-width: 480px;
  opacity: 0.6;
}
.about__since {
  position: absolute;
  font-family: var(--font-h);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--accent);
  opacity: 0.07;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}
.about .section-pre { color: var(--accent); }
.about .section-title { color: var(--bg); }
.about .section-title em { color: var(--accent); }
.about__body {
  font-size: 1rem;
  color: rgba(250,250,248,0.7);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.about__stat-num {
  font-family: var(--font-h);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.about__stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.45);
  display: block;
  margin-top: 0.35rem;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact { background: var(--bg); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 2rem; }
.contact__item { display: flex; gap: 1rem; align-items: flex-start; }
.contact__icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1rem;
}
.contact__item-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.3rem;
  display: block;
}
.contact__item-value {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}
.contact__item-value a:hover { color: var(--accent); }
.contact__hours {
  border-top: 1px solid rgba(201,168,76,0.12);
  padding-top: 1.5rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(26,26,24,0.06);
}
.hours-row .days { color: var(--text); }
.hours-row .time { color: var(--muted); }
.hours-row.closed .time { color: #b94a4a; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,168,76,0.12);
  height: 420px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark-bg);
  color: rgba(250,250,248,0.55);
  padding-block: 3.5rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand-logo {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.75rem;
}
.footer__tagline {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 1rem;
  color: rgba(250,250,248,0.4);
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,250,248,0.5);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer__social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201,168,76,0.08);
}
.footer__social-link svg { width: 16px; height: 16px; }
.footer__col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a {
  font-size: 0.85rem;
  color: rgba(250,250,248,0.5);
  transition: color 0.2s, padding-left 0.2s;
}
.footer__links a:hover { color: var(--accent); padding-left: 0.25rem; }
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
}
.footer__bottom a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════
   FLOATING SOCIAL BAR
   ═══════════════════════════════════════════════════════════════ */
.social-float {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) translateX(80px);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}
.social-float.visible {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.social-float__btn {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--dark-bg);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,250,248,0.6);
  box-shadow: var(--shadow);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.social-float__btn:hover { transform: translateX(-4px); }
.social-float__btn--wa:hover  { background: #25D366; color: #fff; border-color: #25D366; }
.social-float__btn--ig:hover  { background: var(--accent); color: #fff; border-color: var(--accent); }
.social-float__btn--fb:hover  { background: #1877F2; color: #fff; border-color: #1877F2; }
.social-float__btn svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════════
   SCROLL TO TOP
   ═══════════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 150;
  width: 44px; height: 44px;
  background: var(--accent);
  color: var(--dark-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s, background 0.25s;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--accent-dk); }
.scroll-top svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════════
   COLLECTION PAGE — Filter tabs
   ═══════════════════════════════════════════════════════════════ */
.collection-hero {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 3rem;
  background: var(--dark-bg);
  text-align: center;
}
.collection-hero .section-title { color: var(--bg); }
.collection-hero .section-pre  { color: var(--accent); }
.collection-hero p {
  color: rgba(250,250,248,0.5);
  font-style: italic;
  font-family: var(--font-h);
  font-size: 1.15rem;
  margin-top: 0.5rem;
}
.filter-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 0 var(--gutter);
}
.filter-bar__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar__inner::-webkit-scrollbar { display: none; }
.filter-tab {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 1.1rem 1.75rem;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-b);
}
.filter-tab:hover { color: var(--accent); }
.filter-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.collection-grid {
  padding-block: 3rem 5rem;
}
.collection-grid__section { display: none; }
.collection-grid__section.active { display: block; }
.collection-grid__section h2 {
  font-family: var(--font-h);
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.collection-grid__section h2 em { color: var(--accent); font-style: italic; }
.all-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* GSAP sets hero initial states via JS — no CSS opacity:0 here */

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .card--featured { grid-column: span 2; }
  .card--featured .card__img-wrap { aspect-ratio: 16/9; }
  .about__inner { gap: 3rem; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__hamburger { display: flex; }
  .pillars__grid { grid-template-columns: 1fr; gap: 2px; }
  .about__inner { grid-template-columns: 1fr; }
  .about__visual { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .contact__inner { grid-template-columns: 1fr; }
  .map-wrap { height: 300px; }
  .all-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .card--featured { grid-column: span 2; }
  .card--featured .card__img-wrap { aspect-ratio: 4/3; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .hero__actions { flex-direction: column; align-items: center; }
  .social-float { display: none; }
  .about__stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr; }
  .card--featured { grid-column: auto; }
  .all-products-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}

/* ─── UTILITY: section divider ──────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.25), transparent);
}
