/* ============================================================
   WEALTH WELL MINE SHAFT — EARTHON DESIGN SYSTEM
   Inspired by earthon.framer.website
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Colors */
  --gold:          #D4AF37;
  --gold-dark:     #B8960C;
  --gold-light:    #E8CC6A;
  --black:         #0D0D0D;
  --black-soft:    #111111;
  --black-card:    #1A1A1A;
  --off-white:     #F2F0EB;
  --off-white-2:   #EBEBEB;
  --white:         #FFFFFF;
  --text-muted:    #888888;
  --text-dim:      #AAAAAA;
  --border-light:  rgba(0,0,0,0.08);
  --border-dark:   rgba(255,255,255,0.08);

  /* Nav Glass */
  --nav-bg:        rgba(255,255,255,0.88);
  --nav-blur:      blur(16px);

  /* Typography */
  --font:          'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad:   120px;
  --section-pad-sm: 72px;

  /* Radii */
  --r-pill:        999px;
  --r-card:        20px;
  --r-card-sm:     14px;
  --r-icon:        14px;

  /* Shadows */
  --shadow-card:   0 4px 32px rgba(0,0,0,0.07);
  --shadow-gold:   0 8px 40px rgba(212,175,55,0.25);
  --shadow-nav:    0 2px 24px rgba(0,0,0,0.08);

  /* Transitions */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur:           0.35s;
  --dur-slow:      0.6s;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── PRELOADER ────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.preloader-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  animation: pulseLogo 1.8s ease-in-out infinite;
}
.preloader-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(212,175,55,0.18);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.preloader-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes pulseLogo {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.04); opacity: 1; }
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ─── SECTION TYPES ──────────────────────────────────────── */
.section-light  { background: var(--off-white); }
.section-light2 { background: var(--off-white-2); }
.section-dark   { background: var(--black); }
.section-pad    { padding: var(--section-pad) 0; }
.section-pad-sm { padding: var(--section-pad-sm) 0; }

/* ─── UTILITY ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }

/* ─── ENTRY ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVIGATION — FLOATING PILL
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) { .nav { padding: 14px 20px; } }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
@media (max-width: 768px) { .nav-logo img { height: 32px; } }

/* Pill */
.nav-pill {
  background: var(--nav-bg);
  backdrop-filter: var(--nav-blur);
  -webkit-backdrop-filter: var(--nav-blur);
  border: 1px solid var(--border-light);
  border-radius: var(--r-pill);
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 2px;
  box-shadow: var(--shadow-nav);
}
.nav-pill a {
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.nav-pill a:hover { background: rgba(0,0,0,0.05); }
.nav-pill a.active {
  background: var(--black);
  color: var(--white);
}
@media (max-width: 992px) { .nav-pill { display: none; } }

/* CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
@media (max-width: 992px) { .nav-cta { display: none; } }

/* Mobile Hamburger */
.nav-hamburger {
  display: none;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nav-bg);
  backdrop-filter: var(--nav-blur);
  border: 1px solid var(--border-light);
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
@media (max-width: 992px) { .nav-hamburger { display: flex; } }

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  transition: right var(--dur-slow) var(--ease);
  padding: 80px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-drawer.open { right: 0; }
.nav-drawer a {
  font-size: 1.15rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  display: block;
}
.nav-drawer-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--off-white);
  font-size: 1.2rem;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.2) 60%,
    rgba(0,0,0,0.1) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 30px 0 60px 0;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero h1 strong { font-weight: 700; }

/* Hero CTA */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.92);
  color: var(--black);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 6px 6px 22px;
  border-radius: var(--r-pill);
  transition: all var(--dur) var(--ease);
}
.btn-hero:hover { background: var(--white); transform: translateY(-2px); }
.btn-hero-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-left: 14px;
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform var(--dur) var(--ease-spring);
}
.btn-hero:hover .btn-hero-arrow { transform: rotate(-45deg) scale(1.08); }

/* Hero Annotation */
.hero-annotation {
  position: absolute;
  bottom: 80px; right: 40px;
  z-index: 2;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  text-align: right;
  max-width: 200px;
  line-height: 1.5;
}
@media (max-width: 768px) { .hero-annotation { display: none; } }

/* Hero Metrics Bar */
.hero-metrics {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0;
  margin-top: 60px;
}
.hero-metrics-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-metric {
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.hero-metric:last-child { border-right: none; }
.hero-metric-val {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-metric-lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .hero-metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-metric:nth-child(2) { border-right: none; }
  .hero-metric { padding: 16px 20px; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .badge { margin-bottom: 20px; }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.page-hero h1 strong, .page-hero h1 span { font-weight: 700; color: var(--gold); }
.page-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ============================================================
   BADGE / LABEL
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.badge-gold { color: var(--gold); }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-title {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}
.section-title strong { font-weight: 700; }
.section-title-white { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
/* Primary Gold Pill */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 6px 6px 22px;
  border-radius: var(--r-pill);
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-gold);
}
.btn-gold .btn-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform var(--dur) var(--ease-spring);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-gold:hover .btn-arrow { transform: rotate(-45deg); }

/* Dark Pill */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 6px 6px 22px;
  border-radius: var(--r-pill);
  transition: all var(--dur) var(--ease);
}
.btn-dark .btn-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  font-size: 1rem;
  transition: transform var(--dur) var(--ease-spring);
}
.btn-dark:hover .btn-arrow { transform: rotate(-45deg); }

/* White Pill */
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 6px 6px 22px;
  border-radius: var(--r-pill);
  transition: all var(--dur) var(--ease);
}
.btn-white .btn-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  font-size: 1rem;
  transition: transform var(--dur) var(--ease-spring);
}
.btn-white:hover .btn-arrow { transform: rotate(-45deg); }

/* ============================================================
   MISSION REVEAL SECTION
   ============================================================ */
.mission-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
  text-align: center;
}
.mission-text {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 400;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 60px;
  letter-spacing: -0.01em;
}
/* Words start muted, JS reveals them */
.mission-text .word {
  display: inline;
  color: var(--black);
  opacity: 0.15;
  transition: opacity 0.5s var(--ease);
}
.mission-text .word.revealed { opacity: 1; }

.mission-icons {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.mission-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mission-icon-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--black-soft);
}
.mission-icon-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ============================================================
   TAB IMAGE SWITCHER
   ============================================================ */
.tabs-section {
  background: var(--off-white);
  padding-bottom: var(--section-pad);
}
.tabs-images {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
  border-radius: var(--r-card);
  overflow: hidden;
  height: 340px;
}
.tabs-image-item {
  overflow: hidden;
  border-radius: var(--r-card);
  position: relative;
}
.tabs-image-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.tabs-image-item:hover img { transform: scale(1.04); }
.tabs-image-item.hidden { display: none; }

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}
.tab-btn {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 28px;
  border-bottom: 2px solid transparent;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  position: relative;
}
.tab-btn::before,
.tab-btn::after {
  content: '[';
  color: var(--border-light);
  font-weight: 300;
  margin-right: 4px;
  transition: color var(--dur) var(--ease);
}
.tab-btn::after { content: ']'; margin-right: 0; margin-left: 4px; }
.tab-btn.active,
.tab-btn:hover {
  color: var(--black);
}
.tab-btn.active::before,
.tab-btn.active::after { color: var(--black); }
.tab-btn.active { border-bottom-color: var(--gold); }

@media (max-width: 768px) {
  .tabs-images { grid-template-columns: 1fr 1fr; height: 220px; }
  .tabs-images .tabs-image-item:first-child { grid-column: 1 / -1; }
  .tab-btn { padding: 10px 14px; font-size: 0.82rem; }
}

/* ============================================================
   FEATURE CARDS CAROUSEL
   ============================================================ */
.cards-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.cards-section .section-title { margin-bottom: 48px; }

.cards-track-wrap {
  position: relative;
  overflow: hidden;
}
.cards-track {
  display: flex;
  gap: 20px;
  cursor: grab;
  user-select: none;
  transition: transform 0.45s var(--ease);
  padding-bottom: 8px;
}
.cards-track:active { cursor: grabbing; }

.feature-card {
  background: var(--off-white-2);
  border-radius: var(--r-card);
  padding: 36px 32px 40px;
  min-width: 380px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.feature-card-watermark {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  opacity: 0.07;
  pointer-events: none;
  filter: grayscale(100%);
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--r-icon);
  background: var(--gold);
  color: var(--black);
  font-size: 1.2rem;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 14px;
  position: relative;
}
.feature-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
}

/* Dots */
.cards-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.cards-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.cards-dot.active {
  background: var(--black);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) { .feature-card { min-width: 300px; } }

/* ============================================================
   DARK CTA BANNER
   ============================================================ */
.dark-banner {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.dark-banner-media {
  position: absolute;
  inset: 0;
}
.dark-banner-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}
.dark-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.dark-banner-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dark-banner-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.dark-banner-headline strong { font-weight: 700; }
.dark-banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.dark-banner-right p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .dark-banner-content { grid-template-columns: 1fr; gap: 32px; padding: 72px 0; }
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-section {
  background: var(--black);
  padding: var(--section-pad) 0;
  position: relative;
}
.process-section .section-title { color: var(--white); text-align: center; margin-bottom: 80px; }

.process-layout {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left: Timeline Steps */
.process-steps {
  position: sticky;
  top: 160px;
}
.process-timeline-line {
  position: absolute;
  left: 18px;
  top: 0; bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.process-timeline-progress {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  background: var(--gold);
  height: 0%;
  transition: height 0.3s var(--ease);
}
.process-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0 16px 48px;
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  transition: background var(--dur) var(--ease);
}
.process-step-num {
  position: absolute;
  left: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  transition: all var(--dur) var(--ease);
  z-index: 1;
}
.process-step-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}
.process-step.active .process-step-num {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.process-step.active .process-step-label { color: var(--white); }

/* Center: Photo */
.process-photo-wrap {
  position: sticky;
  top: 160px;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.process-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s var(--ease);
}
.process-photo.fading { opacity: 0; }

/* Right: Content Panels */
.process-panels { position: relative; }
.process-panel {
  padding: 60px 0;
  min-height: 280px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0.3;
  transition: opacity 0.4s var(--ease);
}
.process-panel:last-child { border-bottom: none; }
.process-panel.active { opacity: 1; }
.process-panel-num {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}
.process-panel h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}
.process-panel p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 380px;
}

@media (max-width: 1024px) {
  .process-layout { grid-template-columns: 1fr; gap: 40px; }
  .process-steps, .process-photo-wrap { position: relative; top: auto; }
  .process-photo-wrap { aspect-ratio: 16/9; }
  .process-steps { display: flex; gap: 0; overflow-x: auto; }
  .process-step { flex-shrink: 0; }
  .process-timeline-line { display: none; }
}

/* ============================================================
   STATS + ACCORDION
   ============================================================ */
.stats-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}
.stats-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.stats-photo-wrap {
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.stats-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.stats-photo-wrap:hover img { transform: scale(1.04); }

.stats-right { padding-top: 16px; }
.stats-right .section-title { margin-bottom: 32px; }

/* Stat card pair */
.stat-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.stat-card {
  border-radius: var(--r-card-sm);
  padding: 28px 24px;
}
.stat-card-gold { background: var(--gold); }
.stat-card-dark { background: var(--black); }
.stat-num {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card-gold .stat-num { color: var(--black); }
.stat-card-dark .stat-num { color: var(--white); }
.stat-label {
  font-size: 0.83rem;
  line-height: 1.4;
}
.stat-card-gold .stat-label { color: rgba(0,0,0,0.65); }
.stat-card-dark .stat-label { color: rgba(255,255,255,0.55); }

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 0; }
.accordion-item {
  border-bottom: 1px solid var(--border-light);
}
.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
  width: 100%;
  text-align: left;
}
.accordion-trigger-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.accordion-icon-box {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease);
}
.accordion-icon-box i { color: var(--gold); font-size: 0.85rem; }
.accordion-trigger h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}
.accordion-plus {
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
  flex-shrink: 0;
}
.accordion-item.open .accordion-plus {
  transform: rotate(45deg);
  color: var(--black);
}
.accordion-item.open .accordion-icon-box { background: var(--gold); }
.accordion-item.open .accordion-icon-box i { color: var(--black); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.accordion-body-inner {
  padding: 0 0 20px 50px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .stats-layout { grid-template-columns: 1fr; gap: 40px; }
  .stats-photo-wrap { aspect-ratio: 16/9; }
}

/* ============================================================
   TEAM CAROUSEL
   ============================================================ */
.team-section {
  position: relative;
  overflow: hidden;
}
.team-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.team-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.25);
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.team-content {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}
.team-content .section-title { color: var(--white); margin-bottom: 16px; }
.team-content .section-sub { color: rgba(255,255,255,0.55); }

.team-carousel-wrap {
  margin-top: 60px;
  overflow: hidden;
}
.team-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s var(--ease);
}
.team-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-card-sm);
  overflow: hidden;
  min-width: 210px;
  max-width: 230px;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.team-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.team-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.team-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
}
.team-card-img.md-img img {
  object-fit: cover;
  object-position: center 20%;
}
.team-card:hover .team-card-img img { transform: scale(1.06); }
.team-card-info {
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.team-card-info h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.team-card-info span {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
}

.team-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.team-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.team-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}
.faq-section .section-title { text-align: center; margin-bottom: 16px; }
.faq-section .section-sub { text-align: center; margin: 0 auto 56px; }

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--r-card-sm);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease);
}
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
}
.faq-trigger h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
}
.faq-plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}
.faq-item.open .faq-plus {
  transform: rotate(45deg);
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-body-inner {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

/* ============================================================
   COUNTERS SECTION
   ============================================================ */
.counters-section {
  background: var(--black);
  padding: 72px 0;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.counter-item {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.counter-item:last-child { border-right: none; }
.counter-num {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.counter-lbl {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,0.08); }
  .counter-item { background: var(--black); border-right: none; padding: 32px 20px; }
}

/* ============================================================
   BLOG / NEWS CARDS (3 col)
   ============================================================ */
.news-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.news-card {
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--white);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.news-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-body {
  padding: 24px 28px 28px;
}
.news-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
}
.news-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 10px;
}
.news-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--r-card-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease);
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.35); }
.gallery-item-overlay i {
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.gallery-item:hover .gallery-item-overlay i { opacity: 1; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info { padding-top: 8px; }
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 0.95rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.95rem;
}
.contact-item-text h5 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--black);
  margin-bottom: 4px;
}
.contact-item-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form { }
.contact-form .section-title { margin-bottom: 8px; }
.contact-form .section-sub { margin-bottom: 32px; }

.form-group { margin-bottom: 16px; }
.form-input {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: var(--font);
  font-size: 0.93rem;
  color: var(--black);
  transition: border-color var(--dur) var(--ease);
  outline: none;
}
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
textarea.form-input { resize: vertical; min-height: 130px; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   SG7996 STATS CARDS
   ============================================================ */
.sg-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sg-stat-card {
  background: var(--off-white-2);
  border-radius: var(--r-card-sm);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.sg-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.sg-stat-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.sg-stat-val {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1;
}
.sg-stat-lbl {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .sg-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Findings list */
.findings-list { display: flex; flex-direction: column; gap: 12px; }
.finding-item {
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-card-sm);
  padding: 20px 24px;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--black-soft);
}
.finding-item strong { color: var(--gold-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.footer-links li a {
  color: rgba(255,255,255,0.45);
  transition: color var(--dur) var(--ease);
}
.footer-links li a:hover { color: var(--gold); }
.footer-links i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  white-space: nowrap;
}
.marquee-item .sep { opacity: 0.4; font-weight: 300; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  .hero h1 { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  .process-layout { grid-template-columns: 1fr; }
  .dark-banner-content { grid-template-columns: 1fr; }
  .feature-card { min-width: 280px; }
}
