/* ============================================================
   YUKO KANAMARU — GOVERNANCE INTELLIGENCE PLATFORM
   Premium Corporate Design System
   ============================================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  /* Primary Palette */
  --navy: #0a1628;
  --navy-deep: #060e1a;
  --charcoal: #1a2332;
  --charcoal-light: #243044;
  --slate: #2d3a4a;

  /* Accent */
  --gold: #c9a96e;
  --gold-muted: #b89a5f;
  --gold-light: #d4b97a;
  --platinum: #e8e0d0;

  /* Secondary */
  --grey-cool: #8a9bb0;
  --grey-light: #c5cdd8;
  --grey-pale: #eef1f5;
  --white: #ffffff;
  --white-off: #f7f8fa;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg-light: rgba(255, 255, 255, 0.85);
  --glass-border-light: rgba(255, 255, 255, 0.4);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.16);
  --shadow-gold: 0 8px 32px rgba(201, 169, 110, 0.15);

  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container-max: 1280px;
  --container-wide: 1440px;

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --duration-fast: 0.2s;
  --duration-md: 0.4s;
  --duration-slow: 0.8s;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) ease;
}

ul, ol { list-style: none; }

::selection {
  background: var(--gold);
  color: var(--navy);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.display-xl {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.display-lg {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.display-md {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.heading-lg { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.heading-md { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.heading-sm { font-size: clamp(1rem, 1.5vw, 1.25rem); }

.body-lg { font-size: 1.125rem; line-height: 1.8; }
.body-md { font-size: 1rem; line-height: 1.7; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.label-gold {
  color: var(--gold);
}

/* ---------- UTILITY ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-grey { color: var(--grey-cool); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

.bg-navy { background: var(--navy); color: var(--white); }
.bg-charcoal { background: var(--charcoal); color: var(--white); }
.bg-white { background: var(--white); }
.bg-offwhite { background: var(--white-off); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

/* ---------- GLASS CARD ---------- */
.glass-card {
  background: var(--glass-bg-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.glass-card-dark {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 60px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--duration-md) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   ACCESS GATE PAGE
   ============================================================ */
.access-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  overflow: hidden;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.access-gate.hidden {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.access-gate-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(10, 22, 40, 0.9) 0%, transparent 70%);
}

.access-gate-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.access-gate-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 8s infinite ease-in-out;
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
  50% { transform: translateY(-80px) translateX(20px); opacity: 0.5; }
}

.access-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 56px 48px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  animation: cardEntrance 1s var(--ease-out) 0.3s both;
}

@keyframes cardEntrance {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.access-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.access-logo svg {
  width: 30px;
  height: 30px;
  fill: var(--navy);
}

.access-card h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.access-card .subtitle {
  font-size: 0.85rem;
  color: var(--grey-cool);
  margin-bottom: 36px;
  line-height: 1.5;
}

.access-input-group {
  position: relative;
  margin-bottom: 24px;
}

.access-input {
  width: 100%;
  padding: 16px 52px 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: all var(--duration-md) ease;
}

.access-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.access-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}

.access-input.error {
  border-color: #e74c3c;
  animation: inputShake 0.5s ease;
}

@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.access-input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-cool);
}

.access-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: 14px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--duration-md) var(--ease-out);
}

.access-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.3);
}

.access-error-msg {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.access-error-msg.visible {
  opacity: 1;
}

.access-footer {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 20px 0;
  transition: all var(--duration-md) ease;
}

.main-nav.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
}

.main-nav.nav-dark {
  background: transparent;
}

.main-nav.nav-dark.scrolled {
  background: rgba(10, 22, 40, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-brand-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--navy);
}

.nav-brand-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav-dark .nav-brand-text {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: color var(--duration-fast) ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--duration-md) var(--ease-out);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-dark .nav-links a {
  color: var(--grey-light);
}

.nav-dark .nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: 60px !important;
  font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--duration-md) ease;
  border-radius: 2px;
}

.nav-dark .nav-toggle span {
  background: var(--white);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(30px);
  z-index: 8999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity var(--duration-md) ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 500;
  transition: color var(--duration-fast) ease;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ============================================================
   SECTION: HOME / HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.05) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text {
  padding: 40px 0;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 60px;
  margin-bottom: 32px;
}

.hero-label span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-label .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-title .gold-line {
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--grey-cool);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 40px;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--grey-cool);
  letter-spacing: 0.04em;
}

/* Hero Right Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
}

.hero-governance-diagram {
  width: 100%;
}

.governance-ring {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 30px;
  border-radius: 50%;
  border: 2px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.governance-ring::before {
  content: '';
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 169, 110, 0.15);
  animation: spinSlow 30s linear infinite;
}

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

.governance-ring-center {
  text-align: center;
}

.governance-ring-center svg {
  width: 48px;
  height: 48px;
  fill: var(--gold);
  margin-bottom: 10px;
}

.governance-ring-center span {
  display: block;
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.governance-node {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-md) ease;
}

.governance-node:hover {
  background: rgba(201, 169, 110, 0.2);
  transform: scale(1.1);
}

.governance-node svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.governance-node:nth-child(2) { top: -28px; left: 50%; transform: translateX(-50%); }
.governance-node:nth-child(3) { right: -28px; top: 50%; transform: translateY(-50%); }
.governance-node:nth-child(4) { bottom: -28px; left: 50%; transform: translateX(-50%); }
.governance-node:nth-child(5) { left: -28px; top: 50%; transform: translateY(-50%); }

.hero-visual-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-metric-chip {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-metric-chip svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}

.hero-metric-chip .chip-text {
  font-size: 0.75rem;
  color: var(--grey-light);
  font-weight: 500;
}

/* ============================================================
   SECTION: ABOUT
   ============================================================ */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.about-image-col {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 110, 0.2);
  pointer-events: none;
}

.about-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: -1;
}

.about-credentials {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.credential-badge {
  padding: 10px 18px;
  background: var(--white-off);
  border: 1px solid var(--grey-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
}

.credential-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.about-content-col .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-content-col h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--grey-pale);
}

.about-details p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.pillar-card {
  padding: 28px;
  background: var(--white-off);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-pale);
  transition: all var(--duration-md) var(--ease-out);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.pillar-card svg {
  width: 36px;
  height: 36px;
  fill: var(--gold);
  margin-bottom: 16px;
}

.pillar-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 0.825rem;
  color: var(--grey-cool);
  line-height: 1.6;
}

/* ============================================================
   SECTION: EXPERTISE & CAREER
   ============================================================ */
.expertise-section {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.expertise-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 80%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 40%);
}

.expertise-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.expertise-header .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.expertise-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.expertise-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--grey-cool);
  font-size: 1.05rem;
}

/* Timeline */
.career-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 40px;
}

.career-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 169, 110, 0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.2);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline-item h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--white);
}

.timeline-item p {
  font-size: 0.95rem;
  color: var(--grey-cool);
  line-height: 1.7;
}

.timeline-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.timeline-tag {
  padding: 4px 12px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 20px;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Expertise Domains Grid */
.expertise-domains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
}

.domain-card {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: all var(--duration-md) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.domain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--duration-md) ease;
}

.domain-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 169, 110, 0.2);
  transform: translateY(-4px);
}

.domain-card:hover::before {
  opacity: 1;
}

.domain-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.domain-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gold);
}

.domain-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--white);
}

.domain-card p {
  font-size: 0.875rem;
  color: var(--grey-cool);
  line-height: 1.7;
}

/* ============================================================
   SECTION: GOVERNANCE & BOARD ROLES
   ============================================================ */
.governance-section {
  padding: var(--section-pad) 0;
  background: var(--white-off);
  position: relative;
}

.governance-section .section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}

.governance-section .section-header .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.governance-section .section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  letter-spacing: -0.03em;
}

.governance-section .section-header p {
  color: var(--charcoal-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Board Role Cards */
.board-roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.board-role-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--grey-pale);
  border-radius: var(--radius-lg);
  transition: all var(--duration-md) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.board-role-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.board-role-header {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 20px;
}

.board-role-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.board-role-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
}

.board-role-title h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.board-role-title .role-type {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.board-role-card p {
  font-size: 0.925rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.board-role-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.role-tag {
  padding: 5px 14px;
  background: var(--white-off);
  border: 1px solid var(--grey-pale);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--charcoal-light);
  font-weight: 500;
}

/* Governance Framework Diagram */
.governance-framework {
  margin-top: 80px;
  padding: 60px;
  background: var(--navy);
  border-radius: var(--radius-xl);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.governance-framework::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
}

.framework-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.framework-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.framework-header p {
  color: var(--grey-cool);
  font-size: 0.95rem;
}

.framework-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.framework-pillar {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--duration-md) ease;
}

.framework-pillar:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 169, 110, 0.3);
}

.framework-pillar svg {
  width: 40px;
  height: 40px;
  fill: var(--gold);
  margin-bottom: 16px;
}

.framework-pillar h4 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--gold);
}

.framework-pillar p {
  font-size: 0.8rem;
  color: var(--grey-cool);
  line-height: 1.6;
}

/* ============================================================
   SECTION: AUDIT & RISK OVERSIGHT
   ============================================================ */
.audit-section {
  padding: var(--section-pad) 0;
  background: var(--white);
  position: relative;
}

.audit-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.audit-hero-content .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.audit-hero-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.audit-hero-content p {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* Risk Matrix */
.risk-matrix {
  padding: 40px;
  background: var(--white-off);
  border-radius: var(--radius-xl);
  border: 1px solid var(--grey-pale);
}

.risk-matrix-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.risk-matrix-header h4 {
  font-size: 1.1rem;
  color: var(--navy);
}

.risk-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.risk-cell {
  padding: 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all var(--duration-md) ease;
}

.risk-cell.high {
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.15);
}

.risk-cell.medium {
  background: rgba(241, 196, 15, 0.08);
  border: 1px solid rgba(241, 196, 15, 0.15);
}

.risk-cell.low {
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.15);
}

.risk-cell .risk-level {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.risk-cell.high .risk-level { color: #e74c3c; }
.risk-cell.medium .risk-level { color: #d4a017; }
.risk-cell.low .risk-level { color: #27ae60; }

.risk-cell .risk-label {
  font-size: 0.75rem;
  color: var(--charcoal-light);
  font-weight: 500;
}

/* Audit Process Flow */
.audit-process {
  margin-top: 60px;
}

.audit-process h3 {
  font-size: 1.5rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 169, 110, 0.2));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.process-step-card {
  padding: 20px 16px;
  background: var(--white-off);
  border: 1px solid var(--grey-pale);
  border-radius: var(--radius-md);
  transition: all var(--duration-md) ease;
}

.process-step-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.process-step-card svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
  margin-bottom: 10px;
}

.process-step-card h5 {
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.process-step-card p {
  font-size: 0.75rem;
  color: var(--grey-cool);
  line-height: 1.5;
}

/* KPI Counters */
.audit-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.kpi-card {
  padding: 32px 24px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.kpi-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.kpi-label {
  font-size: 0.8rem;
  color: var(--grey-cool);
  font-weight: 500;
}

/* ============================================================
   SECTION: CROSS-BORDER LEGAL
   ============================================================ */
.crossborder-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--charcoal) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.crossborder-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
}

.crossborder-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.crossborder-header .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.crossborder-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.crossborder-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--grey-cool);
  font-size: 1.05rem;
}

/* Jurisdiction Comparison */
.jurisdiction-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

.jurisdiction-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  position: relative;
}

.jurisdiction-card .flag-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.jurisdiction-card .flag-label .flag-icon {
  width: 36px;
  height: 24px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.jurisdiction-card .flag-label h3 {
  font-size: 1.2rem;
  color: var(--gold);
}

.jurisdiction-card ul {
  list-style: none;
}

.jurisdiction-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: var(--grey-light);
  display: flex;
  align-items: start;
  gap: 10px;
}

.jurisdiction-card ul li svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.jurisdiction-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 100px;
}

.bridge-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.bridge-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bridge-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--navy);
}

.bridge-text {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Cross-border Impact Metrics */
.crossborder-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.crossborder-metric {
  padding: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  text-align: center;
}

.crossborder-metric .metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.crossborder-metric .metric-label {
  font-size: 0.85rem;
  color: var(--grey-cool);
}

/* ============================================================
   SECTION: MEDIA & THOUGHT LEADERSHIP
   ============================================================ */
.media-section {
  padding: var(--section-pad) 0;
  background: var(--white-off);
  position: relative;
}

.media-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}

.media-header-left .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.media-header-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
}

.media-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.media-card-featured {
  padding: 40px;
  background: var(--navy);
  border-radius: var(--radius-xl);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-md) var(--ease-out);
}

.media-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.media-card-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
}

.media-card-featured .card-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}

.media-card-featured h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  position: relative;
}

.media-card-featured p {
  font-size: 0.9rem;
  color: var(--grey-cool);
  line-height: 1.7;
  position: relative;
}

.media-card-featured .card-meta {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--grey-cool);
  position: relative;
}

.media-card-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.media-card-small {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--grey-pale);
  border-radius: var(--radius-md);
  transition: all var(--duration-md) var(--ease-out);
}

.media-card-small:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.media-card-small .card-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.media-card-small h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.media-card-small p {
  font-size: 0.825rem;
  color: var(--grey-cool);
  line-height: 1.6;
}

/* Insights Grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--grey-pale);
  border-radius: var(--radius-lg);
  transition: all var(--duration-md) var(--ease-out);
}

.insight-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.insight-card svg {
  width: 36px;
  height: 36px;
  fill: var(--gold);
  margin-bottom: 18px;
}

.insight-card h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.insight-card p {
  font-size: 0.875rem;
  color: var(--grey-cool);
  line-height: 1.7;
}

/* ============================================================
   SECTION: AWARDS & RECOGNITION
   ============================================================ */
.awards-section {
  padding: var(--section-pad) 0;
  background: var(--white);
  position: relative;
}

.awards-header {
  text-align: center;
  margin-bottom: 60px;
}

.awards-header .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.awards-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.awards-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--charcoal-light);
  font-size: 1.05rem;
}

/* Affiliation Grid */
.affiliations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.affiliation-card {
  padding: 36px;
  background: var(--white-off);
  border: 1px solid var(--grey-pale);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--duration-md) var(--ease-out);
}

.affiliation-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.affiliation-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
}

.affiliation-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--gold);
}

.affiliation-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.affiliation-card p {
  font-size: 0.825rem;
  color: var(--grey-cool);
  line-height: 1.6;
}

/* Recognition Timeline */
.recognition-banner {
  padding: 60px;
  background: var(--navy);
  border-radius: var(--radius-xl);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.recognition-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
}

.recognition-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.recognition-item {
  text-align: center;
}

.recognition-item .rec-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.recognition-item .rec-label {
  font-size: 0.85rem;
  color: var(--grey-cool);
  line-height: 1.5;
}

/* ============================================================
   SECTION: CONTACT
   ============================================================ */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--white-off);
  position: relative;
}

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

.contact-info .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.contact-detail-text .detail-label {
  font-size: 0.75rem;
  color: var(--grey-cool);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-detail-text .detail-value {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}

.contact-detail-text .detail-value a {
  color: var(--navy);
  transition: color var(--duration-fast) ease;
}

.contact-detail-text .detail-value a:hover {
  color: var(--gold);
}

/* Contact Form */
.contact-form-card {
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--grey-pale);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal-light);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white-off);
  border: 1.5px solid var(--grey-pale);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none;
  transition: all var(--duration-fast) ease;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.08);
}

.form-textarea {
  height: 140px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: 14px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--duration-md) var(--ease-out);
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.03) 0%, transparent 40%);
}

.footer-main {
  position: relative;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--grey-cool);
  line-height: 1.7;
  margin: 20px 0;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-md) ease;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--grey-cool);
  transition: fill var(--duration-fast) ease;
}

.footer-social a:hover svg {
  fill: var(--navy);
}

.footer-column h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  font-size: 0.875rem;
  color: var(--grey-cool);
  transition: color var(--duration-fast) ease;
}

.footer-column ul li a:hover {
  color: var(--gold);
}

.footer-newsletter p {
  font-size: 0.875rem;
  color: var(--grey-cool);
  margin-bottom: 16px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  font-family: var(--font-body);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-input:focus {
  border-color: var(--gold);
}

.newsletter-btn {
  padding: 12px 20px;
  background: var(--gold);
  border: none;
  border-radius: 10px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--duration-md) ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--gold-light);
}

/* Footer Map */
.footer-map {
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.8);
}

/* Footer Bottom */
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--grey-cool);
}

.footer-bottom a {
  color: var(--gold);
  transition: color var(--duration-fast) ease;
}

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

.back-to-top {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-md) var(--ease-out);
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: var(--navy);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.3s; }

.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .expertise-domains {
    grid-template-columns: 1fr 1fr;
  }

  .governance-section .section-header {
    grid-template-columns: 1fr;
  }

  .board-roles-grid {
    grid-template-columns: 1fr;
  }

  .audit-hero {
    grid-template-columns: 1fr;
  }

  .process-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-flow::before { display: none; }

  .jurisdiction-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .jurisdiction-bridge {
    flex-direction: row;
    padding-top: 0;
  }

  .bridge-line {
    width: 80px;
    height: 2px;
  }

  .media-featured {
    grid-template-columns: 1fr;
  }

  .insights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recognition-content {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .framework-visual {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-stats {
    gap: 28px;
    flex-wrap: wrap;
  }

  .expertise-domains {
    grid-template-columns: 1fr;
  }

  .audit-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .process-flow {
    grid-template-columns: 1fr 1fr;
  }

  .crossborder-metrics {
    grid-template-columns: 1fr;
  }

  .affiliations-grid {
    grid-template-columns: 1fr;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .risk-matrix-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .media-header {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }

  .framework-visual {
    grid-template-columns: 1fr;
  }

  .recognition-content {
    grid-template-columns: 1fr;
  }

  .access-card {
    margin: 20px;
    padding: 40px 28px;
  }

  .governance-framework {
    padding: 36px 24px;
  }

  .recognition-banner {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .audit-kpis {
    grid-template-columns: 1fr;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PAGE TRANSITION
   ============================================================ */
.main-site {
  display: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}

.main-site.visible {
  display: block;
  opacity: 1;
}

/* Section spacing */
section {
  position: relative;
}

/* Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--grey-pale), transparent);
  margin: 0;
}

/* Print */
@media print {
  .main-nav, .access-gate, .back-to-top { display: none !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
}
