/* ══════════════════════════════════════════════════════════════
   WCIPA — Western Colorado Individual Practice Association
   Concept: "Medicine Rooted in This Place"
   Palette: High-desert ochre, slate, sky, bone white
   ══════════════════════════════════════════════════════════════ */

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

:root {
  /* Page content palette */
  --bone: #f4f0e8; /* warm white / page bg */
  --bone-mid: #e8e2d4; /* section alt */
  --ink: #1a1612; /* near-black warm */
  --ink-mid: #4a4036; /* body text */
  --ink-soft: #8a7d6e; /* captions */
  /* Hero palette */
  --hero-bg: #0d1018; /* deep blue-black night sky */
  --ochre: #c47c2b; /* primary accent — warm gold-ochre */
  --ochre-l: #e8a84a; /* light ochre */
  --ochre-d: #8a5418; /* dark ochre */
  --slate: #3c4f68; /* slate blue */
  --slate-l: #6a8aab; /* light slate */
  --slate-d: #1e2e40; /* dark slate */
  --sky: #a8c4d8; /* pale sky blue */
  /* Type */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "DM Mono", monospace;
  /* Layout */
  --side: clamp(1.5rem, 5vw, 4rem);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  background: var(--bone);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ══════════════════════════════
   CURSOR
   ══════════════════════════════ */
.cursor {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--ochre);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  mix-blend-mode: screen;
}

/* ══════════════════════════════
   NAV
   ══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--side);
  height: 64px;
  transition:
    background 0.5s,
    box-shadow 0.5s;
}
.nav.scrolled {
  background: rgba(244, 240, 232, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(26, 22, 18, 0.06);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(244, 240, 232, 0.9);
  transition: color 0.4s;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}
.nav.scrolled .nav-brand {
  color: var(--ink);
}
.brand-mark {
  width: 30px;
  height: 30px;
  background: var(--ochre);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  border-radius: 4px;
  transition: background 0.3s;
  flex-shrink: 0;
}
.nav.scrolled .brand-mark {
  background: var(--slate-d);
}
.brand-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(244, 240, 232, 0.5);
  border-radius: 4px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav.scrolled .nav-links a {
  color: var(--ink-mid);
}
.nav-links a:hover {
  color: rgba(244, 240, 232, 0.9);
  background: rgba(255, 255, 255, 0.07);
}
.nav.scrolled .nav-links a:hover {
  color: var(--ink);
  background: rgba(26, 22, 18, 0.05);
}
.nav-cta {
  padding: 0.45rem 1.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(244, 240, 232, 0.7);
  border: 1px solid rgba(244, 240, 232, 0.25);
  border-radius: 2px;
  transition: all 0.3s;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s forwards;
}
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 240, 232, 1);
}
.nav.scrolled .nav-cta {
  color: var(--ink-mid);
  border-color: rgba(26, 22, 18, 0.2);
}
.nav.scrolled .nav-cta:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(244, 240, 232, 0.7);
  border-radius: 1px;
  transition: all 0.3s;
}
.nav.scrolled .nav-burger span {
  background: var(--ink);
}
.nav-burger.active span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
.nav-burger.active span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* ══ MOBILE NAV ══ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 799;
  background: rgba(13, 16, 24, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(244, 240, 232, 0.9);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mobile-nav-overlay a:hover {
  color: var(--ochre-l);
}

/* ══════════════════════════════════════════════════════════════
   FIXED HERO
   ══════════════════════════════════════════════════════════════ */
.hero-sequence {
  position: relative;
  height: 240vh;
  z-index: 1;
  pointer-events: none;
}

.hero-pin {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--hero-bg);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ─ Topographic canvas ─ */
.hero-topo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

/* ─ Vignette ─ */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 100% 100% at 50% 50%,
      transparent 20%,
      rgba(13, 16, 24, 0.5) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(13, 16, 24, 0.4) 0%,
      transparent 30%,
      transparent 70%,
      rgba(13, 16, 24, 0.6) 100%
    );
}

/* ─ Grain ─ */
.hero-grain {
  position: absolute;
  inset: -50%;
  z-index: 6;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.05;
  mix-blend-mode: overlay;
  animation: grainShift 0.9s steps(1) infinite;
}
@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-3%, 5%);
  }
  50% {
    transform: translate(4%, -2%);
  }
  75% {
    transform: translate(-5%, -4%);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* ─ Hero type ─ */
.hero-type {
  position: absolute;
  top: 50%;
  left: var(--side);
  transform: translateY(-50%);
  z-index: 5;
  will-change: opacity, transform;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.eyebrow-line {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c2d6e4;
}
.eyebrow-sep {
  color: rgba(168, 196, 216, 0.45);
  font-size: 0.65rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4.5rem, 11vw, 10.5rem);
  line-height: 0.9;
  color: rgba(244, 240, 232, 0.95);
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--ochre-l);
  font-weight: 300;
}
.ht-line {
  display: block;
  opacity: 0;
}
#htl1 {
  animation: fadeUp 0.9s 0.6s forwards;
}
#htl2 {
  animation: fadeUp 0.9s 0.75s forwards;
}
#htl3 {
  animation: fadeUp 0.9s 0.9s forwards;
}

.hero-sub {
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}
.hero-sub span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c2d6e4;
}

/* ─ Hero tagline (scroll-revealed) ─ */
.hero-tagline {
  position: absolute;
  top: 50%;
  left: var(--side);
  transform: translateY(-50%);
  z-index: 8;
  opacity: 0;
  will-change: opacity, transform;
  pointer-events: none;
}
.tagline-inner {
  max-width: 800px;
}
.tagline-kicker {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1.2rem;
}
.tagline-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: 0.88;
  color: rgba(244, 240, 232, 0.95);
  letter-spacing: -0.02em;
}
.tagline-headline span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.tagline-headline span.visible {
  opacity: 1;
  transform: translateY(0);
}
.tagline-body {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #c2d6e4;
  line-height: 1.8;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.tagline-body.visible {
  opacity: 1;
}

/* ─ Stats bar ─ */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 1.2rem var(--side);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  animation: fadeUp 0.8s 1.4s forwards;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(244, 240, 232, 0.9);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.5);
}
.stat-div {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 2rem;
}

/* ─ Scroll hint ─ */
.hero-scroll {
  position: absolute;
  right: var(--side);
  bottom: 2.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 1.6s forwards;
}
.scroll-track {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  position: absolute;
  top: -4px;
  left: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ochre);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% {
    top: -4px;
    opacity: 1;
  }
  80% {
    top: 46px;
    opacity: 1;
  }
  81% {
    opacity: 0;
  }
  82% {
    top: -4px;
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: -4px;
  }
}
.scroll-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ─ Coordinates ─ */
.hero-coords {
  position: absolute;
  top: 50%;
  right: var(--side);
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s forwards;
}
.coord-lat,
.coord-lon {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(244, 240, 232, 0.25);
}
.coord-sep {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(196, 124, 43, 0.3);
}
.coord-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ochre);
  opacity: 0.5;
  margin-top: 0.4rem;
}

/* ══════════════════════════════════════════════════════════════
   PAGE CONTENT
   ══════════════════════════════════════════════════════════════ */
.page-content {
  position: relative;
  z-index: 10;
  background: var(--bone);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -32px 64px rgba(13, 16, 24, 0.12);
}

/* ── Section numbering system ── */
.section-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--ochre);
  margin-bottom: 0.3rem;
}
.section-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ── INTRO ── */
.intro-section {
  padding: clamp(5rem, 10vw, 9rem) var(--side);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.intro-index {
  padding-top: 0.5rem;
}
.intro-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 2rem;
}
.intro-heading em {
  font-style: italic;
  color: var(--slate);
}
.intro-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 1rem;
  max-width: 520px;
}

/* ── MISSION ── */
.mission-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: clamp(6rem, 12vw, 10rem) var(--side);
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Outer blurred video */
.mission-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) saturate(0.7) brightness(0.65);
  transform: scale(1.15);
  z-index: 0;
}
.mission-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(13, 16, 24, 0.3);
}
/* Section label */
.mission-index {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-bottom: 2.5rem;
}
.mission-section .section-num {
  color: var(--ochre-l);
}
.mission-section .section-tag {
  color: #c2d6e4;
  font-weight: 500;
}
/* Window frame */
.mission-window {
  position: relative;
  z-index: 3;
  width: min(70vw, 960px);
  height: clamp(340px, 55vh, 560px);
}
.window-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 8px 32px rgba(0, 0, 0, 0.3);
}
/* Clear video inside the window — parallaxes */
.window-video {
  position: absolute;
  left: 0;
  width: 100%;
  height: 140%;
  top: -20%;
  object-fit: cover;
  will-change: transform;
}
/* Subtle darken inside window for text legibility */
.window-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(13, 16, 24, 0.2) 0%,
      rgba(13, 16, 24, 0.45) 50%,
      rgba(13, 16, 24, 0.2) 100%
    );
}
/* Text pinned inside the window */
.window-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}
.ms-quote-mark {
  position: absolute;
  top: 1rem;
  left: clamp(1rem, 3vw, 2.5rem);
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(244, 240, 232, 0.15);
  line-height: 1;
  pointer-events: none;
}
.window-text blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.4;
  color: rgba(244, 240, 232, 0.95);
  max-width: 680px;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* ── PILLARS ── */
.pillars-section {
  position: relative;
  background: var(--bone-mid);
  padding: clamp(2.5rem, 5vw, 4rem) var(--side);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.pillars-band {
  position: absolute;
  left: 0;
  right: 0;
  top: 55%;
  height: 180px;
  background: #6a5d50;
  z-index: 0;
}
.pillars-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.pillars-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.pillars-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-top: 0.8rem;
}
.pillars-grid {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.pillar-card {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(26, 22, 18, 0.06);
  box-shadow:
    0 1px 2px rgba(26, 22, 18, 0.06),
    0 4px 12px rgba(26, 22, 18, 0.08),
    0 16px 40px rgba(26, 22, 18, 0.10);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pillar-card:nth-child(1) { margin-top: 0; }
.pillar-card:nth-child(2) { margin-top: 60px; }
.pillar-card:nth-child(3) { margin-top: 120px; }
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 2px 4px rgba(26, 22, 18, 0.04),
    0 8px 20px rgba(26, 22, 18, 0.10),
    0 24px 56px rgba(26, 22, 18, 0.16);
}
.pc-img {
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.5rem;
}
.pc-img h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.pc-body {
  padding: 1.4rem 1.5rem 1.8rem;
  text-align: center;
}
.pc-body p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 1.5rem;
}


/* ── BOARD ── */
.board-section {
  background: var(--bone-mid);
  padding: clamp(3rem, 6vw, 5rem) var(--side);
  border-top: 1px solid rgba(26, 22, 18, 0.10);
}
.board-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.board-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-top: 1rem;
}
.board-note p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-mid);
  max-width: 520px;
  margin-bottom: 2rem;
}
.board-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre-d);
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(196, 124, 43, 0.3);
  border-radius: 2px;
  transition: all 0.3s;
}
.board-cta:hover {
  background: var(--ochre);
  color: #fff;
  border-color: var(--ochre);
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: rgba(244, 240, 232, 0.5);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5rem) var(--side);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: rgba(244, 240, 232, 0.9);
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(244, 240, 232, 0.4);
  line-height: 1.5;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.85);
  margin-bottom: 1rem;
}
.footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col-links li {
  font-size: 0.82rem;
  color: rgba(244, 240, 232, 0.45);
  line-height: 1.4;
}
.footer-col-links a {
  color: rgba(244, 240, 232, 0.45);
  transition: color 0.2s;
}
.footer-col-links a:hover {
  color: var(--ochre-l);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.2rem var(--side);
  font-size: 0.7rem;
  color: rgba(244, 240, 232, 0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: rgba(244, 240, 232, 0.3);
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--ochre-l);
}
.footer-credit {
  color: rgba(244, 240, 232, 0.3);
  transition: color 0.2s;
}
.footer-credit:hover {
  color: var(--ochre-l);
}

/* ══════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] {
  transition-delay: 0.12s;
}
[data-reveal][data-delay="2"] {
  transition-delay: 0.24s;
}

/* ══════════════════════════════
   ANIMATIONS
   ══════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1000px) {
  .pillars-grid {
    flex-direction: column;
    align-items: center;
  }
  .pillar-card {
    max-width: 400px;
    width: 100%;
  }
  .pillar-card:nth-child(1),
  .pillar-card:nth-child(2),
  .pillar-card:nth-child(3) {
    margin-top: 0;
  }
  .pillars-band {
    display: none;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .intro-section,
  .board-inner {
    grid-template-columns: 1fr;
  }
  .mission-bg-video {
    display: none;
  }
  .mission-section {
    background: var(--ink);
  }
  .mission-window {
    width: 90vw;
    height: clamp(280px, 50vh, 440px);
  }
  .window-video {
    height: 100%;
    top: 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .stat-div {
    display: none;
  }
}
@media (hover: none) {
  body {
    cursor: auto;
  }
  .cursor {
    display: none;
  }
}
