/* ====================================================
   ADZOYI GOLD & TRADING ENTERPRISE — MAIN STYLESHEET
   2026 Modern Design System
   ==================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Brand Colours */
  --gold-100: #fff9e6;
  --gold-200: #ffedb0;
  --gold-300: #ffd966;
  --gold-400: #f5c518;
  --gold-500: #d4a017;
  --gold-600: #b8860b;
  --gold-700: #8b6508;
  --gold-800: #5c4205;
  --dark-900: #0a0a0f;
  --dark-800: #111118;
  --dark-700: #1a1a28;
  --dark-600: #242438;
  --dark-500: #30304a;
  --slate-400: #8888aa;
  --slate-300: #aaaacc;
  --slate-200: #ccccdd;
  --slate-100: #f0f0f8;
  --white: #ffffff;

  /* Typography */
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Cormorant Garamond', serif;

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .35);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .45);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .55);
  --shadow-gold: 0 0 40px rgba(212, 160, 23, .25);

  /* Transitions */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --duration-fast: 180ms;
  --duration-normal: 320ms;
  --duration-slow: 600ms;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--dark-900);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-300);
  max-width: 600px;
  margin-top: var(--space-md);
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold-400);
}

.bg-dark {
  background: var(--dark-800);
}

.bg-panel {
  background: var(--dark-700);
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: var(--radius-full);
  margin: var(--space-md) 0 var(--space-xl);
}

.divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: .8rem 2rem;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all var(--duration-normal) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--dark-900);
  box-shadow: 0 4px 24px rgba(212, 160, 23, .35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 160, 23, .5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .3);
}

.btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(212, 160, 23, .15);
  color: var(--gold-300);
}

/* ── Gold Line Decoration ── */
.gold-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold-500);
  vertical-align: middle;
  margin-right: var(--space-sm);
}

/* ────────────────────────────
   NAVIGATION
──────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1.2rem 0;
  transition: all var(--duration-normal) var(--ease);
}

#navbar.scrolled {
  background: rgba(10, 10, 15, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
  padding: .75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-gold);
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-500);
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .01em;
}

.nav-logo-tagline {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  transition: color var(--duration-fast) var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-400);
  transition: width var(--duration-normal) var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-phone {
  font-size: .82rem;
  color: var(--slate-300);
  display: flex;
  align-items: center;
  gap: .35rem;
}

.nav-phone span {
  font-size: .9rem;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
  z-index: 10000;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-900);
  z-index: 9998;
  padding-top: 7rem;
  /* Make sure it clears the tall logo */
  padding-bottom: 3rem;
  overflow-y: auto;
  text-align: center;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--duration-fast);
  margin-bottom: 1.4rem;
  text-decoration: none;
}

.mobile-menu a:hover {
  color: var(--gold-400);
}

/* ────────────────────────────
   HERO SECTION
──────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 10, 15, .92) 0%,
      rgba(10, 10, 15, .6) 50%,
      rgba(10, 10, 15, .3) 100%);
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--dark-900), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(212, 160, 23, .12);
  border: 1px solid rgba(212, 160, 23, .3);
  border-radius: var(--radius-full);
  padding: .4rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, .4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(212, 160, 23, 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-400);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .7);
  max-width: 520px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: 2rem;
  display: flex;
  gap: var(--space-xl);
  z-index: 2;
}

/* Mobile stats: hidden on desktop, shown below buttons on mobile */
.hero-stats-mobile {
  display: none;
}

.hero-stat {
  text-align: center;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-400);
  line-height: 1;
}

.hero-stat-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-top: .35rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
  opacity: .6;
}

.scroll-indicator span {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 2px;
  animation: scroll-anim 2s ease infinite;
}

@keyframes scroll-anim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* ────────────────────────────
   TICKER / LIVE GOLD PRICE
──────────────────────────── */
.ticker-bar {
  background: var(--dark-700);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: .65rem 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 500;
}

.ticker-label {
  color: var(--slate-400);
  letter-spacing: .06em;
}

.ticker-value {
  color: var(--gold-400);
  font-weight: 700;
}

.ticker-change.up {
  color: #4ade80;
}

.ticker-change.down {
  color: #f87171;
}

/* ────────────────────────────
   CARDS, PANELS, FEATURES
──────────────────────────── */
.card {
  background: var(--dark-700);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, .25);
  box-shadow: var(--shadow-gold);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(212, 160, 23, .2), rgba(212, 160, 23, .08));
  border: 1px solid rgba(212, 160, 23, .25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
}

.card-text {
  font-size: .9rem;
  color: var(--slate-300);
  line-height: 1.65;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

/* Section spacing */
.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

/* ────────────────────────────
   FEATURES STRIP
──────────────────────────── */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-item {
  background: var(--dark-800);
  padding: 2rem 1.5rem;
  transition: background var(--duration-normal);
}

.feature-item:hover {
  background: var(--dark-700);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.feature-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.feature-desc {
  font-size: .82rem;
  color: var(--slate-400);
  margin-top: .35rem;
}

/* ────────────────────────────
   PAGE HERO (inner pages)
──────────────────────────── */
.page-hero {
  padding: 7rem 0 3.5rem;
  background: linear-gradient(180deg, var(--dark-800) 0%, var(--dark-900) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, .5), transparent);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: var(--space-md);
  font-size: .8rem;
  color: var(--slate-400);
}

.breadcrumb a {
  color: var(--slate-400);
  transition: color var(--duration-fast);
}

.breadcrumb a:hover {
  color: var(--gold-400);
}

.breadcrumb-sep {
  opacity: .4;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--slate-300);
  max-width: 580px;
  margin-top: var(--space-md);
  line-height: 1.7;
}

/* ────────────────────────────
   ABOUT SPLIT
──────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse>* {
  direction: ltr;
}

.split-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.split-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.split-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(10, 10, 15, .85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 160, 23, .3);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
}

.split-image-badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-400);
}

.split-image-badge-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-top: .2rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: var(--space-lg);
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--dark-700);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease);
}

.value-item:hover {
  border-color: rgba(212, 160, 23, .25);
  background: rgba(212, 160, 23, .05);
}

.value-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.value-title {
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .2rem;
}

.value-desc {
  font-size: .85rem;
  color: var(--slate-400);
}

/* ────────────────────────────
   SERVICES
──────────────────────────── */
.service-card {
  background: var(--dark-700);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--duration-normal) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, .2);
  box-shadow: var(--shadow-gold);
}

.service-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(212, 160, 23, .1);
  line-height: 1;
  margin-bottom: .5rem;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.service-text {
  font-size: .9rem;
  color: var(--slate-300);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold-400);
  font-size: .85rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: gap var(--duration-fast);
}

.service-link:hover {
  gap: .7rem;
}

/* ────────────────────────────
   STATS / COUNTERS
──────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, var(--dark-700), var(--dark-600));
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: var(--space-2xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--gold-400);
  line-height: 1;
}

.stat-label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-top: .5rem;
}

/* ────────────────────────────
   PROCESS STEPS
──────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-lg);
  position: relative;
}

.process-step:not(:last-child) .step-line {
  position: absolute;
  left: 29px;
  top: 56px;
  bottom: -1px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-600), transparent);
}

.step-number-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: .2rem;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark-900);
  flex-shrink: 0;
}

.step-content {
  padding-bottom: var(--space-xl);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}

.step-text {
  font-size: .9rem;
  color: var(--slate-300);
  line-height: 1.65;
}

/* ────────────────────────────
   TEAM
──────────────────────────── */
.team-card {
  background: var(--dark-700);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, .25);
}

.team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
}

.team-info {
  padding: 1.25rem;
}

.team-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .2rem;
}

.team-role {
  font-size: .8rem;
  color: var(--gold-400);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.team-bio {
  font-size: .83rem;
  color: var(--slate-400);
  margin-top: .6rem;
  line-height: 1.6;
}

/* ────────────────────────────
   TESTIMONIALS
──────────────────────────── */
.testimonial-card {
  background: var(--dark-700);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--duration-normal) var(--ease);
}

.testimonial-card:hover {
  border-color: rgba(212, 160, 23, .2);
}

.testimonial-stars {
  color: var(--gold-400);
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-size: .95rem;
  color: var(--slate-200);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark-900);
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: .9rem;
}

.testimonial-company {
  font-size: .78rem;
  color: var(--slate-400);
}

/* ────────────────────────────
   NEWS / BLOG
──────────────────────────── */
.news-card {
  background: var(--dark-700);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease);
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 160, 23, .2);
}

.news-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-body {
  padding: 1.5rem;
}

.news-category {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(212, 160, 23, .1);
  border-radius: var(--radius-full);
  padding: .25rem .75rem;
  margin-bottom: var(--space-sm);
}

.news-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: .5rem;
  transition: color var(--duration-fast);
}

.news-card:hover .news-title {
  color: var(--gold-400);
}

.news-excerpt {
  font-size: .85rem;
  color: var(--slate-400);
  line-height: 1.65;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: var(--space-md);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.news-date,
.news-read {
  font-size: .75rem;
  color: var(--slate-400);
}

.news-card {
  cursor: pointer;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold-400);
  font-size: .82rem;
  font-weight: 600;
  margin-top: .75rem;
  transition: gap var(--duration-fast);
}

.news-card:hover .news-read-more {
  gap: .7rem;
}

/* ────────────────────────────
   NEWS ARTICLE MODAL
──────────────────────────── */
.article-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 10, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.article-overlay.active {
  opacity: 1;
  visibility: visible;
}

.article-modal {
  background: var(--dark-800);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  max-width: 780px;
  width: 100%;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
  transform: translateY(30px) scale(.97);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.article-overlay.active .article-modal {
  transform: translateY(0) scale(1);
}

.article-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 10, 15, .7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast);
}

.article-close:hover {
  background: rgba(212, 160, 23, .2);
  border-color: rgba(212, 160, 23, .4);
  color: var(--gold-400);
}

.article-hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.article-content {
  padding: 2.5rem;
}

.article-content .news-category {
  margin-bottom: .75rem;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.article-content .news-meta {
  margin-top: 0;
  margin-bottom: 2rem;
  padding-top: 0;
  border-top: none;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.article-body p {
  font-size: .95rem;
  color: var(--slate-200);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-back-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold-400);
  font-size: .85rem;
  font-weight: 600;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-bottom: none;
  width: 100%;
  transition: gap var(--duration-fast);
}

.article-back-btn:hover {
  gap: .7rem;
}

@media (max-width: 768px) {
  .article-hero-img {
    height: 220px;
  }

  .article-content {
    padding: 1.5rem;
  }

  .article-content h2 {
    font-size: 1.35rem;
  }

  .article-modal {
    margin: 1rem auto;
  }
}

/* ────────────────────────────
   CONTACT
──────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 160, 23, .1);
  border: 1px solid rgba(212, 160, 23, .2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: .35rem;
}

.contact-info-value {
  font-size: .95rem;
  color: var(--slate-200);
  line-height: 1.6;
}

.contact-info-value a {
  color: var(--slate-200);
  transition: color var(--duration-fast);
}

.contact-info-value a:hover {
  color: var(--gold-400);
}

/* Form */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate-300);
  margin-bottom: .5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--dark-700);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  padding: .85rem 1rem;
  font-size: .95rem;
  color: var(--white);
  font-family: var(--font-body);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, .1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-400);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: var(--dark-700);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Map placeholder */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  height: 260px;
  background: var(--dark-700);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: var(--space-xl);
}

.map-placeholder {
  text-align: center;
}

.map-pin {
  font-size: 2.5rem;
}

.map-address {
  font-size: .9rem;
  color: var(--slate-300);
  margin-top: .5rem;
}

/* ────────────────────────────
   CTA BAND
──────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--dark-700), var(--dark-600));
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(212, 160, 23, .12), transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.cta-text {
  color: var(--slate-300);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
}

.cta-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

/* ────────────────────────────
   FOOTER
──────────────────────────── */
.footer {
  background: var(--dark-800);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-brand-desc {
  font-size: .88rem;
  color: var(--slate-400);
  line-height: 1.7;
  margin: var(--space-md) 0 var(--space-lg);
}

.footer-socials {
  display: flex;
  gap: .75rem;
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--slate-300);
  transition: all var(--duration-fast);
}

.footer-social:hover {
  background: rgba(212, 160, 23, .15);
  border-color: rgba(212, 160, 23, .3);
  color: var(--gold-400);
}

.footer-col-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate-300);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-links a {
  font-size: .88rem;
  color: var(--slate-400);
  transition: color var(--duration-fast);
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-contact-item {
  display: flex;
  gap: .6rem;
  margin-bottom: .75rem;
  font-size: .88rem;
  color: var(--slate-400);
}

.footer-contact-item span:first-child {
  font-size: .95rem;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: .8rem;
  color: var(--slate-400);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: .8rem;
  color: var(--slate-400);
  transition: color var(--duration-fast);
}

.footer-legal a:hover {
  color: var(--gold-400);
}

/* ────────────────────────────
   CAREERS
──────────────────────────── */
.job-card {
  background: var(--dark-700);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  transition: all var(--duration-normal) var(--ease);
}

.job-card:hover {
  border-color: rgba(212, 160, 23, .25);
  transform: translateX(4px);
}

.job-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
}

.badge-full {
  background: rgba(74, 222, 128, .12);
  color: #4ade80;
}

.badge-part {
  background: rgba(251, 191, 36, .12);
  color: #fbbf24;
}

.badge-contract {
  background: rgba(96, 165, 250, .12);
  color: #60a5fa;
}

.job-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .4rem;
}

.job-meta {
  display: flex;
  gap: 1rem;
  font-size: .8rem;
  color: var(--slate-400);
}

.job-dept {
  color: var(--gold-400);
  font-weight: 500;
}

/* ────────────────────────────
   ANIMATIONS
──────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity .6s var(--ease);
}

.fade-in.visible {
  opacity: 1;
}

/* Stagger delays */
.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

.delay-4 {
  transition-delay: .4s;
}

.delay-5 {
  transition-delay: .5s;
}

/* ────────────────────────────
   TABS
──────────────────────────── */
.tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.tab-btn {
  padding: .55rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, .1);
  background: transparent;
  color: var(--slate-300);
  font-size: .85rem;
  font-weight: 500;
  transition: all var(--duration-fast);
}

.tab-btn.active,
.tab-btn:hover {
  background: rgba(212, 160, 23, .15);
  border-color: rgba(212, 160, 23, .4);
  color: var(--gold-400);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ────────────────────────────
   ACCORDION
──────────────────────────── */
.accordion-item {
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-md);
  margin-bottom: .5rem;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.5rem;
  background: var(--dark-700);
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: background var(--duration-fast);
}

.accordion-btn:hover {
  background: var(--dark-600);
}

.accordion-icon {
  transition: transform var(--duration-normal);
  flex-shrink: 0;
  color: var(--gold-400);
  font-size: 1rem;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease);
}

.accordion-item.open .accordion-body {
  max-height: 400px;
}

.accordion-content {
  padding: 1rem 1.5rem 1.5rem;
  font-size: .9rem;
  color: var(--slate-300);
  line-height: 1.7;
  background: var(--dark-700);
}

/* ────────────────────────────
   SCROLL TO TOP
──────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-900);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration-normal) var(--ease);
  pointer-events: none;
  z-index: 9000;
  cursor: pointer;
  border: none;
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ────────────────────────────
   PRODUCTS
──────────────────────────── */
.product-card {
  background: var(--dark-700);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 160, 23, .3);
  box-shadow: var(--shadow-gold);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 10, 15, .8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 160, 23, .3);
  border-radius: var(--radius-full);
  padding: .3rem .85rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.product-body {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.product-purity {
  font-size: .85rem;
  color: var(--gold-500);
  font-weight: 600;
}

.product-desc {
  font-size: .88rem;
  color: var(--slate-400);
  margin-top: .5rem;
  line-height: 1.65;
}

/* ────────────────────────────
   RESPONSIVE
──────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 3rem;
    --space-2xl: 2rem;
  }

  /* ── Container padding ── */
  .container {
    padding: 0 1.25rem;
  }

  /* ── Hide desktop nav, show hamburger ── */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* ── Hero section ── */
  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 2rem;
  }

  .hero-content {
    padding-top: 6rem;
    text-align: center;
    max-width: 100%;
  }

  /* Hide the badge on mobile to avoid navbar overlap */
  .hero-badge {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1rem;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Hide desktop absolute stats, show inline mobile stats */
  .hero-stats {
    display: none;
  }

  .hero-stats-mobile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 0;
    width: 100%;
  }

  .hero-stats-mobile .hero-stat {
    flex: 1 1 calc(33% - 0.6rem);
    min-width: 85px;
    padding: 0.65rem 0.4rem;
    text-align: center;
  }

  .hero-stats-mobile .hero-stat-number {
    font-size: 1.3rem;
  }

  .hero-stats-mobile .hero-stat-label {
    font-size: 0.6rem;
  }

  /* Scroll indicator – centre it beneath stats */
  .scroll-indicator {
    position: static;
    transform: none;
    margin-top: 1.25rem;
    opacity: 0.5;
    align-items: center;
  }

  /* ── Grids go single column ── */
  .grid-2,
  .grid-3,
  .grid-4,
  .split-section,
  .features-strip,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .split-section.reverse {
    direction: ltr;
  }

  /* ── Features strip items get border separation ── */
  .features-strip {
    gap: 0;
    border-radius: var(--radius-md);
  }

  .feature-item {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 1.25rem 1.5rem;
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  /* ── Stats band ── */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  /* ── Split image caps height on mobile ── */
  .split-image-wrap img {
    height: 280px;
  }

  /* ── Section titles ── */
  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  /* ── Testimonials ── */
  .testimonial-card {
    padding: 1.5rem;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-legal {
    justify-content: center;
  }

  /* ── Form ── */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* ── CTA band ── */
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* ── Job cards ── */
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* ── Back-to-top button – move to bottom-left so it doesn't block content ── */
  #scroll-top {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    opacity: 0.7;
  }

  /* ── CTA title ── */
  .cta-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stat {
    flex: 1 1 calc(50% - 0.5rem);
  }

  .nav-logo-name {
    font-size: 0.95rem;
  }

  .nav-logo-tagline {
    font-size: 0.5rem;
  }
}

/* ────────────────────────────
   GALLERY MOSAIC
──────────────────────────── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: .75rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform var(--duration-default) var(--ease);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.85);
  /* gold */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.8;
  transition: all var(--duration-default) var(--ease);
  pointer-events: none;
}

.gallery-item:hover .video-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold-400);
}