:root {
  --hh-navy: #0f1b2d;
  --hh-navy-deep: #091220;
  --hh-charcoal: #232c36;
  --hh-slate: #536172;
  --hh-mist: #eef2f6;
  --hh-paper: #fbfaf7;
  --hh-white: #ffffff;
  --hh-gold: #c8a15a;
  --hh-gold-soft: rgba(200, 161, 90, 0.18);
  --hh-border: rgba(15, 27, 45, 0.12);
  --hh-shadow: 0 24px 60px rgba(11, 23, 40, 0.12);
  --hh-radius: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--hh-charcoal);
  font-family: "Manrope", "Open Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(200, 161, 90, 0.12), transparent 28%),
    linear-gradient(180deg, #f7f5ef 0%, #ffffff 24%, #f4f7fa 100%);
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--hh-slate);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 16px;
  color: var(--hh-navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.hh-page {
  min-height: 100vh;
}

.hh-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 27, 45, 0.08);
}

.hh-topbar {
  background: var(--hh-navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hh-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}

.hh-topbar__inner a {
  color: var(--hh-white);
  font-weight: 700;
}

.hh-topbar__meta {
  color: rgba(255, 255, 255, 0.78);
}

.hh-topbar__meta a {
  color: var(--hh-white);
  font-weight: 700;
}

.hh-navbar {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hh-navbar .container {
  padding-top: 18px;
  padding-bottom: 18px;
}

.hh-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  height: auto;
  padding: 0 !important;
}

.hh-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.hh-brand__text {
  display: flex;
  flex-direction: column;
}

.hh-brand__text strong {
  color: var(--hh-navy);
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hh-brand__text small {
  margin-top: 6px;
  color: var(--hh-slate);
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hh-navbar .navbar-toggle {
  margin-top: 12px;
  margin-bottom: 0;
  border-color: rgba(15, 27, 45, 0.14);
  border-radius: 14px;
}

.hh-navbar .navbar-toggle .icon-bar {
  background: var(--hh-navy);
}

.hh-navbar .navbar-nav > li > a {
  padding: 18px 14px;
  color: var(--hh-navy);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hh-navbar .navbar-nav > li.active > a,
.hh-navbar .navbar-nav > li > a:hover,
.hh-navbar .navbar-nav > li > a:focus {
  color: var(--hh-gold);
  background: transparent;
}

.hh-nav__cta {
  margin-left: 14px;
}

.hh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.hh-btn:hover,
.hh-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 27, 45, 0.14);
}

.hh-btn--primary {
  color: var(--hh-white);
  background: linear-gradient(135deg, var(--hh-gold) 0%, #b98e45 100%);
}

.hh-btn--dark {
  color: var(--hh-white);
  background: var(--hh-navy);
}

.hh-btn--ghost {
  color: var(--hh-navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 27, 45, 0.14);
}

.hh-main {
  position: relative;
}

.hh-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 80px;
  background-size: cover;
  background-position: center;
}

.hh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 18, 32, 0.88) 0%, rgba(9, 18, 32, 0.74) 42%, rgba(9, 18, 32, 0.56) 100%),
    linear-gradient(180deg, rgba(200, 161, 90, 0.08), transparent);
}

.hh-hero > .container {
  position: relative;
  z-index: 1;
}

.hh-hero__content {
  padding-right: 24px;
}

.hh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hh-kicker::before {
  content: "";
  width: 54px;
  height: 1px;
  background: rgba(255, 255, 255, 0.54);
}

.hh-hero h1,
.hh-page-hero h1 {
  margin-bottom: 24px;
  color: var(--hh-white);
  font-size: 64px;
  line-height: 0.95;
}

.hh-hero p,
.hh-page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.8;
}

.hh-hero__actions,
.hh-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hh-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hh-hero__fact {
  min-width: 180px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.hh-hero__fact strong {
  display: block;
  margin-bottom: 6px;
  color: var(--hh-white);
  font-size: 24px;
  font-weight: 800;
}

.hh-hero__fact span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hh-video-card,
.hh-panel,
.hh-card,
.hh-form-shell,
.hh-sidebar-card,
.hh-metric-card,
.hh-resource-card,
.hh-funding-card,
.hh-path-step,
.hh-compare,
.hh-cta-panel {
  border-radius: var(--hh-radius);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--hh-shadow);
}

.hh-video-card {
  margin-top: 24px;
  overflow: hidden;
}

.hh-video-card__label {
  padding: 18px 24px 0;
  color: var(--hh-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hh-video-card__copy {
  padding: 10px 24px 18px;
}

.hh-video-card__copy h3 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1;
}

.hh-video-card__copy p {
  font-size: 15px;
}

.hh-video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--hh-navy);
}

.hh-section {
  padding: 92px 0;
}

.hh-section--tight {
  padding: 74px 0;
}

.hh-section--dark {
  background:
    radial-gradient(circle at top right, rgba(200, 161, 90, 0.18), transparent 30%),
    linear-gradient(135deg, var(--hh-navy-deep) 0%, var(--hh-navy) 100%);
}

.hh-section--dark p,
.hh-section--dark li,
.hh-section--dark .hh-section__eyebrow,
.hh-section--dark .hh-card p,
.hh-section--dark .hh-path-step p {
  color: rgba(255, 255, 255, 0.86);
}

.hh-section--dark h2,
.hh-section--dark h3,
.hh-section--dark h4,
.hh-section--dark .hh-stat strong {
  color: var(--hh-white);
}

.hh-section--dark .hh-card__label,
.hh-section--dark .hh-path-step__phase,
.hh-section--dark .hh-section__eyebrow {
  color: #e0ba73;
}

.hh-section--dark .hh-card--dark {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
}

.hh-section--dark .hh-card--dark p,
.hh-section--dark .hh-card--dark li,
.hh-section--dark .hh-card--dark span {
  color: rgba(255, 255, 255, 0.9);
}

.hh-section--dark .hh-card--dark h3,
.hh-section--dark .hh-card--dark h4 {
  color: var(--hh-white);
}

.hh-section__eyebrow {
  margin-bottom: 12px;
  color: var(--hh-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hh-section__title {
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 0.96;
}

.hh-section__lead {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 18px;
}

.hh-grid {
  display: grid;
  gap: 26px;
}

.hh-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hh-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hh-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hh-card,
.hh-panel,
.hh-metric-card,
.hh-resource-card,
.hh-funding-card {
  padding: 30px;
}

.hh-card--dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.hh-card__label,
.hh-pillar-card__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--hh-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hh-card__label::before,
.hh-pillar-card__label::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.hh-card h3,
.hh-card h4,
.hh-panel h3,
.hh-panel h4,
.hh-metric-card h3,
.hh-resource-card h4,
.hh-funding-card h4 {
  margin-bottom: 14px;
  font-size: 33px;
  line-height: 1;
}

.hh-card ul li,
.hh-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--hh-slate);
  font-size: 15px;
  line-height: 1.7;
}

.hh-card ul li::before,
.hh-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hh-gold);
}

.hh-spotlight {
  position: relative;
  overflow: hidden;
  border-radius: var(--hh-radius);
  min-height: 430px;
}

.hh-spotlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hh-spotlight__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 18, 32, 0.88) 100%);
}

.hh-spotlight__overlay span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hh-spotlight__overlay strong {
  display: block;
  margin-top: 10px;
  color: var(--hh-white);
  font-size: 28px;
  line-height: 1.1;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.hh-quote-band {
  padding: 22px 26px;
  border-left: 4px solid var(--hh-gold);
  border-radius: 18px;
  background: rgba(200, 161, 90, 0.08);
}

.hh-quote-band strong {
  display: block;
  margin-bottom: 8px;
  color: var(--hh-navy);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hh-quote-band p {
  margin-bottom: 0;
  color: var(--hh-charcoal);
  font-size: 20px;
  line-height: 1.6;
}

.hh-pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.hh-pillar-card {
  height: 100%;
  padding: 28px;
  border-radius: var(--hh-radius);
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  box-shadow: var(--hh-shadow);
}

.hh-pillar-card--primary {
  background: linear-gradient(180deg, rgba(200, 161, 90, 0.12) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-color: rgba(200, 161, 90, 0.22);
}

.hh-pillar-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--hh-navy);
  color: var(--hh-white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hh-pillar-card__logo {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  object-fit: contain;
}

.hh-pillars-detail .hh-pillar-card__logo {
  width: 78px;
  height: 78px;
}

.hh-pillar-card__logo--wide {
  width: 110px;
  height: 78px;
}

.hh-pillar-card h3,
.hh-pillar-card h4 {
  font-size: 29px;
}

.hh-pillar-card p {
  margin-bottom: 18px;
  font-size: 15px;
}

.hh-pillar-card ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  color: var(--hh-slate);
  font-size: 14px;
}

.hh-pillar-card ul li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--hh-gold);
  font-weight: 800;
}

.hh-pathway {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  margin-top: 40px;
}

.hh-path-step {
  position: relative;
  padding: 28px 24px;
}

.hh-path-step::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.34);
  font: normal normal normal 14px/1 FontAwesome;
}

.hh-path-step:last-child::after {
  display: none;
}

.hh-path-step__phase {
  margin-bottom: 12px;
  color: var(--hh-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hh-path-step h4 {
  margin-bottom: 10px;
  font-size: 28px;
}

.hh-path-step p {
  margin-bottom: 0;
  font-size: 15px;
}

.hh-section--dark .hh-path-step {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.12);
}

.hh-section--dark .hh-path-step h4 {
  color: var(--hh-navy);
}

.hh-section--dark .hh-path-step p,
.hh-section--dark .hh-path-step li,
.hh-section--dark .hh-path-step span {
  color: var(--hh-slate);
}

.hh-path-step__logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hh-mini-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 5px;
}

.hh-mini-logo--wide {
  width: 72px;
}

.hh-compare-grid,
.hh-impact-grid,
.hh-resource-grid,
.hh-funding-grid,
.hh-partner-grid,
.hh-process-grid,
.hh-metrics-grid,
.hh-focus-grid {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.hh-compare-grid,
.hh-process-grid,
.hh-resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hh-impact-grid,
.hh-funding-grid,
.hh-partner-grid,
.hh-focus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hh-metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hh-compare {
  padding: 30px;
}

.hh-compare__title {
  margin-bottom: 16px;
  font-size: 31px;
}

.hh-compare__title small {
  display: block;
  margin-bottom: 10px;
  color: var(--hh-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: "Manrope", "Open Sans", sans-serif;
}

.hh-impact-item,
.hh-partner-card,
.hh-process-card {
  padding: 30px;
  border-radius: var(--hh-radius);
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  box-shadow: var(--hh-shadow);
}

.hh-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--hh-gold-soft);
  color: var(--hh-gold);
  font-size: 22px;
}

.hh-impact-item h4,
.hh-partner-card h4,
.hh-process-card h4 {
  margin-bottom: 14px;
  font-size: 31px;
}

.hh-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hh-stat strong {
  color: var(--hh-navy);
  font-size: 48px;
  line-height: 0.9;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.hh-stat span {
  color: var(--hh-slate);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hh-metric-card--framed {
  background:
    linear-gradient(180deg, rgba(200, 161, 90, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
}

.hh-metric-card__note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--hh-border);
  color: var(--hh-slate);
  font-size: 13px;
}

.hh-resource-card {
  min-height: 100%;
}

.hh-resource-card span,
.hh-funding-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--hh-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hh-resource-card h4,
.hh-funding-card h4 {
  font-size: 30px;
}

.hh-page-hero {
  position: relative;
  padding: 88px 0 70px;
  background-size: cover;
  background-position: center;
}

.hh-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 18, 32, 0.88), rgba(9, 18, 32, 0.56));
}

.hh-page-hero > .container {
  position: relative;
  z-index: 1;
}

.hh-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hh-breadcrumbs a {
  color: rgba(255, 255, 255, 0.84);
}

.hh-page-intro {
  margin-top: -42px;
}

.hh-page-intro .hh-panel {
  position: relative;
  z-index: 2;
  padding: 34px;
}

.hh-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 30px;
  align-items: start;
}

.hh-gallery-panel {
  overflow: hidden;
  border-radius: var(--hh-radius);
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  box-shadow: var(--hh-shadow);
}

.hh-gallery-panel img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.hh-gallery-panel__copy {
  padding: 24px;
}

.hh-gallery-panel__copy h4 {
  font-size: 30px;
}

.hh-governance-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 26px;
  align-items: stretch;
}

.hh-governance-strip .hh-card {
  padding: 24px;
  height: 100%;
}

.hh-governance-strip .hh-card h3 {
  font-size: 28px;
  line-height: 1.05;
}

.hh-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 26px;
}

.hh-form-shell,
.hh-sidebar-card {
  padding: 34px;
}

.hh-form-shell h3,
.hh-sidebar-card h3 {
  font-size: 36px;
}

.hh-form-shell form {
  margin-top: 22px;
}

.hh-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.hh-form-group {
  margin-bottom: 16px;
}

.hh-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--hh-navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hh-form-shell input,
.hh-form-shell select,
.hh-form-shell textarea {
  width: 100%;
  border: 1px solid rgba(15, 27, 45, 0.14);
  border-radius: 16px;
  background: #f8fafc;
  padding: 14px 16px;
  color: var(--hh-charcoal);
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hh-form-shell input:focus,
.hh-form-shell select:focus,
.hh-form-shell textarea:focus {
  outline: 0;
  background: var(--hh-white);
  border-color: rgba(200, 161, 90, 0.7);
  box-shadow: 0 0 0 4px rgba(200, 161, 90, 0.12);
}

.hh-form-shell textarea {
  min-height: 190px;
  resize: vertical;
}

#message {
  margin-bottom: 16px;
}

#message .error_message,
#message #success_page {
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 14px;
}

#message .error_message {
  background: rgba(196, 73, 73, 0.12);
  color: #8f2c2c;
}

#message #success_page {
  background: rgba(38, 112, 70, 0.12);
  color: #215f3b;
}

.contact-loader {
  width: 24px;
  margin-left: 12px;
}

.hh-sidebar-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--hh-border);
}

.hh-sidebar-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hh-sidebar-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--hh-navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hh-sidebar-list p,
.hh-sidebar-list span {
  margin: 0;
  color: var(--hh-slate);
  font-size: 15px;
  line-height: 1.7;
}

.hh-footer {
  padding: 78px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(200, 161, 90, 0.12), transparent 30%),
    linear-gradient(135deg, var(--hh-navy-deep) 0%, var(--hh-navy) 100%);
}

.hh-footer p,
.hh-footer li,
.hh-footer a,
.hh-footer span {
  color: rgba(255, 255, 255, 0.84);
}

.hh-footer a:hover,
.hh-footer a:focus {
  color: var(--hh-white);
}

.hh-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.hh-footer__brand img {
  width: 62px;
  height: 62px;
}

.hh-footer__brand strong {
  display: block;
  color: var(--hh-white);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hh-footer__brand small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hh-footer h4 {
  margin-bottom: 20px;
  color: var(--hh-white);
  font-size: 30px;
}

.hh-footer__links li,
.hh-footer__pillars li {
  margin-bottom: 12px;
}

.hh-footer__pillars li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hh-footer__pillars img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
}

.hh-footer__pillars-content {
  display: block;
}

.hh-footer__pillars strong {
  display: block;
  color: var(--hh-white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hh-footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hh-footer__bottom a {
  color: inherit;
}

.hh-contact-block {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hh-contact-block strong {
  display: block;
  margin-bottom: 10px;
  color: var(--hh-white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hh-contact-block p,
.hh-contact-block a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.8;
}

.hh-footer .hh-cta-panel {
  background: rgba(255, 255, 255, 0.98);
}

.hh-footer .hh-cta-panel p,
.hh-footer .hh-cta-panel li,
.hh-footer .hh-cta-panel span {
  color: var(--hh-slate);
}

.hh-footer .hh-cta-panel .hh-card__label {
  color: var(--hh-gold);
}

.hh-footer .hh-cta-panel .hh-card__label::before {
  background: var(--hh-gold);
}

.hh-footer .hh-cta-panel h3,
.hh-footer .hh-cta-panel h4 {
  color: var(--hh-navy);
}

.hh-footer .hh-cta-panel .hh-btn--primary,
.hh-footer .hh-cta-panel .hh-btn--primary:hover,
.hh-footer .hh-cta-panel .hh-btn--primary:focus {
  color: var(--hh-white);
}

@media (max-width: 1199px) {
  .hh-pillar-grid,
  .hh-pathway {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hh-path-step::after {
    display: none;
  }

  .hh-impact-grid,
  .hh-funding-grid,
  .hh-partner-grid,
  .hh-focus-grid,
  .hh-metrics-grid,
  .hh-governance-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hh-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .hh-topbar__inner,
  .hh-split,
  .hh-form-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hh-topbar__inner {
    justify-content: normal;
  }

  .hh-navbar .navbar-collapse {
    margin-top: 18px;
    border-top: 1px solid rgba(15, 27, 45, 0.08);
  }

  .hh-navbar .navbar-nav > li > a {
    padding: 12px 0;
  }

  .hh-nav__cta {
    margin: 8px 0 0;
  }

  .hh-hero {
    padding-top: 72px;
  }

  .hh-hero__content {
    padding-right: 0;
  }

  .hh-hero h1,
  .hh-page-hero h1,
  .hh-section__title {
    font-size: 50px;
  }

  .hh-grid--two,
  .hh-grid--three,
  .hh-compare-grid,
  .hh-resource-grid,
  .hh-process-grid,
  .hh-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  p {
    font-size: 15px;
  }

  .hh-topbar {
    display: none;
  }

  .hh-navbar .container {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hh-brand img {
    width: 48px;
    height: 48px;
  }

  .hh-brand__text strong {
    font-size: 19px;
  }

  .hh-brand__text small {
    font-size: 10px;
  }

  .hh-hero h1,
  .hh-page-hero h1,
  .hh-section__title {
    font-size: 41px;
  }

  .hh-section,
  .hh-page-hero,
  .hh-hero {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .hh-pillar-grid,
  .hh-pathway,
  .hh-impact-grid,
  .hh-funding-grid,
  .hh-partner-grid,
  .hh-focus-grid,
  .hh-metrics-grid,
  .hh-governance-strip {
    grid-template-columns: 1fr;
  }

  .hh-hero__fact {
    min-width: auto;
    width: 100%;
  }

  .hh-card,
  .hh-panel,
  .hh-pillar-card,
  .hh-impact-item,
  .hh-partner-card,
  .hh-process-card,
  .hh-metric-card,
  .hh-resource-card,
  .hh-funding-card,
  .hh-form-shell,
  .hh-sidebar-card,
  .hh-compare {
    padding: 24px;
  }
}
