/* ============================================================
   THE GIFT NEXUS — BLACK & GOLD LUXURY EDITORIAL
   ============================================================ */

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

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #000000;
  --black-2:    #0A0A0A;
  --black-3:    #141414;
  --black-4:    #1F1F1F;
  --gold:       #C9A961;
  --gold-light: #D4B870;
  --gold-deep:  #A8893F;
  --white:      #FFFFFF;
  --white-soft: #E5E5E5;
  --grey-light: #8A8A8A;
  --grey-mid:   #5A5A5A;
  --font-display: 'Sora', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white-soft);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── LOADING SCREEN ───────────────────────────────────────── */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#loading-screen img {
  height: 56px;
  max-width: 300px;
  width: auto;
  animation: pulse-logo 2s ease-in-out infinite;
}
@keyframes pulse-logo {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.97); }
}
.loading-bar-wrap {
  width: 200px;
  height: 1px;
  background: var(--black-4);
  overflow: hidden;
}
.loading-bar {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: load-fill 2s ease-in-out forwards;
}
@keyframes load-fill { to { width: 100%; } }

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-4);
  z-index: 9000;
  transition: height 0.3s ease;
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 44px; display: block; width: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-menu a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  font-weight: 700 !important;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 14px 28px;
  border-radius: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(201,169,97,0.3);
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  cursor: pointer;
  z-index: 9100;
}
.nav-hamburger span {
  display: block;
  height: 1px;
  background: var(--gold);
  width: 100%;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 8999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.open { display: flex; opacity: 1; }
.nav-overlay a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.nav-overlay a:hover { color: var(--gold); }
.nav-overlay .nav-cta {
  margin-top: 16px;
  font-size: 14px;
  padding: 16px 40px;
}

/* ── EYEBROW LABEL ────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ── SECTION PADDING ──────────────────────────────────────── */
.section { padding: 160px 0; }
.section-sm { padding: 120px 0; }
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}
.container-md { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 32px; }

/* ── HEADINGS ─────────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 112px;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--white);
}
.display-lg {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
}
.display-lg span.italic-gold,
.display-xl span.italic-gold {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

/* ── DIVIDER ──────────────────────────────────────────────── */
.gold-divider {
  width: 80px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.gold-divider-sm { width: 40px; height: 1px; background: var(--gold); display: block; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 36px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(201,169,97,0.35);
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-sm { height: 44px; padding: 0 24px; font-size: 13px; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 120px 32px 140px;
}
.hero-glow-tr {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(201,169,97,0.06), transparent 70%);
  pointer-events: none;
  overflow: hidden;
}
.hero-glow-bl {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(201,169,97,0.06), transparent 70%);
  pointer-events: none;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 1200px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 112px;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--white);
  margin-top: 48px;
}
.hero-headline .hero-line2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  display: block;
}
.hero-divider { margin: 40px auto 0; }
.hero-tagline {
  margin-top: 40px;
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.6;
  color: var(--white-soft);
  max-width: 600px;
}
.hero-cta-group {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stats {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stats-item {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--grey-light);
}
.hero-stats-item strong { color: var(--white); }
.hero-stats-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  white-space: nowrap;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -4px;
  animation: scroll-anim 2s linear infinite;
}
@keyframes scroll-anim {
  0% { top: -4px; opacity: 1; }
  100% { top: 64px; opacity: 0; }
}
.scroll-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
}

/* ── STATS STRIP ──────────────────────────────────────────── */
.stats-strip { background: var(--black-2); padding: 120px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.stats-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(25% - 0.5px),
    var(--black-4) calc(25% - 0.5px),
    var(--black-4) calc(25% + 0.5px)
  );
  pointer-events: none;
}
.stat-item {
  text-align: center;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 96px;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--grey-light);
}

/* ── COLLECTIONS GRID ─────────────────────────────────────── */
.collections-header { margin-bottom: 80px; }
.collections-subtext {
  margin-top: 24px;
  font-size: 16px;
  color: var(--grey-light);
  max-width: 500px;
  line-height: 1.7;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.collection-card {
  background: var(--black-2);
  border: 1px solid var(--black-4);
  overflow: hidden;
  transition: border-color 0.6s ease, box-shadow 0.6s ease;
  cursor: pointer;
}
.collection-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(201,169,97,0.1);
}
.collection-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.collection-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.85) contrast(1.05);
  transition: transform 0.6s ease;
}
.collection-card:hover .collection-card-img img { transform: scale(1.05); }
.collection-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}
.collection-card-body { padding: 32px; }
.collection-cat {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 12px;
}
.collection-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.collection-desc {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.6;
  margin-bottom: 32px;
}
.collection-link {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.collection-link span { color: var(--gold); }
.collection-card:hover .collection-link { color: var(--gold); }

/* ── TIMELINE (vertical alternating) ──────────────────────── */
.tl-grid {
  position: relative;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
}
/* Vertical spine */
.tl-spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(201,169,97,0.45) 6%,
    rgba(201,169,97,0.45) 94%,
    transparent 100%
  );
  pointer-events: none;
}
/* Base card — 3-column grid: left-content | centre-dot | right-content */
.tl-card {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  min-height: 130px;
  padding: 20px 0;
}
/* ── LEFT card: year on left, body on right ── */
.tl-card--left .tl-year {
  grid-column: 1;
  text-align: right;
  padding-right: 44px;
}
.tl-card--left .tl-mid {
  grid-column: 2;
}
.tl-card--left .tl-body {
  grid-column: 3;
  padding-left: 44px;
  text-align: left;
}
/* ── RIGHT card: body on left, year on right ── */
.tl-card--right .tl-body {
  grid-column: 1;
  padding-right: 44px;
  text-align: right;
  order: 1;
}
.tl-card--right .tl-mid {
  grid-column: 2;
  order: 2;
}
.tl-card--right .tl-year {
  grid-column: 3;
  text-align: left;
  padding-left: 44px;
  order: 3;
}
/* Year number */
.tl-year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 60px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  opacity: 0.85;
}
/* Centre dot column */
.tl-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--black-2);
  box-shadow: 0 0 16px rgba(201,169,97,0.35);
  transition: background 0.3s ease, box-shadow 0.35s ease, transform 0.3s ease;
  flex-shrink: 0;
}
.tl-card:hover .tl-dot {
  background: var(--gold);
  box-shadow: 0 0 28px rgba(201,169,97,0.7);
  transform: scale(1.25);
}
/* Body content */
.tl-body {
  padding-top: 4px;
  padding-bottom: 4px;
}
.tl-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 10px;
}
.tl-rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 10px;
}
.tl-card--right .tl-rule { margin-left: auto; }
.tl-desc {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.6;
  max-width: 320px;
}
.tl-card--right .tl-desc { margin-left: auto; }

/* ── PROCESS ──────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  margin-top: 80px;
}
.process-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 140px;
  -webkit-text-stroke: 1px var(--gold);
  color: transparent;
  line-height: 1;
  margin-bottom: 40px;
}
.process-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 16px;
}
.process-desc {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee-wrapper { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
}
.marquee-track.left-scroll {
  animation: marquee-left 60s linear infinite;
}
.marquee-track.right-scroll {
  animation: marquee-right 60s linear infinite;
}
@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  width: 360px;
  height: 280px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--black-4);
  transition: border-color 0.3s ease;
  position: relative;
}
.marquee-item:hover { border-color: var(--gold); }
.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.9) contrast(1.05);
  transition: transform 0.4s ease;
}
.marquee-item:hover img { transform: scale(1.03); }
.marquee-row + .marquee-row { margin-top: 20px; }

/* ── WHY US ───────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
}
.why-cell {
  padding: 40px;
  border-right: 1px solid rgba(201,169,97,0.2);
  border-bottom: 1px solid rgba(201,169,97,0.2);
  transition: background 0.3s ease;
}
.why-cell:nth-child(3n) { border-right: none; }
.why-cell:nth-child(4), .why-cell:nth-child(5), .why-cell:nth-child(6) { border-bottom: none; }
.why-cell:hover { background: rgba(201,169,97,0.03); }
.why-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 24px;
}
.why-number-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 16px;
}
.why-desc {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ── CLIENTS ──────────────────────────────────────────────── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
}
.client-cell {
  padding: 40px;
  text-align: center;
  border-right: 1px solid rgba(201,169,97,0.15);
  border-bottom: 1px solid rgba(201,169,97,0.15);
  cursor: default;
}
.client-cell:nth-child(4n) { border-right: none; }
.client-cell:nth-child(n+5) { border-bottom: none; }
.client-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}
.client-name::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.client-cell:hover .client-name { color: var(--gold); }
.client-cell:hover .client-name::after { width: 100%; }
.clients-more {
  text-align: center;
  margin-top: 80px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.testimonial-item {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonial-item.active { display: flex; }
.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 120px;
  color: rgba(201,169,97,0.4);
  line-height: 0.7;
  margin-bottom: 32px;
  font-style: normal;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: var(--white);
  line-height: 1.4;
  max-width: 800px;
  margin-bottom: 48px;
}
.testimonial-attribution {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease;
}
.testimonial-dot.active { background: var(--gold); }

/* ── OCCASIONS ────────────────────────────────────────────── */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
}
.occasion-cell {
  padding: 40px;
  text-align: center;
  border-right: 1px solid rgba(201,169,97,0.15);
  border-bottom: 1px solid rgba(201,169,97,0.15);
  transition: background 0.3s ease;
  cursor: default;
}
.occasion-cell:nth-child(4n) { border-right: none; }
.occasion-cell:nth-child(5), .occasion-cell:nth-child(6),
.occasion-cell:nth-child(7), .occasion-cell:nth-child(8) { border-bottom: none; }
.occasion-cell:hover { background: rgba(201,169,97,0.03); }
.occasion-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin: 0 auto 16px;
  transition: transform 0.3s ease;
}
.occasion-cell:hover .occasion-icon { transform: scale(1.1); }
.occasion-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  transition: color 0.3s ease;
}
.occasion-cell:hover .occasion-name { color: var(--gold); }

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 200px 0;
  text-align: center;
  border-top: 1px solid rgba(201,169,97,0.4);
  border-bottom: 1px solid rgba(201,169,97,0.4);
  overflow: hidden;
}
.cta-glow-tr {
  position: absolute; top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,169,97,0.08), transparent 70%);
  pointer-events: none;
}
.cta-glow-bl {
  position: absolute; bottom: -200px; left: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,169,97,0.08), transparent 70%);
  pointer-events: none;
}
.cta-subtext {
  margin-top: 32px;
  font-size: 18px;
  color: var(--white-soft);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-buttons {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201,169,97,0.3);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}
.footer-brand img { height: 60px; width: auto; }
.footer-social {
  margin-top: 28px;
  display: flex;
  gap: 20px;
}
.footer-social a {
  color: var(--gold);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
}
.footer-social a:hover { opacity: 0.7; transform: translateY(-2px); }
.footer-social svg { width: 22px; height: 22px; fill: none; }
.footer-social a[aria-label="WhatsApp"] svg { fill: var(--gold); }
.footer-col-title {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 32px;
}
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a {
  font-size: 15px;
  color: var(--white);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-connect-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--white);
}
.footer-connect-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  max-width: 1440px;
  margin: 32px auto 0;
  padding: 24px 64px;
  border-top: 1px solid rgba(201,169,97,0.15);
}
.footer-bottom-text {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--grey-light);
}

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(201,169,97,0.3);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 0 50px rgba(201,169,97,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; color: var(--black); }
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--black-3);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  letter-spacing: 0.05em;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  padding: 200px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,169,97,0.05), transparent 70%);
  pointer-events: none;
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--black-4);
}
.about-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-editorial.reverse { direction: rtl; }
.about-editorial.reverse > * { direction: ltr; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
}
.value-cell {
  padding: 40px;
  border-right: 1px solid rgba(201,169,97,0.2);
  text-align: center;
}
.value-cell:last-child { border-right: none; }
.value-icon { color: var(--gold); margin: 0 auto 20px; width: 32px; height: 32px; }
.value-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 12px;
}
.value-desc { font-size: 15px; color: var(--grey-light); line-height: 1.6; }
.apart-list { margin-top: 48px; }
.apart-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--black-4);
}
.apart-item:last-child { border-bottom: none; }
.apart-check { color: var(--gold); width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.apart-text { font-size: 16px; color: var(--white-soft); }

/* ── SERVICES PAGE ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 80px;
}
.service-card {
  background: var(--black);
  border: 1px solid var(--black-4);
  padding: 48px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(201,169,97,0.08);
}
.service-icon { color: var(--gold); width: 32px; height: 32px; margin-bottom: 32px; }
.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.service-desc { font-size: 15px; color: var(--grey-light); line-height: 1.7; margin-bottom: 32px; }
.service-link {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.service-link span { color: var(--gold); }
.service-card:hover .service-link { color: var(--gold); }

/* ── COLLECTIONS PAGE ─────────────────────────────────────── */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 64px 0 80px;
}
.filter-pill {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s ease;
  border-radius: 0;
}
.filter-pill.active,
.filter-pill:hover {
  background: var(--gold);
  color: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  background: var(--black-2);
  border: 1px solid var(--black-4);
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.gallery-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(201,169,97,0.1);
}
.gallery-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.85);
  transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-card-img img { transform: scale(1.05); }
.gallery-card-body { padding: 28px; }
.gallery-cat {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 10px;
}
.gallery-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.gallery-desc { font-size: 14px; color: var(--grey-light); line-height: 1.6; margin-bottom: 24px; }
.gallery-link {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.gallery-card:hover .gallery-link { gap: 12px; }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 100px;
  margin-top: 80px;
  align-items: start;
}
.contact-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 48px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--white);
}
.contact-detail svg { color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; }
.contact-detail a { color: var(--white); transition: color 0.3s ease; }
.contact-detail a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 20px; margin-top: 40px; }
.contact-social a { color: var(--gold); transition: opacity 0.3s ease; }
.contact-social a:hover { opacity: 0.7; }
.contact-social svg { width: 24px; height: 24px; }
.response-box { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--black-4); }
.response-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 12px;
}
.response-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--white-soft);
  line-height: 1.6;
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 40px; }
.form-field { display: flex; flex-direction: column; gap: 10px; }
.form-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.form-input,
.form-select,
.form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold);
  outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  padding: 12px 0;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 2px 0 0 rgba(212,184,112,0.3);
}
.form-select option { background: var(--black-3); color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.form-submit {
  background: var(--gold);
  color: var(--black);
  padding: 18px 48px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-self: flex-start;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(201,169,97,0.3);
}

/* ── TEXT UTILITIES ───────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mt-80 { margin-top: 80px; }
.body-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--white-soft);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .container { padding: 0 40px; }
  .footer-grid { padding: 0 40px; }
  .footer-bottom { padding: 32px 40px; }
  .hero-headline { font-size: 80px; }
  .display-lg { font-size: 52px; }
  .stat-number { font-size: 72px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .hero-headline { font-size: 64px; }
  .display-lg { font-size: 44px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  /* Timeline collapses to single-column on tablet/mobile */
  .tl-spine { left: 20px; transform: none; }
  .tl-card,
  .tl-card--left,
  .tl-card--right {
    grid-template-columns: 40px 1fr;
    padding: 16px 0;
  }
  .tl-card--left .tl-year,
  .tl-card--right .tl-year { display: none; }
  .tl-card--left .tl-mid  { grid-column: 1; }
  .tl-card--left .tl-body { grid-column: 2; padding-left: 24px; padding-right: 0; text-align: left; }
  .tl-card--right .tl-body { grid-column: 2; order: 2; padding-left: 24px; padding-right: 0; text-align: left; }
  .tl-card--right .tl-mid  { grid-column: 1; order: 1; }
  .tl-card--right .tl-year { grid-column: 3; order: 3; }
  .tl-card--right .tl-rule { margin-left: 0; }
  .tl-card--right .tl-desc { margin-left: 0; }
  .process-grid { grid-template-columns: 1fr; gap: 64px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-cell:nth-child(3n) { border-right: 1px solid rgba(201,169,97,0.2); }
  .why-cell:nth-child(2n) { border-right: none; }
  .why-cell:nth-child(4), .why-cell:nth-child(5), .why-cell:nth-child(6) { border-bottom: 1px solid rgba(201,169,97,0.2); }
  .why-cell:nth-child(5), .why-cell:nth-child(6) { border-bottom: none; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-editorial { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: 64px; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 100px 0; }
  .section-sm { padding: 80px 0; }
  .container { padding: 0 24px; }
  .container-md, .container-sm { padding: 0 24px; }
  .hero { padding: 100px 24px 80px; }
  .hero-headline { font-size: 52px; }
  .hero-tagline { font-size: 16px; }
  .display-lg { font-size: 36px; }
  .stat-number { font-size: 56px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client-name { font-size: 22px; }
  .testimonial-text { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .footer-bottom { padding: 20px 24px; text-align: center; }
  .tl-desc { max-width: 100%; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .process-number { font-size: 100px; }
  .marquee-item { width: 280px; height: 220px; }
  .form-row { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-cell:nth-child(2n) { border-right: 1px solid rgba(201,169,97,0.2); }
  .why-cell:nth-child(n) { border-right: none; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { height: 64px; }
  .nav-logo img { height: 36px; width: auto; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .display-lg { font-size: 32px; }
  .stats-grid { grid-template-columns: 1fr; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
}
