/* =============================================
   REGIONAL RESILIENCE NETWORK — v3 (hybrid)
   Palette: Warm cream + forest green + charcoal
   Fonts: Playfair Display · DM Sans · DM Mono
============================================= */

:root {
  /* Warm palette from v1 */
  --cream:    #F5EFE6;
  --off:      #FAF7F3;
  --sand:     #E8DDD0;
  --border:   #DDD5C8;
  --text:     #1E2A24;
  --muted:    #5A6B60;
  --light:    #8A9B90;

  /* Forest greens */
  --forest:   #2C4A3E;
  --sage:     #4E7A65;
  --green:    #3D9970;
  --green-mission: #0B7751;
  --green-lt: rgba(61,153,112,0.1);

  /* Earth accents */
  --earth:    #8B6F47;
  --amber:    #C4892A;

  /* Charcoal for dark sections */
  --charcoal: #1A2820;

  --font-display: 'Lexend', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;
  --max: 1080px;
  --nav: 60px;
  --r:   6px;
  --tr:  0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 16px;
}

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

.principles-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.principles-left,
.principles-right {
   flex: 1;
}

.principles-right {
   max-width: 420px; /* image width cxontrol */
   padding-top: 85px; /* a bit hacky to align with top of pentagon section, but quick and can be fixed when we rebuilt next versioon usng flex-rows */
}

/* ─── NAV ─────────────────────────────────── */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav);
  background: rgba(26, 40, 32, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-mono)
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-right: auto;
}

.nav-hex {
  color: var(--green);
  font-size: 18px;
  line-height: 1;
}
.nav-hex.sm { font-size: 14px; }

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color var(--tr);
}
.nav-links a:hover,
.nav-links a.active { color: rgba(255,255,255,0.9); }

.nav-cta {
  display: inline-block;
  padding: 8px 18px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--r);
  transition: background var(--tr);
  font-family: var(--font-body);
}
.nav-cta:hover { background: var(--sage); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

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

/* Subtle warm texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(61,153,112,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(139,111,71,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 32px 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(61,153,112,0.1);
  border: 1px solid rgba(61,153,112,0.2);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-left h1 em {
  font-style: italic;
  color: rgba(232, 221, 208, 0.7);
}

.hero-sub {
  color: rgba(245,239,230,0.55);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--r);
  transition: background var(--tr), transform var(--tr);
}
.btn-primary:hover { background: var(--sage); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(245,239,230,0.2);
  color: rgba(245,239,230,0.7);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  border-radius: var(--r);
  transition: border-color var(--tr), color var(--tr);
}
.btn-ghost:hover { border-color: rgba(245,239,230,0.45); color: var(--cream); }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hm-val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

.hm-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.3);
  display: block;
}

.hm-sep {
  width: 1px;
  height: 30px;
  background: rgba(245,239,230,0.1);
}

/* ─── HEX CLUSTER ─────────────────────────── */
.hex-cluster {
  position: relative;
  width: 100%;
  height: 400px;
}

.hex {
  position: absolute;
  width: 126px;
  height: 145px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(245,239,230,0.04);
  border: 1px solid rgba(245,239,230,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: rgba(245,239,230,0.4);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  animation: hexIn 0.6s ease forwards;
  transition: background var(--tr), color var(--tr);
}

.hex:hover {
  background: rgba(61,153,112,0.12);
  color: rgba(61,153,112,0.9);
}

.hex.accent {
  background: rgba(61,153,112,0.1);
  border-color: rgba(61,153,112,0.25);
  color: var(--green);
}

.hex.mission {
   background: rgba(11, 119, 81, 0.4);
   border-color: rgba(61,153,112,0.25);
}
   

.centre {
   font-family: var(--font-display);
   font-size: 14px;
   font-weight: 700;
   color: #F5EFE6 !important;      /* using important here becuase it's not worth the effort to reclass for just one piece of text */
}

.hex.h1 { top: 0;    left: 16px;  animation-delay: 0.3s; }
.hex.h2 { top: 0;    left: 152px; animation-delay: 0.4s; }
.hex.h3 { top: 126px; left: 84px; animation-delay: 0.5s; }
.hex.h4 { top: 126px; left: 222px; animation-delay: 0.6s; }
.hex.h5 { top: 252px; left: 16px; animation-delay: 0.7s; }
.hex.h6 { top: 252px; left: 152px; animation-delay: 0.8s; }
.hex.h7 { top: 126px; left: -54px; animation-delay: 0.9s; }

/* ─── SECTIONS ────────────────────────────── */
.section { padding: 96px 0; background: var(--off); }
.section-alt { background: var(--cream); }

.sec-hd {
  margin-bottom: 52px;
  max-width: 600px;
}

.sec-hd h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.sec-hd p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.sec-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

/* ─── PRINCIPLES — PENTAGON CLUSTER ─────────────────────────── */

.principles-section {
  overflow: hidden;
}

/* Pentagon clip-path: flat-top pointing up */
.pent-shape {
  width: 200px;
  height: 190px;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr), transform var(--tr);
  cursor: default;
  position: relative;
}

/* Accent variant */
.pent-shape--accent {
  background: rgba(61,153,112,0.07);
  border-color: rgba(61,153,112,0.25);
}
.pent-shape--accent .p-num { color: var(--green); }
.pent-shape--accent h3 { color: var(--forest); }

/* Center shape: darker, branded */
.pent-shape--center {
  background: var(--charcoal);
  border-color: rgba(61,153,112,0.3);
  width: 160px;
  height: 152px;
  top: 21px;
  clip-path: polygon(50% 100%, 0% 62%, 18% 0%, 82% 0%, 100% 62%);
}

.pent-cell:not(.pent-center):hover .pent-shape {
  background: rgba(61,153,112,0.06);
  transform: translateY(-3px);
}
.pent-cell:not(.pent-center):hover .pent-shape--accent {
  background: rgba(61,153,112,0.13);
}

/* Inner text area — clipped to safe inner box of pentagon */
.pent-inner {
  width: 64%;
  text-align: center;
  padding: 0 4px;
  
}

.pent-centre-inner {
  width: 64%;
  text-align: center;
  padding: 0 4px;
  margin-bottom: 30px;
}

.pent-shape--center .pent-inner {
  margin-top: 4px;
}

.pent-hex-icon {
  display: block;
  font-size: 22px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.pent-center-lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.55);
}

.p-num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 5px;
}

.pent-inner h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 5px;
}

.pent-inner p {
  font-size: 0.67rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Scene: absolutely positioned cluster ── */
.pent-scene {
  position: relative;
  width: 640px;
  height: 560px;
  margin: 0 auto;
}

.pent-cell {
  position: absolute;
  opacity: 0;
  animation: pentIn 0.55s ease forwards;
}

/* Pentagon radius = ~104px center-to-vertex vertically.
   For a ring of 5 around a center at (320, 280):
   angles: top=270°, upper-right=342°, lower-right=54°, lower-left=126°, upper-left=198°
   orbit radius: 196px */

.pent-center {
  left: 50%; top: 50%;
  transform: translate(-80px, -76px);
  animation-delay: 0.2s;
}

/* Top (270°) */
.pent-p1 {
  left: 50%; top: 50%;
  transform: translate(-100px, -286px);
  animation-delay: 0.35s;
}

/* Upper-right (342° = 270+72) */
.pent-p2 {
  left: 50%; top: 50%;
  transform: translate(calc(-100px + 186px), calc(-95px - 60px));
  animation-delay: 0.45s;
}

/* Lower-right (54° = 270+144) */
.pent-p3 {
  left: 50%; top: 50%;
  transform: translate(calc(-100px + 115px), calc(-95px + 160px));
  animation-delay: 0.55s;
}

/* Lower-left (126° = 270+216) */
.pent-p4 {
  left: 50%; top: 50%;
  transform: translate(calc(-100px - 115px), calc(-95px + 160px));
  animation-delay: 0.65s;
}

/* Upper-left (198° = 270+288) */
.pent-p5 {
  left: 50%; top: 50%;
  transform: translate(calc(-100px - 186px), calc(-95px - 60px));
  animation-delay: 0.75s;
}

@keyframes pentIn {
  from { opacity: 0; transform: translate(var(--tx, 0), calc(var(--ty, 0) + 12px)); }
  to   { opacity: 1; }
}

/* Override animation for each cell so transform isn't clobbered */
.pent-center { animation: pentInCenter 0.55s ease 0.2s forwards; }
.pent-p1     { animation: pentInP1 0.55s ease 0.35s forwards; }
.pent-p2     { animation: pentInP2 0.55s ease 0.45s forwards; }
.pent-p3     { animation: pentInP3 0.55s ease 0.55s forwards; }
.pent-p4     { animation: pentInP4 0.55s ease 0.65s forwards; }
.pent-p5     { animation: pentInP5 0.55s ease 0.75s forwards; }

@keyframes pentInCenter { from { opacity:0; transform: translate(-80px, calc(-76px + 10px)); } to { opacity:1; transform: translate(-80px, -76px); } }
@keyframes pentInP1     { from { opacity:0; transform: translate(-100px, calc(-286px + 12px)); } to { opacity:1; transform: translate(-100px, -286px); } }
@keyframes pentInP2     { from { opacity:0; transform: translate(calc(-100px + 186px), calc(-155px + 12px)); } to { opacity:1; transform: translate(calc(-100px + 186px), calc(-95px - 60px)); } }
@keyframes pentInP3     { from { opacity:0; transform: translate(calc(-100px + 115px), calc(-95px + 160px + 12px)); } to { opacity:1; transform: translate(calc(-100px + 115px), calc(-95px + 160px)); } }
@keyframes pentInP4     { from { opacity:0; transform: translate(calc(-100px - 115px), calc(-95px + 160px + 12px)); } to { opacity:1; transform: translate(calc(-100px - 115px), calc(-95px + 160px)); } }
@keyframes pentInP5     { from { opacity:0; transform: translate(calc(-100px - 186px), calc(-155px + 12px)); } to { opacity:1; transform: translate(calc(-100px - 186px), calc(-95px - 60px)); } }

@media (max-width: 700px) {
  .pent-scene {
    display: none;
  }
}

.principles-img {
  width: 400px;
  height: auto;
  border-radius: 8px;
  display: block;
}



/* ─── APPROACH ────────────────────────────── */
.expertise-list {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  padding-bottom: 25px;
}

.exp-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 30px;
  border-bottom: 1px solid var(--border);
  transition: background var(--tr);
}
.exp-row:last-child { border-bottom: none; }
.exp-row:hover { background: rgba(61,153,112,0.025); }

.exp-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--green-lt);
  border: 1px solid rgba(61,153,112,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}

.exp-body { flex: 1; }

.exp-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.exp-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.72;
}

.exp-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--green-lt);
  border: 1px solid rgba(61,153,112,0.15);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 2px;
}

/* ─── PROGRAMS ────────────────────────────── */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.prog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--tr), transform var(--tr);
}
.prog-card:hover { border-color: rgba(61,153,112,0.4); transform: translateY(-2px); }
.prog-card.main { border-left: 3px solid var(--green); }

.prog-type {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

.prog-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.prog-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}

.prog-callout {
  background: rgba(61,153,112,0.06);
  border: 1px solid rgba(61,153,112,0.15);
  border-radius: 5px;
  padding: 12px 14px;
  font-size: 0.83rem;
  color: var(--forest);
  line-height: 1.6;
}

.callout-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}

.prog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.prog-tags span {
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 3px 9px;
  border-radius: 100px;
}

.callout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.inline-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 22px;
}

.ic-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.ic-dot.amber { background: var(--amber); box-shadow: 0 0 0 3px rgba(196,137,42,0.15); }
.ic-dot.sage  { background: var(--sage);  box-shadow: 0 0 0 3px rgba(78,122,101,0.15); }

.inline-callout strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.inline-callout p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── HISTORY TIMELINE ────────────────────── */
.timeline {
  position: relative;
  max-width: 720px;
}

.tl-item {
  display: grid;
  grid-template-columns: 60px 32px 1fr;
  gap: 0;
  padding-bottom: 36px;
  position: relative;
}
.tl-item:last-child { padding-bottom: 0; }

.tl-yr {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--light);
  letter-spacing: 0.06em;
  padding-top: 2px;
  text-align: right;
  padding-right: 14px;
}
.tl-yr.active { color: var(--green); }

.tl-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.tl-line::after {
  content: '';
  position: absolute;
  top: 14px;
  bottom: -36px;
  width: 1px;
  background: var(--border);
  left: 50%;
  transform: translateX(-50%);
}

.tl-item:last-child .tl-line::after { display: none; }

.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand);
  border: 2px solid var(--border);
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.tl-dot.active {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(61,153,112,0.15);
}

.tl-body {
  padding-left: 16px;
  padding-bottom: 4px;
}

.tl-body h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.tl-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── TEAM ────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 22px;
  transition: border-color var(--tr), transform var(--tr);
}
.team-card:hover { border-color: rgba(61,153,112,0.4); transform: translateY(-2px); }

.team-av {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--forest), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(245,239,230,0.7);
  margin-bottom: 16px;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-note {
  font-size: 0.83rem;
  color: var(--light);
  font-style: italic;
  margin-bottom: 14px;
}

.team-email {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 12px;
  word-break: break-all;
  transition: color var(--tr);
}
.team-email:hover { color: var(--sage); }

.team-pills { display: flex; gap: 6px; flex-wrap: wrap; }

.pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--tr);
}
.pill:hover { background: var(--forest); color: white; border-color: var(--forest); }

/* Board */
.board-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.board-text h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.board-text p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.btn-sm {
  display: inline-block;
  padding: 9px 18px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--r);
  transition: background var(--tr);
}
.btn-sm:hover { background: var(--sage); }

.cycle-hd {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 14px;
}

.cy-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.cy-row:last-child { border-bottom: none; }

.cy-m {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--sage);
  background: var(--green-lt);
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* ─── CONTACT ─────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 26px;
  transition: border-color var(--tr);
}
.contact-card:hover { border-color: rgba(61,153,112,0.4); }
.contact-card.primary { border-top: 3px solid var(--green); }

.cc-role {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}

.cc-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.cc-title {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.cc-email {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--sage);
  text-decoration: none;
  transition: color var(--tr);
  word-break: break-all;
}
.cc-email:hover { color: var(--forest); }

/* ─── FOOTER ──────────────────────────────── */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(245,239,230,0.6);
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: rgba(245,239,230,0.2);
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav a {
  color: rgba(245,239,230,0.3);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--tr);
}
.footer-nav a:hover { color: rgba(245,239,230,0.7); }

/* ─── ANIMATION ───────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

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

.fade {
  opacity: 1;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .p-card.wide { grid-column: span 2; }
  .prog-grid { grid-template-columns: 1fr; }
  .callout-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .board-panel { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav);
    left: 0; right: 0;
    background: rgba(26,40,32,0.98);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .principles-grid { grid-template-columns: 1fr; }
  .p-card.wide { grid-column: span 1; }
  .hero-inner { padding: 90px 16px 60px; }
  .hero-meta { flex-wrap: wrap; gap: 14px; }
  .hm-sep { display: none; }
  .section { padding: 72px 0; }
  .exp-row { flex-wrap: wrap; }
  .exp-badge { width: fit-content; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
