/* ============================================================
   PETER OBI — Premium Corporate Design System
   Apple × Stripe × McKinsey × Bloomberg Inspired
   Comprehensive — covers all page class patterns
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy: #0a1628;
  --navy-light: #112240;
  --charcoal: #1a1a2e;
  --gold: #c9a84c;
  --gold-light: #d4b96a;
  --gold-dark: #a88a32;
  --orange-subtle: #d4843e;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --light-grey: #e8e6e1;
  --mid-grey: #9a9a9a;
  --text-dark: #1a1a1a;
  --text-body: #3d3d3d;
  --text-muted: #6b6b6b;

  --font-heading: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --section-padding: 120px;
  --container-width: 1280px;
  --grid-gap: 32px;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.3s var(--ease-smooth);
  --transition-medium: 0.6s var(--ease-out);
  --transition-slow: 1s var(--ease-out);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.18);

  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(20px);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  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(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -0.015em;
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
}

.lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: 900px;
}

.container--wide {
  max-width: 1440px;
}

.section {
  padding: var(--section-padding) 0;
}

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

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p,
.section--dark .lead {
  color: rgba(255, 255, 255, 0.75);
}

.section--grey {
  background: var(--off-white);
}

.section--charcoal {
  background: var(--charcoal);
  color: var(--white);
}

.section--charcoal h2,
.section--charcoal h3 {
  color: var(--white);
}

.section--charcoal p {
  color: rgba(255, 255, 255, 0.7);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--12 { grid-template-columns: repeat(12, 1fr); }

.grid--asymmetric {
  grid-template-columns: 5fr 7fr;
}

.grid--asymmetric-reverse {
  grid-template-columns: 7fr 5fr;
}

/* Flexbox Utilities */
.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--column { flex-direction: column; }
.flex--gap { gap: var(--grid-gap); }


/* ==========================================================
   NAVIGATION
   10 links across all pages — hamburger triggers at 1200px
   to prevent any overflow or text crowding on medium screens
   ========================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}

/* When scrolled — white glass bar, dark text */
.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

/* ---- Scrolled state: dark text on white bar ---- */
.nav.scrolled .nav__logo {
  color: var(--navy);
}

.nav.scrolled .nav__link {
  color: var(--text-body);
}

.nav.scrolled .nav__link:hover {
  color: var(--navy);
}

.nav.scrolled .nav__link.active,
.nav.scrolled .nav__link--active,
.nav.scrolled .nav__link.nav__link--active {
  color: var(--navy);
}

.nav.scrolled .nav__hamburger-line {
  background: var(--navy);
}

/* Inner wrapper — full-width, left-to-right */
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 20px;
}

/* Logo — fixed width anchor on the left */
/* Default: white text (visible over dark hero backgrounds) */
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.nav__logo span {
  color: var(--gold);
}

/* Desktop menu — right-aligned, items fill available space */
.nav__menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__item {
  display: flex;
  flex-shrink: 0;
}

/* Default: white text (visible over dark hero/page-hero backgrounds) */
.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.005em;
  position: relative;
  padding: 8px 9px;
  white-space: nowrap;
  transition: color 0.3s ease;
  border-radius: 4px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 9px;
  right: 9px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.nav__link:hover::after,
.nav__link.active::after,
.nav__link--active::after,
.nav__link.nav__link--active::after {
  transform: scaleX(1);
}

/* Default hover/active: bright white over dark backgrounds */
.nav__link:hover {
  color: var(--white);
}

.nav__link.active,
.nav__link--active,
.nav__link.nav__link--active {
  color: var(--white);
  font-weight: 600;
}

/* Wider screens — slightly more breathing room */
@media (min-width: 1400px) {
  .nav__list {
    gap: 4px;
  }
  .nav__link {
    font-size: 0.84rem;
    padding: 8px 12px;
  }
}

/* Hamburger button — hidden on desktop, shown on tablet/mobile */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  z-index: 1002;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

/* Default: white lines (visible over dark backgrounds) */
.nav__hamburger-line {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  display: block;
  border-radius: 2px;
}

.nav__hamburger.active .nav__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active .nav__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay — full-screen menu */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1001;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav__mobile-overlay.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav__mobile-menu {
  padding: 40px 32px;
  width: 100%;
  max-width: 420px;
}

.nav__mobile-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__mobile-list li {
  margin-bottom: 0;
}

.nav__mobile-link {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid var(--light-grey);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.nav__mobile-link:hover {
  color: var(--gold);
  padding-left: 8px;
}

.nav__mobile-link--active,
.nav__mobile-link.nav__mobile-link--active {
  color: var(--gold);
}

/* Hamburger breakpoint at 1200px — triggers BEFORE links overflow */
@media (max-width: 1200px) {
  .nav__menu {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav__container {
    padding: 0 28px;
  }
}

/* ---------- Hero Section (Homepage) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* Background image — handles .hero__bg and .hero__background */
.hero__bg,
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__bg img,
.hero__background img,
.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.65) 40%,
    rgba(10, 22, 40, 0.45) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 140px 40px 80px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gold);
}

/* Hero headings — .hero h1 and .hero__title */
.hero h1,
.hero__title {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 28px;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin-bottom: 50px;
  line-height: 1.7;
}

/* Hero buttons — .hero__actions and .hero__buttons */
.hero__actions,
.hero__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: var(--navy);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero h1,
.page-hero__title {
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero p,
.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Breadcrumb — handles both simple and BEM patterns */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb a,
.breadcrumb__link {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover,
.breadcrumb__link:hover {
  color: var(--gold);
}

.breadcrumb span,
.breadcrumb__current {
  color: var(--gold);
}

.breadcrumb__separator {
  color: rgba(255, 255, 255, 0.25);
}


/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

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

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

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

.btn--dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--arrow::after {
  content: '\2192';
  transition: transform var(--transition-fast);
}

.btn--arrow:hover::after {
  transform: translateX(4px);
}


/* ---------- Section Headers ---------- */
/* Handles both .section-header and .section__header patterns */
.section-header,
.section__header {
  margin-bottom: 60px;
}

.section-header--center,
.section__header--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header__eyebrow,
.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header h2,
.section__header h2,
.section__title {
  margin-bottom: 16px;
}

.section-header p,
.section__header p,
.section__description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.8;
}

.section-header--center p,
.section__header--center p {
  margin: 0 auto;
}

.section--dark .section__eyebrow,
.section--dark .section-header__eyebrow {
  color: var(--gold);
}

.section--dark .section__title,
.section--dark .section__header h2 {
  color: var(--white);
}

.section--dark .section__description,
.section--dark .section__header p {
  color: rgba(255, 255, 255, 0.65);
}


/* ---------- Asymmetric Grid ---------- */
/* Used on index, governance, campaign, economic, philanthropy */
.asymmetric-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}

.asymmetric-grid--reversed {
  grid-template-columns: 7fr 5fr;
}

.asymmetric-grid__image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.asymmetric-grid__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.asymmetric-grid__content {
  display: flex;
  flex-direction: column;
}

.asymmetric-grid__content .section__eyebrow,
.asymmetric-grid__content .eyebrow {
  margin-bottom: 12px;
}

.asymmetric-grid__content h2 {
  margin-bottom: 20px;
}

.asymmetric-grid__content p,
.asymmetric-grid__text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 28px;
}

.asymmetric-grid__content .btn {
  align-self: flex-start;
  margin-top: 12px;
}


/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  padding: 36px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--gold);
  line-height: 1;
}

.card__image {
  width: 100%;
  overflow: hidden;
  margin: -36px -36px 28px -36px;
  width: calc(100% + 72px);
}

.card__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition-medium);
}

.card:hover .card__image img {
  transform: scale(1.03);
}

.card__body {
  padding: 32px;
}

.card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text-dark);
}

.card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ---------- Glass Card ---------- */
/* On dark backgrounds: translucent glass effect */
.section--dark .glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px;
  transition: all var(--transition-fast);
}

.section--dark .glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.section--dark .glass-card__icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--gold);
  line-height: 1;
}

.section--dark .glass-card__title,
.section--dark .glass-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.section--dark .glass-card__text,
.section--dark .glass-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* On light backgrounds: elevated card effect */
.glass-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 12px;
  padding: 40px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

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

.glass-card__icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--gold);
  line-height: 1;
}

.glass-card__title,
.glass-card h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.glass-card__text,
.glass-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Glass card number variant (for stat-style glass cards) */
.glass-card__number {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.section--dark .glass-card__number {
  color: var(--gold);
}

/* Grey section glass cards */
.section--grey .glass-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
}


/* ---------- Stat Cards & Stats Container ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.stat-card {
  text-align: center;
  padding: 48px 24px;
}

.stat-card__number {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
  display: inline;
}

.stat-card__prefix {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
  color: var(--gold);
  display: inline;
}

.stat-card__suffix {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
  color: var(--gold);
  display: inline;
}

.stat-card__label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 12px;
}


/* ---------- Quote Block ---------- */
.quote-block {
  position: relative;
  padding: 80px 0;
  background: var(--off-white);
}

.quote-block .container {
  border-left: 4px solid var(--gold);
  padding-left: 40px;
  padding-right: 40px;
}

.quote-block blockquote,
.quote-block__quote {
  margin: 0;
}

.quote-block blockquote p,
.quote-block__text {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
  letter-spacing: -0.01em;
}

.quote-block cite,
.quote-block__author {
  display: block;
  margin-top: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
}

/* Dark quote variant */
.quote-block--dark {
  background: var(--navy-light);
}

.quote-block--dark blockquote p,
.quote-block--dark .quote-block__text {
  color: var(--white);
}


/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--light-grey));
}

.timeline__item {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--light-grey);
}

.timeline__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.timeline__dot {
  position: absolute;
  left: -48px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline__year {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.timeline__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.timeline__text {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 650px;
  line-height: 1.8;
}


/* ---------- Data Visualization Blocks ---------- */
.data-bars {
  margin-bottom: 16px;
}

.data-bar {
  margin-bottom: 22px;
}

.data-bar__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.data-bar__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.data-bar__value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
}

.data-bar__track {
  width: 100%;
  height: 6px;
  background: var(--light-grey);
  border-radius: 3px;
  overflow: hidden;
}

.data-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 3px;
  width: 0;
  transition: width 1.5s var(--ease-out);
}


/* ---------- Image Handling ---------- */
.img-contain {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.img-wrapper--rounded {
  border-radius: 16px;
}

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


/* ---------- Divider ---------- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 30px 0;
  border: none;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}


/* ---------- Animated Counters ---------- */
.counter {
  font-variant-numeric: tabular-nums;
}


/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: var(--off-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.8));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay p {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  z-index: 10000;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}


/* ---------- Contact Form ---------- */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  background: var(--off-white);
  border: 1.5px solid transparent;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  outline: none;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

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


/* ---------- Footer ---------- */
/* Handles both .footer__top and .footer__grid patterns */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 40px;
}

.footer__top,
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand,
.footer__col:first-child {
  max-width: 360px;
}

.footer__brand h3,
.footer__logo {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  display: block;
}

.footer__brand h3 span,
.footer__logo span {
  color: var(--gold);
}

.footer__brand p,
.footer__description {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 340px;
}

.footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
}

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

/* Footer contact — handles both <p> and <li> based patterns */
.footer__contact {
  font-size: 0.9rem;
}

.footer__contact p,
.footer__contact li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.45);
}

.footer__contact a {
  color: var(--gold);
  transition: color var(--transition-fast);
}

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

.footer__contact strong {
  color: rgba(255, 255, 255, 0.7);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__credit {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__credit a {
  color: var(--gold);
  font-weight: 600;
}

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


/* ---------- Access Control Page ---------- */
.access-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  overflow: hidden;
}

.access-gate__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.access-gate__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(17, 34, 64, 0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
  z-index: 2;
  animation: gradientFlow 12s ease-in-out infinite alternate;
}

@keyframes gradientFlow {
  0% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.8; transform: scale(1); }
}

.access-gate__content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  max-width: 440px;
  padding: 0 30px;
}

.access-gate__logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.access-gate__logo span {
  color: var(--gold);
}

.access-gate__subtitle {
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 50px;
}

.access-gate__box {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 48px 40px;
}

.access-gate__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  text-align: left;
}

.access-gate__input-wrap {
  position: relative;
  margin-bottom: 28px;
}

.access-gate__input {
  width: 100%;
  padding: 18px 50px 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.05em;
  outline: none;
  transition: all var(--transition-fast);
}

.access-gate__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.access-gate__input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.access-gate__toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
  padding: 4px;
  transition: color var(--transition-fast);
}

.access-gate__toggle:hover {
  color: rgba(255, 255, 255, 0.6);
}

.access-gate__submit {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.access-gate__submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

.access-gate__error {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #e74c3c;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.access-gate__error.visible {
  opacity: 1;
}

.access-gate__input-wrap.shake {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-8px); }
  30% { transform: translateX(8px); }
  45% { transform: translateX(-6px); }
  60% { transform: translateX(6px); }
  75% { transform: translateX(-3px); }
  90% { transform: translateX(3px); }
}

.access-gate.success {
  animation: gateOpen 0.8s var(--ease-out) forwards;
}

@keyframes gateOpen {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.1); pointer-events: none; }
}


/* ---------- Parallax ---------- */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: 0;
}

.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


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

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

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

.reveal--left.visible {
  transform: translateX(0);
}

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

.reveal--right.visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.95);
}

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

.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }
.reveal--d5 { transition-delay: 0.5s; }


/* ---------- Utility Classes ---------- */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.1em; }

.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }
.mt-3 { margin-top: 48px; }
.mt-4 { margin-top: 64px; }
.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 32px; }
.mb-3 { margin-bottom: 48px; }
.mb-4 { margin-bottom: 64px; }

.pt-1 { padding-top: 16px; }
.pt-2 { padding-top: 32px; }
.pt-3 { padding-top: 48px; }
.pb-1 { padding-bottom: 16px; }
.pb-2 { padding-bottom: 32px; }
.pb-3 { padding-bottom: 48px; }

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

.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 16px; }

.overflow-hidden { overflow: hidden; }


/* ==========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================== */

/* ---------- Tablet (1024px) ---------- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
    --grid-gap: 24px;
  }

  .container {
    padding: 0 30px;
  }

  /* Grids */
  .grid--2 { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }

  .grid--asymmetric,
  .grid--asymmetric-reverse {
    grid-template-columns: 1fr;
  }

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

  .asymmetric-grid--reversed {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer__top,
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Quote */
  .quote-block .container {
    padding-left: 30px;
  }

  .quote-block blockquote p,
  .quote-block__text {
    font-size: 1.3rem;
  }
}

/* ---------- Mobile Large (768px) ---------- */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .container {
    padding: 0 20px;
  }

  .nav__container,
  .nav__inner {
    padding: 0 20px;
  }

  .hero__content {
    padding: 120px 20px 60px;
  }

  .hero__subtitle {
    font-size: 1.08rem;
  }

  .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr; }

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

  .stat-card {
    padding: 32px 16px;
  }

  .footer__top,
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  .timeline {
    padding-left: 40px;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline__dot {
    left: -36px;
    width: 12px;
    height: 12px;
  }

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

  .access-gate__box {
    padding: 36px 28px;
  }

  .asymmetric-grid {
    gap: 30px;
  }
}

/* ---------- Mobile Small (480px) ---------- */
@media (max-width: 480px) {
  .hero__content {
    padding: 110px 16px 50px;
  }

  .hero__actions,
  .hero__buttons {
    flex-direction: column;
  }

  .hero__actions .btn,
  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .quote-block {
    padding: 50px 0;
  }

  .quote-block .container {
    padding-left: 20px;
    padding-right: 16px;
  }

  .quote-block blockquote p,
  .quote-block__text {
    font-size: 1.15rem;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .stat-card {
    padding: 24px 12px;
  }

  .stat-card__number {
    font-size: 2rem;
  }

  .nav__mobile-link,
  .nav__mobile a {
    font-size: 1.3rem;
    padding: 12px 0;
  }

  .page-hero {
    padding: 120px 0 50px;
  }

  .container {
    padding: 0 16px;
  }
}
