/* =============================================================
   SENTINEL HOLDINGS GROUP LTD
   International Luxury Corporate Design System v2.0
   Deep Obsidian Navy #070e1b | Metallic Gold #cfa24d | Pure White #ffffff
   ============================================================= */

/* ── TOKENS & DESIGN SYSTEM ─────────────────────────────────── */
:root {
  --navy-dark:  #070e1b;
  --navy:       #0c192e;
  --navy-mid:   #152744;
  --navy-light: #1e3a66;

  --gold:       #cfa24d;
  --gold-lt:    #e6c175;
  --gold-dk:    #a37a2f;
  --gold-glow:  rgba(207, 162, 77, 0.22);

  --white:      #ffffff;
  --off:        #f6f8fc;
  --gray-lt:    #e2e7f0;
  --gray-mid:   #94a3b8;
  --gray:       #64748b;
  --text:       #0f172a;

  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:           0.35s;

  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-full: 9999px;

  --sh-sm: 0 4px 14px rgba(7, 14, 27, 0.05), 0 1px 3px rgba(0, 0, 0, 0.04);
  --sh:    0 10px 32px rgba(7, 14, 27, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --sh-lg: 0 22px 54px rgba(7, 14, 27, 0.14), 0 4px 12px rgba(0, 0, 0, 0.06);
  --sh-xl: 0 32px 72px rgba(7, 14, 27, 0.22), 0 8px 24px rgba(0, 0, 0, 0.08);

  --glass-bg:     rgba(12, 25, 46, 0.85);
  --glass-border: rgba(207, 162, 77, 0.2);

  --nav-h: 88px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px; line-height: 1.7;
  color: var(--text); background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }
input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5.5vw, 3.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; }
h2 { font-size: clamp(1.65rem, 3.8vw, 2.8rem); font-weight: 800; line-height: 1.18; letter-spacing: -.025em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); font-weight: 700; line-height: 1.28; letter-spacing: -.015em; }
h4 { font-size: 1.05rem; font-weight: 700; line-height: 1.38; }
h5 { font-size: .9rem; font-weight: 700; line-height: 1.4; }
p  { line-height: 1.8; color: var(--gray); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .85rem;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px; flex-shrink: 0;
}

/* ── LAYOUT & CONTAINERS ─────────────────────────────────────── */
.wrap   { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.sec    { padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; }
.sec-sm { padding: clamp(2rem, 4.5vw, 3.5rem) 0; position: relative; }

.g2  { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
.g3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.g4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.g2s { display: grid; grid-template-columns: 1fr 1.65fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: start; }

/* Gold Accent Dividers */
.divider {
  width: 56px; height: 3px; border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), transparent);
  margin: .85rem 0 1.5rem;
}
.divider.c, .divider-c { margin-left: auto; margin-right: auto; }

/* Eyebrow centred + gold modifier */
.eyebrow-c { justify-content: center; display: flex; }
.eyebrow-gold { color: var(--gold); }

/* Section lead text */
.section-lead {
  color: var(--gray); max-width: 600px; margin: 0 auto;
  font-size: 1rem; line-height: 1.85;
}

/* Utility spacing */
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-3 { margin-bottom: 3rem; }

/* ── TEAM PAGE ───────────────────────────────────────────────── */
.team-hero .page-hero-bg { background-position: center 42%; }
.team-intro-grid {
  display: grid; grid-template-columns: .8fr 1.4fr;
  gap: clamp(2rem, 5vw, 5.5rem); align-items: start;
}
.team-copy p + p { margin-top: 1rem; }
.team-values {
  display: grid; grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  background: var(--navy); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg);
}
.team-values div {
  min-height: 125px; padding: 1.5rem 1.15rem;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.team-values div:last-child { border-right: none; }
.team-values span {
  color: var(--gold); font-size: .67rem; font-weight: 800;
  letter-spacing: .16em; margin-bottom: .45rem;
}
.team-values strong { color: var(--white); font-size: .84rem; line-height: 1.4; }
.leadership-structure {
  background:
    radial-gradient(circle at 15% 15%, rgba(207,162,77,.08), transparent 26%),
    var(--off);
}
.team-section-head { max-width: 760px; margin: 0 auto 3rem; }
.executive-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
.executive-card {
  min-height: 230px; padding: 1.65rem;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  background: linear-gradient(145deg, #080f1d, #13223a);
  border: 1px solid rgba(207,162,77,.28);
  border-radius: var(--r-md); box-shadow: 0 12px 30px rgba(7,14,27,.18);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.executive-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(7,14,27,.3); border-color: rgba(207,162,77,.7); }
.executive-number {
  position: absolute; top: .9rem; right: 1rem;
  color: rgba(255,255,255,.09); font-size: 2.6rem; font-weight: 900; line-height: 1;
}
.executive-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 1.7rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy-dark); font-size: .7rem; font-weight: 900; letter-spacing: .08em;
}
.executive-card h3 { color: var(--white); font-size: .98rem; margin-top: auto; }
.executive-card p {
  color: var(--gold-lt); font-size: .68rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; margin-top: .55rem;
}
.executive-card-primary {
  background: linear-gradient(145deg, #080f1d, #13223a);
  border-color: rgba(207,162,77,.45);
}
.executive-card-primary .executive-number { color: rgba(255,255,255,.08); }
.executive-card-primary .executive-icon { background: var(--gold); color: var(--navy); }
.executive-card-primary h3 { color: var(--white); }
.executive-card-primary p { color: var(--gold-lt); }
.founder-text strong { color: var(--gold-lt); }
.people-grid p + p { margin-top: .9rem; }
.discipline-cloud {
  display: flex; flex-wrap: wrap; gap: .75rem; align-content: center;
  padding: clamp(1.5rem, 4vw, 3rem); min-height: 390px;
  background: linear-gradient(145deg, var(--navy-dark), var(--navy-mid));
  border-radius: var(--r-xl); box-shadow: var(--sh-xl);
}
.discipline-cloud span {
  padding: .65rem 1rem; color: rgba(255,255,255,.8);
  border: 1px solid rgba(207,162,77,.25); border-radius: var(--r-full);
  background: rgba(255,255,255,.05); font-size: .78rem; font-weight: 600;
}
.discipline-cloud span:nth-child(3n+1) { color: var(--gold-lt); border-color: rgba(207,162,77,.5); }
.development-band {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(110deg, var(--navy-dark), var(--navy-mid));
  border-top: 1px solid rgba(207,162,77,.25);
}
.development-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.development-inner h2 { color: var(--white); }
.development-inner p { color: rgba(255,255,255,.7); font-size: 1rem; }
.office-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 940px; margin: 0 auto; }
.office-card {
  padding: clamp(1.75rem, 4vw, 2.75rem); border-radius: var(--r-lg);
  background: var(--white); border: 1px solid var(--gray-lt);
  box-shadow: var(--sh); position: relative; overflow: hidden;
}
.office-card::before {
  content: ''; position: absolute; inset: 0 auto 0 0; width: 4px;
  background: linear-gradient(var(--gold), var(--gold-dk));
}
.office-label {
  color: var(--gold-dk); font-size: .7rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .16em; margin-bottom: .6rem;
}
.office-card h3 { color: var(--navy); margin-bottom: .8rem; }
.office-address { display: flex; align-items: flex-start; gap: .8rem; }
.office-address p { flex: 1; }
.office-contact-icon {
  width: 32px; height: 32px; flex: 0 0 32px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy-dark); background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  border-radius: 9px; font-size: .9rem; line-height: 1;
  box-shadow: 0 5px 14px rgba(207,162,77,.2);
}
.office-links { display: flex; flex-direction: column; gap: .35rem; margin-top: 1.3rem; }
.office-links a {
  display: flex; align-items: center; gap: .8rem;
  color: var(--navy-mid); font-size: .85rem; font-weight: 700;
}
.office-links a:hover { color: var(--gold-dk); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .875rem 2rem; border-radius: var(--r-full);
  font-size: .88rem; font-weight: 700; letter-spacing: .03em;
  border: 2px solid transparent; transition: all var(--t) var(--ease);
  white-space: nowrap; min-height: 50px; position: relative; overflow: hidden;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b5832a 100%);
  color: var(--white); border-color: transparent;
  box-shadow: 0 6px 22px rgba(207, 162, 77, 0.38);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(207, 162, 77, 0.52);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.07); color: var(--white);
  border-color: rgba(255, 255, 255, 0.42); backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: var(--white); color: var(--navy); border-color: var(--white);
  transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

.btn-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white); border-color: transparent;
  box-shadow: 0 6px 22px rgba(12, 25, 46, 0.28);
}
.btn-navy:hover {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  transform: translateY(-3px); box-shadow: var(--sh-lg);
}

.btn-outline-navy {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy); color: var(--white); transform: translateY(-3px);
  box-shadow: var(--sh);
}

.btn-outline-gold {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold); color: var(--navy); font-weight: 800;
  transform: translateY(-3px); box-shadow: 0 8px 24px var(--gold-glow);
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION — Premium International Corporate Design
══════════════════════════════════════════════════════════════ */

/* Top announcement bar */
.nav-topbar {
  background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy-mid) 50%, var(--navy-dark) 100%);
  border-bottom: 1px solid rgba(207, 162, 77, 0.2);
  height: 36px; display: flex; align-items: center; overflow: hidden;
  position: relative;
}
.nav-topbar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(207,162,77,.06) 50%, transparent 100%);
}
.nav-topbar-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 clamp(.75rem, 3vw, 2rem);
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}
.nav-topbar-left {
  display: flex; align-items: center; gap: 1.5rem;
  font-size: .68rem; font-weight: 600; color: rgba(255,255,255,.55);
  letter-spacing: .06em;
}
.nav-topbar-left span { display: flex; align-items: center; gap: .4rem; }
.nav-topbar-left .dot { color: var(--gold); font-size: .55rem; }
.nav-topbar-right {
  display: flex; align-items: center; gap: .6rem;
  font-size: .68rem; font-weight: 700; color: var(--gold);
  letter-spacing: .1em; text-transform: uppercase;
}
.nav-topbar-right::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pls 2s ease-in-out infinite;
}

/* Main nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(7, 14, 27, 0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  transition: all var(--t) var(--ease);
  border-bottom: 1px solid rgba(207, 162, 77, 0.12);
}
.nav::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(207,162,77,.4) 50%, transparent 100%);
  pointer-events: none;
}
.nav.scrolled {
  background: rgba(7, 14, 27, 0.99);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(207,162,77,.2);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 clamp(.75rem, 3vw, 2rem);
  max-width: 1240px; margin: 0 auto; gap: 1.5rem;
}

/* Brand */
.nav-brand {
  display: flex; align-items: center; gap: .85rem;
  z-index: 1001; flex-shrink: 0; text-decoration: none;
}
.nav-logo-img,
.nav-brand img {
  height: 68px !important; width: auto !important; display: block !important;
  max-width: 220px; object-fit: contain;
  background: var(--white);
  padding: 6px 18px; border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.9);
  border: 1px solid rgba(207, 162, 77, 0.35);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.nav-brand:hover .nav-logo-img,
.nav-brand:hover img {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 22px rgba(0,0,0,.38), 0 0 0 2px rgba(207,162,77,.4);
}
/* Hide brand text — logo only */
.nav-brand-text { display: none; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-size: .72rem; font-weight: 900; color: var(--white);
  letter-spacing: .08em; text-transform: uppercase; line-height: 1.1;
  white-space: nowrap;
}
.nav-brand-tagline {
  font-size: .58rem; font-weight: 600; color: var(--gold);
  letter-spacing: .12em; text-transform: uppercase; margin-top: 1px;
}

/* Nav list */
.nav-links {
  display: flex; align-items: center; gap: .15rem; flex: 1;
  justify-content: flex-end;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}

/* Nav link base */
.nav-link {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.75); padding: .5rem 1rem;
  font-size: .84rem; font-weight: 500; letter-spacing: .02em;
  transition: color var(--t) var(--ease), background var(--t) var(--ease);
  min-height: 42px; white-space: nowrap; border-radius: var(--r-sm);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%) scaleX(0);
  width: calc(100% - 2rem); height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px; transition: transform .3s var(--ease); transform-origin: center;
}
.nav-link:hover { color: var(--gold-lt); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-link.active {
  color: var(--gold-lt); font-weight: 700;
  background: rgba(207, 162, 77, 0.1);
}
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }

/* CTA button in nav */
.nav-cta-btn {
  position: relative;
  background: linear-gradient(135deg, var(--gold) 0%, #c4882a 100%);
  color: var(--navy-dark) !important; font-weight: 800; letter-spacing: .04em;
  margin-left: .75rem; padding: .58rem 1.4rem;
  border-radius: var(--r-full); font-size: .82rem;
  box-shadow: 0 4px 16px rgba(207, 162, 77, 0.45), inset 0 1px 0 rgba(255,255,255,.2);
  transition: all var(--t) var(--ease);
  border: none !important; overflow: hidden;
}
.nav-cta-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
  border-radius: inherit;
}
.nav-cta-btn::after { display: none; }
.nav-cta-btn:hover {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
  box-shadow: 0 8px 28px rgba(207, 162, 77, 0.6), inset 0 1px 0 rgba(255,255,255,.25);
  transform: translateY(-2px); color: var(--navy-dark) !important;
}
.nav-cta-btn.active {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold)) !important;
  color: var(--navy-dark) !important;
}

/* Hamburger */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 42px; height: 42px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-sm);
  padding: .5rem; cursor: pointer; position: relative; z-index: 1002;
  transition: all var(--t) var(--ease);
}
.nav-burger:hover { background: rgba(207, 162, 77, 0.15); border-color: rgba(207,162,77,.3); }
.nav-burger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease), width var(--t) var(--ease);
  transform-origin: center;
}
.nav-burger span:nth-child(3) { width: 14px; }
.nav-burger:hover span { background: var(--gold-lt); }
.nav-burger:hover span:nth-child(3) { width: 20px; }
.nav-burger.open span { width: 20px; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO SECTION ────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--navy-dark);
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 35%;
  will-change: transform;
  transition: transform .1s linear;
  filter: brightness(.55) saturate(.7);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,14,27,.85) 0%, rgba(7,14,27,.4) 40%, rgba(7,14,27,.6) 100%),
    linear-gradient(90deg, rgba(7,14,27,.98) 0%, rgba(7,14,27,.7) 55%, rgba(7,14,27,.15) 100%);
}
.hero-overlay::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
}

/* Hero layout: single column, left-aligned, editorial */
.hero-wrap { position: relative; z-index: 2; width: 100%; }
.hero-body {
  position: relative;
  width: 100%;
  max-width: none;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .65rem;
  background: rgba(207, 162, 77, 0.12); border: 1px solid rgba(207, 162, 77, 0.35);
  color: var(--gold-lt); padding: .45rem 1.2rem; border-radius: var(--r-full);
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 1.8rem; backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: pls 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pls { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.6); } }

.hero-company-name {
  color: var(--gold-lt);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.2;
  letter-spacing: -.025em;
  margin-bottom: 1.15rem;
  text-shadow: 0 4px 22px rgba(207,162,77,.22);
}

/* Hero headline */
.hero-h1 {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 800; line-height: 1.22; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 1.2rem;
  max-width: 1100px;
}
.hero-h1 em { font-style: normal; color: var(--gold-lt); }
.hero-h1-sub {
  display: block;
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero gold divider line */
.hero-divider {
  width: 64px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  margin: 1.4rem 0 1.6rem;
  position: relative;
}
.hero-divider::after {
  content: ''; position: absolute; left: 72px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.76); font-size: clamp(.9rem, 1.8vw, 1.08rem);
  max-width: 1050px; margin-bottom: 2.4rem;
  font-weight: 400; line-height: 1.85;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Stats row */
.hero-stats {
  display: flex; gap: 0; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat { padding-right: 2rem; margin-right: 2rem; position: relative; }
.hero-stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 15%; bottom: 15%;
  width: 1px; background: rgba(207, 162, 77, 0.25);
}
.hero-stat-n {
  display: block; font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; color: var(--gold-lt); line-height: 1; letter-spacing: -.04em;
}
.hero-stat-l { font-size: .68rem; color: rgba(255, 255, 255, 0.5); letter-spacing: .08em; text-transform: uppercase; margin-top: .3rem; font-weight: 600; }

/* Hero right column */
.hero-right { display: flex; flex-direction: column; gap: 1rem; position: relative; }

/* Main hero card */
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(207, 162, 77, 0.22);
  border-radius: var(--r-lg); overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
}
.hero-card:hover { transform: translateY(-5px); border-color: rgba(207, 162, 77, 0.5); }
.hero-card-img { width: 100%; height: 210px; object-fit: cover; display: block; }
.hero-card-body { padding: 1.2rem 1.4rem 1.4rem; }
.hero-card-body .lbl {
  font-size: .65rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .4rem;
}
.hero-card-body h3 { color: var(--white); font-size: .95rem; margin-bottom: .4rem; }
.hero-card-desc { color: rgba(255,255,255,.6); font-size: .78rem; line-height: 1.7; }

/* Sectors pill block */
.hero-sectors {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(207, 162, 77, 0.2);
  border-radius: var(--r-md); padding: 1rem 1.2rem;
  backdrop-filter: blur(10px);
}
.hero-sector-label {
  font-size: .62rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .7rem;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: .4rem; }
.hero-pill {
  display: flex; align-items: center; gap: .38rem;
  background: rgba(207, 162, 77, 0.1); border: 1px solid rgba(207, 162, 77, 0.2);
  border-radius: var(--r-sm); padding: .32rem .75rem;
  font-size: .7rem; color: rgba(255, 255, 255, 0.82); font-weight: 600;
  transition: background var(--t) var(--ease);
}
.hero-pill:hover { background: rgba(207, 162, 77, 0.2); }

/* Decorative floating particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.hp {
  position: absolute; border-radius: 50%;
  background: var(--gold); opacity: .12;
  animation: floatUp 14s ease-in-out infinite;
}
.hp1 { width: 8px; height: 8px; left: 12%; top: 30%; animation-delay: 0s; }
.hp2 { width: 5px; height: 5px; left: 28%; top: 65%; animation-delay: 2.5s; }
.hp3 { width: 10px; height: 10px; right: 22%; top: 20%; animation-delay: 5s; }
.hp4 { width: 4px; height: 4px; right: 38%; top: 55%; animation-delay: 7s; }
.hp5 { width: 7px; height: 7px; left: 55%; top: 80%; animation-delay: 3.5s; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: .12; }
  50% { transform: translateY(-28px) rotate(180deg); opacity: .24; }
}

/* Scroll cue */
.scroll-cue {
  position: absolute; right: clamp(1.5rem, 4vw, 4.5rem); bottom: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  z-index: 5;
}
.scroll-cue span { font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: .4; transform: scaleY(.7) translateY(-4px); } 50% { opacity: 1; transform: scaleY(1) translateY(0); } }

/* ── TICKER BAR ──────────────────────────────────────────────── */
.ticker { background: var(--navy-dark); border-top: 1px solid rgba(207, 162, 77, 0.2); border-bottom: 1px solid rgba(207, 162, 77, 0.1); overflow: hidden; }
.ticker-inner { display: flex; align-items: stretch; }
.ticker-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk)); color: var(--navy); padding: .9rem 1.5rem;
  font-size: .7rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0; display: flex; align-items: center;
  box-shadow: 4px 0 16px rgba(0, 0, 0, 0.2);
}
.ticker-scroll { overflow: hidden; flex: 1; }
.ticker-list {
  display: flex; animation: tick 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 1.4rem;
  padding: .9rem 2rem; font-size: .8rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.6); flex-shrink: 0;
}
.ticker-item span { color: var(--gold-lt); }
.ticker-sep { color: rgba(207, 162, 77, 0.35); margin: 0 .5rem; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT & FEATURE PANELS ──────────────────────────────────── */
.img-stack { position: relative; border-radius: var(--r-lg); overflow: visible; }
.img-stack-main {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--sh-xl); display: block;
}
.img-stack-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk)); color: var(--navy); padding: 1.2rem 1.5rem;
  border-radius: var(--r-md); box-shadow: var(--sh-lg);
}
.img-stack-badge .nb { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.img-stack-badge .nl { font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin: 1.6rem 0 2rem; }
.feat-item {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: 1rem; background: var(--off); border-radius: var(--r-md);
  border: 1px solid var(--gray-lt); transition: all var(--t) var(--ease);
}
.feat-item:hover { border-color: var(--gold); background: var(--white); box-shadow: var(--sh); transform: translateY(-2px); }
.feat-ico {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.feat-item h5 { font-size: .82rem; color: var(--navy); margin-bottom: .18rem; font-weight: 700; }
.feat-item p  { font-size: .76rem; color: var(--gray); margin: 0; line-height: 1.55; }

/* ── STATS BAND ──────────────────────────────────────────────── */
.stats-band {
  background: var(--navy); position: relative; overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 65% 85% at 50% 50%, rgba(207, 162, 77, 0.08), transparent);
}
.stats-band::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats-row {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat-item { text-align: center; padding: 1.5rem 1rem; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(207, 162, 77, 0.22);
}
.stat-n {
  display: block; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900;
  letter-spacing: -.04em; line-height: 1; margin-bottom: .4rem;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-l { font-size: .8rem; color: rgba(255, 255, 255, 0.68); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.stat-s { font-size: .7rem; color: rgba(207, 162, 77, 0.58); margin-top: .22rem; }

/* ── PORTFOLIO PREVIEW CARDS (index.html) ────────────────────── */
.p-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--gray-lt); box-shadow: var(--sh-sm);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.p-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(207, 162, 77, 0.32);
  border-color: rgba(207, 162, 77, 0.42);
}
.p-card-img { position: relative; height: 200px; overflow: hidden; }
.p-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.p-card:hover .p-card-img img { transform: scale(1.07); }
.p-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7, 14, 27, 0.78) 0%, transparent 60%);
}
.p-card-cat {
  position: absolute; bottom: .85rem; left: 1.1rem;
  font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-lt);
}
.p-card-body { padding: 1.4rem; flex: 1; }
.p-card-body h4 { color: var(--navy); margin-bottom: .5rem; font-size: 1rem; }
.p-card-body p  { color: var(--gray); font-size: .83rem; line-height: 1.75; }
.p-card-foot {
  padding: .8rem 1.4rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.p-tag {
  font-size: .66rem; padding: .25rem .7rem;
  background: rgba(207, 162, 77, 0.1); color: var(--navy-mid);
  border-radius: var(--r-full); font-weight: 700; border: 1px solid rgba(207, 162, 77, 0.25);
}
.p-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); color: var(--gold-lt); font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.p-card:hover .p-arrow { background: var(--gold); color: var(--navy); transform: translateX(3px); }

/* ── PORTFOLIO COMPANY CARDS (portfolio.html) ────────────────── */
.co-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--gray-lt); box-shadow: var(--sh-sm);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.co-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(207, 162, 77, 0.32);
  border-color: rgba(207, 162, 77, 0.42);
}
.co-card-img { position: relative; height: 185px; overflow: hidden; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.co-card-img img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(.62) saturate(.82);
  transition: transform .6s var(--ease), filter .4s var(--ease);
}
.co-card:hover .co-card-img img { transform: scale(1.06); filter: brightness(.72) saturate(1); }
.co-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7, 14, 27, 0.95) 0%, rgba(7, 14, 27, 0.3) 55%, transparent 100%);
}
.co-card-header {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem .85rem; display: flex; align-items: flex-end;
  justify-content: space-between; gap: .5rem;
}
.co-card-header > div { min-width: 0; flex: 1; }
.co-num { font-size: .6rem; font-weight: 900; letter-spacing: .16em; color: var(--gold-lt); margin-bottom: .18rem; display: block; }
.co-card-header h4 {
  color: var(--white); font-size: .9rem; margin: 0; font-weight: 700; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.co-badge {
  font-size: .6rem; padding: .24rem .7rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk)); color: var(--navy);
  border-radius: var(--r-full); font-weight: 800; white-space: nowrap; flex-shrink: 0;
  align-self: flex-start; margin-top: .18rem; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}
.co-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.co-body p  { color: var(--gray); font-size: .82rem; line-height: 1.78; flex: 1; }
.co-tags { display: flex; flex-wrap: wrap; gap: .38rem; margin-top: .8rem; }
.co-tag {
  font-size: .64rem; padding: .2rem .6rem;
  background: rgba(207, 162, 77, 0.08); color: var(--navy-mid);
  border-radius: var(--r-full); font-weight: 600; border: 1px solid rgba(207, 162, 77, 0.2);
}

/* Company Card Expandable Drawer */
.co-detail-btn {
  display: inline-flex; align-items: center; gap: .42rem;
  margin-top: .9rem; padding: .38rem .9rem;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-dk); border: 1.5px solid rgba(207, 162, 77, 0.38); border-radius: var(--r-full);
  background: none; cursor: pointer; transition: all var(--t) var(--ease);
}
.co-detail-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.co-detail-btn .cd-arrow { display: inline-block; transition: transform .35s var(--ease); font-style: normal; }
.co-detail-btn.open .cd-arrow { transform: rotate(180deg); }
.co-detail {
  max-height: 0; overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1), opacity .3s var(--ease);
  opacity: 0;
}
.co-detail.open { max-height: 900px; opacity: 1; }
.co-detail-body {
  padding: .85rem 0 .2rem;
  font-size: .79rem; line-height: 1.78; color: var(--gray);
  border-top: 1px solid var(--gray-lt); margin-top: .7rem;
}
.co-detail-body p + p { margin-top: .6rem; }

/* ── SECTOR CARDS (portfolio.html Sectors section) ───────────── */
.sec-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--gray-lt); box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.sec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(207, 162, 77, 0.3);
  border-color: rgba(207, 162, 77, 0.38);
}
.sec-card-img { position: relative; height: 175px; overflow: hidden; }
.sec-card-img img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(.65);
  transition: transform .6s var(--ease), filter .4s var(--ease);
}
.sec-card:hover .sec-card-img img { transform: scale(1.06); filter: brightness(.75); }
.sec-card-img-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7, 14, 27, 0.7) 0%, transparent 60%);
}
.sec-card-body { padding: 1.2rem 1.25rem 1.35rem; }
.sec-card-body h4 { color: var(--navy); font-size: .95rem; margin-bottom: .45rem; }
.sec-card-body p  { color: var(--gray); font-size: .8rem; line-height: 1.72; }

/* ── VISION / MISSION ────────────────────────────────────────── */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.vm-card {
  background: var(--navy); border-radius: var(--r-lg);
  padding: 2.4rem; position: relative; overflow: hidden;
  border: 1px solid rgba(207, 162, 77, 0.18);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.vm-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.vm-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}
.vm-ico {
  width: 52px; height: 52px; border-radius: 13px; margin-bottom: 1.4rem;
  background: rgba(207, 162, 77, 0.12); border: 1px solid rgba(207, 162, 77, 0.28);
  display: flex; align-items: center; justify-content: center; font-size: 1.45rem;
}
.vm-card h3 { color: var(--white); margin-bottom: .85rem; }
.vm-card p  { color: rgba(255, 255, 255, 0.7); font-size: .9rem; line-height: 1.85; }

.vm-motto {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  border-radius: var(--r-lg); padding: 2.6rem;
  display: flex; align-items: center; gap: 2.5rem;
  position: relative; overflow: hidden; box-shadow: var(--sh-lg);
}
.vm-motto-ico { font-size: 2.8rem; flex-shrink: 0; }
.vm-motto-lbl {
  font-size: .68rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(12, 25, 46, 0.68); margin-bottom: .32rem; display: block;
}
.vm-motto-txt {
  font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 900;
  color: var(--navy); line-height: 1.2; letter-spacing: -.025em;
}

/* ── VALUES CARDS ────────────────────────────────────────────── */
.val-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.val-card {
  background: var(--white); border-radius: var(--r-lg); padding: 1.75rem 1.4rem;
  text-align: center; border: 1px solid var(--gray-lt); box-shadow: var(--sh-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  position: relative; overflow: hidden;
}
.val-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.val-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(207, 162, 77, 0.32); }
.val-card:hover::after { transform: scaleX(1); }
.val-ico {
  width: 60px; height: 60px; margin: 0 auto 1.1rem; border-radius: 50%;
  background: var(--off); border: 1px solid var(--gray-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; transition: all var(--t) var(--ease);
}
.val-card:hover .val-ico { background: linear-gradient(135deg, var(--gold), var(--gold-dk)); border-color: transparent; }
.val-card h4 { color: var(--navy); margin-bottom: .5rem; font-size: .95rem; }
.val-card p  { color: var(--gray); font-size: .78rem; line-height: 1.7; }

/* ── FOUNDER SECTION ─────────────────────────────────────────── */
.founder-sec {
  background: var(--navy-dark); position: relative; overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.founder-sec::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200&q=50') center/cover;
  opacity: .04;
}
.founder-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 340px 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }

.founder-img-wrap { position: relative; }
.founder-img {
  width: 100%; height: 480px; object-fit: cover; object-position: top center;
  border-radius: var(--r-lg); display: block;
  border: 3px solid rgba(207, 162, 77, 0.28); box-shadow: 0 25px 60px rgba(0,0,0,.6);
}
.founder-badge {
  position: absolute; bottom: -1.5rem; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  padding: 1rem 1.8rem; border-radius: var(--r-md);
  text-align: center; white-space: nowrap; box-shadow: var(--sh-lg);
}
.founder-badge .fb-lbl { font-size: .6rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(12, 25, 46, 0.7); margin-bottom: .18rem; }
.founder-badge .fb-val { font-size: .95rem; font-weight: 900; color: var(--navy); letter-spacing: .03em; }

.founder-text .eyebrow { color: var(--gold); }
.founder-text h2 { color: var(--white); margin-bottom: .28rem; }
.founder-text .ftitle {
  color: var(--gold-lt); font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 1.8rem; display: block;
}
.founder-text p { color: rgba(255, 255, 255, 0.7); font-size: .9rem; line-height: 1.85; margin-bottom: .95rem; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.tag-chip {
  padding: .38rem .95rem; border-radius: var(--r-full);
  background: rgba(207, 162, 77, 0.12); border: 1px solid rgba(207, 162, 77, 0.24);
  font-size: .72rem; color: var(--gold-lt); font-weight: 600;
  transition: background var(--t) var(--ease);
}
.tag-chip:hover { background: rgba(207, 162, 77, 0.24); }

/* ── REACH GRID (about.html) ─────────────────────────────────── */
.reach-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; height: 100%; min-height: 320px;
}
.reach-box {
  border-radius: var(--r-lg); padding: 1.8rem 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 150px; position: relative; overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.reach-box:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.ri { font-size: 1.8rem; margin-bottom: .5rem; }
.rv { font-size: 1.35rem; font-weight: 900; line-height: 1.1; margin-bottom: .25rem; }
.rl { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* ── PARTNER CARDS (contact.html) ────────────────────────────── */
.partner-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--gray-lt); box-shadow: var(--sh-sm);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.partner-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(207, 162, 77, 0.28);
  border-color: rgba(207, 162, 77, 0.38);
}
.partner-card-img { height: 170px; overflow: hidden; }
.partner-card-img img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(.72);
  transition: transform .6s var(--ease), filter .4s var(--ease);
}
.partner-card:hover .partner-card-img img { transform: scale(1.06); filter: brightness(.82); }
.partner-card-body { padding: 1.5rem; flex: 1; }
.pi {
  width: 42px; height: 42px; border-radius: 11px; margin-bottom: .9rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.partner-card-body h4 { color: var(--navy); margin-bottom: .5rem; }
.partner-card-body p  { color: var(--gray); font-size: .83rem; line-height: 1.75; }

/* ── MAP BOX (contact.html) ──────────────────────────────────── */
.map-box {
  background: var(--navy); border-radius: var(--r-lg);
  overflow: hidden; position: relative; min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(207, 162, 77, 0.2);
  box-shadow: var(--sh-lg);
}
.map-box::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1609139003551-1fa60a3e5eea?w=1200&q=60') center/cover;
  opacity: .18;
}
.map-box-content {
  position: relative; z-index: 2;
  padding: 3rem 2rem; text-align: center;
  width: 100%;
}

/* ── CONTACT FORM ────────────────────────────────────────────── */
.info-card {
  display: flex; align-items: flex-start; gap: 1.1rem;
  background: var(--white); border-radius: var(--r-md);
  padding: 1.35rem; border: 1px solid var(--gray-lt); box-shadow: var(--sh-sm);
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
  margin-bottom: 1rem;
}
.info-card:hover { transform: translateX(5px); border-color: var(--gold); }
.info-ico {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem; color: var(--gold-lt);
}
.info-card h5 { color: var(--navy); font-size: .88rem; margin-bottom: .25rem; font-weight: 700; }
.info-card p  { color: var(--gray); font-size: .8rem; line-height: 1.65; }

.form-box {
  background: var(--white); border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3.5vw, 2.75rem); box-shadow: var(--sh-lg); border: 1px solid var(--gray-lt);
}
.form-box h3 { color: var(--navy); margin-bottom: .38rem; }
.form-box > p { color: var(--gray); font-size: .86rem; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.fg { display: flex; flex-direction: column; gap: .42rem; margin-bottom: 1.1rem; }
.fg label { font-size: .8rem; font-weight: 700; color: var(--navy); }
.fg input, .fg select, .fg textarea {
  padding: .85rem 1rem;
  border: 1.5px solid var(--gray-lt); border-radius: var(--r-md);
  font-size: 16px;
  color: var(--text); background: var(--off);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
  width: 100%; appearance: auto;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px var(--gold-glow);
}
.fg textarea { resize: vertical; min-height: 125px; }

.form-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%; padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, #b5832a 100%);
  color: var(--white); font-size: .92rem; font-weight: 700; letter-spacing: .04em;
  border: none; border-radius: var(--r-full); cursor: pointer;
  box-shadow: 0 6px 22px rgba(207, 162, 77, 0.38);
  transition: all var(--t) var(--ease);
}
.form-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
  transform: translateY(-2px); box-shadow: 0 10px 30px rgba(207, 162, 77, 0.52);
}
.form-submit:disabled { opacity: .6; cursor: not-allowed; }

.form-success {
  display: none; text-align: center; padding: 3rem 2rem;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: var(--r-lg); border: 1px solid #86efac;
}

/* ── FAQ ACCORDION ───────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--gray-lt); border-radius: var(--r-md);
  margin-bottom: .75rem; overflow: hidden; transition: border-color var(--t) var(--ease);
}
.faq-item:hover { border-color: rgba(207, 162, 77, 0.38); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.4rem; cursor: pointer; background: var(--white);
  gap: 1rem; min-height: 56px;
}
.faq-q h5 { font-size: .88rem; color: var(--navy); font-weight: 700; flex: 1; }
.faq-tog {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--white); font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t) var(--ease);
}
.faq-item.open .faq-tog { transform: rotate(45deg); }
.faq-ans {
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease), padding .3s var(--ease);
  padding: 0 1.4rem; background: var(--off);
}
.faq-item.open .faq-ans { max-height: 280px; padding: 1rem 1.4rem 1.25rem; }
.faq-ans p { color: var(--gray); font-size: .84rem; line-height: 1.78; }

/* ── GROUP OVERVIEW PANEL ────────────────────────────────────── */
.group-panel {
  background: var(--navy); border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3.5vw, 2.75rem); position: relative; overflow: hidden; margin-bottom: 3rem;
  border: 1px solid rgba(207, 162, 77, 0.18);
}
.group-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}
.group-panel h3 { color: var(--gold-lt); margin-bottom: .9rem; }
.group-panel p  { color: rgba(255, 255, 255, 0.7); font-size: .9rem; line-height: 1.85; max-width: 800px; }
.group-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 2rem; }
.gs {
  background: rgba(207, 162, 77, 0.1); border: 1px solid rgba(207, 162, 77, 0.2);
  border-radius: var(--r-md); padding: 1.1rem; text-align: center;
}
.gs .gv { font-size: 1.65rem; font-weight: 900; color: var(--gold-lt); line-height: 1; }
.gs .gl { font-size: .66rem; color: rgba(255, 255, 255, 0.52); letter-spacing: .08em; text-transform: uppercase; margin-top: .22rem; font-weight: 600; }

/* ── PORTFOLIO FILTER ROW ────────────────────────────────────── */
.filter-row {
  display: flex; flex-wrap: wrap; gap: .6rem;
  justify-content: center; margin-bottom: 2.5rem;
  padding: .3rem 0;
}
.flt {
  padding: .52rem 1.2rem; border-radius: var(--r-full);
  border: 1.5px solid var(--gray-lt); background: var(--white);
  color: var(--gray); font-size: .76rem; font-weight: 700;
  cursor: pointer; transition: all var(--t) var(--ease); min-height: 40px;
  font-family: inherit; white-space: nowrap;
}
.flt:hover, .flt.active {
  background: var(--navy); border-color: var(--navy); color: var(--white);
  box-shadow: 0 4px 14px rgba(12, 25, 46, 0.22);
}

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  background: var(--navy); text-align: center;
  padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-in { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); margin-bottom: .85rem; }
.cta-band p  { color: rgba(255, 255, 255, 0.68); font-size: 1.02rem; max-width: 530px; margin: 0 auto 2.2rem; }
.cta-btns    { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── PAGE HERO (SUBPAGES) ────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: clamp(7.5rem, 13vw, 11rem) 0 clamp(3rem, 5.5vw, 5rem);
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.32) saturate(.7); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(7, 14, 27, 0.96) 0%, rgba(12, 25, 46, 0.74) 100%);
}
.page-hero-overlay::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: .42rem; margin-bottom: 1.4rem; font-size: .78rem; font-weight: 500; }
.breadcrumb a { color: var(--gold-lt); }
.breadcrumb-sep { color: rgba(255, 255, 255, 0.32); }
.breadcrumb span { color: rgba(255, 255, 255, 0.58); }
.page-hero h1 { color: var(--white); margin-bottom: .9rem; }
.page-hero-sub { color: rgba(255, 255, 255, 0.7); font-size: clamp(.9rem, 2vw, 1.05rem); max-width: 620px; line-height: 1.85; }
.page-hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; }

/* ── TIMELINE ────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.tl-item { position: relative; margin-bottom: 2.2rem; }
.tl-dot {
  position: absolute; left: -2.25rem; top: 4px;
  width: 19px; height: 19px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  border: 3px solid var(--white); box-shadow: 0 0 0 3px rgba(207, 162, 77, 0.22);
}
.tl-yr { font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .28rem; }
.tl-item h4 { color: var(--navy); margin-bottom: .38rem; }
.tl-item p  { color: var(--gray); font-size: .84rem; line-height: 1.75; }

/* ══════════════════════════════════════════════════════════════
   FOOTER — Premium International Corporate Design
══════════════════════════════════════════════════════════════ */

/* Pre-footer CTA strip */
.footer-cta-strip {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(207,162,77,.15);
  border-bottom: 1px solid rgba(207,162,77,.1);
  padding: clamp(2rem, 4vw, 3rem) 0;
  position: relative; overflow: hidden;
}
.footer-cta-strip::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 100% at 75% 50%, rgba(207,162,77,.07), transparent);
}
.footer-cta-strip-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; position: relative; z-index: 1;
}
.footer-cta-text .eyebrow { color: var(--gold); margin-bottom: .4rem; }
.footer-cta-text h3 { color: var(--white); font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: .3rem; }
.footer-cta-text p  { color: rgba(255,255,255,.6); font-size: .88rem; max-width: 440px; }
.footer-cta-actions { display: flex; gap: .85rem; flex-wrap: wrap; flex-shrink: 0; }

/* Footer main */
.footer {
  background: var(--navy-dark); color: rgba(255, 255, 255, 0.58);
  padding: clamp(3rem, 6vw, 5rem) 0 0; position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(207,162,77,.3) 15%,
    var(--gold) 35%,
    var(--gold-lt) 50%,
    var(--gold) 65%,
    rgba(207,162,77,.3) 85%,
    transparent 100%
  );
}

.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem); padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Footer brand column */
.footer-brand { display: flex; flex-direction: column; }

.footer-logo {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
}
.footer-logo-img,
.footer-logo img {
  height: 50px !important; width: auto !important; display: block !important;
  max-width: 180px; object-fit: contain;
  filter: brightness(0) invert(1) !important;
  opacity: .9;
}
.footer-logo-text { display: flex; flex-direction: column; gap: 2px; }
.footer-logo-name {
  font-size: .75rem; font-weight: 900; color: var(--white);
  letter-spacing: .08em; text-transform: uppercase; line-height: 1.1;
}
.footer-logo-motto {
  font-size: .6rem; font-weight: 600; color: var(--gold);
  letter-spacing: .14em; text-transform: uppercase;
}

.footer-brand-desc {
  font-size: .82rem; line-height: 1.9;
  color: rgba(255,255,255,.52);
  margin-bottom: 1.6rem; max-width: 320px;
}

/* Social icons */
.footer-socials { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.f-social {
  width: 38px; height: 38px; border-radius: 10px; position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex; align-items: center; justify-content: center;
  font-size: .84rem; font-weight: 700; color: rgba(255, 255, 255, 0.5);
  transition: all var(--t) var(--ease); overflow: hidden;
}
.f-social::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  opacity: 0; transition: opacity var(--t) var(--ease); border-radius: inherit;
}
.f-social span, .f-social-icon { position: relative; z-index: 1; }
.f-social:hover {
  border-color: var(--gold);
  color: var(--navy-dark); transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(207,162,77,.4);
}
.f-social:hover::before { opacity: 1; }

/* Footer certifications strip */
.footer-cert {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  padding: .7rem 1rem;
  background: rgba(207,162,77,.06);
  border: 1px solid rgba(207,162,77,.14);
  border-radius: var(--r-md);
}
.footer-cert-label {
  font-size: .6rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-right: .2rem;
}
.footer-cert-badge {
  font-size: .62rem; font-weight: 700;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px; padding: .18rem .5rem; color: rgba(255,255,255,.65);
  white-space: nowrap;
}

/* Footer columns */
.footer-col-head {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: var(--white); font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.4rem; padding-bottom: .7rem;
  border-bottom: 1px solid rgba(207,162,77,.2);
  position: relative;
}
.footer-col-head::before {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
}
/* keep backwards compat with h5 usage */
.footer-col h5 {
  font-size: .78rem; color: var(--white); font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.4rem; padding-bottom: .7rem;
  border-bottom: 1px solid rgba(207,162,77,.2);
  display: block; position: relative;
}
.footer-col h5::before {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
}

.f-links { display: flex; flex-direction: column; gap: .5rem; }
.f-links li a, .f-links a {
  font-size: .81rem; color: rgba(255, 255, 255, 0.48);
  display: flex; align-items: center; gap: .5rem;
  padding: .3rem 0;
  transition: color var(--t) var(--ease), padding-left var(--t) var(--ease);
}
.f-links li a::before, .f-links a::before {
  content: ''; width: 6px; height: 1.5px; border-radius: 2px; flex-shrink: 0;
  background: var(--gold); opacity: .5;
  transition: width var(--t) var(--ease), opacity var(--t) var(--ease);
}
.f-links li a:hover, .f-links a:hover {
  color: var(--gold-lt); padding-left: .4rem;
}
.f-links li a:hover::before, .f-links a:hover::before {
  width: 10px; opacity: 1;
}

/* Contact column */
.f-contact { display: flex; flex-direction: column; gap: .9rem; }
.f-contact-item {
  display: flex; align-items: flex-start; gap: .75rem; font-size: .8rem;
  color: rgba(255,255,255,.5); line-height: 1.5;
  transition: color var(--t) var(--ease);
}
.f-contact-item:hover { color: rgba(255,255,255,.75); }
.f-contact-ico {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; margin-top: 1px;
  background: rgba(207, 162, 77, 0.1);
  border: 1px solid rgba(207,162,77,.18);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: .78rem;
  transition: background var(--t) var(--ease);
}
.f-contact-item:hover .f-contact-ico { background: rgba(207,162,77,.2); }

/* Footer bottom bar */
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; padding: 1.25rem 0;
}
.footer-bottom-left {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: .74rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--t) var(--ease); }
.footer-bottom a:hover { color: var(--gold-lt); }
.footer-bottom-divider {
  width: 1px; height: 12px;
  background: rgba(255,255,255,.15);
}
.f-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.f-bottom-links a {
  font-size: .72rem; color: rgba(255, 255, 255, 0.35);
  transition: color var(--t) var(--ease);
}
.f-bottom-links a:hover { color: var(--gold-lt); }
.footer-bottom-made {
  font-size: .68rem; color: rgba(255,255,255,.22);
  letter-spacing: .04em;
}

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 990;
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy); font-size: 1.15rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh), 0 0 24px var(--gold-glow);
  opacity: 0; pointer-events: none; cursor: pointer;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-5px); }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(.95); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal-scale.in { opacity: 1; transform: scale(1); }
.reveal-fade { opacity: 0; transition: opacity .75s var(--ease); }
.reveal-fade.in { opacity: 1; }

[data-d="1"] { transition-delay: .07s; }
[data-d="2"] { transition-delay: .14s; }
[data-d="3"] { transition-delay: .21s; }
[data-d="4"] { transition-delay: .28s; }
[data-d="5"] { transition-delay: .35s; }
[data-d="6"] { transition-delay: .42s; }

/* ── UTILS ───────────────────────────────────────────────────── */
.tc { text-align: center; }
.bg-off   { background: var(--off); }
.bg-navy  { background: var(--navy); }
.bg-white { background: var(--white); }
.mb-3 { margin-bottom: 3rem; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */

/* Tablet – 1024px */
@media (max-width: 1024px) {
  :root { --nav-h: 72px; }
  .g4, .val-grid, .stats-row { grid-template-columns: repeat(2, 1fr); }
  .g3, .p-card-grid, .co-card-grid, .sec-card-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .founder-grid { grid-template-columns: 270px 1fr; gap: 2.5rem; }
  .group-stats { grid-template-columns: repeat(2, 1fr); }
  .g2s { grid-template-columns: 1fr 1.3fr; }
  .reach-grid { min-height: 280px; }
  .team-values { grid-template-columns: repeat(3, 1fr); }
  .team-values div { border-bottom: 1px solid rgba(255,255,255,.1); }
  .executive-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile – 768px */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  /* Nav mobile */
  .nav-logo-img, .nav-brand img {
    height: 58px !important; max-width: 200px; padding: 5px 14px;
  }
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    height: calc(100vh - var(--nav-h));
    background: rgba(7, 14, 27, 0.99); flex-direction: column;
    justify-content: flex-start; gap: .3rem;
    padding: 1.25rem 1rem 2rem; overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    opacity: 0; pointer-events: none;
    transition: transform .35s var(--ease), opacity .25s var(--ease);
    z-index: 999; display: flex;
  }
  .nav-links.open {
    transform: translateX(0);
    opacity: 1; pointer-events: auto;
  }
  .nav-link {
    justify-content: flex-start; width: 100%;
    padding: .85rem 1rem; font-size: .98rem;
    border-radius: var(--r-md); border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-cta-btn {
    margin-left: 0; margin-top: .5rem; width: 100%;
    justify-content: center; padding: .95rem; border-radius: var(--r-full);
    border-bottom: none !important;
  }

  /* Grids */
  .g2, .g2s { grid-template-columns: 1fr; }
  .g3, .p-card-grid, .co-card-grid, .sec-card-grid { grid-template-columns: 1fr 1fr; }
  .g4, .val-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none; }
  .vm-grid { grid-template-columns: 1fr; }
  .vm-motto { grid-column: span 1; flex-direction: column; gap: 1.2rem; padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .group-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-intro-grid, .development-inner { grid-template-columns: 1fr; }
  .team-values { grid-template-columns: repeat(2, 1fr); }
  .executive-grid { grid-template-columns: 1fr 1fr; }
  .office-grid { grid-template-columns: 1fr; }

  /* Founder */
  .founder-grid { grid-template-columns: 1fr; }
  .founder-img { height: 300px; }
  .founder-badge { position: static; transform: none; margin-top: 1.2rem; display: inline-block; }

  /* Hero */
  .hero { min-height: auto; padding: calc(var(--nav-h) + 2rem) 0 3.5rem; }
  .hero-body { padding: 1.5rem 0 2rem; }
  .hero h1 { font-size: clamp(1.05rem, 4.5vw, 1.35rem); }
  .hero-company-name { font-size: clamp(1.8rem, 9vw, 2.65rem); margin-bottom: .8rem; }
  .hero-stats { gap: 1.4rem; flex-wrap: wrap; }
  .hero-stat { padding-right: 1.4rem; margin-right: 1.4rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .hero-btns .btn { width: 100%; max-width: 300px; }
  .scroll-cue { display: none; }

  /* About stack images */
  .img-stack-badge { position: static; transform: none; margin-top: 1.2rem; }
  .img-stack-main { height: 300px; }
  .feat-grid { grid-template-columns: 1fr; }

  /* Reach grid */
  .reach-grid { grid-template-columns: 1fr 1fr; min-height: auto; }
  .reach-box { min-height: 120px; }

  /* Sections */
  .sec    { padding: 3.2rem 0; }
  .sec-sm { padding: 2rem 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo img { height: 46px !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .6rem; }
}

/* Small mobile – 640px */
@media (max-width: 640px) {
  .filter-row {
    flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
    padding-bottom: .6rem;
    margin-left: calc(-1 * clamp(1rem, 4vw, 2rem));
    margin-right: calc(-1 * clamp(1rem, 4vw, 2rem));
    padding-left: clamp(1rem, 4vw, 2rem); padding-right: clamp(1rem, 4vw, 2rem);
    scrollbar-width: none;
  }
  .filter-row::-webkit-scrollbar { display: none; }
  .flt { flex-shrink: 0; }

  /* Cards go 1 col on very small screens */
  .g3, .p-card-grid, .co-card-grid, .sec-card-grid { grid-template-columns: 1fr; }
  .executive-grid { grid-template-columns: 1fr; }
  .executive-card { min-height: 205px; }
}

/* Extra small – 480px */
@media (max-width: 480px) {
  .nav-logo-img, .nav-brand img { height: 52px !important; max-width: 180px; padding: 4px 12px; }
  .g4, .val-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .group-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat-n { font-size: 1.75rem; }
  .vm-motto-txt { font-size: 1.28rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 290px; }
  .breadcrumb { display: none; }
  .page-hero { padding: 6rem 0 3rem; }
  .reach-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns .btn { max-width: 100%; }
  .team-values { grid-template-columns: 1fr; }
  .team-values div { min-height: 95px; border-right: none; }
  .discipline-cloud { min-height: 0; padding: 1.5rem; border-radius: var(--r-lg); }
}

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
