/* =============================================================
   ImmersivePoint — Main Stylesheet v1.0.0
   ============================================================= */

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Exo+2:ital,wght@0,200;0,300;0,400;0,700;0,900;1,300&family=Bebas+Neue&family=Space+Mono:wght@400;700&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300&display=swap');

/* VARIABLES */
:root {
  /* New brand palette — Appalachian Signal */
  --coal:  #050D1C;   /* Deep Space — was #0a0a0b */
  --iron:  #0A1628;   /* Navy */
  --steel: #112240;   /* Appalachian Slate */
  --ember: #00D4FF;   /* Electric Blue — primary */
  --amber: #F5A623;   /* Forge Gold — accent */
  --gold:  #FFD166;   /* Gold Light */
  --cyan:  #00D4FF;   /* same as ember */
  --mist:  #EEF4FF;   /* Cloud White */
  --fog:   #7A90B8;   /* Ridge Mist */
  --cream: #EEF4FF;   /* Cloud White */
  --rust:  #2A4FCC;   /* Violet (unused but kept) */
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  background: var(--coal);
  color: var(--mist);
  font-family: 'Exo 2', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* =============================================================
   NAVIGATION
   ============================================================= */

#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: linear-gradient(to bottom, rgba(10,10,11,0.97), transparent);
  border-bottom: 1px solid rgba(232,98,26,0.12);
  transition: background 0.3s, border-color 0.3s;
}

#site-nav.scrolled {
  background: rgba(10,10,11,0.98);
  border-bottom-color: rgba(232,98,26,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fog);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }

/* WordPress menu wraps in ul — target it */
#site-nav .menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

#site-nav .menu a {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fog);
  text-decoration: none;
  transition: color 0.2s;
}

#site-nav .menu a:hover { color: var(--cream); }

.nav-cta {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--ember);
  color: #fff;
  padding: 0.65rem 1.6rem;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  z-index: 1001;
}

.nav-cta:hover {
  background: var(--amber);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

.nav-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Admin bar offset */
.admin-bar #site-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar #site-nav { top: 46px; }
}

/* =============================================================
   HERO
   ============================================================= */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,212,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,166,35,0.06) 0%, transparent 50%),
    linear-gradient(135deg, #050D1C 0%, #0A1628 50%, #050D1C 100%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  from { background-position: 0 0; }
  to   { background-position: 0 60px; }
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 4rem 6rem 5rem;
}

.hero-eyebrow {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s both;
}

.hero-title {
  font-family: 'Orbitron', 'Arial Black', Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--cream);
  animation: fadeUp 0.6s 0.2s both;
}

.hero-title .accent {
  color: var(--ember);
  display: block;
}

.hero-title .accent2 {
  color: var(--amber);
  font-style: italic;
  font-family: 'Exo 2', Arial, sans-serif;
  font-weight: 200;
  font-size: 0.7em;
  display: block;
  letter-spacing: 0.08em;
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--fog);
  margin: 2rem 0 2.5rem;
  max-width: 460px;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s both;
}

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 4rem;
  animation: fadeIn 0.8s 0.3s both;
}

/* Orb wrapper — positions orb + floating tags together */
.orb-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
}

/* Data point tags — absolutely positioned relative to orb-wrapper */
.data-point {
  position: absolute;
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--ember);
  opacity: 0.75;
  white-space: nowrap;
  pointer-events: none;
}

.dp-1 { top: 8%;   right: -10%; animation: dataFloat 4s ease-in-out 0s infinite; }
.dp-2 { bottom: 18%; left: -12%; animation: dataFloat 4s ease-in-out 1s infinite; color: var(--amber); }
.dp-3 { top: 55%;  right: -8%;  animation: dataFloat 4s ease-in-out 2s infinite; }

/* VR Orb — fills the orb-wrapper */
.vr-orb {
  position: absolute;
  inset: 0;
}

/* Update orb colors to new brand palette */

.orb-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.2);
  animation: orbSpin 8s linear infinite;
}

.orb-ring:nth-child(2) {
  inset: 22px;
  border-color: rgba(245,166,35,0.15);
  animation-duration: 12s;
  animation-direction: reverse;
}

.orb-ring:nth-child(3) {
  inset: 44px;
  border-color: rgba(0,212,255,0.1);
  animation-duration: 6s;
  border-style: dashed;
}

@keyframes orbSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.orb-core {
  position: absolute;
  inset: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(0,212,255,0.2), rgba(5,13,28,0.95) 70%);
  border: 1px solid rgba(0,212,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(0,212,255,0.1), inset 0 0 40px rgba(0,212,255,0.04);
}

.orb-icon {
  font-size: 3.5rem;
  animation: orbPulse 3s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50%       { transform: scale(1.08); opacity: 1; }
}

@keyframes dataFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(0,212,255,0.15);
  padding-top: 2rem;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Orbitron', 'Arial Black', sans-serif;
  font-size: 2.2rem;
  color: var(--amber);
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
  display: block;
  margin-top: 0.3rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog);
  opacity: 0.5;
  animation: fadeIn 0.6s 0.8s both;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--ember), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* =============================================================
   MISSION STRIP (MARQUEE)
   ============================================================= */

.mission-strip {
  background: linear-gradient(90deg, #00D4FF, #00AADD);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.marquee-item {
  font-family: 'Orbitron', 'Arial Black', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  color: #fff;
  flex-shrink: 0;
}

.marquee-sep {
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   SHARED SECTION STYLES
   ============================================================= */

.section-block { position: relative; overflow: hidden; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 3rem;
}

.section-label {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: 'Orbitron', 'Arial Black', Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 1.05rem;
  color: var(--fog);
  max-width: 600px;
  line-height: 1.8;
}

.section-body p + p { margin-top: 1.2rem; }

/* BUTTONS */
.btn-primary {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--ember);
  color: #fff;
  border: none;
  padding: 1rem 2.2rem;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-primary:hover { background: var(--amber); transform: translateY(-2px); color: #fff; }

.btn-ghost {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: var(--fog);
  border: 1px solid rgba(160,154,142,0.3);
  padding: 1rem 2.2rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover { color: var(--cream); border-color: var(--ember); }

/* SCROLL REVEAL */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-hidden { opacity: 0; transform: translateY(36px); }
.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; }

/* =============================================================
   ABOUT
   ============================================================= */

.about { background: var(--iron); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Visual column — clean vertical stack */
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}

.about-card {
  background: var(--steel);
  border: 1px solid rgba(0,212,255,0.12);
  border-left: 4px solid rgba(0,212,255,0.5);
  padding: 1.5rem 1.8rem;
  width: 100%;
  transition: border-left-color 0.3s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  position: static;
}

.about-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.about-card--1 { border-left-color: rgba(0,212,255,0.6); }
.about-card--2 { border-left-color: rgba(245,166,35,0.7); }
.about-card--3 { border-left-color: rgba(0,212,255,0.35); }

.card-icon  { font-size: 1.9rem; margin-bottom: 0.7rem; }
.card-title {
  font-family: 'Orbitron', 'Arial Black', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--amber);
  margin-bottom: 0.4rem;
}
.card-text { font-size: 0.9rem; color: var(--fog); line-height: 1.6; }

.appalachian-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(201,162,39,0.3);
  padding: 0.8rem 1.4rem;
  margin-top: 2rem;
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================================
   PROGRAMS
   ============================================================= */

.programs { background: var(--coal); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
  background: rgba(232,98,26,0.07);
}

.program-card {
  background: var(--coal);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.program-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,98,26,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.program-card:hover::before { opacity: 1; }
.program-card:hover { background: var(--iron); }

.program-num {
  font-family: 'Orbitron', 'Arial Black', sans-serif;
  font-size: 3.5rem;
  color: rgba(232,98,26,0.08);
  line-height: 1;
  margin-bottom: -0.5rem;
}

.program-icon { font-size: 2.1rem; margin-bottom: 1rem; }

.program-name {
  font-family: 'Orbitron', 'Arial Black', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.program-tag {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1rem;
  display: block;
}

.program-desc { font-size: 0.9rem; color: var(--fog); line-height: 1.7; }

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  text-decoration: none;
  transition: gap 0.2s;
}

.program-link:hover { gap: 0.8rem; }

/* =============================================================
   IMPACT
   ============================================================= */

.impact {
  background: var(--iron);
  border-top: 1px solid rgba(232,98,26,0.08);
  border-bottom: 1px solid rgba(232,98,26,0.08);
}

.impact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.impact-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.impact-num {
  padding: 1.8rem;
  border: 1px solid rgba(232,98,26,0.12);
  position: relative;
}

.impact-num::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--ember);
}

.big-num {
  font-family: 'Orbitron', 'Arial Black', sans-serif;
  font-size: 2.8rem;
  color: var(--amber);
  line-height: 1;
  display: block;
}

.num-label {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fog);
  margin-top: 0.3rem;
  display: block;
}

.testimonial-block {
  border-left: 2px solid var(--ember);
  padding-left: 2rem;
  margin-top: 3rem;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
}

.testimonial-author {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--ember);
  margin-top: 1rem;
  text-transform: uppercase;
  display: block;
}

/* =============================================================
   WHO WE SERVE
   ============================================================= */

.serve { background: var(--coal); }

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.serve-card {
  padding: 2rem;
  background: var(--iron);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.serve-card:hover { border-color: var(--ember); transform: translateY(-4px); }

.serve-emoji { font-size: 2.4rem; margin-bottom: 1rem; display: block; }

.serve-title {
  font-family: 'Orbitron', 'Arial Black', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.serve-text { font-size: 0.88rem; color: var(--fog); line-height: 1.65; }

/* =============================================================
   PARTNERSHIPS / ECOSYSTEM
   ============================================================= */

.ecosystem { background: var(--iron); }

.ecosystem-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: end;
}

.partners-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: rgba(232,98,26,0.07);
}

.partner-cell {
  background: var(--iron);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
  transition: background 0.2s;
}

.partner-cell:hover { background: var(--steel); }

.partner-icon { font-size: 1.8rem; }

.partner-name {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fog);
}

.partner-type {
  font-size: 0.78rem;
  color: rgba(160,154,142,0.5);
  font-style: italic;
}

/* =============================================================
   PRICING
   ============================================================= */

.pricing { background: var(--coal); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(232,98,26,0.07);
  margin-top: 4rem;
}

.price-card {
  background: var(--coal);
  padding: 2.5rem;
  transition: background 0.3s;
}

.price-card.featured {
  background: var(--iron);
  border-top: 2px solid var(--ember);
}

.price-badge {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ember);
  padding: 0.3rem 0.8rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.price-tier {
  font-family: 'Orbitron', 'Arial Black', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: 'Orbitron', 'Arial Black', sans-serif;
  font-size: 3.2rem;
  color: var(--amber);
  line-height: 1;
}

.price-period { font-size: 0.9rem; color: var(--fog); margin-left: 0.3rem; font-style: italic; }

.price-desc { font-size: 0.88rem; color: var(--fog); margin: 1.2rem 0; font-style: italic; }

.price-features { list-style: none; }

.price-features li {
  font-size: 0.88rem;
  color: var(--fog);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(160,154,142,0.07);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.price-features li::before { content: '→'; color: var(--ember); flex-shrink: 0; }
.price-features li:last-child { border-bottom: none; }

.price-cta {
  display: block;
  margin-top: 2rem;
  text-align: center;
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem;
  border: 1px solid rgba(232,98,26,0.3);
  color: var(--ember);
  text-decoration: none;
  transition: all 0.2s;
}

.price-card.featured .price-cta { background: var(--ember); border-color: var(--ember); color: #fff; }
.price-cta:hover { background: var(--ember); border-color: var(--ember); color: #fff; }

/* =============================================================
   CONTACT
   ============================================================= */

.contact { background: var(--iron); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.info-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.info-icon { font-size: 1.4rem; flex-shrink: 0; }

.info-label {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.2rem;
  display: block;
}

.info-value { font-size: 1rem; color: var(--fog); }
.info-value a { color: var(--fog); text-decoration: none; transition: color 0.2s; }
.info-value a:hover { color: var(--cream); }
.info-value small { font-size: 0.82rem; color: rgba(160,154,142,0.45); display: block; margin-top: 0.2rem; }

.hours-table { margin-top: 2.5rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(160,154,142,0.07);
  font-size: 0.9rem;
}

.hours-day  { color: var(--cream); font-weight: 600; }
.hours-time { color: var(--fog); font-style: italic; }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
}

.form-input {
  background: var(--coal);
  border: 1px solid rgba(160,154,142,0.15);
  padding: 0.9rem 1.2rem;
  color: var(--cream);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-input:focus { border-color: var(--ember); }
.form-input::placeholder { color: rgba(160,154,142,0.4); }

textarea.form-input { height: 130px; resize: vertical; }

select.form-input option { background: var(--coal); color: var(--cream); }

.form-success {
  color: var(--amber);
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  display: none;
}

.form-error {
  color: #e84040;
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  display: none;
}

/* =============================================================
   FOOTER
   ============================================================= */

#site-footer {
  background: var(--coal);
  border-top: 1px solid rgba(232,98,26,0.1);
  padding: 4rem 3rem 2rem;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(160,154,142,0.07);
  margin-bottom: 2rem;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-brand .logo img {
  height: 58px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--fog);
  font-style: italic;
  line-height: 1.7;
}

.footer-legal {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(160,154,142,0.3);
  margin-top: 1.5rem;
  line-height: 1.8;
}

.footer-col h4 {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col ul li a,
.footer-col ul a {
  font-size: 0.9rem;
  color: var(--fog);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover,
.footer-col ul a:hover { color: var(--cream); }

/* WordPress nav fallback in footer */
.footer-col .menu { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col .menu a { font-size: 0.9rem; color: var(--fog); text-decoration: none; transition: color 0.2s; }
.footer-col .menu a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(160,154,142,0.3);
}

/* =============================================================
   KEYFRAMES
   ============================================================= */

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

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

/* =============================================================
   WORDPRESS SPECIFIC
   ============================================================= */

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.alignleft  { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }

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

@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-wall { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  /* Nav mobile */
  .nav-toggle { display: flex; }
  
  .nav-links,
  #site-nav .menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,11,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  
  .nav-links.is-open,
  #site-nav .menu.is-open { display: flex; }
  
  .nav-links a,
  #site-nav .menu a { font-size: 1.1rem; }

  #site-nav { padding: 1rem 1.5rem; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 4rem; }
  .hero-right { display: none; }
  .hero-left { padding: 8rem 2rem 4rem; }

  /* Grids */
  .about-grid,
  .impact-layout,
  .contact-grid,
  .ecosystem-intro { grid-template-columns: 1fr; gap: 3rem; }

  /* About cards are already full width — nothing extra needed on mobile */
  .programs-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .partners-wall { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .section-inner { padding: 4rem 1.5rem; }

  .impact-layout .impact-numbers { margin-top: 2rem; }
}

@media (max-width: 480px) {
  .serve-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
  .impact-numbers { grid-template-columns: 1fr 1fr; }
}
