
/* ─────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────── */
:root {
  --purple-dark:  #645E9C;
  --purple-mid:   #918DBA;
  --purple-light: #CBC7DF;
  --teal-dark:    #5E9B9C;
  --teal-mid:     #8CB9BA;
  --teal-light:   #CBDEE0;
  --blue-dark:    #5E7B9C;
  --blue-mid:     #8DA2BA;
  --blue-light:   #CAD2DF;
  --black:        #000000;
  --dark:         #3D3D3D;
  --gray:         #9E9E9E;
  --light-gray:   #DDDDDD;
  --off-white:    #F7F7FA;
  --white:        #FFFFFF;

  /* Spacing scale */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 96px;

  /* Nav height */
  --nav-h: 64px;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.tm-mark {
  font-size: 0.58em;
  vertical-align: super;
  line-height: 0;
}

.tm-mark-lifted {
  vertical-align: 0.6em;
  position: relative;
  top: -0.1em;
}

/* ─────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: var(--space-xl) 0; }

#services,
#grcdefense,
#resource-fidelity,
#vendor-fidelity,
#who-we-serve,
#engagement,
#testimonials,
#about,
#contact {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

body.panel-mode .panel-section {
  display: none;
}

body.panel-mode .panel-section.panel-active {
  display: block;
  margin-top: var(--nav-h);
  animation: panelFadeIn 520ms ease both;
}

body.panel-mode #hero,
body.panel-mode #stat-bar,
body.panel-mode #cta-band {
  display: none;
}

@keyframes panelFadeIn {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.panel-mode .panel-section.panel-active {
    animation: none;
  }
}

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1 {
  font-size: clamp(1.75rem, 5vw, 2.67rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--black);
}
h1 strong { font-weight: 900; display: block; }

h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 16px;
}
h2 strong { font-weight: 900; }

h3 {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 12px;
  display: block;
}

.section-divider {
  width: 40px;
  height: 3px;
  background: var(--teal-dark);
  margin-bottom: 24px;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--purple-dark);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus { background: var(--purple-mid); }

.btn-secondary {
  background: transparent;
  color: var(--purple-dark);
  border: 2px solid var(--purple-dark);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--purple-dark);
  color: var(--white);
}

.btn-teal {
  background: var(--teal-dark);
  color: var(--white);
}
.btn-teal:hover, .btn-teal:focus { background: var(--teal-mid); }

.btn-white {
  background: var(--white);
  color: var(--purple-dark);
}
.btn-white:hover, .btn-white:focus { background: var(--off-white); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

button.btn {
  appearance: none;
}

button.service-link {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  height: var(--nav-h);
}

nav.nav-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  max-width: 1160px;
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-image {
  height: 52px;
  width: auto;
}
.nav-logo svg { height: 36px; width: auto; }
.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--black);
}
.nav-logo-text sup { font-size: 0.5rem; vertical-align: super; }

/* Desktop links */
.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 28px;
}
.nav-links > li {
  position: relative;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  padding: 4px 0;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--purple-dark); }

.nav-item-has-submenu > a::after {
  content: ' +';
  font-size: 0.75em;
}

.nav-item-has-submenu::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.nav-submenu {
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  gap: 10px;
}

.nav-item-has-submenu:hover .nav-submenu,
.nav-item-has-submenu:focus-within .nav-submenu {
  display: flex;
}

.nav-submenu a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-cta-link {
  background: var(--purple-dark);
  color: var(--white) !important;
  padding: 10px 20px !important;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.nav-cta-link:hover { background: var(--purple-mid) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  z-index: 199;
  padding: 16px 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.nav-drawer.open { display: block; }
.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-drawer ul li a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--off-white);
  letter-spacing: 0.04em;
}
.nav-drawer ul li:last-child a { border-bottom: none; }
.nav-drawer .drawer-cta {
  margin-top: 16px;
  width: 100%;
  text-align: center;
}

.drawer-submenu {
  list-style: none;
  margin: 4px 0 0 14px;
  padding-left: 14px;
  border-left: 1px solid var(--light-gray);
}

.drawer-submenu li a {
  font-size: 0.92rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--off-white);
}

.drawer-submenu li:last-child a {
  border-bottom: none;
}

/* ─────────────────────────────────────────
   MODAL
───────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(12, 16, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop[hidden] {
  display: none;
}

body.is-scroll-locked {
  overflow: hidden;
}

.modal-dialog {
  width: min(100%, 640px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: var(--white);
  padding: 32px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

.modal-copy p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--off-white);
  color: var(--dark);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-form {
  display: grid;
  gap: 16px;
}

.modal-field {
  display: grid;
  gap: 8px;
}

.modal-field span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
}

.modal-field input,
.modal-field textarea {
  width: 100%;
  border: 1px solid var(--light-gray);
  background: var(--white);
  padding: 14px 16px;
  font: inherit;
  color: var(--dark);
}

.modal-field textarea {
  resize: vertical;
  min-height: 130px;
}

.modal-field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.modal-turnstile {
  min-height: 66px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.modal-status {
  min-height: 24px;
  font-size: 0.92rem;
  margin: 0;
}

.modal-status.is-error {
  color: #b42318;
}

.modal-status.is-success {
  color: #0f7b4d;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: var(--space-xl);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  min-height: calc(var(--nav-h) + 360px);
}

.hero-accent {
  position: absolute;
  pointer-events: none;
}

.hero-accent-bottom {
  bottom: 0;
  left: 0;
  opacity: 0.22;
}

.hero-accent-top {
  top: 0;
  left: 40px;
  opacity: 0.14;
}

.hero-shapes {
  position: absolute;
  top: 0; right: -40px;
  width: min(520px, 90vw);
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 16px;
}

.hero-body {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--dark);
  max-width: 540px;
  margin: 20px 0 32px;
  line-height: 1.75;
}

.resource-fidelity { font-weight: 700; color: var(--purple-dark); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fadeUp 0.6s ease both;
}
.hero-eyebrow    { animation-delay: 0.05s; }
h1               { animation-delay: 0.12s; }
.hero-body       { animation-delay: 0.22s; }
.btn-row         { animation-delay: 0.32s; }

/* ─────────────────────────────────────────
   STAT BAR
───────────────────────────────────────── */
#stat-bar {
  background: var(--purple-dark);
  padding: 44px 0;
}

.stat-bar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--purple-light);
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
#services { background: var(--white); }

.services-intro { margin-bottom: 40px; }
.services-intro p { font-size: 1rem; line-height: 1.75; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--light-gray);
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--purple-light);
  transition: background 0.2s;
}
.service-card:hover::before { background: var(--purple-dark); }

.service-number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-questions {
  list-style: none;
  margin-bottom: 20px;
}
.service-questions li {
  font-size: 0.87rem;
  padding: 6px 0 6px 16px;
  position: relative;
  border-top: 1px solid var(--off-white);
  line-height: 1.5;
}
.service-questions li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--purple-dark);
  font-weight: 700;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple-dark);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 4px 0;
  display: inline-block;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.service-link:hover { color: var(--teal-dark); }

.service-link-offset {
  margin-top: 16px;
}

/* ─────────────────────────────────────────
   RESOURCE FIDELITY
───────────────────────────────────────── */
#resource-fidelity { background: var(--off-white); }

.rf-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.rf-content p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.rf-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rf-pillars-top-lg {
  margin-top: 24px;
}

.rf-pillars-top-md {
  margin-top: 20px;
}

.rf-pillar {
  background: var(--white);
  padding: 24px 20px;
  position: relative;
}
.rf-pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--teal-light);
}
.rf-pillar h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.rf-pillar p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ─────────────────────────────────────────
   VENDOR FIDELITY
───────────────────────────────────────── */
#vendor-fidelity { background: var(--white); }

.vf-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.stat-callout {
  background: var(--teal-dark);
  color: var(--white);
  padding: 36px 28px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.stat-callout-art {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.07;
  pointer-events: none;
}
.stat-callout-number {
  font-size: clamp(2.2rem, 8vw, 3rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-callout-text {
  font-size: 0.92rem;
  color: var(--teal-light);
  line-height: 1.5;
}

.vf-highlight {
  border-left: 4px solid var(--teal-dark);
  padding: 14px 18px;
  background: var(--off-white);
  font-size: 0.93rem;
  font-style: italic;
  color: var(--dark);
  margin: 20px 0;
  line-height: 1.65;
}
.vf-highlight strong { font-style: normal; color: var(--teal-dark); }

.vf-content p {
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.vf-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* ─────────────────────────────────────────
   GRCDEFENSE
───────────────────────────────────────── */
#grcdefense {
  background: var(--dark);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.grc-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.grc-stat-card {
  background: var(--white);
  padding: 16px 14px;
  border-top: 3px solid transparent;
}

.grc-stat-card-teal-dark { border-top-color: var(--teal-dark); }
.grc-stat-card-purple-dark { border-top-color: var(--purple-dark); }
.grc-stat-card-blue-dark { border-top-color: var(--blue-dark); }
.grc-stat-card-teal-mid { border-top-color: var(--teal-mid); }

.grc-stat-value {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.grc-stat-value-teal-dark { color: var(--teal-dark); }
.grc-stat-value-purple-dark { color: var(--purple-dark); }
.grc-stat-value-blue-dark { color: var(--blue-dark); }
.grc-stat-value-teal-mid { color: var(--teal-mid); }

.grc-stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 4px;
  line-height: 1.4;
}

.grc-bg {
  position: absolute;
  top: 0; right: 0;
  pointer-events: none;
  opacity: 0.05;
}

.grc-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.grc-mark {
  display: flex;
  justify-content: center;
}

.grc-content .section-label { color: var(--teal-mid); }

.grc-content h2 {
  color: var(--white);
  font-weight: 900;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  margin-bottom: 14px;
}

.grc-content > p {
  color: var(--blue-light);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 8px;
}

.grc-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.grc-cap {
  background: rgba(255,255,255,0.08);
  color: var(--teal-light);
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.grc-sub {
  font-size: 0.83rem !important;
  color: #888 !important;
  margin-bottom: 24px !important;
}

/* ─────────────────────────────────────────
   WHO WE SERVE
───────────────────────────────────────── */
#who-we-serve { background: var(--off-white); }

.serve-intro {
  margin-bottom: 40px;
}
.serve-intro p { font-size: 1rem; line-height: 1.75; }

.serve-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--light-gray);
}

.serve-card {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
}
.serve-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue-light);
  transition: background 0.2s;
}
.serve-card:hover::before { background: var(--blue-dark); }

.serve-icon {
  width: 40px; height: 40px;
  margin-bottom: 16px;
}
.serve-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   ENGAGEMENT MODEL
───────────────────────────────────────── */
#engagement { background: var(--white); }

.engagement-intro { margin-bottom: 40px; }
.engagement-intro p { font-size: 1rem; line-height: 1.75; }

.engagement-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.engagement-step {
  padding: 32px 24px;
  background: var(--off-white);
}

.step-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--purple-light);
  line-height: 1;
  margin-bottom: 14px;
}
.engagement-step p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
#testimonials { background: var(--off-white); }

.testimonials-header { margin-bottom: 36px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.testimonial {
  background: var(--white);
  padding: 32px 28px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px; left: 20px;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--purple-light);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.93rem;
  line-height: 1.75;
  padding-top: 28px;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-attr {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.04em;
}

.awards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.award-card {
  background: var(--white);
  padding: 24px 20px;
  border-left: 4px solid var(--purple-dark);
}
.award-date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-dark);
  margin-bottom: 6px;
}
.award-card h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.award-card p { font-size: 0.85rem; line-height: 1.6; }

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
#about { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.about-photo-wrap {
  grid-column: 1 / -1;
}

.about-story p {
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.leaders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.leader {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  align-items: flex-start;
}

.leader-avatar {
  width: 48px; height: 48px;
  background: var(--purple-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--purple-dark);
}

.leader-avatar-teal {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.leader-avatar-blue {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.leader-info h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}
.leader-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-dark);
  margin-bottom: 6px;
}

.leader-title-teal { color: var(--teal-dark); }
.leader-title-blue { color: var(--blue-dark); }
.leader-info p { font-size: 0.83rem; line-height: 1.6; }

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
#cta-band {
  background: var(--purple-dark);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-container {
  position: relative;
  z-index: 2;
}

.cta-label {
  text-align: center;
  display: block;
  color: var(--teal-light);
}
.cta-bg-l, .cta-bg-r {
  position: absolute;
  top: 0;
  pointer-events: none;
  opacity: 0.07;
}
.cta-bg-l { left: 0; }
.cta-bg-r { right: 0; }

#cta-band .section-label {
  color: var(--teal-light);
  display: block;
  text-align: center;
}
#cta-band h2 {
  color: var(--white);
  margin-bottom: 16px;
}
#cta-band p {
  color: var(--purple-light);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
#cta-band .btn-row { justify-content: center; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--black);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand {
  grid-column: 1 / -1;
}

.footer-brand-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.btn-offset-top {
  margin-top: 8px;
}

.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--white);
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 300px;
}

.footer-brand .footer-contact {
  margin-top: 12px;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
  padding: 2px 0;
  display: inline-block;
  min-height: 28px;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: #555; }
.footer-tm { font-size: 0.75rem; color: #444; line-height: 1.6; }

/* ─────────────────────────────────────────
   SKIP LINK (ACCESSIBILITY)
───────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--purple-dark);
  color: var(--white);
  padding: 8px 16px;
  font-weight: 700;
  text-decoration: none;
  z-index: 999;
}
.skip-link:focus { top: 0; }

/* ─────────────────────────────────────────
   BREAKPOINT: 480px (large phones)
───────────────────────────────────────── */
@media (min-width: 480px) {
  .container { padding: 0 28px; }

  .stat-bar-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-bar-grid > *:last-child {
    grid-column: 1 / -1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────
   BREAKPOINT: 640px (small tablets / large phones landscape)
───────────────────────────────────────── */
@media (min-width: 640px) {
  :root { --nav-h: 68px; }

  .container { padding: 0 36px; }
  section { padding: var(--space-xl) 0; }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .serve-grid {
    grid-template-columns: 1fr 1fr;
  }
  .serve-grid > *:last-child {
    grid-column: 1 / -1;
  }

  .engagement-steps {
    grid-template-columns: 1fr 1fr;
  }
  .engagement-steps > *:last-child {
    grid-column: 1 / -1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .awards-row {
    grid-template-columns: 1fr 1fr;
  }

  .stat-bar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-bar-grid > *:last-child {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-tm { text-align: right; }
}

/* ─────────────────────────────────────────
   BREAKPOINT: 768px (tablets)
───────────────────────────────────────── */
@media (min-width: 768px) {
  :root { --nav-h: 72px; }

  .container { padding: 0 40px; }

  /* Show desktop nav, hide hamburger */
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .nav-drawer { display: none !important; }

  #hero {
    padding-top: calc(var(--nav-h) + 64px);
    padding-bottom: var(--space-2xl);
    min-height: 560px;
  }

  .rf-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .vf-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .about-inner .about-photo-wrap {
    grid-column: 1 / -1;
  }

  .leaders-grid { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: auto; }
}

/* ─────────────────────────────────────────
   BREAKPOINT: 1024px (desktop)
───────────────────────────────────────── */
@media (min-width: 1024px) {
  .container { padding: 0 48px; }
  section { padding: var(--space-2xl) 0; }

  .serve-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .serve-grid > *:last-child { grid-column: auto; }

  .engagement-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .engagement-steps > *:last-child { grid-column: auto; }

  .grc-inner {
    grid-template-columns: 1fr auto;
    gap: 56px;
    align-items: center;
  }

  .grc-mark { justify-content: flex-end; }
}

/* ─────────────────────────────────────────
   BREAKPOINT: 1200px (wide desktop)
───────────────────────────────────────── */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─────────────────────────────────────────
   FOCUS STYLES (ACCESSIBILITY)
───────────────────────────────────────── */
/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  animation: revealFallback 0s 1.5s forwards;
}
.reveal.in { opacity: 1; transform: none; animation: none; }
@keyframes revealFallback { to { opacity: 1; transform: none; } }

/* ─────────────────────────────────────────
   PHOTOS — Brand-compliant parallelogram shapes
   Per brand guidelines: photos cut to parallelogram
   No rounded corners (brand standard)
───────────────────────────────────────── */
.photo-hero-wrap {
  position: absolute;
  top: 0; right: 0;
  width: min(52%, 560px);
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.photo-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.88;
}

.photo-parallelogram {
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About photo — sits alongside the text */
.about-photo-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}
.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  clip-path: polygon(0% 0%, 95% 0%, 100% 100%, 5% 100%);
}

/* Testimonials band photo */
.testimonial-photo-band {
  position: relative;
  height: 200px;
  overflow: hidden;
  margin-bottom: 40px;
  background: var(--off-white);
}
.testimonial-photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  clip-path: polygon(0% 0%, 100% 0%, 96% 100%, 4% 100%);
  opacity: 0.5;
}
.testimonial-photo-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--off-white) 0%, transparent 30%, transparent 70%, var(--off-white) 100%);
}

@media (min-width: 768px) {
  .about-photo-wrap { height: 320px; }
  .testimonial-photo-band { height: 260px; }
}
@media (max-width: 767px) {
  .photo-hero-wrap { display: none; }
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--purple-dark);
  outline-offset: 3px;
}
