/* ============================================================
   PEREGRINE RESOURCE MANAGEMENT — Brand Stylesheet
   Navy #181725 | Grey #8A8E9B | Silver #B0B4BF | White #FFFFFF
   Font: Gill Sans MT / Trebuchet MS
   ============================================================ */

:root {
  --navy:        #181725;
  --navy-dark:   #111020;
  --navy-light:  #1F1E33;
  --grey:        #8A8E9B;
  --silver:      #B0B4BF;
  --white:       #FFFFFF;
  --off-white:   #F4F5F7;
  --border:      #E2E4E9;
  --font: 'Gill Sans MT', 'Gill Sans', 'Trebuchet MS', Arial, sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--navy); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── UTILITY ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
section { padding: 96px 5%; }
.bg-navy     { background: var(--navy); }
.bg-white    { background: var(--white); }
.bg-off      { background: var(--off-white); }

.label {
  display: block; font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 700; margin-bottom: 14px;
  color: var(--silver);
}
.label.dark { color: var(--grey); }

.section-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 600;
  line-height: 1.15; margin-bottom: 16px; color: var(--navy);
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 17px; color: var(--grey); line-height: 1.8;
  max-width: 600px; margin-bottom: 0;
}
.section-sub.light { color: var(--silver); }

/* Divider rule */
.rule { height: 1px; background: var(--border); margin: 0; }
.rule.dark { background: rgba(176,180,191,0.15); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 3px;
  font-family: var(--font); font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.22s; cursor: pointer; border: none; white-space: nowrap;
}
.btn-navy    { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline-silver {
  background: transparent; border: 1.5px solid rgba(176,180,191,0.45);
  color: var(--silver);
}
.btn-outline-silver:hover { border-color: var(--white); color: var(--white); }
.btn-outline-navy {
  background: transparent; border: 1.5px solid var(--navy); color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ─── SCROLL ANIMATIONS ─── */
.aos {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.aos.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(176,180,191,0.12);
  padding: 0 5%; height: 106px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.35); }

.nav-logo img { height: 84px; }

.nav-links { display: flex; gap: 34px; }
.nav-links a {
  color: rgba(176,180,191,0.75); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s; padding: 4px 0;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); border-bottom-color: rgba(176,180,191,0.4); }

.nav-cta {
  border: 1.5px solid rgba(176,180,191,0.35); color: var(--silver);
  padding: 8px 20px; border-radius: 3px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.2s;
}
.nav-cta:hover { border-color: var(--white); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--silver); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 106px; left: 0; right: 0;
  background: var(--navy-dark); z-index: 199;
  border-top: 1px solid rgba(176,180,191,0.1);
  padding: 12px 5% 28px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; color: var(--silver); padding: 14px 0; font-size: 15px;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 8px; color: var(--white); }
.mobile-menu a:hover { color: var(--white); }

/* ─── HOME HERO ─── */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center;
  padding: 106px 5% 80px;
  position: relative; overflow: hidden;
}

.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(176,180,191,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176,180,191,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-glow {
  position: absolute; pointer-events: none;
  top: -100px; right: -80px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(176,180,191,0.055) 0%, transparent 65%);
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}

/* Hero brand logo — large centered display in the home hero */
.hero-brand-logo {
  display: block;
  height: 320px;
  width: auto;
  margin: 0 auto 8px;
}

.hero-inner.centered { text-align: center; }
.hero-inner.centered .hero-sub  { margin-left: auto; margin-right: auto; }
.hero-inner.centered .hero-actions { justify-content: center; }
.hero-inner.centered .hero-stats { justify-content: center; }
.hero-inner.centered .hero-eyebrow { justify-content: center; }
.hero-inner.centered .hero-eyebrow::before { display: none; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--silver); margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--silver); }

.hero h1 {
  font-size: clamp(38px, 5.5vw, 70px); font-weight: 600;
  color: var(--white); line-height: 1.08;
  letter-spacing: -0.01em; margin-bottom: 28px;
  max-width: 900px;
}
.hero h1 span { color: var(--silver); }

.hero-sub {
  font-size: 18px; color: var(--grey); line-height: 1.8;
  max-width: 560px; margin-bottom: 44px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }

.hero-divider { height: 1px; background: rgba(176,180,191,0.14); margin-bottom: 40px; }

.hero-stats { display: flex; gap: 56px; flex-wrap: wrap; }
.hero-stat-val {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--white); display: block; margin-bottom: 4px;
}
.hero-stat-label { font-size: 12px; color: var(--grey); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--navy); padding: 170px 5% 80px;
  border-bottom: 1px solid rgba(176,180,191,0.12);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero .label { color: var(--silver); }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 58px); color: var(--white);
  font-weight: 600; margin-bottom: 16px; line-height: 1.1;
}
.page-hero p { font-size: 18px; color: var(--silver); max-width: 640px; line-height: 1.75; }

/* ─── INTRO STRIP ─── */
.intro-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 22px 5%;
}
.intro-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap;
}
.intro-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 0 28px; border-right: 1px solid var(--border);
  font-size: 12.5px; color: var(--grey); font-weight: 500; letter-spacing: 0.02em;
}
.intro-pill:first-child { padding-left: 0; }
.intro-pill:last-child { border-right: none; }
.intro-pill svg { width: 14px; height: 14px; color: var(--silver); flex-shrink: 0; }

/* ─── HOME SERVICES GRID ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 3px; padding: 40px 32px;
  position: relative; overflow: hidden; transition: all 0.25s;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--navy); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.svc-card:hover { border-color: var(--silver); box-shadow: 0 6px 28px rgba(30,34,53,0.08); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 48px; height: 48px; border-radius: 3px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.svc-icon svg { width: 22px; height: 22px; color: var(--silver); fill: none; stroke: currentColor; stroke-width: 1.5; }

.svc-card h3 { font-size: 17.5px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.svc-card p  { font-size: 14.5px; color: var(--grey); line-height: 1.75; }

.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 22px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy);
  transition: gap 0.2s;
}
.svc-link:hover { gap: 10px; color: var(--grey); }
.svc-link svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ─── CTA BANNER ─── */
.cta-banner { background: var(--navy); padding: 88px 5%; text-align: center; }
.cta-banner h2 { font-size: clamp(26px, 4vw, 42px); color: var(--white); margin-bottom: 16px; }
.cta-banner p  { font-size: 17px; color: var(--silver); max-width: 520px; margin: 0 auto 36px; line-height: 1.8; }
.cta-actions   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── ABOUT PAGE ─── */
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-text .label { color: var(--silver); }
.about-text h2 { color: var(--white); font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 20px; }
.about-text p { color: var(--silver); font-size: 16px; line-height: 1.85; margin-bottom: 22px; }
.about-text p:last-child { margin-bottom: 0; }

.about-values { margin-top: 40px; display: flex; flex-direction: column; gap: 18px; }
.value-row { display: flex; gap: 14px; }
.value-dash { width: 24px; height: 1.5px; background: var(--silver); flex-shrink: 0; margin-top: 11px; }
.value-row div {}
.value-row strong { display: block; color: var(--white); font-size: 15px; margin-bottom: 4px; }
.value-row span   { font-size: 14px; color: var(--grey); line-height: 1.65; }

.about-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(176,180,191,0.15);
  border-radius: 3px; padding: 40px;
}
.about-panel h3 {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--silver); margin-bottom: 32px; font-weight: 700;
}
.about-kpi { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(176,180,191,0.12); }
.about-kpi:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.about-kpi-val { font-size: 36px; font-weight: 600; color: var(--white); line-height: 1; margin-bottom: 6px; }
.about-kpi-label { font-size: 13px; color: var(--grey); }

/* Registration / compliance strip */
.reg-strip {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 28px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.reg-item { display: flex; align-items: flex-start; gap: 10px; }
.reg-item svg { width: 15px; height: 15px; color: var(--grey); flex-shrink: 0; margin-top: 3px; }
.reg-item small { font-size: 12.5px; color: var(--grey); line-height: 1.5; }

/* Team */
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 48px;
}
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 3px; overflow: hidden; transition: all 0.25s;
}
.team-card:hover { box-shadow: 0 8px 36px rgba(30,34,53,0.1); transform: translateY(-3px); }
.team-card-top {
  background: var(--navy); padding: 36px 32px;
  display: flex; gap: 20px; align-items: center;
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: rgba(176,180,191,0.15);
  border: 2px solid rgba(176,180,191,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 600; color: var(--silver);
}
.team-card-top h3 { font-size: 20px; color: var(--white); margin-bottom: 4px; }
.team-card-top .role {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver);
}
.team-card-body { padding: 28px 32px; }
.team-card-body p { font-size: 14.5px; color: var(--grey); line-height: 1.78; margin-bottom: 20px; }
.team-contacts a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--navy); font-weight: 500;
  margin-bottom: 8px; transition: color 0.2s;
}
.team-contacts a:hover { color: var(--grey); }
.team-contacts svg { width: 13px; height: 13px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.5; }

/* ─── SERVICES PAGE ─── */
.svc-blocks { display: flex; flex-direction: column; }
.svc-block {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 64px; align-items: start;
  padding: 72px 0; border-bottom: 1px solid var(--border);
}
.svc-block:last-child { border-bottom: none; }

.svc-sidebar { position: sticky; top: 96px; }
.svc-num {
  font-size: 72px; font-weight: 600; color: var(--border);
  line-height: 1; margin-bottom: 16px; font-variant-numeric: tabular-nums;
}
.svc-sidebar h3 { font-size: 21px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.svc-tag {
  display: inline-block; background: var(--navy);
  color: var(--silver); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px;
}

.svc-body p { font-size: 16px; color: var(--grey); line-height: 1.85; margin-bottom: 20px; }
.svc-body p:last-of-type { margin-bottom: 0; }

.svc-points { margin-top: 32px; display: flex; flex-direction: column; gap: 0; }
.svc-point {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px;
  border-left: 2px solid var(--navy);
  background: var(--off-white);
  margin-bottom: 10px;
}
.svc-point svg { width: 15px; height: 15px; color: var(--navy); flex-shrink: 0; margin-top: 2px; fill: none; stroke: currentColor; stroke-width: 2; }
.svc-point span { font-size: 14.5px; color: var(--grey); line-height: 1.6; }

/* ─── COMMODITIES PAGE ─── */
.commodities-intro { max-width: 1200px; margin: 0 auto; margin-bottom: 56px; }

.commodities-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.comm-col {}
.comm-col-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 18px; margin-bottom: 20px;
  border-bottom: 2px solid var(--navy);
}
.comm-col-head h3 {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy); font-weight: 700;
}
.comm-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 2px;
}
.comm-badge.buy    { background: var(--navy); color: var(--silver); }
.comm-badge.supply { background: var(--off-white); color: var(--grey); border: 1px solid var(--border); }

.comm-list { display: flex; flex-direction: column; gap: 8px; }
.comm-item {
  background: var(--white); border: 1px solid var(--border); border-radius: 3px;
  padding: 18px 22px; display: flex; align-items: center; justify-content: space-between;
  transition: all 0.2s;
}
.comm-item:hover { border-color: var(--silver); box-shadow: 0 2px 12px rgba(30,34,53,0.06); }
.comm-item-l { display: flex; align-items: center; gap: 14px; }
.comm-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.comm-dot.buy    { background: var(--navy); }
.comm-dot.supply { background: var(--silver); }
.comm-name { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.2; }
.comm-origin { font-size: 12px; color: var(--grey); margin-top: 2px; }
.comm-status {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}
.comm-status.active    { background: rgba(30,34,53,0.08); color: var(--navy); }
.comm-status.available { background: var(--off-white); color: var(--grey); border: 1px solid var(--border); }

.comm-note {
  margin-top: 44px; padding: 28px 32px;
  background: var(--navy); border-radius: 3px;
}
.comm-note strong { display: block; color: var(--white); font-size: 15.5px; margin-bottom: 8px; }
.comm-note p { font-size: 14.5px; color: var(--silver); line-height: 1.75; }
.comm-note a { color: var(--silver); border-bottom: 1px solid rgba(176,180,191,0.4); transition: color 0.2s; }
.comm-note a:hover { color: var(--white); }

/* ─── CONTACT PAGE ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; align-items: start; }

.contact-info h2 { font-size: clamp(24px, 3.5vw, 38px); color: var(--navy); margin-bottom: 14px; }
.contact-info > p { font-size: 16px; color: var(--grey); line-height: 1.8; margin-bottom: 36px; }

.director-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.dir-card {
  background: var(--navy); border-radius: 3px; padding: 24px 26px;
  display: flex; gap: 16px; align-items: flex-start;
}
.dir-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: rgba(176,180,191,0.12);
  border: 1.5px solid rgba(176,180,191,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 700; color: var(--silver);
  letter-spacing: -0.02em;
}
.dir-name  { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.dir-title {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--silver); margin-bottom: 14px;
}
.dir-links a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--silver); margin-bottom: 7px;
  transition: color 0.2s;
}
.dir-links a:hover { color: var(--white); }
.dir-links svg { width: 12px; height: 12px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.5; }

.office-block { border-top: 1px solid var(--border); padding-top: 28px; }
.office-block h4 {
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--grey); font-weight: 700; margin-bottom: 14px;
}
.office-line {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--navy); margin-bottom: 10px; line-height: 1.5;
}
.office-line svg { width: 13px; height: 13px; color: var(--grey); flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.5; margin-top: 3px; }

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 3px; padding: 44px 40px;
}
.contact-form-wrap h3 { font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.contact-form-wrap > p { font-size: 14px; color: var(--grey); margin-bottom: 28px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fgroup { margin-bottom: 14px; }
.fgroup label {
  display: block; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey); font-weight: 700; margin-bottom: 8px;
}
.fgroup input, .fgroup select, .fgroup textarea {
  width: 100%; background: var(--white);
  border: 1px solid var(--border); border-radius: 3px;
  padding: 12px 14px; color: var(--navy);
  font-family: var(--font); font-size: 14.5px;
  outline: none; transition: border-color 0.2s;
  appearance: none;
}
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: var(--navy); }
.fgroup select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238A8E9B' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  cursor: pointer;
}
.fgroup textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; background: var(--navy); color: var(--white);
  border: none; border-radius: 3px; padding: 14px;
  font-family: var(--font); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background 0.22s; margin-top: 6px;
}
.form-submit:hover { background: var(--navy-dark); }
.form-success {
  display: none; background: rgba(30,34,53,0.06);
  border: 1px solid var(--border); border-radius: 3px;
  padding: 16px 20px; text-align: center; margin-top: 14px;
  font-size: 14px; color: var(--navy); font-weight: 500;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(176,180,191,0.1);
  padding: 64px 5% 36px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 52px; margin-bottom: 52px;
}
.footer-brand img { height: 60px; margin-bottom: 18px; }
.footer-brand p { font-size: 13.5px; color: var(--grey); line-height: 1.75; max-width: 240px; }
.footer-col h4 {
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--silver); font-weight: 700; margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13.5px; color: var(--grey); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-col address { font-style: normal; }
.footer-col address p, .footer-col address a { font-size: 13.5px; color: var(--grey); line-height: 1.8; display: block; transition: color 0.2s; }
.footer-col address a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(176,180,191,0.1); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p, .footer-reg { font-size: 12px; color: var(--grey); }

/* ─── BACKGROUND GRADIENT ANIMATION HERO ─── */
.hero-animated {
  min-height: 100vh;
  background: linear-gradient(40deg, rgb(18, 20, 40), rgb(30, 34, 53));
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 106px 0 80px;
}

/* SVG blur filter container */
.blob-svg { position: absolute; width: 0; height: 0; }

/* All blobs live inside this — filter applied here */
.hero-blobs {
  position: absolute; inset: 0;
  filter: url(#blob-filter) blur(0px);
}

.blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: hard-light;
  opacity: 1;
  will-change: transform;
}

/* blob-1 — navy dark, large slow circle */
.blob-1 {
  background: radial-gradient(circle at center,
    rgba(30,34,53,0.8) 0%, rgba(30,34,53,0) 50%);
  width: 80%; height: 80%;
  top: calc(50% - 40%); left: calc(50% - 40%);
  transform-origin: calc(50% - 400px) 50%;
  animation: bgMoveCircle 20s reverse infinite;
}

/* blob-2 — grey, medium circle opposite direction */
.blob-2 {
  background: radial-gradient(circle at center,
    rgba(138,142,155,0.8) 0%, rgba(138,142,155,0) 50%);
  width: 80%; height: 80%;
  top: calc(50% - 40%); left: calc(50% - 40%);
  transform-origin: calc(50% + 400px) 50%;
  animation: bgMoveCircle 18s linear infinite;
}

/* blob-3 — silver, vertical drift */
.blob-3 {
  background: radial-gradient(circle at center,
    rgba(176,180,191,0.8) 0%, rgba(176,180,191,0) 50%);
  width: 80%; height: 80%;
  top: calc(50% - 40% - 200px); left: calc(50% - 40%);
  transform-origin: calc(50% - 200px) 50%;
  animation: bgMoveVertical 15s ease infinite;
}

/* blob-4 — deep navy, horizontal drift */
.blob-4 {
  background: radial-gradient(circle at center,
    rgba(20,25,45,0.8) 0%, rgba(20,25,45,0) 50%);
  width: 40%; height: 40%;
  top: calc(50% - 20%); left: calc(50% - 20%);
  transform-origin: calc(50% - 200px) 50%;
  animation: bgMoveHorizontal 18s ease infinite;
}

/* blob-5 — mid navy, slow large wrap */
.blob-5 {
  background: radial-gradient(circle at center,
    rgba(60,65,90,0.8) 0%, rgba(60,65,90,0) 50%);
  width: 160%; height: 160%;
  top: calc(50% - 80%); left: calc(50% - 80%);
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  animation: bgMoveCircle 20s ease infinite;
}

/* pointer blob — follows mouse */
.blob-pointer {
  background: radial-gradient(circle at center,
    rgba(138,142,155,0.8) 0%, rgba(138,142,155,0) 50%);
  width: 40%; height: 40%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: top 0.06s ease-out, left 0.06s ease-out;
}

@keyframes bgMoveCircle {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}
@keyframes bgMoveVertical {
  0%   { transform: translateY(-50%); }
  50%  { transform: translateY(50%); }
  100% { transform: translateY(-50%); }
}
@keyframes bgMoveHorizontal {
  0%   { transform: translateX(-50%) translateY(-10%); }
  50%  { transform: translateX(50%) translateY(10%); }
  100% { transform: translateX(-50%) translateY(-10%); }
}

/* Hero content sits above blobs */
.hero-animated-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  max-width: 960px; width: 100%;
  padding: 60px 5%;
}

.hero-animated-logo {
  height: 300px; width: auto;
  display: block; margin-bottom: 4px;
}

.hero-animated-content h1 {
  font-family: var(--font);
  font-size: clamp(30px, 4.8vw, 58px);
  font-weight: 600; color: var(--white);
  line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero-animated-content p {
  font-family: var(--font);
  font-size: 18px; color: rgba(255,255,255,0.62);
  line-height: 1.78; max-width: 580px;
  margin-bottom: 36px;
}

.hero-animated-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}

.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: rgba(255,255,255,0.88); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-animated-logo { height: 200px; }
  .hero-animated-content h1 { font-size: 32px; }
}
@media (max-width: 480px) {
  .hero-animated-logo { height: 150px; }
  .hero-animated-content h1 { font-size: 26px; }
  .hero-animated-actions { flex-direction: column; align-items: center; }
}

/* ─── AFRICAN FOOTPRINT SECTION ─── */
.africa-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy-light) 100%);
  background-size: 200% 200%;
  animation: africaBgShift 14s ease-in-out infinite;
}

@keyframes africaBgShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* Faint Africa silhouette in background */
.africa-silhouette {
  position: absolute; right: 2%; top: 50%;
  transform: translateY(-50%);
  width: 320px; height: 420px;
  background: rgba(176,180,191,0.055);
  clip-path: polygon(
    18% 5%,  55% 0%,  78% 6%,  90% 15%,
    100% 30%, 91% 38%, 88% 55%, 82% 72%,
    68% 90%, 50% 100%, 36% 90%, 24% 75%,
    14% 58%, 2%  44%,  14% 34%, 8%  24%, 18% 5%
  );
  pointer-events: none;
  animation: africaGlow 6s ease-in-out infinite;
}

@keyframes africaGlow {
  0%, 100% { opacity: 0.8; }
  50%       { opacity: 1.4; }
}

/* Dot grid overlay for depth */
.africa-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(176,180,191,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}

.africa-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
}

.africa-left .label { color: var(--silver); }

.africa-counter-block {
  display: flex; align-items: flex-end; gap: 20px;
  margin: 20px 0 0;
}

.africa-count {
  font-size: 108px; font-weight: 700;
  color: var(--white); line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 80px rgba(176,180,191,0.18);
  display: block;
}

.africa-count-label {
  font-size: 20px; color: var(--silver);
  font-weight: 500; line-height: 1.35;
  padding-bottom: 16px;
}

.africa-bar-wrap {
  height: 2px; background: rgba(176,180,191,0.12);
  border-radius: 2px; overflow: hidden; margin: 24px 0 28px;
}
.africa-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--silver), rgba(176,180,191,0.3));
  border-radius: 2px;
  transition: width 1.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.africa-bar.filled { width: 100%; }

.africa-sub {
  font-size: 16px; color: var(--grey); line-height: 1.85; max-width: 460px;
}

/* Country tags */
.country-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.country-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
  color: rgba(176,180,191,0.65);
  border: 1px solid rgba(176,180,191,0.16);
  background: rgba(176,180,191,0.04);
  padding: 10px 16px; border-radius: 2px;
  opacity: 0; transform: translateY(18px) scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease,
              border-color 0.25s, background 0.25s, color 0.25s;
  cursor: default;
}

.country-tag::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--silver); flex-shrink: 0;
  opacity: 0; transition: opacity 0.4s 0.2s;
}

.country-tag.revealed {
  opacity: 1; transform: none;
}
.country-tag.revealed::before {
  opacity: 1;
  animation: tagDot 2.8s ease-in-out infinite;
}

.country-tag:hover {
  border-color: rgba(176,180,191,0.5);
  background: rgba(176,180,191,0.1);
  color: var(--white);
}

@keyframes tagDot {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.2; transform: scale(0.4); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-layout { grid-template-columns: 1fr; }
  .africa-layout { grid-template-columns: 1fr; gap: 44px; }
  .africa-silhouette { display: none; }
  .svc-block { grid-template-columns: 1fr; gap: 32px; }
  .svc-sidebar { position: static; }
}

@media (max-width: 768px) {
  .hero-brand-logo { height: 220px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  section { padding: 64px 5%; }
  .page-hero { padding: 110px 5% 56px; }

  .services-grid { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr; }
  .commodities-cols { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .intro-pill { padding: 8px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 520px) {
  .hero-brand-logo { height: 160px; }
  .hero h1 { font-size: 36px; }
  .africa-count { font-size: 72px; }
  .africa-count-label { font-size: 16px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
