/* ============================================
   HARIBHAU KISANRAO BAGADE — PREMIUM WEBSITE
   Complete Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --maroon-deep: #5B1A1A;
  --maroon: #7B2D3B;
  --maroon-light: #9A3C4E;
  --sandstone: #D4A96A;
  --sandstone-light: #E8CFA0;
  --sandstone-pale: #F5E6CC;
  --navy: #1A2744;
  --navy-deep: #0F1A2E;
  --navy-light: #2A3D5C;
  --gold: #C9A84C;
  --gold-light: #E0C97A;
  --gold-accent: #D4AF37;
  --white: #FFFFFF;
  --off-white: #F8F6F2;
  --cream: #FDF8F0;
  --gray-100: #F5F3EF;
  --gray-200: #E8E4DD;
  --gray-300: #D1CBBF;
  --gray-400: #A89F90;
  --gray-500: #7A7265;
  --gray-600: #5A5348;
  --gray-700: #3D3830;
  --gray-800: #2A2520;
  --black: #1A1714;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-accent: 'Cinzel', serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;

  --shadow-subtle: 0 2px 20px rgba(26, 23, 20, 0.04);
  --shadow-card: 0 8px 40px rgba(26, 23, 20, 0.08);
  --shadow-elevated: 0 20px 60px rgba(26, 23, 20, 0.12);
  --shadow-dramatic: 0 30px 80px rgba(26, 23, 20, 0.18);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-dramatic: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1400px;
  --container-narrow: 900px;
  --container-wide: 1600px;
}

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

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

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

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

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

/* Make links visible inside content sections */
.section a:not(.btn):not(.nav__link):not(.nav__cta):not(.nav__logo):not(.highlight-card__link),
.article-content a,
.section__text a,
p a,
.card a:not(.btn),
.sidebar-card a {
  color: var(--maroon);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--sandstone-light);
  text-underline-offset: 3px;
  transition: all var(--transition-fast);
}

.section a:not(.btn):not(.nav__link):not(.nav__cta):not(.nav__logo):not(.highlight-card__link):hover,
.article-content a:hover,
.section__text a:hover,
p a:hover,
.card a:not(.btn):hover,
.sidebar-card a:hover {
  color: var(--maroon-deep);
  text-decoration-color: var(--maroon);
}

ul, ol { list-style: none; }

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-deep);
}

h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: clamp(1.05rem, 1.5vw, 1.3rem); }

p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.font-display { font-family: var(--font-display); }
.font-accent { font-family: var(--font-accent); }
.font-mono { font-family: var(--font-mono); }

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

.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

section, .section {
  padding: 80px 0;
  position: relative;
}

/* --- Backgrounds --- */
.bg-cream { background-color: var(--cream); }
.bg-white { background-color: var(--white); }
.bg-navy, .bg-dark { background-color: var(--navy-deep); }

.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4,
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-navy p, .bg-dark p { color: rgba(255,255,255,0.7); }
.bg-navy .section__label, .bg-dark .section__label,
.bg-navy .section-label, .bg-dark .section-label { color: var(--gold-light); }
.bg-navy .section__label::before, .bg-dark .section__label::before,
.bg-navy .section-label::before, .bg-dark .section-label::before { background: var(--gold-light); }

/* --- Glassmorphism --- */
.glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-smooth);
}

.nav.scrolled, .nav.nav--scrolled {
  padding: 10px 0;
  background: rgba(248, 246, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(209, 203, 191, 0.3);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo-emblem {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: color var(--transition-smooth);
}

.nav.scrolled .nav__logo-text,
.nav.nav--scrolled .nav__logo-text {
  color: var(--navy-deep);
  text-shadow: none;
}

.nav__logo-text span {
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 1px;
  transition: color var(--transition-smooth);
}

.nav.scrolled .nav__logo-text span,
.nav.nav--scrolled .nav__logo-text span {
  color: var(--gray-400);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--white);
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav.scrolled .nav__link,
.nav.nav--scrolled .nav__link {
  color: var(--navy-deep);
  text-shadow: none;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-smooth);
}

.nav__link:hover { color: var(--gold-light); }
.nav.scrolled .nav__link:hover,
.nav.nav--scrolled .nav__link:hover { color: var(--maroon); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--gold-light); }
.nav.scrolled .nav__link.active,
.nav.nav--scrolled .nav__link.active { color: var(--maroon); }
.nav__link.active::after { width: 100%; }

.nav__cta {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--navy-deep) !important;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
  text-shadow: none !important;
}

.nav__cta::after { display: none; }

.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: var(--navy-deep) !important;
}

.nav.scrolled .nav__cta,
.nav.nav--scrolled .nav__cta {
  background: var(--maroon);
  color: var(--white) !important;
}

.nav.scrolled .nav__cta:hover,
.nav.nav--scrolled .nav__cta:hover {
  background: var(--maroon-deep);
  color: var(--white) !important;
}

.nav__cta.active {
  background: var(--maroon);
  color: var(--white) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.nav.scrolled .nav__hamburger span,
.nav.nav--scrolled .nav__hamburger span {
  background: var(--navy-deep);
}

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

/* Mobile Menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(248, 246, 242, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.nav__mobile-menu.active,
.nav__mobile-menu.nav__mobile-menu--open {
  display: flex;
  opacity: 1;
}

.nav__mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--navy-deep);
  transition: color var(--transition-fast);
}

.nav__mobile-menu a:hover { color: var(--maroon); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(15, 26, 46, 0.9) 0%,
    rgba(91, 26, 26, 0.8) 50%,
    rgba(15, 26, 46, 0.88) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 140px 0 60px;
  margin: 0 auto 0 0;
  padding-left: 40px;
  padding-right: 40px;
}

.hero .container .hero__content {
  padding-left: 0;
  padding-right: 0;
}

.hero__label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero__label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
  font-weight: 700;
}

.hero__subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  padding: 30px 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__stat {
  text-align: left;
}

.hero__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}

.hero__stat-label {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.hero__stats--visible .hero__stat {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PAGE HERO (Internal pages)
   ============================================ */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--maroon-deep) 100%);
}

.page-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 160px 0 60px;
  width: 100%;
}

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

.page-hero p, .page-hero__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 600px;
}

.page-hero .section-label,
.page-hero .section__label {
  color: var(--gold-light);
}

.page-hero .section-label::before,
.page-hero .section__label::before {
  background: var(--gold-light);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
}

.breadcrumb a { color: rgba(255, 255, 255, 0.5); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255, 255, 255, 0.3); }
.breadcrumb .current { color: var(--gold-light); }

/* ============================================
   SECTION SYSTEM (used by all pages)
   ============================================ */
.section__header {
  margin-bottom: 3rem;
}

.section__header.text-center,
.text-center .section__header {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__label, .section-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
}

.section__label::before, .section-label::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.section__title, .section-title {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.section__subtitle, .section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.section__body {
  max-width: 800px;
  margin-bottom: 3rem;
}

.section__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(91, 26, 26, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(91, 26, 26, 0.4);
  color: var(--white);
}

/* On dark backgrounds (default) */
.btn--secondary, .btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}

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

/* On light backgrounds */
.bg-cream .btn--secondary, .bg-cream .btn--outline,
.bg-white .btn--secondary, .bg-white .btn--outline,
.section--cta:not(.bg-navy):not(.bg-dark) .btn--outline,
.section--cta:not(.bg-navy):not(.bg-dark) .btn--secondary {
  color: var(--maroon);
  border-color: var(--maroon);
}

.bg-cream .btn--secondary:hover, .bg-cream .btn--outline:hover,
.bg-white .btn--secondary:hover, .bg-white .btn--outline:hover,
.section--cta:not(.bg-navy):not(.bg-dark) .btn--outline:hover,
.section--cta:not(.bg-navy):not(.bg-dark) .btn--secondary:hover {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

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

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

.btn--white {
  background: var(--white);
  color: var(--navy-deep);
  box-shadow: var(--shadow-card);
}

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

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  overflow: hidden;
}

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

/* Governance Cards */
.governance-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-smooth);
}

.governance-card:hover {
  border-color: var(--sandstone);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

/* Governance cards on dark backgrounds */
.bg-dark .governance-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.bg-dark .governance-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.bg-dark .governance-card__title,
.bg-dark .governance-card h3 { color: var(--white); }

.bg-dark .governance-card__text,
.bg-dark .governance-card p { color: rgba(255, 255, 255, 0.6); }

.governance-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sandstone-pale), var(--cream));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.governance-card__title, .governance-card h3, .governance-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.governance-card__text, .governance-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Role Cards */
.role-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-smooth);
}

.role-card:hover {
  border-color: var(--sandstone);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.role-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--sandstone-pale), var(--cream));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--maroon);
}

.role-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--maroon);
}

.role-card__title, .role-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.role-card__text, .role-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Highlight Cards */
.highlight-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-smooth);
}

.highlight-card:hover {
  border-color: var(--sandstone);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.highlight-card__icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.highlight-card__title, .highlight-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.highlight-card__text, .highlight-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 0.8rem;
}

.highlight-card__link {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.highlight-card__link:hover {
  color: var(--gold-accent);
}

/* ============================================
   GRIDS
   ============================================ */
.grid { display: grid; }

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

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

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

.grid-asymmetric {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.grid-asymmetric--reverse {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
}

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

/* ============================================
   LEADERSHIP SECTION (Homepage)
   ============================================ */
.leadership__grid {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 50px;
  align-items: start;
}

.leadership__image-col {}

.leadership__content-col {}

/* ============================================
   IMAGES — CONSTRAINED & RESPONSIVE
   ============================================ */
.parallax-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.parallax-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease-out;
}

/* Sidebar images */
.article-sidebar img,
.sidebar-card img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* General section images */
.section img:not(.nav__logo-emblem img):not(.parallax-img img):not(.gallery-item img) {
  border-radius: var(--radius-md);
}

/* Gallery images */
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 26, 46, 0.7), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

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

.gallery-item__caption {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding-left: 50px;
  max-width: 800px;
}

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

.bg-dark .timeline::before {
  background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.3));
}

.timeline__item {
  position: relative;
  padding-bottom: 36px;
}

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

.timeline__marker {
  position: absolute;
  left: -38px;
  top: 0;
}

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

.bg-dark .timeline__dot { border-color: var(--navy-deep); }

.timeline__year {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}

.timeline__content {}

.timeline__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy-deep);
  margin-bottom: 4px;
}

.bg-dark .timeline__title { color: var(--white); }

.timeline__desc {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.65;
}

.bg-dark .timeline__desc { color: rgba(255,255,255,0.6); }

/* ============================================
   QUOTE BLOCK
   ============================================ */
.quote-block, blockquote.quote-block {
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
  border: none;
}

.quote-block::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
}

.quote-block p, .quote-block__text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white) !important;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.quote-block cite, .quote-block__author {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
  position: relative;
  z-index: 1;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta__inner, .section--cta .container > div {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* CTA on dark backgrounds */
.bg-navy .cta__heading, .bg-dark .cta__heading,
.bg-navy.section--cta h2, .bg-dark.section--cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.bg-navy .cta__text, .bg-dark .cta__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* CTA on light backgrounds */
.cta__heading {
  color: var(--navy-deep);
  margin-bottom: 1rem;
}

.cta__text {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* CTA label on light backgrounds */
.bg-cream .section__label, .bg-white .section__label {
  color: var(--gold);
}
.bg-cream .section__label::before, .bg-white .section__label::before {
  background: var(--gold);
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   STATS
   ============================================ */
.stat-block {
  text-align: center;
  padding: 32px 16px;
}

.stat-block__number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-block__label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ============================================
   DIVIDERS & ORNAMENTS
   ============================================ */
.divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--sandstone-light));
  margin: 1.5rem 0;
}

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

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 40px 0;
}

.ornament__line { width: 60px; height: 1px; background: var(--gray-300); }
.ornament__diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

/* ============================================
   SCROLL REVEAL (supports both class naming conventions)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal--left { transform: translateX(-30px); }
.reveal--left.visible, .reveal--left.revealed { transform: translateX(0); }

.reveal--right { transform: translateX(30px); }
.reveal--right.visible, .reveal--right.revealed { transform: translateX(0); }

/* Staggered delays */
.reveal-delay-1 { opacity: 0; transform: translateY(20px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s; }
.reveal-delay-2 { opacity: 0; transform: translateY(20px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s; }
.reveal-delay-3 { opacity: 0; transform: translateY(20px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s; }
.reveal-delay-4 { opacity: 0; transform: translateY(20px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s; }
.reveal-delay-5 { opacity: 0; transform: translateY(20px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s; }
.reveal-delay-6 { opacity: 0; transform: translateY(20px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s; }

.reveal-delay-1.revealed, .reveal-delay-2.revealed, .reveal-delay-3.revealed,
.reveal-delay-4.revealed, .reveal-delay-5.revealed, .reveal-delay-6.revealed,
.reveal-delay-1.visible, .reveal-delay-2.visible, .reveal-delay-3.visible,
.reveal-delay-4.visible, .reveal-delay-5.visible, .reveal-delay-6.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TABS
   ============================================ */
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.tab-btn:hover { border-color: var(--maroon); color: var(--maroon); }
.tab-btn.active { background: var(--maroon); border-color: var(--maroon); color: var(--white); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================
   FEATURE LIST
   ============================================ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.feature-list__item:hover { background: var(--cream); }

.feature-list__icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.8rem;
}

.feature-list__text h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy-deep);
  margin-bottom: 2px;
}

.feature-list__text p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* ============================================
   ARTICLE / LONG-FORM
   ============================================ */
.article-content {
  max-width: 760px;
}

.article-content h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 0.8rem; }
.article-content h3 { font-size: 1.2rem; margin-top: 2rem; margin-bottom: 0.6rem; }

.article-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.article-content blockquote {
  margin: 1.5rem 0;
  padding: 20px 28px;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-content blockquote p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 0;
}

.article-content ul, .article-content ol {
  margin: 1.2rem 0;
  padding-left: 1.2rem;
}

.article-content li {
  margin-bottom: 0.6rem;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--gray-600);
  position: relative;
  padding-left: 1rem;
}

.article-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.article-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}

.sidebar-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gray-200);
}

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 1.2rem; }

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.08);
}

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

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 60px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

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

.footer__brand h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.65;
}

.footer__heading {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

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

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

.footer__links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__newsletter p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer__newsletter-form {
  display: flex;
  gap: 6px;
}

.footer__newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.84rem;
  outline: none;
}

.footer__newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.3); }
.footer__newsletter-form input:focus { border-color: var(--gold); }

.footer__newsletter-form button {
  padding: 10px 16px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.78rem;
  transition: all var(--transition-fast);
}

.footer__newsletter-form button:hover { background: var(--gold-light); }

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 1.2rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
  font-size: 0.85rem;
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

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

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

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--maroon);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-elevated);
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

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

.back-to-top:hover {
  background: var(--maroon-deep);
  transform: translateY(-3px);
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--off-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden, .page-loader.page-loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.page-loader__emblem {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 700;
  animation: pulse-loader 1.2s ease-in-out infinite;
}

@keyframes pulse-loader {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.page-loader__bar {
  width: 100px;
  height: 2px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}

.page-loader__bar-fill {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  border-radius: 2px;
  animation: loader-bar 1.2s ease-in-out infinite;
}

@keyframes loader-bar {
  0% { width: 0; margin-left: 0; }
  50% { width: 60%; margin-left: 20%; }
  100% { width: 0; margin-left: 100%; }
}

.page-loader__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--maroon);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ============================================
   PASSWORD PAGE
   ============================================ */
body.password-page {
  background: var(--navy-deep);
  overflow: hidden;
}

.password-page__bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(91, 26, 26, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.15) 0%, transparent 50%);
}

.password-page__pattern {
  position: fixed;
  inset: 0;
  opacity: 0.03;
}

.password-page__particles {
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.password-page__particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s infinite;
}

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.password-page__card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 90%;
  max-width: 420px;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.password-page__card--shake {
  animation: shake 0.4s ease;
}

.password-page__emblem {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--maroon), var(--gold-accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 10px 40px rgba(91, 26, 26, 0.4);
}

.password-page__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.password-page__subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2rem;
}

.password-page__input-wrap {
  position: relative;
  margin-bottom: 1.2rem;
}

.password-page__input {
  width: 100%;
  padding: 16px 20px;
  padding-right: 46px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  letter-spacing: 3px;
  text-align: center;
  outline: none;
  transition: all var(--transition-smooth);
}

.password-page__input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 2px;
}

.password-page__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
}

.password-page__input.error { border-color: #E74C3C; animation: shake 0.4s ease; }
.password-page__input.success { border-color: #2ECC71; }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.password-page__toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 0.9rem;
}

.password-page__submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--maroon), var(--gold-accent));
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.password-page__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(91, 26, 26, 0.4);
}

.password-page__error {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #E74C3C;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.password-page__error.visible { opacity: 1; }

.password-page__footer {
  margin-top: 2rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
}

.password-page__success {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
}

.password-page.exit {
  animation: password-exit 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes password-exit {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .grid-4, .grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .grid-asymmetric, .grid-asymmetric--reverse,
  .leadership__grid { grid-template-columns: 1fr; gap: 30px; }

  section, .section { padding: 60px 0; }
  .container { padding: 0 24px; }
  .nav__inner { padding: 0 24px; }

  .hero__content { padding-left: 24px; padding-right: 24px; }
  .hero__stats { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid.grid-2, .grid.grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .governance-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .footer__top { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .page-hero { min-height: 40vh; }
  .page-hero__content { padding: 120px 0 40px; }

  .hero__stats { flex-direction: column; gap: 16px; }
  .hero__heading { font-size: 2rem; }

  .quote-block { padding: 24px; }
  .quote-block p { font-size: 1rem; }

  .card, .governance-card, .role-card, .highlight-card { padding: 22px; }

  .timeline { padding-left: 36px; }
  .timeline::before { left: 14px; }
  .timeline__marker { left: -28px; }
  .timeline__dot { left: -28px; }

  .section__header { margin-bottom: 2rem; }

  .password-page__card { padding: 36px 24px; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 24px; font-size: 0.68rem; }
  .footer__newsletter-form { flex-direction: column; }
  .hero__actions { flex-direction: column; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* --- Password Success Overlay --- */
.password-page__success {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  flex-direction: column;
  gap: 20px;
}

.password-page__success--visible {
  display: flex !important;
}

.password-page__success-inner {
  text-align: center;
}

.password-page__success-check {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.password-page__success-circle {
  stroke: #2ECC71;
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: success-circle 0.6s ease forwards;
}

.password-page__success-path {
  stroke: #2ECC71;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: success-check 0.4s 0.4s ease forwards;
}

@keyframes success-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes success-check {
  to { stroke-dashoffset: 0; }
}

.password-page__success-msg {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 12px;
}
