/* ═══════════════════════════════════════════════════════════════
   TEMPLATE V2  —  "Precision Black"
   Homepage-only override. Loaded via extra_css block.
   Brand colours: Forest #0B2C1E  Gold #C8962E  Cream #F8F4EE
   Dark base:     #09100D          Slate #111A14
   ═══════════════════════════════════════════════════════════════ */

:root {
  --v2-black:   #09100D;
  --v2-slate:   #0F1A13;
  --v2-forest:  #0B2C1E;
  --v2-mid:     #163826;
  --v2-gold:    #C8962E;
  --v2-gold-lt: rgba(200,150,46,.18);
  --v2-cream:   #F8F4EE;
  --v2-white:   #FFFFFF;
  --v2-muted:   rgba(248,244,238,.52);
  --v2-border:  rgba(200,150,46,.22);
  --v2-radius:  4px;
  --v2-gap:     clamp(60px,8vw,120px);
}

/* ── Reset section backgrounds ────────────────────────────────── */
.v2-hero,
.v2-metrics-band,
.v2-about,
.v2-services,
.v2-footprint,
.v2-chairman,
.v2-partners,
.v2-insights,
.v2-cta { box-sizing: border-box; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.v2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -90px;
  padding-top: 90px;
  background: var(--v2-black);
}
.v2-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .50;
}
.v2-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    115deg,
    rgba(9,16,13,.96) 0%,
    rgba(9,16,13,.78) 55%,
    rgba(11,44,30,.55) 100%
  );
}
/* Gold accent bar that bleeds off the left edge */
.v2-hero-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--v2-gold);
  z-index: 2;
}
.v2-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}
.v2-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--v2-gold);
  margin-bottom: 28px;
}
.v2-hero-tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--v2-gold);
}
.v2-hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 600;
  line-height: 1.06;
  color: var(--v2-white);
  margin-bottom: 28px;
}
.v2-hero-h1 em {
  font-style: italic;
  color: var(--v2-gold);
}
.v2-hero-rule {
  width: 64px; height: 2px;
  background: var(--v2-gold);
  margin-bottom: 28px;
}
.v2-hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(.9rem, 1.1vw, 1.05rem);
  color: var(--v2-muted);
  line-height: 1.85;
  max-width: 540px;
  margin-bottom: 44px;
}
.v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--v2-gold);
  color: var(--v2-black);
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.v2-btn-primary:hover {
  background: #dba933;
  color: var(--v2-black);
  transform: translateY(-2px);
}
.v2-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--v2-white);
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid rgba(248,244,238,.25);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.v2-btn-ghost:hover {
  border-color: var(--v2-gold);
  color: var(--v2-gold);
}
/* Bottom stat strip inside hero */
.v2-hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  border-top: 1px solid var(--v2-border);
}
.v2-hero-stat {
  flex: 1;
  padding: 18px 28px;
  border-right: 1px solid var(--v2-border);
}
.v2-hero-stat:last-child { border-right: none; }
.v2-hstat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v2-white);
  line-height: 1;
}
.v2-hstat-lbl {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--v2-muted);
  margin-top: 4px;
}
/* Video selector */
.v2-video-sel {
  position: absolute;
  top: 110px; right: 40px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.v2-vbtn {
  background: transparent;
  border: 1px solid var(--v2-border);
  color: var(--v2-muted);
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  cursor: pointer;
  transition: all .2s;
}
.v2-vbtn.active,
.v2-vbtn:hover {
  background: var(--v2-gold);
  border-color: var(--v2-gold);
  color: var(--v2-black);
}

/* ══════════════════════════════════════════════════════════════
   METRICS BAND  (right below hero)
══════════════════════════════════════════════════════════════ */
.v2-metrics-band {
  background: var(--v2-forest);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.v2-metric-cell {
  padding: 32px 36px;
  border-right: 1px solid rgba(200,150,46,.18);
  display: flex;
  gap: 16px;
  align-items: center;
}
.v2-metric-cell:last-child { border-right: none; }
.v2-metric-icon {
  width: 44px; height: 44px;
  background: var(--v2-gold-lt);
  border: 1px solid var(--v2-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--v2-gold);
  font-size: 1rem;
}
.v2-metric-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--v2-white);
  line-height: 1;
}
.v2-metric-lbl {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(200,150,46,.75);
  margin-top: 3px;
}
.v2-metric-sub {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  color: rgba(248,244,238,.42);
}

/* ══════════════════════════════════════════════════════════════
   ABOUT  (01)
══════════════════════════════════════════════════════════════ */
.v2-about {
  background: var(--v2-cream);
  padding: var(--v2-gap) 0;
}
.v2-section-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(11,44,30,.08);
  margin-bottom: -20px;
  display: block;
}
.v2-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--v2-gold);
  display: block;
  margin-bottom: 14px;
}
.v2-eyebrow::before {
  content: '——  ';
}
.v2-section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--v2-forest);
  margin-bottom: 24px;
}
.v2-section-h2 em { font-style: italic; color: var(--v2-gold); }
.v2-body-text {
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  line-height: 1.9;
  color: #3a4a3c;
  margin-bottom: 18px;
}
.v2-about-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--v2-border) 30%, var(--v2-border) 70%, transparent);
  margin: 0 auto;
}
/* Capability tiles */
.v2-cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}
.v2-cap-tile {
  background: var(--v2-white);
  padding: 22px 24px;
  border-left: 3px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.v2-cap-tile:hover {
  border-left-color: var(--v2-gold);
  box-shadow: 4px 0 24px rgba(200,150,46,.08);
}
.v2-cap-icon {
  color: var(--v2-gold);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.v2-cap-title {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--v2-forest);
  margin-bottom: 6px;
}
.v2-cap-desc {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  color: #6a7a6c;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES  (02)
══════════════════════════════════════════════════════════════ */
.v2-services {
  background: var(--v2-black);
  padding: var(--v2-gap) 0;
}
.v2-services .v2-section-h2,
.v2-services .v2-section-num { color: rgba(248,244,238,.06); }
.v2-services .v2-section-h2 { color: var(--v2-white); }
/* Numbered service rows */
.v2-svc-row {
  display: grid;
  grid-template-columns: 60px 220px 1fr auto;
  align-items: start;
  gap: 0 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(200,150,46,.1);
  transition: background .2s;
}
.v2-svc-row:first-child { border-top: 1px solid rgba(200,150,46,.1); }
.v2-svc-row:hover { background: rgba(200,150,46,.04); }
.v2-svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--v2-gold);
  opacity: .45;
  line-height: 1;
  padding-top: 4px;
}
.v2-svc-icon-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.v2-svc-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--v2-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--v2-gold);
  font-size: .9rem;
  flex-shrink: 0;
}
.v2-svc-name {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--v2-white);
}
.v2-svc-desc {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: rgba(248,244,238,.5);
  line-height: 1.7;
  padding-top: 4px;
}
.v2-svc-items {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.v2-svc-items li {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  color: rgba(248,244,238,.4);
  letter-spacing: .06em;
}
.v2-svc-items li::before {
  content: '— ';
  color: var(--v2-gold);
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL FOOTPRINT  (03)
══════════════════════════════════════════════════════════════ */
.v2-footprint {
  background: var(--v2-slate);
  padding: var(--v2-gap) 0;
}
.v2-footprint .v2-section-h2 { color: var(--v2-white); }
.v2-footprint .v2-body-text  { color: var(--v2-muted); }
.v2-fp-img-wrap {
  position: relative;
  border: 1px solid var(--v2-border);
  overflow: hidden;
}
.v2-fp-img-wrap img {
  width: 100%; display: block;
  filter: saturate(.7) brightness(.85);
  transition: filter .4s;
}
.v2-fp-img-wrap:hover img {
  filter: saturate(1) brightness(1);
}

/* ══════════════════════════════════════════════════════════════
   CHAIRMAN  (04)
══════════════════════════════════════════════════════════════ */
.v2-chairman {
  background: var(--v2-cream);
  padding: var(--v2-gap) 0;
}
.v2-chairman-photo-col {
  position: relative;
}
.v2-chairman-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.v2-chairman-badge {
  position: relative;
  background: var(--v2-forest);
  padding: 22px 24px;
  border-left: 4px solid var(--v2-gold);
  margin-top: 0;
}
.v2-chairman-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--v2-cream);
  line-height: 1.6;
  margin-bottom: 10px;
}
.v2-chairman-sig {
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--v2-gold);
}
.v2-bio-text {
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  color: #3a4a3c;
  line-height: 1.9;
  margin-bottom: 16px;
}
.v2-cred-list {
  list-style: none;
  padding: 0; margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.v2-cred-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: #4a5c4c;
  line-height: 1.6;
}
.v2-cred-list li i {
  color: var(--v2-gold);
  font-size: .85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   PARTNERS  (05)
══════════════════════════════════════════════════════════════ */
.v2-partners {
  background: var(--v2-white);
  padding: var(--v2-gap) 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.v2-partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1px;
  background: #e8e2d8;
  border: 1px solid #e8e2d8;
  margin-top: 48px;
}
.v2-partner-cell {
  background: var(--v2-white);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background .2s;
}
.v2-partner-cell:hover { background: var(--v2-cream); }
.v2-partner-logo-box {
  height: 52px;
  display: flex; align-items: center; justify-content: center;
  filter: grayscale(1); opacity: .5;
  transition: filter .2s, opacity .2s;
}
.v2-partner-cell:hover .v2-partner-logo-box { filter: grayscale(0); opacity: 1; }
.v2-partner-logo-box img {
  max-height: 44px; max-width: 110px; object-fit: contain;
}
.v2-partner-logo-box.real-logo {
  height: 64px;
  background: #fff;
  padding: 8px 10px;
  border: 1px solid rgba(0,0,0,.05);
}
.v2-partner-logo-box.real-logo img { max-height: 48px; max-width: 120px; }
.v2-partner-name {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--v2-forest);
  text-align: center;
}
.v2-partner-sub {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  color: #888;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   MARKET INTELLIGENCE  (06)
══════════════════════════════════════════════════════════════ */
.v2-insights {
  background: var(--v2-forest);
  padding: var(--v2-gap) 0;
}
.v2-insights .v2-section-h2 { color: var(--v2-white); }
.v2-insight-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(200,150,46,.2);
  padding: 28px 24px;
  height: 100%;
  transition: border-color .2s, background .2s;
  position: relative;
}
.v2-insight-card:hover {
  border-color: var(--v2-gold);
  background: rgba(200,150,46,.06);
}
.v2-insight-card-top {
  width: 100%; height: 2px;
  background: var(--v2-border);
  position: absolute; top: 0; left: 0;
  transition: background .2s;
}
.v2-insight-card:hover .v2-insight-card-top { background: var(--v2-gold); }
.v2-insight-cat {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--v2-gold);
  margin-bottom: 12px;
}
.v2-insight-h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--v2-white);
  line-height: 1.4;
  margin-bottom: 10px;
}
.v2-insight-meta {
  display: flex; justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  color: var(--v2-muted);
  margin-bottom: 12px;
}
.v2-insight-meta span:last-child { color: var(--v2-gold); font-weight: 600; }
.v2-insight-body {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: rgba(248,244,238,.6);
  line-height: 1.8;
}
.v2-insight-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  color: var(--v2-gold);
  text-decoration: none;
}
.v2-insight-link:hover { text-decoration: underline; color: var(--v2-gold); }
.v2-feat-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--v2-gold);
  color: var(--v2-black);
  font-family: 'Inter', sans-serif;
  font-size: .58rem; font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 8px;
}
/* Placeholder shimmer */
.v2-insight-ph {
  background: rgba(255,255,255,.03) !important;
}
.v2-ph-line {
  height: 10px; border-radius: 2px;
  background: rgba(200,150,46,.14);
  animation: v2ph 1.6s ease-in-out infinite;
}
@keyframes v2ph { 0%,100%{opacity:.4} 50%{opacity:.9} }
.v2-spinner {
  width: 32px; height: 32px;
  border: 2px solid var(--v2-border);
  border-top-color: var(--v2-gold);
  border-radius: 50%;
  animation: spin .75s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════════ */
.v2-cta {
  background: var(--v2-black);
  padding: var(--v2-gap) 0;
  position: relative;
  overflow: hidden;
}
.v2-cta::before {
  content: 'TRADE';
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18rem;
  font-weight: 700;
  color: rgba(200,150,46,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.v2-cta .v2-section-h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--v2-white);
}
.v2-cta .v2-section-h2 em { color: var(--v2-gold); }
.v2-cta .v2-body-text { color: rgba(248,244,238,.55); }
.v2-contact-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: border-color .2s;
}
.v2-contact-card:hover { border-color: var(--v2-gold); }
.v2-contact-icon {
  width: 42px; height: 42px;
  background: var(--v2-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--v2-black);
  font-size: .9rem;
}
.v2-contact-lbl {
  font-family: 'Inter', sans-serif;
  font-size: .58rem; letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 3px;
}
.v2-contact-val {
  font-family: 'Inter', sans-serif;
  font-size: .95rem; font-weight: 600;
  color: var(--v2-white);
}

/* ══════════════════════════════════════════════════════════════
   SHARED UTILITIES
══════════════════════════════════════════════════════════════ */
.v2-gold-line {
  width: 40px; height: 2px;
  background: var(--v2-gold);
  margin-bottom: 20px;
}
.v2-link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--v2-gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.v2-link-arrow:hover { border-color: var(--v2-gold); color: var(--v2-gold); }
.v2-link-arrow-white {
  color: var(--v2-white);
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.v2-link-arrow-white:hover { color: var(--v2-gold); border-color: var(--v2-gold); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .v2-metrics-band { grid-template-columns: repeat(2, 1fr); }
  .v2-svc-row {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
  }
  .v2-svc-desc { grid-column: 2; }
  .v2-svc-items { grid-column: 1 / -1; padding-left: 44px; flex-direction: row; flex-wrap: wrap; gap: 4px 16px; }
  .v2-hero-stats { display: none; }
  .v2-hero { min-height: 90vh; padding-bottom: 0; }
  .v2-video-sel { top: 100px; right: 16px; flex-direction: row; }
}
@media (max-width: 575px) {
  .v2-metrics-band { grid-template-columns: 1fr 1fr; }
  .v2-metric-cell { padding: 20px; }
  .v2-cap-grid { grid-template-columns: 1fr; }
  .v2-partner-grid { grid-template-columns: repeat(2, 1fr); }
}
