/* ═══════════════════════════════════════════════════════════════
   BKD GROUP — Premium Corporate Stylesheet
   Inspired by J.P. Morgan · BlackRock · Carlyle
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Colour Palette */
  --navy-deep:    #050e1e;
  --navy:         #0a1628;
  --navy-mid:     #0f2040;
  --navy-light:   #1a3255;
  --gold:         #b8962e;
  --gold-light:   #d4af5a;
  --gold-pale:    #e8d08c;
  --gold-subtle:  rgba(184, 150, 46, 0.12);
  --ivory:        #f9f6f0;
  --white:        #ffffff;
  --off-white:    #f4f1ec;
  --text-primary: #1a1a2e;
  --text-body:    #3d3d5c;
  --text-muted:   #7a7a9a;
  --border:       rgba(184, 150, 46, 0.2);
  --border-light: rgba(255,255,255,0.1);

  /* Typography */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-caps:    'Montserrat', sans-serif;

  /* Spacing */
  --section-pad:  120px;
  --container:    1280px;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Typography Globals ─────────────────────────────────────── */
.section-label {
  font-family: var(--font-caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 28px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.section-intro {
  font-size: 17px;
  color: var(--text-body);
  max-width: 620px;
  line-height: 1.8;
}

.section-header.centered {
  text-align: center;
  margin-bottom: 72px;
}

.section-header.centered .section-intro {
  margin: 0 auto;
}

.body-text {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-caps);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 40px;
  border: 1px solid var(--navy);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
  z-index: 0;
}

.btn-primary span, .btn-primary i { position: relative; z-index: 1; }

.btn-primary:hover {
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover::before { transform: translateX(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--font-caps);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 17px 36px;
  border: 1px solid rgba(212, 175, 90, 0.5);
  transition: all 0.35s var(--ease);
}

.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--white);
  background: rgba(212, 175, 90, 0.1);
}

.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-caps);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 44px;
  border: 1px solid var(--gold);
  transition: all 0.35s var(--ease);
}

.btn-primary-gold:hover {
  background: var(--gold-pale);
  border-color: var(--gold-pale);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-caps);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 17px 36px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.35s var(--ease);
}

.btn-ghost-light:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-primary.full-width {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════ PRELOADER ═══════ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.3em;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
  animation: preloaderLine 1.5s var(--ease) forwards;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes preloaderLine {
  to { width: 120px; }
}

/* ═══════════════════════════════════════════ NAVBAR ═══════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0;
}

#navbar.scrolled {
  background: rgba(5, 14, 30, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(184,150,46,0.2);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  height: 88px;
  gap: 48px;
}

/* Brand */
.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-bkd {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.12em;
  line-height: 1;
}

.brand-group {
  font-family: var(--font-caps);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.55em;
  color: var(--gold);
  margin-top: 2px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-links > li > a {
  font-family: var(--font-caps);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 4px 0;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links > li > a:hover { color: var(--gold-light); }
.nav-links > li > a:hover::after { width: 100%; }

.nav-links .nav-cta {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-light) !important;
  border: 1px solid rgba(184,150,46,0.5);
  padding: 10px 24px;
  transition: all 0.3s var(--ease);
}

.nav-links .nav-cta::after { display: none; }

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--navy-deep) !important;
  border-color: var(--gold);
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-deep);
  border: 1px solid var(--border);
  min-width: 220px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.3s var(--ease);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--navy-deep);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-family: var(--font-caps);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.dropdown li a i {
  color: var(--gold);
  width: 14px;
  text-align: center;
}

.dropdown li a:hover {
  color: var(--gold-light);
  background: rgba(184,150,46,0.08);
  padding-left: 30px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-light);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-deep);
  transform: translateX(101%);
  transition: transform 0.4s var(--ease);
  padding: 48px;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul { display: flex; flex-direction: column; gap: 8px; }

.mobile-link {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.3s, padding 0.3s;
}

.mobile-link:hover { color: var(--gold-light); padding-left: 12px; }

/* ═══════════════════════════════════════════ HERO ════════════ */
#hero {
  min-height: 100vh;
  background: var(--navy-deep);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26, 50, 85, 0.7) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(184, 150, 46, 0.07) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy-deep) 0%, #091525 40%, #0d1e38 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8962e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(184,150,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,46,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  padding-top: 120px;
}

.hero-eyebrow {
  font-family: var(--font-caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--gold);
  display: block;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 160px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-family: var(--font-caps);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.stat-item {
  flex: 1;
  padding: 36px 48px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-caps);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ═══════════════════════════════════════════ MARQUEE ═════════ */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-caps);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.marquee-track .dot {
  font-size: 8px;
  opacity: 0.6;
  letter-spacing: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════ ABOUT ═══════════ */
.section-about {
  padding: var(--section-pad) 0;
  background: var(--ivory);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* About Visual */
.about-visual {
  position: relative;
}

.about-frame {
  position: relative;
  padding: 40px;
}

.about-frame-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-frame-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8962e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-frame-accent {
  position: absolute;
  width: 80px;
  height: 80px;
  border-color: var(--gold);
  border-style: solid;
}

.about-frame-accent.top-left {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.about-frame-accent.bottom-right {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}

/* Emblem */
.about-emblem {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184,150,46,0.4);
  border-radius: 50%;
  animation: emblemRotate 20s linear infinite;
}

.emblem-ring::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(184,150,46,0.2);
  border-radius: 50%;
}

@keyframes emblemRotate {
  to { transform: rotate(360deg); }
}

.emblem-center {
  text-align: center;
  z-index: 1;
}

.emblem-text {
  display: block;
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.15em;
  line-height: 1;
}

.emblem-sub {
  display: block;
  font-family: var(--font-caps);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-top: 4px;
}

/* Year Badge */
.about-year-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--gold);
  padding: 20px 24px;
  text-align: center;
}

.badge-label {
  display: block;
  font-family: var(--font-caps);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.badge-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1;
  margin: 4px 0;
}

/* About Content */
.about-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}

.about-pillars {
  display: flex;
  gap: 32px;
  margin: 36px 0;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  border: 1px solid var(--border);
  background: var(--off-white);
  transition: all 0.3s var(--ease);
}

.pillar:hover {
  border-color: var(--gold);
  background: var(--gold-subtle);
  transform: translateY(-4px);
}

.pillar i {
  font-size: 20px;
  color: var(--gold);
}

.pillar span {
  font-family: var(--font-caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ═══════════════════════════════════════════ SECTORS ═════════ */
.section-sectors {
  padding: var(--section-pad) 0;
  background: var(--white);
  position: relative;
}

.sectors-bg-pattern {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23b8962e' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.sector-card {
  background: var(--off-white);
  padding: 60px 52px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: default;
  border: 1px solid transparent;
}

.sector-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.sector-card:hover {
  background: var(--white);
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.sector-card:hover::before { transform: scaleX(1); }

.sector-number {
  position: absolute;
  top: 40px;
  right: 48px;
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  color: rgba(184,150,46,0.1);
  line-height: 1;
  transition: color 0.4s;
}

.sector-card:hover .sector-number { color: rgba(184,150,46,0.18); }

.sector-icon-wrap {
  margin-bottom: 28px;
}

.sector-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}

.sector-icon i {
  font-size: 22px;
  color: var(--gold);
  transition: color 0.4s;
}

.sector-card:hover .sector-icon {
  background: var(--navy);
  border-color: var(--navy);
}

.sector-card:hover .sector-icon i { color: var(--gold-light); }

.sector-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
}

.sector-desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 28px;
}

.sector-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.sector-list li {
  font-family: var(--font-caps);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.sector-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.sector-accent-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.sector-card:hover .sector-accent-line { width: 80px; }

/* ═══════════════════════════════════════════ PHILOSOPHY ══════ */
.section-philosophy {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.philosophy-left {
  position: sticky;
  top: 120px;
}

.philosophy-left .section-title {
  font-size: clamp(40px, 4vw, 60px);
}

.philosophy-quote {
  margin-top: 48px;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}

.philosophy-quote blockquote {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
  font-weight: 300;
}

.philosophy-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phi-card {
  display: flex;
  gap: 28px;
  padding: 40px 36px;
  background: var(--white);
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
}

.phi-card:hover {
  border-color: var(--border);
  background: var(--white);
  transform: translateX(8px);
}

.phi-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s;
}

.phi-icon i { font-size: 18px; color: var(--gold); }

.phi-card:hover .phi-icon {
  background: var(--navy);
  border-color: var(--navy);
}

.phi-card:hover .phi-icon i { color: var(--gold-light); }

.phi-content h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.phi-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════ METRICS ═════════ */
.section-metrics {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.section-metrics::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 50%, rgba(184,150,46,0.08) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8962e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.metrics-header {
  text-align: center;
  margin-bottom: 72px;
}

.metrics-header .section-title { color: var(--white); }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.metric-block {
  padding: 52px 40px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  transition: all 0.35s var(--ease);
  position: relative;
}

.metric-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.metric-block:hover::before { width: 60%; }
.metric-block:hover { background: rgba(184,150,46,0.05); }

.metric-icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.7;
}

.metric-value {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}

.metric-label {
  font-family: var(--font-caps);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════════ LEADERSHIP ══════ */
.section-leadership {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.leader-card {
  display: flex;
  gap: 32px;
  padding: 52px 44px;
  background: var(--off-white);
  border: 1px solid transparent;
  align-items: flex-start;
  transition: all 0.35s var(--ease);
}

.leader-card:hover {
  background: var(--white);
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}

.leader-photo {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.leader-initials {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.leader-photo-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(184,150,46,0.15), transparent);
}

.leader-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.leader-title {
  font-family: var(--font-caps);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.leader-bio {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════ CTA BANNER ══════ */
.section-cta-banner {
  padding: 140px 0;
  background: var(--navy-deep);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(184,150,46,0.08) 0%, transparent 70%);
}

.cta-banner-content { position: relative; z-index: 1; }

.cta-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
}

.cta-banner-title em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-banner-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.cta-banner-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════ CONTACT ═════════ */
.section-contact {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.contact-info .section-title {
  font-size: clamp(36px, 4vw, 52px);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 40px 0;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.contact-icon i { color: var(--gold); font-size: 14px; }

.contact-item strong {
  font-family: var(--font-caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* Social */
.social-row {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.3s var(--ease);
}

.social-link:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  padding: 52px 48px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--off-white);
  border: 1px solid transparent;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding: 14px 16px;
  outline: none;
  transition: all 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
  background: var(--white);
  box-shadow: 0 2px 0 rgba(184,150,46,0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8962e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(184,150,46,0.1);
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-family: var(--font-caps);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--navy);
}

.form-success i { color: var(--gold); font-size: 18px; }
.form-success.visible { display: flex; }

/* ═══════════════════════════════════════════ FOOTER ══════════ */
#footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-light);
}

.footer-top {
  padding: 96px 0 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 340px;
}

.footer-nav-col h4 {
  font-family: var(--font-caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-nav-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 28px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-caps);
  letter-spacing: 0.05em;
}

.footer-bottom-links {
  display: flex;
  gap: 32px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-caps);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── Active Nav ─────────────────────────────────────────────── */
.nav-links > li > a.active {
  color: var(--gold-light);
}
.nav-links > li > a.active::after { width: 100%; }

/* ── Cursor Glow on Cards ───────────────────────────────────── */
.sector-card,
.phi-card,
.leader-card {
  background-image: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(184,150,46,0.04) 0%,
    transparent 60%
  );
}

/* ── Selection Color ────────────────────────────────────────── */
::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════════ ANIMATIONS ══════ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════ RESPONSIVE ══════ */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .nav-container { padding: 0 32px; }
  .hero-content { padding: 0 32px; padding-top: 100px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 480px; margin: 0 auto; }
  .philosophy-layout { grid-template-columns: 1fr; gap: 60px; }
  .philosophy-left { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --section-pad: 80px; }
  .sectors-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { position: static; }
  #hero { padding-bottom: 0; }
  .hero-scroll-hint { display: none; }
  .stat-item { padding: 28px 24px; }
  .stat-number { font-size: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-headline { font-size: clamp(44px, 11vw, 72px); }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }
  .form-row { grid-template-columns: 1fr; }
  .about-pillars { flex-direction: column; gap: 12px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .contact-form-wrap { padding: 36px 28px; }
  .leader-card { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .hero-content { padding: 0 20px; padding-top: 100px; }
  .mobile-menu { padding: 32px 20px; }
  .sector-card { padding: 44px 32px; }
  .phi-card { flex-direction: column; }
  .metrics-grid { grid-template-columns: 1fr; }
}
