/* ============================================================
   HUMAN FIRST — Global Design System
   Brand: Vivid Vermilion #FF6020 | Dark Charcoal #2F2F2F
   Fonts: Orbitron (display) + Inter (body)
   Note: Orbitron used as web-compatible substitute for
         Microgramma Extd D Bold. Swap @font-face when
         licensed Microgramma web font file is available.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --vv:   #FF6020;
  --bo:   #CC5500;
  --clg:  #E2E6EA;
  --dc:   #2F2F2F;
  --white:#FFFFFF;

  --font-display: 'Orbitron', 'Arial Black', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius: 4px;
  --transition: 240ms ease;

  --max-w: 1200px;
  --pad-x: clamp(20px, 5vw, 80px);
  --section-y: clamp(64px, 9vw, 120px);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dc);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.section {
  padding-block: var(--section-y);
}
.section--dark  { background: var(--dc); color: var(--white); }
.section--grey  { background: var(--clg); }
.section--white { background: var(--white); }
.section--vv    { background: var(--vv); color: var(--white); }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vv);
  margin-bottom: 16px;
  display: block;
}
.section--dark .eyebrow { color: var(--vv); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1rem; letter-spacing: 0.05em; }

.display-xl {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

p {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.75;
  color: inherit;
}
.lead {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.65;
  font-weight: 400;
  max-width: 68ch;
}
.section--dark p, .section--dark .lead { color: rgba(255,255,255,0.82); }
.section--vv p, .section--vv .lead { color: rgba(255,255,255,0.9); }

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--vv);
  border-left: 4px solid var(--vv);
  padding-left: 24px;
  margin-block: 40px;
  line-height: 1.4;
}
.section--dark .pull-quote { color: var(--vv); border-color: var(--vv); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--vv);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--bo);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--dc);
  border: 2px solid var(--dc);
}
.btn-secondary:hover {
  background: var(--dc);
  color: var(--white);
}
.section--dark .btn-secondary {
  color: var(--white);
  border-color: var(--white);
}
.section--dark .btn-secondary:hover {
  background: var(--white);
  color: var(--dc);
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  align-items: center;
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dc);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.nav-logo img {
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--vv);
  transition: right var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-cta {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--vv);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--bo) !important; color: var(--white) !important; }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  background: var(--dc);
  padding: 24px var(--pad-x) 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--vv); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  padding-top: calc(72px + var(--section-y));
  padding-bottom: var(--section-y);
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero--dark {
  background: var(--dc);
  color: var(--white);
}
.hero--medium {
  min-height: 56vh;
}
.hero-inner {
  display: grid;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hero-inner--split {
  grid-template-columns: 1fr 1fr;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vv);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--vv);
  flex-shrink: 0;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero .lead {
  margin-bottom: 0;
  max-width: 60ch;
}
.hero--dark .lead { color: rgba(255,255,255,0.8); }

/* ── PILLAR STRIP ─────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.pillar {
  padding: 48px 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.pillar:last-child { border-right: none; }
.pillar-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--vv);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar h4 {
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.pillar p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ── TWO COLUMN CONTENT ──────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
.two-col--wide { grid-template-columns: 1.15fr 1fr; }

/* ── SERVICES GRID ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--clg);
  border: 1px solid var(--clg);
}
.service-card {
  background: var(--white);
  padding: 40px 36px;
  transition: background var(--transition);
}
.service-card:hover {
  background: var(--dc);
  color: var(--white);
}
.service-card:hover .service-tag { color: var(--vv); }
.service-card:hover p { color: rgba(255,255,255,0.8); }
.service-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--vv);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(47,47,47,0.75);
  transition: color var(--transition);
}
.service-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(47,47,47,0.4);
  transition: color var(--transition);
}

/* ── SERVICE PILL STRIP ──────────────────────────────────── */
.pill-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.pill {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 2px solid var(--dc);
  border-radius: var(--radius);
  color: var(--dc);
  transition: all var(--transition);
  text-decoration: none;
}
.pill:hover {
  background: var(--vv);
  border-color: var(--vv);
  color: var(--white);
}

/* ── VALUES ──────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
}
.value-card {
  padding: 48px 40px;
  background: rgba(255,255,255,0.04);
  transition: background var(--transition);
}
.value-card:hover { background: rgba(255,96,32,0.12); }
.value-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,96,32,0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.value-card h3 {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ── TEAM ────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--clg);
}
.team-card {
  background: var(--white);
  padding: 40px 32px;
}
.team-card--director {
  grid-column: 1 / -1;
  background: var(--dc);
  color: var(--white);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--vv);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.team-avatar--large {
  width: 120px;
  height: 120px;
  font-size: 2rem;
}
.team-card--director .team-avatar { background: var(--vv); }
.team-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--vv);
  margin-bottom: 16px;
}
.team-card--director .team-role { color: var(--vv); }
.team-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(47,47,47,0.75);
}
.team-card--director p { color: rgba(255,255,255,0.78); }

/* ── CALLOUT STRIP ───────────────────────────────────────── */
.callout-strip {
  background: var(--vv);
  padding: 56px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.callout-strip h3 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--white);
  max-width: 60ch;
}
.callout-strip .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}
.callout-strip .btn-secondary:hover {
  background: var(--white);
  color: var(--vv);
}

/* ── COORDINATOR CALLOUT ─────────────────────────────────── */
.coordinator-box {
  background: var(--dc);
  color: var(--white);
  padding: 56px 48px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.coordinator-box h3 { color: var(--white); margin-bottom: 16px; }
.coordinator-box p { color: rgba(255,255,255,0.78); font-size: 0.95rem; max-width: 56ch; }
.coordinator-details {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.coordinator-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.detail-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vv);
  white-space: nowrap;
  padding-top: 2px;
  min-width: 130px;
}
.detail-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ── CIRCLE SQUARE BOX ───────────────────────────────────── */
.cs-box {
  border: 2px solid var(--clg);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  border-radius: var(--radius);
}
.cs-icon {
  width: 56px;
  height: 56px;
  background: var(--vv);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--white);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.cs-box p { font-size: 0.9rem; color: rgba(47,47,47,0.78); max-width: 64ch; }
.cs-box a { color: var(--vv); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: var(--dc);
  color: var(--white);
  text-align: center;
  padding-block: clamp(72px, 10vw, 120px);
}
.cta-section h2 { color: var(--white); margin-bottom: 20px; }
.cta-section .lead { color: rgba(255,255,255,0.78); margin-inline: auto; }
.cta-section .btn-group { justify-content: center; }

/* ── FORMS ───────────────────────────────────────────────── */
.form-section {
  background: var(--white);
}
.form-container {
  max-width: 820px;
  margin-inline: auto;
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dc);
  margin-bottom: 8px;
}
.form-label .req { color: var(--vv); margin-left: 2px; }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--clg);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--dc);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--vv);
  box-shadow: 0 0 0 3px rgba(255,96,32,0.12);
}
.form-textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232F2F2F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-hint {
  font-size: 0.8rem;
  color: rgba(47,47,47,0.5);
  margin-top: 6px;
  line-height: 1.5;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-section-header {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1.5px solid var(--clg);
  margin-bottom: 32px;
}
.form-section-header:first-of-type {
  padding-top: 0;
  border-top: none;
  margin-top: 0;
}
.form-section-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dc);
  margin-bottom: 6px;
}
.form-section-desc {
  font-size: 0.85rem;
  color: rgba(47,47,47,0.6);
}
.form-radio-group,
.form-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.radio-label,
.check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  cursor: pointer;
}
.radio-label input,
.check-label input {
  accent-color: var(--vv);
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.form-consent {
  background: var(--clg);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 28px;
}
.form-consent p {
  font-size: 0.88rem;
  color: rgba(47,47,47,0.8);
  line-height: 1.65;
}
.form-submit {
  text-align: center;
}
.form-submit .btn {
  min-width: 240px;
  justify-content: center;
  padding: 18px 36px;
  font-size: 0.8rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success h3 {
  color: var(--vv);
  margin-bottom: 16px;
}
.form-success p { color: rgba(47,47,47,0.7); }

/* ── CONTACT CARDS ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--clg);
}
.contact-card {
  background: var(--white);
  padding: 44px 40px;
}
.contact-card--dark {
  background: var(--dc);
  color: var(--white);
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,96,32,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contact-card--dark .contact-icon { background: rgba(255,96,32,0.2); }
.contact-icon svg { width: 20px; height: 20px; stroke: var(--vv); fill: none; stroke-width: 2; }
.contact-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vv);
  margin-bottom: 8px;
}
.contact-value {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.8vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--dc);
  margin-bottom: 8px;
  line-height: 1.3;
}
.contact-card--dark .contact-value { color: var(--white); }
.contact-card p {
  font-size: 0.88rem;
  color: rgba(47,47,47,0.65);
  line-height: 1.6;
}
.contact-card--dark p { color: rgba(255,255,255,0.65); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dc);
  color: var(--white);
  padding-top: 72px;
  padding-bottom: 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-col img {
  height: 28px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vv);
  margin-bottom: 20px;
}
.footer-contact a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-social:hover { color: var(--white); }
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-acknowledgement {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 70ch;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

/* ── STAT STRIP ──────────────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-block: 64px;
}
.stat-item {
  padding: 40px 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--vv);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.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; }

/* ── SKIP LINK (A11Y) ────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--vv);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .pillar:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .coordinator-box { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card--director { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-y: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { min-height: 80vh; }
  .hero-inner--split { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse { direction: ltr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card--director { grid-template-columns: 1fr; text-align: left; }
  .callout-strip { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .cs-box { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .display-xl { font-size: 2.4rem; }
  .pillar { border-right: none !important; }
  .pillars { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
}

/* ── UTILITY ─────────────────────────────────────────────── */
.text-vv { color: var(--vv); }
.text-white { color: var(--white); }
.text-dc { color: var(--dc); }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── PAGE HERO VARIANTS ──────────────────────────────────── */
.page-hero {
  background: var(--dc);
  padding-top: calc(72px + 80px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,96,32,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 24px; }
.page-hero .lead { color: rgba(255,255,255,0.78); max-width: 64ch; }

/* ── PHOTO TREATMENTS ─────────────────────────────────────── */

/* Hero with photo background */
.hero--photo {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(47,47,47,0.92) 0%,
    rgba(47,47,47,0.72) 55%,
    rgba(47,47,47,0.48) 100%
  );
  z-index: 0;
  pointer-events: none;
}
/* Brand tint layer — creates the orange wash effect on photos */
.hero--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,96,32,0.14);
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}
.hero--photo .container,
.hero--photo .hero-inner { position: relative; z-index: 1; }

/* Page hero with photo background */
.page-hero--photo {
  background-size: cover;
  background-position: center top;
}
.page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(47,47,47,0.80);
  z-index: 0;
  pointer-events: none;
  border-radius: 0;
}
/* Brand tint on page hero photo */
.page-hero--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,96,32,0.12);
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}
.page-hero--photo .container { position: relative; z-index: 1; }

/* Inline photo wrap with brand colour tint overlay */
.photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  flex-shrink: 0;
}
.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* The brand tint — makes lighter clothing areas take on the Vivid Vermilion */
.photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,96,32,0.18);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.photo-wrap--tall  { aspect-ratio: 3 / 4; }
.photo-wrap--wide  { aspect-ratio: 16 / 9; }
.photo-wrap--square { aspect-ratio: 1 / 1; }
.photo-wrap--natural { aspect-ratio: 4 / 3; }

/* Photo strip — three images side by side */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  overflow: hidden;
}
.photo-strip .photo-wrap {
  aspect-ratio: 3 / 2;
  border-radius: 0;
}

/* Section with background photo (used on dark sections) */
.section--photo-bg {
  background-size: cover;
  background-position: center;
  position: relative;
}
.section--photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(47,47,47,0.88);
  z-index: 0;
  pointer-events: none;
}
.section--photo-bg .container { position: relative; z-index: 1; }

@media (max-width: 768px) {
  .photo-strip {
    grid-template-columns: 1fr;
  }
  .photo-strip .photo-wrap {
    aspect-ratio: 16 / 9;
  }
  .photo-wrap--tall { aspect-ratio: 4 / 3; }
}
