/* ============================================================
   HUMAN FIRST — Global Design System
   Brand: Vivid Vermilion #FF6020 | Dark Charcoal #2F2F2F
   Fonts: Barlow Condensed (display) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,700;0,800;0,900;1,800&family=Inter:wght@300;400;500;600&display=swap');

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

  --font-display: 'Barlow Condensed', 'Impact', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius: 4px;
  --transition: 240ms cubic-bezier(0.25, 1, 0.5, 1);

  /* Easing curves — use these instead of bare 'ease' */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:    cubic-bezier(0.4, 0, 0.2, 1);

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

  /* Text colour scale — use instead of hardcoded grays */
  --text-primary:   #2F2F2F;   /* = var(--dc) */
  --text-secondary: #444444;   /* body copy on white */
  --text-muted:     #666666;   /* secondary labels, captions */
  --text-faint:     #999999;   /* placeholder, disabled */
}

/* ── 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-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vv);
  margin-bottom: 14px;
  display: block;
}
.section--dark .eyebrow { color: var(--vv); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.0;
  text-transform: uppercase;
}
h1, h2, h3 { text-wrap: balance; }
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.25rem); letter-spacing: 0; }

/* Design system Display heading sizes */
.display-xxl { font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem, 10vw, 6rem);  line-height: 0.94; letter-spacing: 0.02em; text-transform: uppercase; margin: 0; text-wrap: balance; }
.display-xl  { font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem, 8vw, 5.5rem); line-height: 0.94; letter-spacing: 0.02em; text-transform: uppercase; margin: 0; text-wrap: balance; }
.display-lg  { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.5rem, 6vw, 4rem); line-height: 0.94; letter-spacing: 0.01em; text-transform: uppercase; margin: 0; text-wrap: balance; }
.display-md  { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem);   line-height: 0.96; letter-spacing: 0.01em; text-transform: uppercase; margin: 0; }
.display-sm  { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 0.96; letter-spacing: 0em; text-transform: uppercase; margin: 0; }

p {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.75;
  color: inherit;
}
.lead {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  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 — exact from Primitives.jsx ─────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 12px 20px;
  border-radius: var(--radius);
  transition: background 220ms var(--ease-out-quart),
              transform  200ms var(--ease-out-quart),
              box-shadow 200ms var(--ease-out-quart),
              opacity    180ms ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  will-change: transform;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: scale(0.97); box-shadow: none !important; transition-duration: 80ms; }
.btn--loading {
  opacity: 0.7;
  pointer-events: none;
}
.btn--lg {
  padding: 16px 26px;
  font-size: 15px;
}
.btn-primary {
  background: var(--vv);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(255,96,32,0.30), 0 1px 2px rgba(0,0,0,0.08);
}
.btn-primary:hover {
  background: var(--bo);
  box-shadow: 0 4px 14px rgba(255,96,32,0.38), 0 2px 4px rgba(0,0,0,0.08);
}
.btn-secondary {
  background: transparent;
  color: var(--dc);
  border: 2px solid var(--dc);
  box-shadow: none;
}
.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 — exact from Primitives.jsx ──────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(47,47,47,0.12);
  transition: box-shadow 240ms var(--ease-out-quart), background 280ms var(--ease-out-quart), border-color 240ms var(--ease-out-quart);
}
/* Offset body so fixed nav doesn't cover content */
body { padding-top: 64px; }
/* Hero pages: hero slides under transparent nav — no offset needed */
body.hero-page { padding-top: 0; }
.site-nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
}
/* Transparent nav on dark-hero pages before scroll */
.hero-page .site-nav:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
}
.hero-page .site-nav:not(.scrolled) .nav-links a,
.hero-page .site-nav:not(.scrolled) .nav-mobile a {
  color: rgba(255,255,255,0.82);
}
.hero-page .site-nav:not(.scrolled) .nav-links a:hover,
.hero-page .site-nav:not(.scrolled) .nav-links a.active {
  color: var(--white);
}
.hero-page .site-nav:not(.scrolled) .nav-links .nav-cta {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.hero-page .site-nav:not(.scrolled) .nav-logo img {
  filter: brightness(10);
}
.hero-page .site-nav:not(.scrolled) .nav-hamburger span {
  background: var(--white);
}
.hero-page .site-nav:not(.scrolled) .nav-link--admin {
  border-color: rgba(255,255,255,0.4) !important;
  color: rgba(255,255,255,0.9) !important;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  gap: 32px;
}
.nav-logo img {
  height: 30px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--dc);
  text-transform: none;
  transition: color 200ms var(--ease-out-quart);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}
/* Slide-underline on plain nav links (not .nav-cta or .nav-link--admin) */
.nav-links a:not(.nav-cta):not(.nav-link--admin)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--vv);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease-out-quart);
}
.nav-links a:not(.nav-cta):not(.nav-link--admin):hover::after,
.nav-links a:not(.nav-cta):not(.nav-link--admin).active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--vv); }
.nav-cta {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  background: var(--vv);
  color: var(--white) !important;
  padding: 11px 18px;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
  white-space: nowrap;
  line-height: 1;
  display: inline-block;
  text-transform: none;
  letter-spacing: normal;
}
.nav-cta:hover { background: var(--bo) !important; color: var(--white) !important; }

/* Admin Portal nav link — outlined pill to distinguish from worker link */
.nav-link--admin {
  border: 1.5px solid rgba(47,47,47,0.28);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dc);
  white-space: nowrap;
  line-height: 1;
  display: inline-block;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.nav-link--admin:hover {
  border-color: var(--dc);
  background: rgba(47,47,47,0.06);
  color: var(--dc);
}

/* 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(--dc);
  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: 120px;
  padding-bottom: 140px;
  min-height: 80vh;
  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;
}
/* Large display headings in hero need more breathing room */
.hero .display-xl,
.hero .display-lg,
.hero .display-md {
  margin-bottom: 32px;
}
.hero .lead {
  margin-bottom: 0;
  max-width: 60ch;
}
.hero--dark .lead { color: rgba(255,255,255,0.8); }
/* Hero CTA button group */
.hero .btn-group { margin-top: 40px; }

/* ── 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 280ms var(--ease-out-quart),
              transform  280ms var(--ease-out-quart),
              box-shadow 280ms var(--ease-out-quart),
              color       220ms var(--ease-out-quart);
  will-change: transform;
}
.service-card:hover {
  background: var(--dc);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.10);
}
.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.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  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);
  background: var(--white);
}
/* Subtle label colour shift when its field is focused */
.form-group:focus-within .form-label {
  color: var(--vv);
}
.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.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dc);
  margin-bottom: 6px;
}
.form-section-desc {
  font-size: 0.975rem;
  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: 1rem;
  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;
  transition: transform 280ms var(--ease-out-quart), box-shadow 280ms var(--ease-out-quart);
  will-change: transform;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}
.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: rgba(255,255,255,0.65);
  padding-block: 64px 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0;
}
.footer-brand-col img {
  height: 32px;
  width: auto;
  margin-bottom: 20px;
}
.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 28ch;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.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,
.footer-links span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-links span { color: rgba(255,255,255,0.4); }
.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 {
  padding-top: 28px;
  margin-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.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── 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(20px);
  transition: opacity 0.65s var(--ease-out-quart), transform 0.65s var(--ease-out-quart);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1.visible { transition-delay: 0.12s; }
.reveal-delay-2.visible { transition-delay: 0.24s; }
.reveal-delay-3.visible { transition-delay: 0.36s; }
.reveal-delay-4.visible { transition-delay: 0.48s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; will-change: auto; }
}

/* ── 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: 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; }
}

/* ── INNER PAGE HERO ─────────────────────────────────────── */
/* Charcoal hero for inner pages (about, stories) */
.inner-hero {
  background: var(--dc);
  color: var(--white);
  padding-top: 120px;
  padding-bottom: 100px;
}
.inner-hero .display-xl { margin-bottom: 32px; }
.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.80);
  max-width: 52ch;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}
.hero-sublead {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 52ch;
  line-height: 1.6;
  margin-top: 16px;
}

/* ── ABOUT PAGE — STORY GRID ─────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-story-body { padding-top: 8px; }
.about-story-lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dc);
  line-height: 1.4;
  margin-bottom: 24px;
}
.about-story-p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-story-p:last-child { margin-bottom: 0; }

/* ── STAT BAR — big numbers on dark bg ───────────────────── */
.stat-bar {
  background: var(--dc);
  padding-block: 64px;
}
.stat-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.stat-bar-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--vv);
  line-height: 1;
}
.stat-bar-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}

/* ── VALUE PANELS — 3-col dark section ───────────────────── */
.value-panels {
  background: #1e1e1e;
  padding-block: 96px;
}
.value-panels-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.value-panels-intro { padding-bottom: 8px; }
.value-panels-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: 16px;
}
.value-panels-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.value-panels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.value-panel {
  background: #2a2a2a;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.value-panel-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--vv);
}
.value-panel-content {
  margin-top: auto;
  padding-top: 48px;
}
.value-panel-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.value-panel-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── STORY CARDS — coming-soon grid ─────────────────────── */
.story-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--clg);
}
.story-card {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.story-card--white  { background: var(--white); }
.story-card--soft   { background: rgba(47,47,47,0.04); }
.story-card--faint  { background: rgba(47,47,47,0.06); }
.story-card-tag {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.story-card--white .story-card-tag  { color: var(--vv); }
.story-card--soft  .story-card-tag  { color: rgba(47,47,47,0.25); }
.story-card--faint .story-card-tag  { color: rgba(47,47,47,0.2); }
.story-card-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.story-card-bar {
  width: 48px;
  height: 3px;
  margin-bottom: 28px;
}
.story-card--white .story-card-bar  { background: var(--vv); }
.story-card--soft  .story-card-bar  { background: rgba(47,47,47,0.12); }
.story-card--faint .story-card-bar  { background: rgba(47,47,47,0.1); }
.story-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 20px;
}
.story-card--white .story-card-title { color: var(--dc); }
.story-card--soft  .story-card-title { color: rgba(47,47,47,0.18); }
.story-card--faint .story-card-title { color: rgba(47,47,47,0.15); }
.story-card-body { font-size: 0.875rem; line-height: 1.7; }
.story-card--white .story-card-body  { color: rgba(47,47,47,0.45); }
.story-card--soft  .story-card-body  { color: rgba(47,47,47,0.3); }
.story-card--faint .story-card-body  { color: rgba(47,47,47,0.25); }
.story-context-grid {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--clg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-context-body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.story-context-body p:last-of-type { margin-bottom: 32px; }

/* ── WORK-WITH-US COMPONENTS ─────────────────────────────── */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--clg);
}
.quality-cell {
  padding: 36px 32px;
  border: 1px solid var(--clg);
}
.quality-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--vv);
  margin-bottom: 12px;
}
.quality-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.req-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.req-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.req-arrow {
  color: var(--vv);
  font-family: var(--font-display);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.req-text { font-size: 0.95rem; line-height: 1.6; }
.cta-col-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.cta-col-note a {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* ── BUTTON VARIANTS ─────────────────────────────────────── */
.btn-dark {
  background: var(--dc);
  color: var(--white);
}
.btn-dark:hover {
  background: rgba(47,47,47,0.85);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.8);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
}

/* ── FOOTER ITALIC VARIANT ───────────────────────────────── */
.footer-copy--italic { font-style: italic; }

/* ── CONTACT CARD VARIANTS ───────────────────────────────── */
/* Smaller font for long email address in contact value */
.contact-value--email { font-size: clamp(0.75rem, 1.4vw, 1rem); }
/* Contact links inherit colour from card context */
.contact-card a { color: inherit; text-decoration: none; }

/* ── FORM ALIGNMENT VARIANTS ─────────────────────────────── */
.form-submit--left  { text-align: left; }
.form-success--left { text-align: left; }

/* ── NUDGE BOX (dark section sidebar callout) ────────────── */
.nudge-box {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: var(--radius);
}
.nudge-box .eyebrow { color: var(--vv); }
.nudge-box h3 { color: var(--white); margin: 12px 0 16px; }
.nudge-box p  { color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-bottom: 24px; }

/* ── RESPONSIVE — inner page grids ──────────────────────── */
@media (max-width: 900px) {
  .about-story-grid,
  .value-panels-header,
  .story-context-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-bar-grid       { grid-template-columns: repeat(2, 1fr); }
  .value-panels-grid   { grid-template-columns: 1fr; }
  .story-cards-grid    { grid-template-columns: 1fr; }
  .quality-grid        { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .stat-bar-grid   { grid-template-columns: 1fr; }
  .about-story-grid { gap: 32px; }
  .story-context-grid { gap: 40px; }
}

/* ── HERO ENTRANCE ANIMATION ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.hero-animate   {
  animation: fadeUp 0.9s var(--ease-out-expo) both;
  will-change: opacity, transform;
}
.hero-animate-1 { animation-delay: 0.06s; }
.hero-animate-2 { animation-delay: 0.20s; }
.hero-animate-3 { animation-delay: 0.34s; }
.hero-animate-4 { animation-delay: 0.50s; }
@media (prefers-reduced-motion: reduce) {
  .hero-animate { animation: none; will-change: auto; }
}

/* ── FAQ ACCORDION ───────────────────────────────────────── */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--clg); }
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
}
.faq-trigger:hover { color: var(--vv); }
.faq-icon {
  transition: transform 260ms var(--ease-out-quart);
  flex-shrink: 0;
  color: var(--vv);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
}
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-body {
  padding: 0 0 24px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.95rem;
  max-width: 68ch;
}

/* ── STORY CARD ATTRIBUTION ──────────────────────────────── */
.story-card-attribution {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 24px;
  font-style: italic;
}

/* ── HOME — SERVICES SECTION ─────────────────────────────── */
.home-services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  align-items: start;
  margin-bottom: 64px;
}
.home-services-header h2 { line-height: 0.95; }
.home-services-header-lead {
  display: flex;
  align-items: center;
}
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--clg);
}
.home-service-cell {
  padding: 36px 28px;
  border: 1px solid var(--clg);
  transition: background 280ms var(--ease-out-quart),
              transform  280ms var(--ease-out-quart),
              box-shadow 280ms var(--ease-out-quart);
  will-change: transform;
}
.home-service-cell:hover {
  background: var(--dc);
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.10);
}
.home-service-cell svg {
  margin-bottom: 24px;
  display: block;
  transition: stroke 220ms var(--ease-out-quart),
              transform 280ms var(--ease-out-quart);
}
.home-service-cell:hover svg {
  stroke: var(--vv);
  transform: translateY(-3px);
}
.home-service-cell h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  transition: color 220ms var(--ease-out-quart);
}
.home-service-cell:hover h3 { color: var(--white); }
.home-service-cell p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-family: var(--font-body);
  font-weight: 400;
  transition: color 220ms var(--ease-out-quart);
}
.home-service-cell:hover p { color: rgba(255,255,255,0.72); }

/* ── HOME — DIFF (FOUR THINGS) SECTION ──────────────────── */
.home-diff-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.home-diff-row:last-child { border-bottom: 1px solid rgba(0,0,0,0.12); }
.home-diff-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--vv);
}
.home-diff-title {
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--dc);
  line-height: 1.3;
}
.home-diff-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-family: var(--font-body);
  font-weight: 400;
}

/* ── HOME — CTA SECTION ──────────────────────────────────── */
.home-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.home-cta-grid h2 { font-size: clamp(3.5rem, 8vw, 7rem); }
.home-cta-lead {
  color: rgba(255,255,255,0.80);
  margin-bottom: 40px;
}
.home-cta-call {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.home-cta-call-note {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
}
.home-cta-call-note a { color: var(--white); font-weight: 600; }

/* ── HOME — RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .home-services-header { grid-template-columns: 1fr; gap: 24px; }
  .home-services-grid   { grid-template-columns: repeat(2, 1fr); }
  .home-cta-grid        { grid-template-columns: 1fr; gap: 40px; }
  .home-diff-row        { grid-template-columns: 56px 1fr; }
  .home-diff-body       { grid-column: 2; margin-top: -8px; }
}
@media (max-width: 640px) {
  .home-services-grid { grid-template-columns: 1fr; }
  .home-diff-row      { grid-template-columns: 1fr; gap: 8px; }
  .home-diff-num      { font-size: 1rem; }
}

/* ══════════════════════════════════════════════════════════
   REVAMP — Split Hero + Services Featured + Team Hover
   ══════════════════════════════════════════════════════════ */

/* ── HERO SPLIT ──────────────────────────────────────────── */
.hero--split {
  padding: 0;
  min-height: 88vh;
  display: grid;
  /* Orange panel: max 36% of viewport, min 260px BUT never more than 40% of the viewport */
  grid-template-columns: 1fr min(38vw, 440px);
  overflow: hidden;
  background: linear-gradient(
    to right,
    var(--dc) 0%,
    var(--dc) calc(100% - min(38vw, 440px)),
    var(--vv) calc(100% - min(38vw, 440px)),
    var(--vv) 100%
  );
}
.hero-split-panel { align-self: stretch; }
.hero-split-text {
  background: var(--dc);
  color: var(--white);
  display: flex;
  align-items: center;
  padding-block: clamp(80px, 8vw, 120px);
}
.hero-split-text .lead { color: rgba(255,255,255,0.82); }
.hero-split-text p { color: rgba(255,255,255,0.82); }
.hero-split-inner {
  width: 100%;
  /* Align with the site container's left padding — never right-align */
  padding-inline: var(--pad-x);
  /* Content readable up to 660ch, but fills the panel fully */
  max-width: 660px;
}

/* Hero panel — orange column */
.hero-split-panel {
  background: var(--vv);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 56px);
  gap: 40px;
}

/* Truths list */
.hero-truths {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-truth {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-truth-line {
  display: block;
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.45);
  border-radius: 1px;
}
.hero-truth-text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
}

/* Panel CTA */
.hero-panel-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 200ms var(--ease-out-quart);
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
.hero-panel-cta:hover { color: var(--white); border-bottom-color: var(--white); }

/* ── SERVICES — FEATURED FIRST CELL ─────────────────────── */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--clg);
  background: var(--clg);
}
.home-service-cell--featured {
  grid-column: span 1; /* no span — clean equal grid */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--dc) !important;
}
.home-service-cell--featured svg { stroke: var(--vv) !important; }
.home-service-cell--featured h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.home-service-cell--featured p { color: rgba(255,255,255,0.65); }
.home-service-cell--featured:hover {
  background: #222 !important;
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.home-service-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vv);
  text-decoration: none;
  transition: color 200ms var(--ease-out-quart);
}
.home-service-link:hover { color: rgba(255,96,32,0.75); }

/* ── TEAM CARD HOVER PHOTO OVERLAY ──────────────────────── */
.team-card-photo {
  position: relative;
  overflow: hidden;
}
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--vv);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px 22px;
  transition: opacity 280ms var(--ease-out-quart);
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-card-overlay-name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.team-card-overlay-role {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  margin-top: 3px;
  line-height: 1.4;
}

/* ── TEAM CARD QUOTE — fix side-stripe ban ───────────────── */
.team-card-quote {
  margin-top: 18px;
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(47,47,47,0.5);
  background: rgba(255,96,32,0.05);
  border-radius: 3px;
  padding: 10px 14px;
  line-height: 1.65;
  border-left: none; /* removed side-stripe */
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Reduce orange panel to not dominate on mid-size screens */
  .hero--split { grid-template-columns: 1fr clamp(260px, 28vw, 380px); }
}
@media (max-width: 900px) {
  .hero--split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-split-text { padding-block: clamp(80px, 10vw, 120px); }
  .hero-split-inner { max-width: 100%; margin-left: 0; }
  .hero-split-panel {
    min-height: 200px;
    justify-content: flex-start;
    padding: 40px var(--pad-x);
  }
  .hero-truths { flex-direction: row; flex-wrap: wrap; gap: 20px 32px; }
  .hero-truth { flex-direction: row; gap: 10px; align-items: center; }
  .hero-truth-line { width: 20px; flex-shrink: 0; }
  .home-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .home-services-grid { grid-template-columns: 1fr; }
  .hero-split-panel { display: none; }
}
