/* ========================================================================
   THE ARCHON INSTITUTE — Stylesheet
   Classified Elegance: Precision, Authority, Restraint
   ======================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&family=IBM+Plex+Sans:wght@300;400;500;600&display=swap');

/* --- Tokens --- */
:root {
  --navy: #0a1628;
  --navy-deep: #060e1a;
  --slate: #1a2744;
  --slate-mid: #243352;
  --silver: #8892a0;
  --silver-light: #b0b8c4;
  --gold: #c4a35a;
  --gold-dim: rgba(196, 163, 90, 0.15);
  --gold-glow: rgba(196, 163, 90, 0.08);
  --white: #ffffff;
  --off-white: #f0f1f3;
  --section-alt: #f7f8fa;
  --text-primary: #0d1520;
  --text-secondary: #4a5568;
  --text-light: #c8ced6;
  --text-muted: #6b7a8d;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-light: #dfe2e8;

  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1200px;
  --container-narrow: 900px;
  --nav-height: 72px;
  --section-pad: 100px;
  --section-pad-mobile: 60px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Utility --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p + p { margin-top: 1em; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 640px;
}

.section-subtitle--light {
  color: var(--silver);
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s 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; }

/* ========================================================================
   NAVIGATION
   ======================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav--scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.3);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
}

.nav__logo-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(196, 163, 90, 0.3);
}

.nav__links {
  position: absolute;
  right: 32px;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__link {
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--silver-light);
  transition: color 0.25s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__link--active {
  color: var(--white);
}

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

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--silver-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: saturate(0.3);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.4) 0%, rgba(10, 22, 40, 0.85) 100%),
    linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, transparent 60%);
}

/* Blueprint grid texture */
.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(196, 163, 90, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 163, 90, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 80px) 32px 80px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.2s forwards;
}

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

.hero__title {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.35s forwards;
}

.hero__description {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--silver);
  max-width: 560px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.65s forwards;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--silver);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.6; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); transform-origin: top; }
}

/* ========================================================================
   BUTTONS
   ======================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
}

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

.btn--primary:hover {
  background: #d4b36a;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(196, 163, 90, 0.25);
}

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

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

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

.btn--dark:hover {
  background: var(--slate);
  transform: translateY(-1px);
}

.btn__arrow {
  transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ========================================================================
   SECTIONS
   ======================================================================== */
.section {
  padding: var(--section-pad) 0;
}

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

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

.section--alt {
  background: var(--section-alt);
}

.section__header {
  margin-bottom: 64px;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section-label {
  justify-content: center;
}

.section__header--center .section-label::before {
  display: none;
}

.section__header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Horizontal rule accent */
.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 40px 0;
}

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

/* ========================================================================
   PAGE HEADER (interior pages)
   ======================================================================== */
.page-header {
  position: relative;
  padding: calc(var(--nav-height) + 60px) 0 60px;
  background: var(--navy);
  overflow: hidden;
}

.page-header__grid {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(196, 163, 90, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 163, 90, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.page-header__title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.page-header__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--silver);
  max-width: 600px;
  line-height: 1.7;
}

.page-header__breadcrumb {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-header__breadcrumb a {
  color: var(--gold);
  transition: color 0.2s ease;
}

.page-header__breadcrumb a:hover {
  color: #d4b36a;
}

.page-header__breadcrumb span {
  color: var(--text-muted);
}

/* ========================================================================
   CAPABILITY CARDS
   ======================================================================== */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.capability-card {
  position: relative;
  padding: 48px 40px;
  background: var(--slate);
  transition: background 0.4s ease;
  overflow: hidden;
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.capability-card:hover {
  background: var(--slate-mid);
}

.capability-card:hover::before {
  transform: scaleX(1);
}

.capability-card__number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.7;
}

.capability-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.capability-card__text {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
}

.capability-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 163, 90, 0.3);
  color: var(--gold);
}

.capability-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
}

/* Expanded capability (for capabilities page) */
.capability-expanded {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border-light);
}

.capability-expanded:last-child {
  border-bottom: none;
}

.capability-expanded__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.capability-expanded__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.capability-expanded__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.capability-expanded__title {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--navy);
}

.capability-expanded__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.capability-expanded__text p + p {
  margin-top: 1.2em;
}

/* ========================================================================
   LEADERSHIP GRID
   ======================================================================== */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px 32px;
}

.leader-card {
  text-align: center;
}

.leader-card__photo-wrap {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--slate);
}

.leader-card__photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 1px solid rgba(196, 163, 90, 0.15);
  pointer-events: none;
}

.leader-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: filter 0.4s ease, transform 0.4s var(--ease-out);
}

.leader-card:hover .leader-card__photo {
  filter: saturate(1);
  transform: scale(1.03);
}

.leader-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.leader-card__title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.leader-card__bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

.leader-card__education {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 8px;
}

/* Leadership on dark backgrounds */
.section--dark .leader-card__name {
  color: var(--white);
}

.section--dark .leader-card__bio {
  color: var(--silver);
}

.section--dark .leader-card__education {
  color: var(--text-muted);
}

/* Secondary leadership — compact */
.leadership-grid--secondary {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px 24px;
}

.leadership-grid--secondary .leader-card__photo-wrap {
  width: 160px;
  height: 160px;
}

.leadership-grid--secondary .leader-card__name {
  font-size: 1rem;
}

/* ========================================================================
   QUOTE / MISSION BLOCK
   ======================================================================== */
.quote-block {
  position: relative;
  padding: 80px 0;
  text-align: center;
}

.quote-block__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 24px;
}

.quote-block__attribution {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ========================================================================
   STATS ROW
   ======================================================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stat {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}

.stat:last-child {
  border-right: none;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ========================================================================
   FACILITIES / LOCATION CARDS
   ======================================================================== */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}

.facility-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(196, 163, 90, 0.08);
}

.facility-card__location {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.facility-card__function {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.facility-card__tag {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  background: var(--gold-glow);
}

/* ========================================================================
   CONTACT
   ======================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-block {
  margin-bottom: 40px;
}

.contact-block__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  min-width: 140px;
  letter-spacing: 0.02em;
}

.contact-item__value {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.contact-item__value a {
  color: var(--slate-mid);
  border-bottom: 1px solid var(--gold-dim);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-item__value a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ========================================================================
   LEADERSHIP PREVIEW (home page)
   ======================================================================== */
.leadership-preview {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.leadership-preview .leader-card__photo-wrap {
  width: 140px;
  height: 140px;
}

/* ========================================================================
   CTA SECTION
   ======================================================================== */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: var(--navy-deep);
  text-align: center;
  overflow: hidden;
}

.cta-section__grid {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image:
    linear-gradient(rgba(196, 163, 90, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 163, 90, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-section__content {
  position: relative;
  z-index: 2;
}

.cta-section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section__text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--silver);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  position: relative;
  background: var(--navy-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 80px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.footer__logo-mark {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--gold);
}

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

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--white);
}

.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: var(--silver-light);
}

.footer__fiction {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 32px;
  background: #f59e0b;
  color: #000;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.footer__fiction a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.footer__fiction a:hover {
  color: #1a1a1a;
}

/* ========================================================================
   ABOUT PAGE — Timeline
   ======================================================================== */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-light);
}

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

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

.timeline__item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 6px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline__text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================================================
   KEY FACTS
   ======================================================================== */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.fact-card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  text-align: center;
}

.fact-card__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.fact-card__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ========================================================================
   PROSE CONTENT
   ======================================================================== */
.prose {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.prose p + p {
  margin-top: 1.4em;
}

.prose h3 {
  color: var(--navy);
  margin-top: 2em;
  margin-bottom: 0.8em;
}

/* ========================================================================
   EVENT PAGES
   ======================================================================== */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
}

.event-detail {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
}

.event-detail__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.event-detail__value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
}

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

.highlight {
  padding: 32px;
  border-left: 2px solid var(--gold);
}

.highlight__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.highlight__text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table thead th {
  padding: 12px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border-light);
}

.schedule-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.schedule-table tbody td:first-child {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  width: 140px;
}

.schedule-note {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-dim);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.schedule-note a {
  color: var(--slate-mid);
  border-bottom: 1px solid var(--gold-dim);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.schedule-note a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ========================================================================
   NEWS / PRESS RELEASES
   ======================================================================== */
.press-index {
  display: grid;
  gap: 0;
}

.press-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s ease;
}

.press-card:first-child {
  padding-top: 0;
}

.press-card__date {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.press-card__body {
  display: block;
}

.press-card__headline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.press-card a:hover .press-card__headline {
  color: var(--gold);
}

.press-card__excerpt {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.press-release {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.press-release:last-child {
  border-bottom: none;
}

.press-release__date {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.press-release__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 32px;
  max-width: 700px;
}

.press-release__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 800px;
}

.press-release__body p + p {
  margin-top: 1.4em;
}

.press-release__body .dateline {
  font-weight: 600;
  color: var(--text-primary);
}

.press-release__boilerplate {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  max-width: 800px;
}

.press-release__boilerplate h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.press-release__boilerplate p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
}

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

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

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

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

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

  .stat:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-mobile);
    --nav-height: 64px;
  }

  .container, .container--narrow {
    padding: 0 20px;
  }

  /* Nav mobile — remove backdrop-filter so position:fixed works on children */
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--navy);
  }

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

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    overflow-y: auto;
  }

  .nav__links--open {
    transform: translateX(0);
  }

  .nav__link {
    padding: 16px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav__link::after {
    display: none;
  }

  /* Hero mobile */
  .hero {
    min-height: 90vh;
  }

  .hero__content {
    padding: calc(var(--nav-height) + 48px) 20px 48px;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__scroll-indicator {
    display: none;
  }

  /* Cards */
  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    padding: 32px 24px;
  }

  /* Leadership */
  .leadership-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 32px 20px;
  }

  .leader-card__photo-wrap {
    width: 160px;
    height: 160px;
  }

  .leadership-grid--secondary .leader-card__photo-wrap {
    width: 130px;
    height: 130px;
  }

  /* Stats */
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    padding: 24px 16px;
  }

  .stat__number {
    font-size: 1.8rem;
  }

  /* Facilities */
  .facilities-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  /* Leadership preview */
  .leadership-preview {
    gap: 32px;
  }

  /* CTA */
  .cta-section {
    padding: 64px 0;
  }

  /* Page header */
  .page-header {
    padding: calc(var(--nav-height) + 40px) 0 40px;
  }

  /* Contact */
  .contact-item {
    flex-direction: column;
    gap: 4px;
  }

  .contact-item__label {
    min-width: auto;
  }

  /* Event */
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  /* Press releases */
  .press-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .stat:last-child {
    border-bottom: none;
  }

  .hero__actions {
    flex-direction: column;
  }

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

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

  .leadership-preview {
    flex-direction: column;
    align-items: center;
  }
}

/* --- Fictional-content disclaimer (visually hidden, readable by crawlers) --- */
.fictional-disclaimer {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
