/* ============================================
   LUC FRIEDEN — OFFICIAL LEADERSHIP PROFILE
   Premium Executive Stylesheet
   ============================================ */

:root {
  --navy-900: #0a1628;
  --navy-800: #0f1f38;
  --navy-700: #152a4a;
  --navy-600: #1e3760;
  --navy-500: #2a4a7f;
  --graphite: #1a1d24;
  --graphite-soft: #2b2f3a;
  --silver-100: #f4f5f7;
  --silver-200: #e6e8ec;
  --silver-300: #cdd1d9;
  --silver-400: #a8afbb;
  --silver-500: #7a818f;
  --ivory: #fbfaf6;
  --cream: #f6f3ec;
  --champagne: #c8a968;
  --champagne-soft: #e0c589;
  --champagne-dark: #a6884b;
  --burgundy: #6e1f2e;
  --burgundy-deep: #531723;
  --white: #ffffff;
  --black: #000000;

  --font-serif: 'Playfair Display', 'Libre Baskerville', Georgia, serif;
  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-body: 'Inter', 'Manrope', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);

  --container: 1360px;
  --radius-s: 2px;
  --radius-m: 4px;

  --header-h: 86px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--graphite);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--navy-800); color: var(--champagne-soft); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--navy-900);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   TOP RIBBON
   ============================================ */
.top-ribbon {
  background: var(--navy-900);
  color: var(--silver-300);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 0;
  border-bottom: 1px solid rgba(200, 169, 104, 0.18);
}
.top-ribbon .container { display: flex; justify-content: space-between; align-items: center; }
.top-ribbon .ribbon-left { display: flex; gap: 32px; }
.top-ribbon .ribbon-left span { display: inline-flex; align-items: center; gap: 8px; }
.top-ribbon .ribbon-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 2px rgba(200,169,104,0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
.top-ribbon .ribbon-right a { margin-left: 26px; color: var(--silver-300); }
.top-ribbon .ribbon-right a:hover { color: var(--champagne); }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.25); }
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(251, 250, 246, 0.82);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 40px -20px rgba(10, 22, 40, 0.15);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--navy-900);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy-900);
  position: relative;
  letter-spacing: 0;
  transition: all 0.35s var(--ease);
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid var(--champagne);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.brand:hover .brand-mark::after { opacity: 1; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}
.brand-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne-dark);
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite);
  padding: 8px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.main-nav a.active { color: var(--navy-900); }

.nav-cta {
  padding: 12px 22px;
  border: 1px solid var(--navy-900);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease);
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy-900);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-out);
  z-index: -1;
}
.nav-cta:hover { color: var(--champagne-soft); }
.nav-cta:hover::before { transform: translateY(0); }

.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 6px;
  right: 6px;
  height: 1.5px;
  background: var(--navy-900);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), top 0.4s var(--ease);
}
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 18px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger.open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--navy-900);
  color: var(--silver-100);
  padding: 100px 40px 40px;
  z-index: 850;
  transition: right 0.55s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--silver-100);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.01em;
}
.mobile-drawer a:hover { color: var(--champagne); padding-left: 10px; }
.mobile-drawer .drawer-footer {
  margin-top: auto;
  padding-top: 30px;
  font-size: 12px;
  color: var(--silver-400);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  z-index: 840;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

/* ============================================
   HERO — UNIVERSAL
   ============================================ */
.page-hero {
  position: relative;
  min-height: 520px;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 70px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.72) 0%, rgba(10,22,40,0.4) 50%, rgba(10,22,40,0.85) 100%);
  z-index: 2;
}
.page-hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  z-index: 1;
  opacity: 0.85;
  transform: scale(1.02);
  transition: transform 8s var(--ease-out);
}
.page-hero.loaded .hero-img { transform: scale(1); }

.page-hero .hero-content { position: relative; z-index: 3; width: 100%; }
.page-hero .eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-hero .eyebrow::before {
  content: '';
  width: 42px;
  height: 1px;
  background: var(--champagne);
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6.4vw, 88px);
  color: var(--white);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.02;
  max-width: 1100px;
}
.page-hero h1 em { color: var(--champagne-soft); font-style: italic; font-weight: 300; }
.page-hero .hero-lede {
  max-width: 640px;
  margin-top: 28px;
  font-size: 17px;
  color: var(--silver-200);
  line-height: 1.7;
}

/* ============================================
   BREADCRUMB / PAGE META
   ============================================ */
.page-meta {
  border-bottom: 1px solid rgba(10,22,40,0.08);
  padding: 18px 0;
  background: var(--cream);
}
.page-meta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-500);
}
.page-meta a { color: var(--silver-500); }
.page-meta a:hover { color: var(--navy-900); }
.page-meta .sep { margin: 0 10px; color: var(--champagne); }

/* ============================================
   SECTIONS & UTILS
   ============================================ */
section { padding: 120px 0; position: relative; }
section.compact { padding: 90px 0; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne-dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--champagne);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--navy-900);
  max-width: 900px;
}
.section-title em { font-style: italic; color: var(--burgundy); font-weight: 400; }
.section-sub {
  font-size: 17px;
  color: var(--graphite-soft);
  max-width: 700px;
  margin-top: 20px;
  line-height: 1.7;
}

.bg-navy { background: var(--navy-900); color: var(--silver-100); }
.bg-navy .section-title, .bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy .section-sub { color: var(--silver-300); }
.bg-navy .section-eyebrow { color: var(--champagne); }

.bg-cream { background: var(--cream); }
.bg-ivory { background: var(--ivory); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ============================================
   HOMEPAGE
   ============================================ */
.home-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 40px);
  padding: 0;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  overflow: hidden;
  background: var(--ivory);
}
.home-hero .hero-left {
  padding: 90px 70px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: var(--ivory);
}
.home-hero .hero-left::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(10,22,40,0.08), transparent);
}
.home-hero .hero-index {
  position: absolute;
  top: 40px;
  left: 70px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-500);
}
.home-hero .hero-index span { color: var(--champagne-dark); }
.home-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(46px, 5.5vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.home-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--burgundy);
}
.home-hero .hero-lede {
  font-size: 18px;
  color: var(--graphite-soft);
  max-width: 560px;
  margin-top: 32px;
  line-height: 1.7;
}
.home-hero .hero-signature {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.home-hero .sig-line {
  flex: 0 0 48px;
  height: 1px;
  background: var(--champagne);
}
.home-hero .sig-text {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--navy-800);
}
.home-hero .sig-text span {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-500);
  margin-top: 4px;
}
.home-hero .hero-actions {
  margin-top: 46px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--navy-900);
  color: var(--navy-900);
  background: transparent;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn .arrow {
  width: 18px; height: 1px; background: currentColor;
  position: relative;
  transition: width 0.4s var(--ease-out);
}
.btn .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 8px; height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 28px; }
.btn.primary {
  background: var(--navy-900);
  color: var(--ivory);
}
.btn.primary:hover {
  background: var(--champagne-dark);
  border-color: var(--champagne-dark);
  color: var(--white);
}
.btn.ghost {
  border-color: var(--navy-900);
  background: transparent;
}
.btn.ghost:hover { background: var(--navy-900); color: var(--champagne-soft); }
.btn.gold {
  border-color: var(--champagne);
  color: var(--champagne-dark);
}
.btn.gold:hover {
  background: var(--champagne);
  color: var(--navy-900);
}

.home-hero .hero-right {
  position: relative;
  background: var(--navy-900);
  overflow: hidden;
}
.home-hero .hero-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.05) contrast(1.02);
}
.home-hero .hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.1) 0%, rgba(10,22,40,0.55) 100%);
  pointer-events: none;
}
.home-hero .hero-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 3;
  padding: 26px 28px;
  background: rgba(10,22,40,0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200,169,104,0.3);
  color: var(--silver-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.home-hero .hero-badge .badge-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 6px;
}
.home-hero .hero-badge .badge-val {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  line-height: 1.2;
}
.home-hero .hero-crest {
  width: 64px; height: 64px;
  border: 1px solid var(--champagne);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--champagne-soft);
  flex-shrink: 0;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 70px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-500);
}
.scroll-cue .cue-line {
  width: 38px; height: 1px; background: var(--silver-400);
  position: relative;
  overflow: hidden;
}
.scroll-cue .cue-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0; width: 100%; height: 100%;
  background: var(--navy-900);
  animation: slide 2.2s var(--ease-out) infinite;
}
@keyframes slide {
  0% { left: -100%; }
  60%, 100% { left: 100%; }
}

/* ============================================
   COUNTERS
   ============================================ */
.counters {
  background: var(--navy-900);
  color: var(--silver-100);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.counters::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(200,169,104,0.08), transparent 60%);
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
}
.counter-item {
  padding: 10px 34px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.counter-item:first-child { border-left: none; padding-left: 0; }
.counter-num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5.4vw, 72px);
  font-weight: 400;
  color: var(--champagne-soft);
  line-height: 1;
  letter-spacing: -0.02em;
}
.counter-suffix { font-size: 0.5em; color: var(--champagne); margin-left: 4px; }
.counter-label {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-300);
}
.counter-sub { font-size: 13px; color: var(--silver-400); margin-top: 8px; }

/* ============================================
   WELCOME / INTRO SPLIT
   ============================================ */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 90px;
  align-items: center;
}
.intro-split .intro-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy-900);
}
.intro-split .intro-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  transition: transform 1.4s var(--ease-out);
}
.intro-split .intro-image:hover img { transform: scale(1.03); }
.intro-split .intro-image::after {
  content: '';
  position: absolute;
  bottom: -14px; right: -14px;
  width: 120px; height: 120px;
  border: 1px solid var(--champagne);
  z-index: -1;
}
.intro-split .intro-meta {
  position: absolute;
  left: 22px; bottom: 22px;
  padding: 14px 18px;
  background: rgba(10,22,40,0.8);
  backdrop-filter: blur(10px);
  color: var(--silver-100);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-left: 2px solid var(--champagne);
}
.intro-split .intro-copy p {
  font-size: 16.5px;
  color: var(--graphite-soft);
  margin-top: 20px;
  line-height: 1.8;
}
.intro-split .intro-copy .lede {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--navy-800);
  line-height: 1.55;
  font-weight: 400;
  margin-top: 30px;
}

/* ============================================
   PRIORITIES — HORIZONTAL TILES
   ============================================ */
.priorities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid rgba(10,22,40,0.1);
  border-left: 1px solid rgba(10,22,40,0.1);
}
.priority-card {
  padding: 44px 36px;
  background: var(--ivory);
  border-right: 1px solid rgba(10,22,40,0.1);
  border-bottom: 1px solid rgba(10,22,40,0.1);
  position: relative;
  transition: background 0.5s var(--ease-out);
  cursor: default;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.priority-card:hover { background: var(--navy-900); }
.priority-card:hover .p-num,
.priority-card:hover h3,
.priority-card:hover p { color: var(--white); }
.priority-card:hover h3 { color: var(--champagne-soft); }
.priority-card:hover .p-num { color: var(--champagne); }
.p-num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--champagne-dark);
  letter-spacing: 0.15em;
  font-style: italic;
  margin-bottom: 30px;
  transition: color 0.4s var(--ease);
}
.priority-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--navy-900);
  font-weight: 500;
  margin-bottom: 16px;
  transition: color 0.4s var(--ease);
}
.priority-card p {
  font-size: 14.5px;
  color: var(--graphite-soft);
  line-height: 1.7;
  transition: color 0.4s var(--ease);
}

/* ============================================
   QUOTE BANNER
   ============================================ */
.quote-banner {
  position: relative;
  padding: 150px 0;
  background: var(--navy-900);
  color: var(--silver-100);
  overflow: hidden;
}
.quote-banner .quote-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.22;
  filter: grayscale(0.3);
}
.quote-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.6) 0%, rgba(10,22,40,0.9) 100%);
}
.quote-banner .container { position: relative; z-index: 2; }
.quote-mark {
  font-family: var(--font-serif);
  font-size: 140px;
  line-height: 0.6;
  color: var(--champagne);
  opacity: 0.5;
  margin-bottom: 10px;
}
.quote-banner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  max-width: 1000px;
  font-style: italic;
}
.quote-banner blockquote em { color: var(--champagne-soft); font-style: italic; }
.quote-attrib {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-300);
}
.quote-attrib::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--champagne);
}

/* ============================================
   FEATURED LINKS GRID (HOMEPAGE)
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.feature-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
  display: block;
}
.feature-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.feature-card:hover img { transform: scale(1.08); }
.feature-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.15) 0%, rgba(10,22,40,0.9) 100%);
  transition: background 0.5s var(--ease);
}
.feature-card:hover::after {
  background: linear-gradient(180deg, rgba(10,22,40,0.35) 0%, rgba(10,22,40,0.95) 100%);
}
.feature-card .card-inner {
  position: absolute;
  left: 26px; right: 26px; bottom: 26px;
  z-index: 3;
}
.feature-card .card-num {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--champagne);
  margin-bottom: 14px;
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 18px;
}
.feature-card .card-link {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver-200);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.4s var(--ease), gap 0.4s var(--ease);
}
.feature-card:hover .card-link { color: var(--champagne-soft); gap: 16px; }
.feature-card .card-link::after {
  content: '→';
  transition: transform 0.4s var(--ease);
}

/* ============================================
   MILESTONES (HOMEPAGE)
   ============================================ */
.milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
}
.milestone {
  padding: 40px 30px;
  border-left: 1px solid rgba(10,22,40,0.12);
}
.milestone:first-child { border-left: none; padding-left: 0; }
.milestone .ms-year {
  font-family: var(--font-serif);
  font-size: 54px;
  color: var(--burgundy);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.milestone .ms-title {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--navy-900);
  margin: 18px 0 12px;
  line-height: 1.3;
}
.milestone .ms-desc { font-size: 14px; color: var(--graphite-soft); line-height: 1.7; }

/* ============================================
   BIOGRAPHY TIMELINE
   ============================================ */
.bio-intro {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: start;
}
.bio-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.bio-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.bio-portrait .caption {
  position: absolute;
  left: 20px; bottom: 20px;
  padding: 10px 16px;
  background: rgba(10,22,40,0.82);
  backdrop-filter: blur(10px);
  color: var(--silver-100);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-left: 2px solid var(--champagne);
}
.bio-facts {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 24px;
  padding: 30px 0;
  border-top: 1px solid rgba(10,22,40,0.12);
  border-bottom: 1px solid rgba(10,22,40,0.12);
}
.fact .fact-label {
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--silver-500);
  margin-bottom: 8px;
}
.fact .fact-value {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy-900);
  line-height: 1.3;
}

.timeline {
  position: relative;
  margin-top: 80px;
  padding-left: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(200,169,104,0.35), rgba(10,22,40,0.12), transparent);
}
.t-entry {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 80px;
  padding: 40px 0;
}
.t-entry::after {
  content: '';
  position: absolute;
  left: 114px;
  top: 50px;
  width: 12px;
  height: 12px;
  background: var(--ivory);
  border: 2px solid var(--champagne);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.4s var(--ease);
}
.t-entry:hover::after { background: var(--champagne); transform: scale(1.3); }
.t-year {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--burgundy);
  font-weight: 500;
  line-height: 1;
  padding-top: 6px;
  text-align: right;
  padding-right: 10px;
}
.t-content h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--navy-900);
}
.t-content .t-role {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne-dark);
  margin-bottom: 16px;
}
.t-content p { font-size: 15.5px; color: var(--graphite-soft); line-height: 1.75; max-width: 720px; }

/* ============================================
   GOVERNANCE CARDS
   ============================================ */
.gov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid rgba(10,22,40,0.12);
  border-left: 1px solid rgba(10,22,40,0.12);
}
.gov-card {
  padding: 50px 40px;
  border-right: 1px solid rgba(10,22,40,0.12);
  border-bottom: 1px solid rgba(10,22,40,0.12);
  position: relative;
  transition: background 0.5s var(--ease);
  min-height: 360px;
}
.gov-card:hover {
  background: var(--navy-900);
  color: var(--silver-100);
}
.gov-card:hover h3 { color: var(--champagne-soft); }
.gov-card:hover p { color: var(--silver-300); }
.gov-card:hover .g-num { color: var(--champagne); }
.gov-card:hover .g-tags span { border-color: rgba(200,169,104,0.45); color: var(--silver-200); }
.g-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--champagne-dark);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  display: block;
}
.gov-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--navy-900);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 16px;
  transition: color 0.4s var(--ease);
}
.gov-card p {
  font-size: 14.5px;
  color: var(--graphite-soft);
  line-height: 1.7;
  transition: color 0.4s var(--ease);
}
.g-tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.g-tags span {
  padding: 5px 10px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-500);
  border: 1px solid rgba(10,22,40,0.15);
  transition: all 0.4s var(--ease);
}

/* Governance metrics */
.gov-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy-900);
  color: var(--silver-100);
  margin-top: 80px;
}
.gov-metric {
  padding: 60px 40px;
  border-left: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.gov-metric:first-child { border-left: none; }
.gov-metric .m-value {
  font-family: var(--font-serif);
  font-size: 54px;
  color: var(--champagne-soft);
  line-height: 1;
  font-weight: 400;
}
.gov-metric .m-label {
  margin-top: 16px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-300);
}
.gov-metric .m-desc { font-size: 13px; color: var(--silver-400); margin-top: 8px; line-height: 1.6; }

/* ============================================
   FINANCIAL LEGACY — LAYOUTS
   ============================================ */
.legacy-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.legacy-intro .img-frame {
  position: relative;
  aspect-ratio: 5 / 6;
}
.legacy-intro .img-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
}
.legacy-intro .img-frame::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 50%; height: 50%;
  border-top: 1px solid var(--champagne);
  border-left: 1px solid var(--champagne);
}
.legacy-intro .img-frame::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 50%; height: 50%;
  border-bottom: 1px solid var(--champagne);
  border-right: 1px solid var(--champagne);
}

.chapter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 70px;
}
.chapter-grid .chapter {
  padding: 70px;
  border: 1px solid rgba(10,22,40,0.12);
  margin: -1px 0 0 -1px;
  background: var(--ivory);
  position: relative;
}
.chapter:nth-child(even) { background: var(--cream); }
.chapter .chap-num {
  font-family: var(--font-serif);
  font-size: 72px;
  color: var(--champagne);
  opacity: 0.7;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  font-style: italic;
}
.chapter h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--navy-900);
  font-weight: 500;
  margin: 18px 0 8px;
  line-height: 1.2;
}
.chapter .chap-period {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 22px;
}
.chapter p {
  font-size: 15.5px;
  color: var(--graphite-soft);
  line-height: 1.75;
  max-width: 560px;
}
.chapter .chap-key {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.chapter .chap-key div {
  padding: 14px 0;
  border-top: 1px solid rgba(10,22,40,0.15);
}
.chapter .chap-key .key-l {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-500);
}
.chapter .chap-key .key-v {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy-900);
  margin-top: 4px;
}

/* Data strip */
.data-strip {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 80px;
  align-items: center;
  margin-top: 80px;
  padding: 80px 60px;
  background: var(--navy-900);
  color: var(--silver-100);
}
.data-strip h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
}
.data-bars { display: flex; flex-direction: column; gap: 22px; }
.data-row {
  display: grid;
  grid-template-columns: 180px 1fr 80px;
  gap: 20px;
  align-items: center;
}
.data-row .d-label {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--silver-300);
  text-transform: uppercase;
}
.data-row .d-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.data-row .d-bar span {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--champagne-dark), var(--champagne-soft));
  width: 0;
  transition: width 1.6s var(--ease-out);
}
.data-row.visible .d-bar span { width: var(--w); }
.data-row .d-val {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--champagne-soft);
  text-align: right;
}

/* ============================================
   FUTURE VISION
   ============================================ */
.vision-manifesto {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.vision-manifesto h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.8vw, 64px);
  color: var(--navy-900);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.vision-manifesto h2 em { color: var(--burgundy); font-style: italic; font-weight: 400; }

.vision-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
}
.v-pillar {
  background: var(--navy-900);
  color: var(--silver-100);
  padding: 50px 36px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out);
}
.v-pillar:hover { transform: translateY(-8px); }
.v-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--champagne);
}
.v-pillar .v-num {
  font-family: var(--font-serif);
  font-size: 80px;
  color: rgba(200,169,104,0.18);
  font-weight: 400;
  line-height: 1;
  font-style: italic;
  margin-bottom: 20px;
}
.v-pillar h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.2;
}
.v-pillar p { font-size: 14.5px; color: var(--silver-300); line-height: 1.7; }
.v-pillar .v-footnote {
  margin-top: auto;
  padding-top: 24px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 20px;
}

.vision-horizon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 0;
  align-items: stretch;
}
.vision-horizon .vh-copy {
  padding: 100px 70px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vision-horizon .vh-image {
  min-height: 600px;
  background-size: cover;
  background-position: center;
}
.vision-horizon h3 {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--navy-900);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 520px;
}
.vision-horizon p {
  font-size: 16px;
  color: var(--graphite-soft);
  line-height: 1.75;
  margin-top: 26px;
  max-width: 520px;
}
.horizon-list {
  margin-top: 36px;
  list-style: none;
}
.horizon-list li {
  padding: 16px 0 16px 30px;
  border-bottom: 1px solid rgba(10,22,40,0.12);
  font-size: 15px;
  color: var(--navy-800);
  font-family: var(--font-serif);
  position: relative;
}
.horizon-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 16px; height: 1px;
  background: var(--champagne);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.gallery-filters button {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-500);
  padding: 10px 4px;
  position: relative;
  transition: color 0.3s var(--ease);
}
.gallery-filters button::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--navy-900);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}
.gallery-filters button.active,
.gallery-filters button:hover { color: var(--navy-900); }
.gallery-filters button.active::after { transform: scaleX(1); }

.masonry {
  column-count: 3;
  column-gap: 20px;
}
.m-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-900);
}
.m-item img {
  width: 100%;
  display: block;
  transition: transform 1.2s var(--ease-out), opacity 0.5s var(--ease);
}
.m-item:hover img { transform: scale(1.06); }
.m-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.m-item:hover::after { opacity: 1; }
.m-caption {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  color: var(--silver-100);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  z-index: 2;
}
.m-item:hover .m-caption { opacity: 1; transform: translateY(0); }
.m-caption .m-cat {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 6px;
}
.m-caption .m-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  line-height: 1.3;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,0.7);
}
.lb-close {
  position: absolute;
  top: 28px; right: 40px;
  color: var(--silver-100);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lb-close::after { content: '✕'; font-size: 22px; }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--silver-100);
  font-size: 32px;
  width: 56px; height: 56px;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.lb-nav:hover { background: rgba(255,255,255,0.1); border-color: var(--champagne); color: var(--champagne-soft); }
.lb-prev { left: 40px; }
.lb-next { right: 40px; }

/* ============================================
   NEWS
   ============================================ */
.news-lead {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  margin-top: 60px;
}
.news-feature {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--navy-900);
}
.news-feature img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.news-feature:hover img { transform: scale(1.04); }
.news-feature .nf-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,22,40,0.92) 80%);
  color: var(--white);
}
.news-feature .nf-tag {
  display: inline-block;
  padding: 5px 10px;
  background: var(--champagne);
  color: var(--navy-900);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.news-feature h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.6vw, 34px);
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  max-width: 700px;
}
.news-feature .nf-meta {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-300);
}

.news-sidebar { display: flex; flex-direction: column; gap: 28px; }
.news-sidebar h4 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-500);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(10,22,40,0.15);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}
.news-mini {
  padding: 20px 0;
  border-bottom: 1px solid rgba(10,22,40,0.08);
  cursor: pointer;
  transition: padding 0.4s var(--ease);
}
.news-mini:hover { padding-left: 10px; }
.news-mini .nm-date {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne-dark);
  margin-bottom: 8px;
}
.news-mini .nm-title {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy-900);
  line-height: 1.35;
}
.news-mini:hover .nm-title { color: var(--burgundy); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}
.news-card {
  background: var(--ivory);
  border-top: 3px solid var(--navy-900);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease);
}
.news-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--champagne);
  box-shadow: 0 40px 80px -40px rgba(10,22,40,0.3);
}
.news-card .nc-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-900);
}
.news-card .nc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.news-card:hover .nc-img img { transform: scale(1.06); }
.news-card .nc-body { padding: 28px 24px 30px; }
.news-card .nc-tag {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}
.news-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy-900);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 14px;
}
.news-card p { font-size: 14px; color: var(--graphite-soft); line-height: 1.65; }
.news-card .nc-meta {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(10,22,40,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-500);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  margin-top: 0;
}
.contact-info {
  padding: 100px 70px;
  background: var(--navy-900);
  color: var(--silver-100);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  right: -100px; bottom: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(200,169,104,0.08);
  border-radius: 50%;
}
.contact-info::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 300px; height: 300px;
  border: 1px solid rgba(200,169,104,0.1);
  border-radius: 50%;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 46px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 26px;
}
.contact-info h2 em { color: var(--champagne-soft); font-style: italic; }
.contact-info .ci-lede { font-size: 16px; color: var(--silver-300); line-height: 1.75; max-width: 480px; margin-bottom: 50px; }
.contact-block { margin-bottom: 36px; position: relative; z-index: 2; }
.contact-block .cb-label {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 10px;
}
.contact-block .cb-value {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  line-height: 1.4;
}
.contact-block a.cb-value:hover { color: var(--champagne-soft); }

.contact-form {
  padding: 100px 70px;
  background: var(--cream);
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--navy-900);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-field { position: relative; margin-bottom: 24px; }
.form-field label {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver-500);
  display: block;
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10,22,40,0.2);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy-900);
  transition: border-color 0.4s var(--ease);
  outline: none;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--champagne); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--silver-400); }

.form-submit {
  margin-top: 20px;
  padding: 18px 40px;
  background: var(--navy-900);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.form-submit:hover {
  background: var(--burgundy);
  padding-right: 46px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-900);
  color: var(--silver-300);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(200,169,104,0.2);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-brand .brand { color: var(--white); }
.footer-brand .brand-mark { border-color: var(--champagne); color: var(--champagne-soft); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p {
  font-size: 14px;
  color: var(--silver-400);
  line-height: 1.7;
  max-width: 340px;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 6px 0; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--silver-300);
  transition: color 0.3s var(--ease), padding 0.3s var(--ease);
}
.footer-col ul li a:hover { color: var(--champagne-soft); padding-left: 6px; }

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12.5px;
  color: var(--silver-400);
}
.footer-bottom a { color: var(--silver-300); }
.footer-bottom a:hover { color: var(--champagne-soft); }

.social-row {
  display: flex;
  gap: 12px;
}
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid; place-items: center;
  transition: all 0.35s var(--ease);
}
.social-row a:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  transform: translateY(-3px);
}
.social-row svg {
  width: 15px; height: 15px; fill: var(--silver-300);
  transition: fill 0.35s var(--ease);
}
.social-row a:hover svg { fill: var(--navy-900); }

.footer-credit {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--silver-500);
}
.footer-credit a { color: var(--champagne-soft); }

/* ============================================
   PASSWORD GATE
   ============================================ */
.gate {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gate-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  opacity: 0.4;
  filter: blur(3px) saturate(1.1);
  transform: scale(1.05);
}
.gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.75) 0%, rgba(10,22,40,0.5) 50%, rgba(10,22,40,0.85) 100%);
  z-index: 2;
}
.gate-seal {
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  color: var(--silver-200);
}
.gate-seal .seal-mark {
  width: 60px; height: 60px;
  border: 1px solid var(--champagne);
  display: inline-grid;
  place-items: center;
  font-family: var(--font-serif);
  color: var(--champagne-soft);
  font-size: 24px;
  margin-bottom: 12px;
  position: relative;
}
.gate-seal .seal-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(200,169,104,0.4);
}
.gate-seal-text {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--silver-300);
}

.gate-panel {
  position: relative;
  z-index: 3;
  width: 92%;
  max-width: 480px;
  padding: 58px 48px 52px;
  background: rgba(15, 31, 56, 0.6);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  border: 1px solid rgba(200,169,104,0.25);
  color: var(--silver-100);
  text-align: center;
  animation: gate-in 1.2s var(--ease-out);
}
@keyframes gate-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.gate-panel::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(200,169,104,0.12);
  pointer-events: none;
}
.gate-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.gate-eyebrow::before, .gate-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--champagne);
  opacity: 0.7;
}
.gate h1 {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.gate .gate-sub {
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-300);
  margin-bottom: 40px;
}
.gate-form { position: relative; }
.gate-form .input-wrap {
  position: relative;
  margin-bottom: 28px;
}
.gate-form label {
  position: absolute;
  top: -20px; left: 0;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-400);
}
.gate-form input {
  width: 100%;
  padding: 16px 18px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(200,169,104,0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-align: center;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.gate-form input:focus {
  border-color: var(--champagne);
  background: rgba(0,0,0,0.4);
}
.gate-form.error input {
  animation: shake 0.55s;
  border-color: #c44e5a;
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-8px); }
  40%,80% { transform: translateX(8px); }
}
.gate-form .gate-btn {
  width: 100%;
  padding: 16px;
  background: var(--champagne);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: 1px solid var(--champagne);
}
.gate-form .gate-btn:hover {
  background: transparent;
  color: var(--champagne-soft);
}
.gate-error {
  margin-top: 20px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8737f;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  min-height: 16px;
}
.gate-error.show { opacity: 1; }
.gate-footer {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  color: var(--silver-500);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.gate.fade-out { animation: gate-out 1s var(--ease-out) forwards; }
@keyframes gate-out {
  to { opacity: 0; visibility: hidden; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .container { padding: 0 30px; }
  .counter-grid, .gov-grid, .vision-pillars { grid-template-columns: repeat(2, 1fr); }
  .counter-item:nth-child(3) { border-left: none; padding-left: 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .milestones { grid-template-columns: repeat(2, 1fr); }
  .milestone:nth-child(3) { border-left: none; padding-left: 0; }
  .home-hero { grid-template-columns: 1fr; }
  .home-hero .hero-right { min-height: 500px; order: -1; }
  .home-hero .hero-left { padding: 70px 40px; }
  .scroll-cue, .home-hero .hero-index { left: 40px; }
  .intro-split { grid-template-columns: 1fr; gap: 60px; }
  .bio-intro { grid-template-columns: 1fr; }
  .legacy-intro { grid-template-columns: 1fr; }
  .chapter-grid { grid-template-columns: 1fr; }
  .chapter { padding: 50px 40px; }
  .news-lead { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-split { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 70px 40px; }
  .vision-horizon { grid-template-columns: 1fr; }
  .vision-horizon .vh-copy { padding: 70px 40px; }
  .vision-horizon .vh-image { min-height: 420px; }
  .data-strip { grid-template-columns: 1fr; gap: 40px; padding: 50px 40px; }
  .gov-metrics { grid-template-columns: repeat(2, 1fr); }
  .gov-metric:nth-child(3) { border-left: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .masonry { column-count: 2; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .top-ribbon .ribbon-left span:last-child { display: none; }
  .top-ribbon { font-size: 10px; }

  .home-hero .hero-left { padding: 60px 24px; }
  .home-hero .hero-right { min-height: 420px; }
  .home-hero .hero-index { left: 24px; top: 30px; }
  .scroll-cue { display: none; }
  .container { padding: 0 24px; }

  .priorities, .gov-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .counter-item { border-left: none !important; padding: 30px 0 !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .feature-grid { grid-template-columns: 1fr; }
  .milestones { grid-template-columns: 1fr; }
  .milestone { border-left: none; padding: 30px 0; border-bottom: 1px solid rgba(10,22,40,0.1); }
  .gov-metrics { grid-template-columns: 1fr; }
  .gov-metric { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 40px 24px; }
  .timeline::before { left: 20px; }
  .t-entry { grid-template-columns: 70px 1fr; gap: 30px; padding: 30px 0; }
  .t-entry::after { left: 14px; top: 40px; }
  .t-year { font-size: 22px; padding-right: 0; text-align: left; }
  .footer-top { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }
  .page-hero h1 { font-size: 42px; }
  .home-hero h1 { font-size: 46px; }
  .gallery-filters { gap: 16px; }
  .chapter { padding: 40px 28px; }
  .chapter .chap-key { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 60px 28px; }
  .quote-mark { font-size: 90px; }
  .gate h1 { font-size: 30px; }
  .gate-panel { padding: 50px 30px 40px; }
}
