:root {
  --green-950: #002f17;
  --green-900: #003b1d;
  --green-800: #075c2e;
  --green-600: #0c973d;
  --green-500: #20b651;
  --red: #e92320;
  --blue: #75c4ea;
  --ink: #10251c;
  --muted: #68756f;
  --line: #e6ece8;
  --soft: #f4f8f5;
  --white: #ffffff;
  --display: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: 110px;
  padding: 0 4.6vw;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 28px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid transparent;
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home-page .site-header:not(.is-scrolled):not(.menu-open) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.site-header.is-scrolled,
.site-header.menu-open {
  min-height: 86px;
  border-bottom-color: var(--line);
  box-shadow: 0 18px 45px rgba(12, 36, 24, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.brand img:first-child {
  width: 92px;
  transition: width 220ms ease;
}

.brand img:last-child {
  width: 82px;
  height: auto;
  object-fit: contain;
}

.brand img:nth-child(2) {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-header.is-scrolled .brand img:first-child {
  width: 64px;
}

.header-title {
  justify-self: center;
  color: var(--white);
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  transition: color 220ms ease, font-size 220ms ease;
}

.header-title span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76em;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.site-header.is-scrolled .header-title,
body:not(.home-page) .header-title,
.site-header.menu-open .header-title {
  color: #3d8f3f;
  font-size: clamp(15px, 1.55vw, 24px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header.is-scrolled .header-title span,
body:not(.home-page) .header-title span,
.site-header.menu-open .header-title span {
  color: #777d8a;
  font-size: 0.62em;
  letter-spacing: 0.22em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: color 220ms ease;
}

.site-header.is-scrolled .site-nav,
body:not(.home-page) .site-nav,
.site-header.menu-open .site-nav {
  color: #314039;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--green-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 13px 22px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: #fff;
}

.site-nav .nav-cta::after {
  display: none;
}

.site-header.is-scrolled .site-nav .nav-cta,
body:not(.home-page) .site-nav .nav-cta,
.site-header.menu-open .site-nav .nav-cta {
  border-color: var(--green-600);
  color: var(--green-800);
}

.commitments-page .site-header,
.detail-page .site-header,
.chairman-page .site-header,
.contact-page .site-header {
  min-height: 100px;
  grid-template-columns: auto minmax(520px, 1fr) auto;
  padding: 0 4.6vw;
  background: #fff;
  border-bottom-color: transparent;
  box-shadow: none;
}

.commitments-page .brand img:first-child,
.detail-page .brand img:first-child,
.chairman-page .brand img:first-child,
.contact-page .brand img:first-child {
  width: 78px;
}

.commitments-page .brand img:nth-child(2),
.detail-page .brand img:nth-child(2),
.chairman-page .brand img:nth-child(2),
.contact-page .brand img:nth-child(2) {
  width: 40px;
  height: 40px;
}

.commitments-page .brand img:last-child,
.detail-page .brand img:last-child,
.chairman-page .brand img:last-child,
.contact-page .brand img:last-child {
  width: 76px;
}

.commitments-page .header-title,
.detail-page .header-title,
.chairman-page .header-title,
.contact-page .header-title {
  display: block;
  color: #3d8f3f;
  font-size: clamp(20px, 2vw, 31px);
  font-weight: 900;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

body.commitments-page .site-nav,
body.detail-page .site-nav,
body.chairman-page .site-nav,
body.contact-page .site-nav {
  gap: 28px;
  color: #1c2a26;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.commitments-page .site-nav .nav-cta,
body.detail-page .site-nav .nav-cta,
body.chairman-page .site-nav .nav-cta,
body.contact-page .site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 58px;
  padding: 0 30px;
  border: 2px solid var(--green-600);
  border-radius: 9px;
  background: transparent;
  color: var(--green-800);
  box-shadow: none;
}

body.commitments-page .site-nav a:not(.nav-cta)::after,
body.detail-page .site-nav a:not(.nav-cta)::after,
body.chairman-page .site-nav a:not(.nav-cta)::after,
body.contact-page .site-nav a:not(.nav-cta)::after {
  height: 3px;
  background: var(--green-600);
  transform: scaleX(0);
}

body.commitments-page .site-nav a:not(.nav-cta):hover::after,
body.commitments-page .site-nav a:not(.nav-cta).active::after,
body.detail-page .site-nav a:not(.nav-cta):hover::after,
body.detail-page .site-nav a:not(.nav-cta).active::after,
body.chairman-page .site-nav a:not(.nav-cta):hover::after,
body.chairman-page .site-nav a:not(.nav-cta).active::after,
body.contact-page .site-nav a:not(.nav-cta):hover::after,
body.contact-page .site-nav a:not(.nav-cta).active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--green-900);
  border-radius: 6px;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero,
.page-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--green-950);
}

.page-hero {
  padding-top: 86px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 36, 18, 0.92), rgba(0, 48, 24, 0.55) 48%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
}

.slider-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 650ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slider-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding-top: 110px;
}

.hero-slider-content h1 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-slider-content p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  line-height: 1.35;
}

.page-hero p {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn.primary {
  background: var(--green-500);
  color: #fff;
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.hero-glass-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: min(352px, 92vw);
  margin-top: 38px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
  text-align: left;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.glass-logos {
  display: flex;
  align-items: center;
  width: 60px;
}

.glass-logos img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--green-600);
  padding: 5px;
}

.glass-logos img + img {
  margin-left: -14px;
  background: #d7ffe3;
}

.hero-glass-link strong,
.hero-glass-link small {
  display: block;
}

.hero-glass-link strong {
  font-size: 13px;
  font-weight: 600;
}

.hero-glass-link small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.glass-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-600);
}

.glass-arrow svg,
.slider-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-arrow {
  position: absolute;
  top: 55%;
  z-index: 2;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 14px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  cursor: pointer;
}

.slider-prev {
  left: 3.8vw;
}

.slider-next {
  right: 3.8vw;
}

.promise-intro {
  position: relative;
  scroll-margin-top: 90px;
  overflow: hidden;
  min-height: 800px;
  display: grid;
  place-items: center;
  padding: 185px 24px 115px;
  background: #fff;
}

.promise-intro-inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.promise-intro h2 {
  margin: 0;
  color: #07090d;
  font-family: var(--sans);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.intro-rule {
  display: block;
  width: 40px;
  height: 3px;
  margin: 42px auto 22px;
  border-radius: 999px;
  background: var(--green-800);
}

.promise-intro p {
  max-width: 940px;
  margin: 0 auto;
  color: #7d7d7d;
  font-size: clamp(17px, 1.35vw, 23px);
  font-weight: 400;
  line-height: 1.45;
}

.tinubu-pill {
  display: inline-grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-width: 360px;
  margin-top: 46px;
  padding: 10px 10px 10px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 37, 28, 0.04);
  text-align: left;
}

.tinubu-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.tinubu-pill strong,
.tinubu-pill small {
  display: block;
}

.tinubu-pill strong {
  color: #111;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}

.tinubu-pill small {
  margin-top: 5px;
  color: #848484;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hope-orb {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid #dff4e8;
  border-radius: 50%;
  background: radial-gradient(circle, #c9ffd9 0 43%, rgba(214, 255, 228, 0.55) 44% 62%, rgba(214, 255, 228, 0.22) 63% 100%);
}

.hope-orb img {
  width: 40px;
}

.dot-field {
  position: absolute;
  width: 260px;
  height: 210px;
  opacity: 0.5;
  background-image: radial-gradient(circle, rgba(7, 92, 46, 0.24) 0 4px, transparent 4.5px);
  background-size: 24px 24px;
  pointer-events: none;
}

.dot-field-top {
  top: -16px;
  right: 5.6vw;
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
}

.dot-field-bottom {
  bottom: -50px;
  left: 7vw;
  mask-image: linear-gradient(0deg, #000 0%, transparent 86%);
}

.priority-strip {
  position: relative;
  overflow: hidden;
  min-height: 860px;
  display: grid;
  place-items: center;
  padding: 165px 0 155px;
  background: #fff;
}

.priority-list {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.priority-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.priority-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.priority-copy {
  position: absolute;
  left: 6.5%;
  right: 6.5%;
  bottom: 28px;
  min-height: 146px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 12px 28px rgba(0, 0, 0, 0.12);
  text-align: center;
  backdrop-filter: blur(7px);
}

.priority-copy h3 {
  margin: 0 0 9px;
  color: #111;
  font-family: var(--sans);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 800;
  line-height: 1.12;
}

.priority-copy p {
  margin: 0;
  color: #303030;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.32;
}

.ring-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 7px solid rgba(7, 92, 46, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ring-mark-outer {
  width: 920px;
  height: 920px;
  border-color: rgba(7, 92, 46, 0.12);
}

.ring-mark-inner {
  width: 610px;
  height: 610px;
  border-color: rgba(7, 92, 46, 0.32);
}

.list-dot-top-left {
  top: 0;
  left: 6.8vw;
  mask-image: linear-gradient(180deg, #000 0%, transparent 86%);
}

.list-dot-top-right {
  top: 60px;
  right: 7.5vw;
  width: 330px;
  height: 230px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
}

.list-dot-bottom-left {
  bottom: 32px;
  left: 6.8vw;
  mask-image: linear-gradient(0deg, #000 0%, transparent 88%);
}


.intro-section {
  position: relative;
  scroll-margin-top: 115px;
  width: min(1510px, calc(100% - 96px));
  margin: 135px auto 130px;
  display: grid;
  grid-template-columns: minmax(420px, 575px) minmax(0, 760px);
  gap: clamp(52px, 5vw, 96px);
  align-items: center;
}

.intro-media img {
  display: block;
  width: 100%;
  min-height: 760px;
  border-radius: 20px;
  box-shadow: none;
  object-fit: cover;
  object-position: center top;
}

.section-label {
  display: inline-flex;
  color: var(--green-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label.red {
  color: var(--red);
}

.intro-copy h2 {
  margin: 58px 0 0;
  color: #0b0b0d;
  font-family: var(--sans);
  font-size: clamp(36px, 3vw, 50px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.section-heading h2 {
  margin: 14px 0 0;
  font-family: var(--display);
  color: var(--ink);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.96;
}

.intro-copy p {
  max-width: 760px;
  margin: 20px 0 0;
  color: #747474;
  font-size: clamp(17px, 1.2vw, 22px);
  font-weight: 400;
  line-height: 1.43;
}

.section-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.intro-green-rule {
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 38px;
  border-radius: 999px;
  background: var(--green-800);
}

.initiative-pill {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  min-width: 340px;
  padding: 12px 13px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(19, 41, 29, 0.04);
}

.initiative-pill strong {
  color: var(--green-600);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.initiative-logo {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
}

.initiative-logo img {
  position: relative;
  z-index: 1;
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
}

.pill-logo {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  flex: 0 0 auto;
}

.pill-logo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 68%;
  height: 68%;
  object-fit: contain;
}

.kept-logo {
  background: var(--green-800);
}

.hope-logo {
  background: #96ffc1;
}

.hope-logo::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -12px;
  border: 1px solid rgba(7, 92, 46, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(7, 92, 46, 0.05);
  pointer-events: none;
}

.intro-cta {
  margin-top: 44px;
  min-height: 62px;
  padding: 0 25px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: var(--green-800);
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.intro-dot-top {
  top: -120px;
  right: 2.4vw;
  width: 280px;
  height: 220px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
}

.intro-dot-bottom {
  left: -14px;
  bottom: -90px;
  width: 280px;
  height: 230px;
  mask-image: linear-gradient(0deg, #000 0%, transparent 86%);
}

.chairman-section {
  position: relative;
  scroll-margin-top: 115px;
  overflow: hidden;
  width: min(1720px, calc(100% - 112px));
  margin: 115px auto 135px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 660px);
  gap: clamp(64px, 7vw, 150px);
  align-items: center;
  padding: 40px 0 70px;
}

.chairman-copy {
  max-width: 950px;
}

.chairman-pill {
  margin-bottom: 58px;
}

.chairman-copy h2 {
  margin: 0;
  color: #0b0b0d;
  font-family: var(--sans);
  font-size: clamp(36px, 3.4vw, 54px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.chairman-copy .intro-green-rule {
  margin-top: 44px;
  margin-bottom: 20px;
}

.chairman-copy p {
  margin: 0;
  color: #838383;
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.43;
}

.chairman-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.chairman-primary,
.chairman-secondary {
  min-height: 58px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.chairman-primary {
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: var(--green-800);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.chairman-secondary {
  border: 3px solid rgba(7, 92, 46, 0.44);
  background: #fff;
  color: var(--green-800);
}

.chairman-media img {
  display: block;
  width: 100%;
  min-height: 820px;
  border-radius: 24px 24px 0 0;
  object-fit: cover;
  object-position: center top;
}

.chairman-dot-top {
  top: -125px;
  right: -30px;
  width: 270px;
  height: 230px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 86%);
}

.chairman-dot-bottom {
  left: -20px;
  bottom: -72px;
  width: 280px;
  height: 210px;
  mask-image: linear-gradient(0deg, #000 0%, transparent 86%);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stats-band {
  position: relative;
  scroll-margin-top: 110px;
  overflow: hidden;
  padding: 145px 5vw 145px;
  background: #fff;
}

.milestone-heading {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 40px;
  margin-bottom: 46px;
  text-align: center;
}

.milestone-pill {
  min-width: 280px;
  gap: 42px;
  padding: 9px 11px;
}

.milestone-pill .initiative-logo {
  width: 42px;
  height: 42px;
}

.milestone-pill .initiative-logo img {
  max-width: 28px;
  max-height: 28px;
}

.milestone-pill strong {
  font-size: 14px;
}

.milestone-heading h2 {
  margin: 0;
  color: #0b0b0d;
  font-family: var(--sans);
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.milestone-grid {
  position: relative;
  z-index: 1;
  width: min(1530px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.milestone-card {
  position: relative;
  overflow: hidden;
  min-height: 392px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding: 48px 24px 30px;
  border: 1px solid rgba(7, 92, 46, 0.12);
  border-radius: 18px;
  background: #f5faf7;
  text-align: center;
}

.milestone-card:nth-child(2) {
  background: #dff3e7;
}

.milestone-card:nth-child(3) {
  background: #accfc0;
}

.milestone-card:nth-child(4) {
  background: #82b89c;
}

.milestone-card::before,
.milestone-card::after {
  content: "";
  position: absolute;
  border: 1.5px solid rgba(7, 92, 46, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.milestone-card::before {
  width: 330px;
  height: 330px;
  top: -120px;
  left: 65px;
}

.milestone-card::after {
  width: 470px;
  height: 470px;
  top: -230px;
  left: -30px;
}

.milestone-card:nth-child(n + 3)::before,
.milestone-card:nth-child(n + 3)::after {
  border-color: rgba(255, 255, 255, 0.22);
}

.milestone-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.16);
}

.milestone-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.milestone-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #050707;
  font-family: var(--sans);
  font-size: clamp(30px, 2.4vw, 40px);
  font-weight: 800;
  line-height: 1;
}

.milestone-card h3 {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: 12px auto 0;
  color: #060707;
  font-family: var(--sans);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 700;
  line-height: 1.22;
}

.milestone-card p {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin: 22px auto 0;
  color: #3f4843;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.45;
}

.milestone-dot-top {
  top: -22px;
  right: 9.2vw;
  width: 210px;
  height: 190px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
}

.milestone-dot-bottom {
  left: 7vw;
  bottom: -18px;
  width: 210px;
  height: 210px;
  mask-image: linear-gradient(0deg, #000 0%, transparent 88%);
}

.commitments-landing {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  display: grid;
  place-items: start center;
  padding: 220px 24px 0;
  background: #fff;
  text-align: center;
}

.commitments-landing-copy {
  position: relative;
  z-index: 1;
}

.commitments-landing h1 {
  margin: 0;
  color: #0b0d0e;
  font-family: var(--sans);
  font-size: clamp(38px, 3.4vw, 58px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.commitments-landing p {
  margin: 34px 0 0;
  color: #9a9a9a;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.45;
}

.commitments-hero-pill {
  min-width: 240px;
  gap: 20px;
  margin-top: 42px;
  padding: 8px 10px;
}

.commitments-hero-pill .pill-logo {
  width: 44px;
  height: 44px;
}

.commitments-hero-pill strong {
  font-size: 14px;
}

.commitments-watermark {
  position: absolute;
  left: 50%;
  top: 72%;
  display: block;
  width: 100vw;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(120px, 15.6vw, 300px);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.105em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  background: linear-gradient(180deg, rgba(7, 92, 46, 0.22) 0%, rgba(7, 92, 46, 0.04) 62%, rgba(7, 92, 46, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.featured-section,
.commitment-list-section {
  width: min(1220px, calc(100% - 40px));
  margin: 110px auto;
}

.promises-preview {
  position: relative;
  width: min(1300px, calc(100% - 80px));
  margin: 150px auto 132px;
  padding: 0;
}

.commitment-list-section {
  width: min(1300px, calc(100% - 80px));
  margin: 0 auto 190px;
}

.commitments-heading {
  max-width: 800px;
  margin: 0 auto 62px;
  text-align: center;
}

.commitments-heading h2 {
  margin: 0;
  color: #080a0b;
  font-family: var(--sans);
  font-size: clamp(36px, 3.2vw, 50px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.commitments-heading p {
  margin: 42px 0 0;
  color: #8b8f8d;
  font-size: 17px;
  line-height: 1.45;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.feature-grid,
.commitment-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.commitment-grid {
  gap: 24px;
}

.commitment-list-card {
  overflow: hidden;
  border: 1px solid #e2e8e4;
  border-radius: 15px;
  background: #fff;
  padding: 12px 12px 18px;
  box-shadow: 0 12px 28px rgba(28, 45, 35, 0.035);
}

.commitment-list-media {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #eef5f1;
}

.commitment-list-media img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.commitment-list-content {
  padding-top: 18px;
}

.commitment-list-content h3 {
  margin: 0 0 22px;
  color: #080a0b;
  font-family: var(--sans);
  font-size: clamp(20px, 1.4vw, 28px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.commitment-list-content span {
  display: block;
  margin-bottom: 4px;
  color: #8c8f8e;
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.35;
}

.commitment-list-content p {
  margin: 0;
  color: #8c8f8e;
  font-size: clamp(17px, 1.2vw, 22px);
  font-weight: 400;
  line-height: 1.38;
}

.commitment-list-read {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green-800);
  font-size: clamp(16px, 1.12vw, 21px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
}

.promises-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.promises-pill {
  min-width: 285px;
  gap: 34px;
  margin: 0 auto;
  padding: 8px 10px;
}

.promises-pill .pill-logo {
  width: 58px;
  height: 58px;
}

.promises-pill strong {
  font-size: 15px;
  font-weight: 800;
}

.promises-heading h2 {
  margin: 42px 0 0;
  color: #090b0c;
  font-family: var(--sans);
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.promises-heading .intro-green-rule {
  width: 36px;
  height: 3px;
  margin: 30px auto 0;
  background: var(--green-800);
}

.promises-heading p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #777b7a;
  font-size: 18px;
  line-height: 1.45;
}

.promises-grid {
  position: relative;
  z-index: 1;
  gap: 24px;
}

.home-promise-card {
  overflow: hidden;
  border: 1px solid #e2e8e4;
  border-radius: 15px;
  background: #fff;
  padding: 12px 12px 18px;
}

.home-promise-media {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #edf3ef;
}

.home-promise-media img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.home-promise-content {
  padding: 14px 6px 0;
}

.home-promise-content h3 {
  margin: 0 0 8px;
  color: #090b0c;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.home-promise-content span {
  display: block;
  margin-bottom: 2px;
  color: #7c817f;
  font-size: 18px;
  line-height: 1.3;
}

.home-promise-content p {
  margin: 0;
  color: #7c817f;
  font-size: 18px;
  line-height: 1.48;
}

.home-read-more {
  display: inline-block;
  margin-top: 16px;
  color: var(--green-800);
  font-size: 16px;
  font-weight: 800;
}

.home-read-more {
  display: inline-flex;
  margin-top: 9px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
}

.promises-preview .section-center {
  margin-top: 34px;
}

.promises-cta {
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: var(--green-800);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.promises-dot-top {
  top: -148px;
  right: -86px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
}

.promises-dot-bottom {
  bottom: -116px;
  left: -74px;
  mask-image: linear-gradient(0deg, #000 0%, transparent 86%);
}

.promise-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(19, 41, 29, 0.1);
}

.promise-media {
  position: relative;
  display: block;
  min-height: 244px;
  overflow: hidden;
  background: var(--green-950);
}

.promise-media > img:not(.promise-badge) {
  width: 100%;
  height: 100%;
  min-height: 244px;
  object-fit: cover;
  transition: transform 320ms ease;
}

.promise-card:hover .promise-media > img:not(.promise-badge) {
  transform: scale(1.04);
}

.promise-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.68));
}

.promise-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  width: 70px;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.promise-title {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
}

.promise-title h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.05;
}

.promise-title span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.9;
}

.promise-content {
  padding: 26px 28px 30px;
}

.promise-content p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.read-more {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green-600);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-center {
  margin-top: 48px;
  text-align: center;
}

.quote-band {
  position: relative;
  min-height: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  color: #07090a;
  text-align: center;
}

.quote-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 640px;
  height: 640px;
  border: 6px solid rgba(7, 92, 46, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.quote-rings::after {
  content: "";
  position: absolute;
  inset: 90px;
  border: 6px solid rgba(7, 92, 46, 0.16);
  border-radius: 50%;
}

.quote-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  max-width: 45vw;
  opacity: 0.08;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.quote-band blockquote {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto 62px;
  padding: 0 42px;
  font-family: var(--sans);
  font-size: clamp(34px, 3.25vw, 58px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.045em;
}

.quote-caption {
  position: relative;
  z-index: 1;
  display: inline-grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-width: min(820px, calc(100% - 48px));
  padding: 12px 16px;
  border: 1px solid rgba(7, 32, 19, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 34px rgba(17, 38, 26, 0.09);
  backdrop-filter: blur(12px);
}

.quote-caption > span:nth-child(2) {
  color: #151717;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}

.quote-caption .pill-logo {
  width: 54px;
  height: 54px;
}

.quote-dot-top {
  top: 18px;
  right: 7vw;
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
}

.quote-dot-bottom {
  bottom: 54px;
  left: 7vw;
  mask-image: linear-gradient(0deg, #000 0%, transparent 86%);
}

.page-hero {
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  color: #fff;
}

.detail-hero {
  min-height: 620px;
  align-items: end;
  display: flex;
}

.detail-hero .page-hero-copy {
  margin: 0 auto 70px;
  text-align: left;
}

.detail-layout {
  width: min(1160px, calc(100% - 40px));
  margin: 90px auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 56px;
  align-items: start;
}

.detail-article h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
}

.detail-article p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.detail-stat-list {
  display: grid;
  gap: 14px;
}

.detail-stat {
  padding: 22px;
  border-radius: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.detail-stat strong {
  display: block;
  font-family: var(--display);
  color: var(--green-600);
  font-size: 36px;
}

.detail-stat span {
  color: #506159;
  font-weight: 700;
}

.related-section {
  width: min(1160px, calc(100% - 40px));
  margin: 80px auto 110px;
}

.detail-clean {
  width: min(1360px, calc(100% - 80px));
  margin: 0 auto;
  padding: 140px 0 120px;
  background: #fff;
}

.detail-pill {
  min-width: 300px;
  gap: 26px;
  padding: 9px 12px;
}

.detail-pill .pill-logo {
  width: 58px;
  height: 58px;
}

.detail-clean-header {
  margin-top: 140px;
}

.detail-clean-header h1 {
  margin: 0;
  color: #080a0b;
  font-family: var(--sans);
  font-size: clamp(54px, 4.1vw, 82px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.detail-clean-header p {
  max-width: 1280px;
  margin: 42px 0 0;
  color: #979797;
  font-size: clamp(22px, 1.55vw, 30px);
  line-height: 1.48;
}

.detail-clean-image {
  display: block;
  width: 100%;
  height: 430px;
  margin: 108px 0 86px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}

.detail-copy-block {
  margin-top: 72px;
}

.detail-copy-block h2,
.detail-stat-section h2 {
  margin: 0 0 38px;
  color: #080a0b;
  font-family: var(--sans);
  font-size: clamp(36px, 2.9vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.detail-copy-block p {
  margin: 0;
  color: #8d8d8d;
  font-size: clamp(21px, 1.45vw, 28px);
  line-height: 1.45;
}

.detail-stat-section {
  margin-top: 82px;
}

.detail-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.detail-clean-stat {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding: 42px 22px 34px;
  border: 1px solid rgba(7, 92, 46, 0.12);
  border-radius: 18px;
  background: #f5faf7;
  text-align: center;
}

.detail-clean-stat::before,
.detail-clean-stat::after {
  content: "";
  position: absolute;
  border: 1.5px solid rgba(7, 92, 46, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.detail-clean-stat::before {
  width: 300px;
  height: 300px;
  top: -126px;
  left: 56px;
}

.detail-clean-stat::after {
  width: 420px;
  height: 420px;
  top: -220px;
  left: -28px;
}

.detail-stat-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.48);
}

.detail-stat-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.detail-clean-stat strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #07090a;
  font-family: var(--sans);
  font-size: clamp(34px, 2.8vw, 48px);
  font-weight: 800;
  line-height: 1;
}

.detail-clean-stat > span:last-child {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 16px;
  color: #080a0b;
  font-size: clamp(18px, 1.3vw, 24px);
  font-weight: 700;
  line-height: 1.2;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #001f0a;
  color: #fff;
  padding: 122px 0 250px;
}

.footer-content {
  position: relative;
  z-index: 1;
  width: min(1640px, calc(100% - 140px));
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px minmax(0, 1fr);
  align-items: center;
  gap: 80px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer h3 {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--sans);
  font-size: clamp(28px, 2.3vw, 40px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.15vw, 22px);
  font-weight: 400;
  line-height: 1.45;
}

.footer-contact {
  justify-self: end;
  width: min(440px, 100%);
}

.footer-emblem {
  display: grid;
  place-items: center;
}

.footer-emblem span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(150, 255, 193, 0.13);
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, 0.04),
    0 0 0 36px rgba(255, 255, 255, 0.08);
}

.footer-emblem img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  background: #a2ffc7;
  padding: 9px;
}

.footer-socials {
  display: flex;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.footer-socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  font-size: clamp(14px, 1.05vw, 19px);
  line-height: 1.4;
}

.disclaimer {
  max-width: none;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: 1.45;
}

.footer-watermark {
  position: absolute;
  left: 0;
  right: auto;
  bottom: -8px;
  color: rgba(17, 111, 71, 0.38);
  font-family: var(--display);
  font-size: clamp(180px, 18vw, 370px);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.chairman-main {
  overflow: hidden;
  background: #fff;
}

.chairman-shell {
  width: min(1360px, calc(100% - 80px));
  margin: 0 auto;
}

.chairman-hero {
  position: relative;
  padding: 185px 0 96px;
}

.chairman-dot-top {
  top: 122px;
  right: 8vw;
}

.chairman-dot-bottom {
  bottom: 24px;
  left: 7vw;
}

.chairman-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.82fr);
  gap: clamp(54px, 7vw, 120px);
  align-items: center;
}

.chairman-pill,
.chairman-small-pill {
  width: 390px;
  margin: 0 0 54px;
}

.chairman-small-pill {
  width: 330px;
  margin: 0 auto 48px;
}

.chairman-kicker {
  margin: 0 0 18px;
  color: var(--green-600);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chairman-copy h1,
.chairman-section-heading h2 {
  margin: 0;
  color: #080a0b;
  font-family: var(--sans);
  font-size: clamp(46px, 4.4vw, 76px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.07;
}

.chairman-rule {
  margin: 38px 0 30px;
}

.chairman-copy p {
  max-width: 820px;
  color: #7f807f;
  font-size: clamp(20px, 1.5vw, 28px);
  line-height: 1.56;
}

.chairman-lead {
  color: #333b36;
}

.chairman-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 48px;
}

.btn-outline {
  background: transparent;
  color: var(--green-800);
  border: 2px solid rgba(7, 92, 46, 0.42);
  box-shadow: none;
}

.chairman-portrait-wrap {
  display: block;
  width: 100%;
  min-height: 680px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: #f7f3eb;
  box-shadow: 0 30px 80px rgba(11, 45, 29, 0.12);
  cursor: pointer;
}

.chairman-portrait-wrap img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.chairman-facts {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.chairman-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.chairman-facts article {
  padding: 42px 36px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.chairman-facts article:last-child {
  border-right: 0;
}

.chairman-facts span {
  display: block;
  margin-bottom: 12px;
  color: var(--green-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chairman-facts strong {
  color: #1b2520;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.28;
}

.chairman-story,
.chairman-focus,
.chairman-timeline,
.chairman-gallery {
  position: relative;
  padding: 110px 0;
}

.chairman-section-heading {
  width: min(960px, 100%);
  margin: 0 auto 68px;
}

.chairman-section-heading h2 {
  font-size: clamp(40px, 3.6vw, 62px);
}

.chairman-section-heading p {
  color: #7f807f;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.55;
}

.chairman-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: start;
}

.chairman-card,
.chairman-focus-grid article,
.chairman-timeline-list article {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 26px 80px rgba(10, 38, 24, 0.06);
}

.chairman-bio {
  padding: clamp(34px, 4vw, 64px);
}

.chairman-bio p,
.chairman-side-card p,
.chairman-focus-grid p,
.chairman-timeline-list p {
  color: #737c78;
  font-size: 19px;
  line-height: 1.78;
}

.chairman-bio p:first-child {
  margin-top: 0;
}

.chairman-side-card {
  padding: 28px;
}

.chairman-side-card > p {
  margin: 0 0 24px;
  color: #10251c;
  font-family: var(--display);
  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 900;
  line-height: 1.32;
}

.chairman-mini-gallery,
.chairman-gallery-grid {
  display: grid;
  gap: 18px;
}

.chairman-mini-gallery {
  grid-template-columns: repeat(2, 1fr);
}

.chairman-gallery-trigger {
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  cursor: pointer;
}

.chairman-gallery-trigger img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.chairman-gallery-trigger:hover img {
  transform: scale(1.04);
}

.chairman-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.chairman-focus-grid article {
  padding: 38px;
}

.chairman-focus-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--green-800);
  font-size: 23px;
}

.chairman-timeline-list {
  display: grid;
  gap: 18px;
}

.chairman-timeline-list article {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  padding: 34px;
}

.chairman-timeline-list span {
  color: var(--green-600);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chairman-timeline-list h3 {
  margin: 0 0 10px;
  color: #080a0b;
  font-size: 24px;
}

.chairman-timeline-list p {
  margin: 0;
}

.chairman-gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.chairman-gallery-grid .chairman-gallery-trigger,
.chairman-gallery-grid img {
  min-height: 360px;
}

.chairman-lightbox {
  width: min(980px, calc(100% - 36px));
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
}

.chairman-lightbox::backdrop {
  background: rgba(0, 20, 10, 0.78);
}

.chairman-lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  border-radius: 24px;
  background: #fff;
}

.chairman-lightbox-close,
.chairman-lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--green-900);
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.chairman-lightbox-close {
  top: -18px;
  right: -18px;
  width: 46px;
  height: 46px;
  font-size: 28px;
}

.chairman-lightbox-nav {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 42px;
  transform: translateY(-50%);
}

.chairman-lightbox-prev {
  left: -26px;
}

.chairman-lightbox-next {
  right: -26px;
}

.contact-main {
  overflow: hidden;
  background: #fff;
}

.contact-shell {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
}

.contact-hero {
  position: relative;
  padding: 190px 0 104px;
}

.contact-dot-top {
  top: 132px;
  right: 8vw;
}

.contact-dot-bottom {
  bottom: 22px;
  left: 7vw;
}

.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.contact-pill {
  width: 360px;
  margin: 0 0 58px;
}

.contact-copy h1 {
  max-width: 850px;
  margin: 0;
  color: #080a0b;
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.contact-rule {
  margin: 40px 0 32px;
}

.contact-copy p {
  max-width: 840px;
  margin: 0;
  color: #747d79;
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.55;
}

.contact-info-panel {
  display: grid;
  gap: 24px;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 8%, rgba(12, 151, 61, 0.12), transparent 32%),
    #fff;
  box-shadow: 0 30px 90px rgba(10, 38, 24, 0.08);
}

.contact-info-panel > img {
  width: 112px;
}

.contact-info-panel article {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-info-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--green-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-info-panel strong {
  color: #17231d;
  font-size: 22px;
  line-height: 1.4;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 10px;
}

.contact-socials a {
  padding: 10px 14px;
  border: 1px solid rgba(7, 92, 46, 0.22);
  border-radius: 999px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
}

.contact-form-section {
  padding: 30px 0 130px;
}

.contact-form-wrap {
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(10, 38, 24, 0.07);
}

.contact-form-heading {
  margin-bottom: 52px;
}

.contact-form-heading h2 {
  margin: 0;
  color: #080a0b;
  font-size: clamp(38px, 3.5vw, 58px);
  letter-spacing: -0.045em;
}

.contact-form-heading p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #78817d;
  font-size: 18px;
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form label span {
  color: #26342e;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dfe8e3;
  border-radius: 16px;
  background: #f9fbfa;
  color: #101817;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input {
  min-height: 58px;
  padding: 0 18px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 190px;
  padding: 18px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(12, 151, 61, 0.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(12, 151, 61, 0.12);
}

.contact-message-field {
  margin-top: 22px;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
}

.contact-submit {
  margin-top: 28px;
  border: 0;
  cursor: pointer;
}

.contact-status {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 800;
}

.contact-status-success {
  background: rgba(12, 151, 61, 0.1);
  color: var(--green-800);
}

.contact-status-error {
  background: rgba(233, 35, 32, 0.1);
  color: #b81414;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .header-title {
    margin-left: auto;
    margin-right: 14px;
    font-size: 15px;
    letter-spacing: 0.06em;
  }

  .header-title span {
    display: none;
  }

  .site-header.menu-open .site-nav {
    display: grid;
  }

  .intro-section,
  .chairman-section,
  .detail-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 110px 0 180px;
  }

  .footer-content {
    width: min(720px, calc(100% - 40px));
  }

  .footer-top {
    gap: 54px;
  }

  .footer-emblem {
    order: -1;
  }

  .footer-contact {
    justify-self: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-clean {
    width: min(760px, calc(100% - 40px));
  }

  .detail-clean-header {
    margin-top: 90px;
  }

  .detail-clean-image {
    height: 340px;
    margin: 72px 0 64px;
  }

  .detail-stat-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .commitment-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commitments-page .site-header,
  .detail-page .site-header,
  .chairman-page .site-header,
  .contact-page .site-header {
    min-height: 86px;
    grid-template-columns: auto auto;
  }

  .commitments-page .brand img:first-child,
  .detail-page .brand img:first-child,
  .chairman-page .brand img:first-child,
  .contact-page .brand img:first-child {
    width: 64px;
  }

  .commitments-page .header-title,
  .detail-page .header-title,
  .chairman-page .header-title,
  .contact-page .header-title {
    display: none;
  }

  body.commitments-page .site-nav,
  body.detail-page .site-nav,
  body.chairman-page .site-nav,
  body.contact-page .site-nav {
    color: #314039;
    font-size: 13px;
  }

  .chairman-shell {
    width: min(760px, calc(100% - 40px));
  }

  .chairman-hero {
    padding: 145px 0 76px;
  }

  .chairman-hero-grid,
  .chairman-story-grid {
    grid-template-columns: 1fr;
  }

  .chairman-portrait-wrap,
  .chairman-portrait-wrap img {
    min-height: 560px;
  }

  .chairman-facts-grid,
  .chairman-focus-grid,
  .chairman-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .chairman-facts article:nth-child(2) {
    border-right: 0;
  }

  .chairman-timeline-list article {
    grid-template-columns: 1fr;
  }

  .contact-shell {
    width: min(760px, calc(100% - 40px));
  }

  .contact-hero {
    padding: 150px 0 78px;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .commitments-landing {
    min-height: 700px;
    padding-top: 160px;
  }

  .commitments-watermark {
    top: 72%;
    font-size: clamp(78px, 15vw, 140px);
  }

  .commitment-list-section {
    width: min(760px, calc(100% - 40px));
    margin-bottom: 120px;
  }

  .commitment-grid {
    gap: 24px;
  }

  .promises-preview {
    width: min(760px, calc(100% - 40px));
    margin: 110px auto;
  }

  .promises-grid {
    gap: 22px;
  }

  .stats-band {
    padding: 100px 24px;
  }

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

  .intro-section {
    width: min(720px, calc(100% - 40px));
    gap: 42px;
    margin: 90px auto;
  }

  .intro-media img {
    min-height: 560px;
  }

  .intro-copy h2 {
    margin-top: 32px;
  }

  .chairman-section {
    width: min(720px, calc(100% - 40px));
    gap: 46px;
    margin: 90px auto;
  }

  .chairman-media {
    order: -1;
  }

  .chairman-media img {
    min-height: 560px;
  }

  .chairman-pill {
    margin-bottom: 34px;
  }

  .priority-strip {
    min-height: auto;
    padding: 100px 0;
  }

  .priority-list {
    grid-template-columns: repeat(5, minmax(280px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .priority-panel {
    min-height: 470px;
    scroll-snap-align: start;
  }

  .priority-panel img {
    min-height: 470px;
  }

  .ring-mark-outer {
    width: 760px;
    height: 760px;
  }

  .ring-mark-inner {
    width: 500px;
    height: 500px;
  }

  .quote-band {
    min-height: 650px;
  }

  .quote-rings {
    width: 520px;
    height: 520px;
  }

  .quote-rings::after {
    inset: 72px;
  }

  .quote-band blockquote {
    max-width: 900px;
    margin-bottom: 44px;
    font-size: clamp(30px, 4.8vw, 46px);
  }

  .quote-caption {
    min-width: min(760px, calc(100% - 40px));
  }

  .quote-caption > span:nth-child(2) {
    font-size: 17px;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .hero-slider-content h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-slider-content p,
  .page-hero p {
    font-size: 15px;
  }

  .promise-intro {
    min-height: auto;
    padding: 76px 20px 70px;
  }

  .promise-intro h2 {
    font-size: 30px;
  }

  .promise-intro p {
    font-size: 17px;
  }

  .tinubu-pill {
    min-width: 0;
    width: min(100%, 360px);
    gap: 12px;
  }

  .tinubu-pill strong {
    font-size: 18px;
  }

  .tinubu-pill small {
    font-size: 12px;
  }

  .dot-field {
    width: 170px;
    height: 150px;
    background-size: 18px 18px;
  }

  .priority-strip {
    padding: 70px 0;
  }

  .priority-list {
    grid-template-columns: repeat(5, minmax(255px, 78vw));
  }

  .priority-panel,
  .priority-panel img {
    min-height: 430px;
  }

  .priority-copy {
    bottom: 22px;
    min-height: 132px;
    padding: 14px;
  }

  .priority-copy h3 {
    font-size: 21px;
  }

  .priority-copy p {
    font-size: 16px;
  }

  .ring-mark-outer {
    width: 560px;
    height: 560px;
  }

  .ring-mark-inner {
    width: 360px;
    height: 360px;
  }

  .feature-grid,
  .commitment-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .commitments-page .brand img:first-child,
  .detail-page .brand img:first-child,
  .chairman-page .brand img:first-child,
  .contact-page .brand img:first-child {
    width: 54px;
  }

  .commitments-page .brand img:nth-child(2),
  .detail-page .brand img:nth-child(2),
  .chairman-page .brand img:nth-child(2),
  .contact-page .brand img:nth-child(2) {
    width: 42px;
    height: 42px;
  }

  .commitments-page .brand img:last-child,
  .detail-page .brand img:last-child,
  .chairman-page .brand img:last-child,
  .contact-page .brand img:last-child {
    display: none;
  }

  .chairman-shell {
    width: min(100% - 32px, 420px);
  }

  .chairman-hero {
    padding: 124px 0 64px;
  }

  .chairman-pill,
  .chairman-small-pill {
    width: min(100%, 292px);
    margin-bottom: 36px;
  }

  .chairman-copy h1,
  .chairman-section-heading h2 {
    font-size: 38px;
  }

  .chairman-copy p,
  .chairman-section-heading p,
  .chairman-bio p,
  .chairman-focus-grid p,
  .chairman-timeline-list p {
    font-size: 16px;
  }

  .chairman-portrait-wrap,
  .chairman-portrait-wrap img {
    min-height: 430px;
  }

  .chairman-facts-grid,
  .chairman-focus-grid,
  .chairman-gallery-grid {
    grid-template-columns: 1fr;
  }

  .chairman-facts article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .chairman-facts article:last-child {
    border-bottom: 0;
  }

  .chairman-story,
  .chairman-focus,
  .chairman-timeline,
  .chairman-gallery {
    padding: 72px 0;
  }

  .chairman-gallery-grid .chairman-gallery-trigger,
  .chairman-gallery-grid img {
    min-height: 290px;
  }

  .chairman-lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .chairman-lightbox-prev {
    left: 8px;
  }

  .chairman-lightbox-next {
    right: 8px;
  }

  .contact-shell {
    width: min(100% - 32px, 420px);
  }

  .contact-hero {
    padding: 124px 0 64px;
  }

  .contact-pill {
    width: min(100%, 292px);
    margin-bottom: 36px;
  }

  .contact-copy h1 {
    font-size: 38px;
  }

  .contact-copy p,
  .contact-form-heading p,
  .contact-info-panel strong {
    font-size: 16px;
  }

  .contact-form-wrap {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .commitments-landing {
    min-height: 560px;
    padding: 132px 20px 0;
  }

  .commitments-landing h1 {
    font-size: 31px;
  }

  .commitments-landing p {
    margin-top: 22px;
    font-size: 15px;
  }

  .commitments-hero-pill {
    width: min(100%, 280px);
  }

  .commitments-watermark {
    top: 73%;
    font-size: 48px;
    letter-spacing: -0.08em;
  }

  .commitment-list-section {
    width: min(100% - 32px, 420px);
    margin-bottom: 90px;
  }

  .commitments-heading {
    margin-bottom: 36px;
  }

  .commitments-heading h2 {
    font-size: 34px;
  }

  .commitments-heading p {
    margin-top: 22px;
    font-size: 15px;
  }

  .commitment-list-card {
    border-radius: 14px;
  }

  .commitment-list-media img {
    height: 150px;
  }

  .commitment-list-content h3 {
    font-size: 19px;
    margin-bottom: 14px;
  }

  .commitment-list-content span,
  .commitment-list-content p,
  .commitment-list-read {
    font-size: 16px;
  }

  .promises-preview {
    width: min(420px, calc(100% - 32px));
    margin: 82px auto;
  }

  .promises-heading {
    margin-bottom: 34px;
  }

  .promises-pill {
    width: min(100%, 300px);
    gap: 18px;
  }

  .promises-heading h2 {
    margin-top: 32px;
    font-size: 42px;
  }

  .promises-heading p {
    font-size: 17px;
  }

  .home-promise-media img {
    height: 150px;
  }

  .home-promise-content h3 {
    font-size: 19px;
    margin-bottom: 14px;
  }

  .home-promise-content span,
  .home-promise-content p,
  .home-read-more {
    font-size: 16px;
  }

  .stats-band {
    padding: 76px 20px;
  }

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

  .milestone-card {
    min-height: 330px;
  }

  .milestone-heading {
    gap: 28px;
    margin-bottom: 34px;
  }

  .milestone-pill {
    min-width: 0;
    width: min(100%, 300px);
    gap: 18px;
  }

  .promise-title h3 {
    font-size: 23px;
  }

  .site-header {
    min-height: 76px;
  }

  .site-nav {
    top: 76px;
  }

  .brand img:first-child {
    width: 54px;
  }

  .brand img:nth-child(2) {
    width: 38px;
    height: 38px;
  }

  .brand img:last-child {
    display: none;
  }

  .header-title {
    display: none;
  }

  .promise-media,
  .promise-media > img:not(.promise-badge) {
    min-height: 224px;
  }

  .intro-section {
    margin: 70px auto;
  }

  .chairman-section {
    margin: 70px auto;
    padding-bottom: 45px;
  }

  .chairman-media img {
    min-height: 430px;
  }

  .chairman-copy h2 {
    font-size: 35px;
  }

  .chairman-copy p {
    font-size: 17px;
  }

  .chairman-primary,
  .chairman-secondary {
    width: 100%;
    min-height: 56px;
    font-size: 16px;
  }

  .intro-media img {
    min-height: 430px;
  }

  .initiative-pill {
    min-width: 0;
    width: 100%;
    gap: 14px;
  }

  .initiative-pill strong {
    font-size: 14px;
  }

  .intro-copy h2 {
    font-size: 36px;
    white-space: normal;
  }

  .intro-copy p {
    font-size: 17px;
  }

  .intro-cta {
    min-height: 54px;
    font-size: 16px;
  }

  .site-footer {
    padding: 82px 0 120px;
  }

  .footer-content {
    width: min(100% - 32px, 420px);
  }

  .site-footer h3 {
    margin-bottom: 22px;
    font-size: 34px;
  }

  .site-footer p,
  .site-footer a {
    font-size: 18px;
  }

  .footer-top {
    gap: 38px;
  }

  .footer-emblem span {
    width: 72px;
    height: 72px;
    box-shadow:
      0 0 0 13px rgba(255, 255, 255, 0.04),
      0 0 0 26px rgba(255, 255, 255, 0.08);
  }

  .footer-emblem img {
    width: 48px;
    height: 48px;
  }

  .footer-socials {
    gap: 14px;
  }

  .footer-bottom {
    padding: 28px 0;
  }

  .footer-bottom p,
  .disclaimer {
    font-size: 15px;
  }

  .footer-watermark {
    bottom: -8px;
    font-size: 92px;
  }

  .detail-clean {
    width: min(100% - 32px, 420px);
    padding: 112px 0 78px;
  }

  .detail-pill {
    width: min(100%, 300px);
  }

  .detail-clean-header {
    margin-top: 66px;
  }

  .detail-clean-header h1 {
    font-size: 40px;
  }

  .detail-clean-header p,
  .detail-copy-block p {
    font-size: 18px;
  }

  .detail-clean-image {
    height: 230px;
    margin: 52px 0 52px;
    border-radius: 12px;
  }

  .detail-copy-block,
  .detail-stat-section {
    margin-top: 54px;
  }

  .detail-copy-block h2,
  .detail-stat-section h2 {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .quote-band {
    min-height: 560px;
    padding: 74px 0;
  }

  .quote-rings {
    width: 380px;
    height: 380px;
    border-width: 4px;
  }

  .quote-rings::after {
    inset: 54px;
    border-width: 4px;
  }

  .quote-watermark {
    width: 250px;
  }

  .quote-band blockquote {
    padding: 0 22px;
    margin-bottom: 34px;
    font-size: 28px;
    line-height: 1.25;
  }

  .quote-caption {
    width: min(100% - 32px, 420px);
    min-width: 0;
    gap: 12px;
    padding: 10px 12px;
  }

  .quote-caption .pill-logo {
    width: 44px;
    height: 44px;
  }

  .quote-caption > span:nth-child(2) {
    font-size: 13px;
  }
}

/* Mobile responsiveness hardening */
@media (max-width: 980px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-open,
  .commitments-page .site-header,
  .detail-page .site-header,
  .chairman-page .site-header,
  .contact-page .site-header {
    min-height: 78px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 10px 18px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand img:first-child,
  .site-header.is-scrolled .brand img:first-child,
  .commitments-page .brand img:first-child,
  .detail-page .brand img:first-child,
  .chairman-page .brand img:first-child,
  .contact-page .brand img:first-child {
    width: 62px;
  }

  .brand img:nth-child(2),
  .site-header.is-scrolled .brand img:nth-child(2),
  .commitments-page .brand img:nth-child(2),
  .detail-page .brand img:nth-child(2),
  .chairman-page .brand img:nth-child(2),
  .contact-page .brand img:nth-child(2) {
    width: 34px;
    height: 34px;
  }

  .brand img:last-child,
  .site-header.is-scrolled .brand img:last-child,
  .commitments-page .brand img:last-child,
  .detail-page .brand img:last-child,
  .chairman-page .brand img:last-child,
  .contact-page .brand img:last-child {
    width: 64px;
  }

  .site-nav,
  body.commitments-page .site-nav,
  body.detail-page .site-nav,
  body.chairman-page .site-nav,
  body.contact-page .site-nav {
    top: 78px;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 18px 18px;
    color: #1f2f28;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 44px rgba(13, 43, 27, 0.12);
  }

  .site-nav a,
  body.commitments-page .site-nav a,
  body.detail-page .site-nav a,
  body.chairman-page .site-nav a,
  body.contact-page .site-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(7, 92, 46, 0.09);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta,
  body.commitments-page .site-nav .nav-cta,
  body.detail-page .site-nav .nav-cta,
  body.chairman-page .site-nav .nav-cta,
  body.contact-page .site-nav .nav-cta {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    margin-top: 12px;
    padding: 0 18px;
    border-radius: 10px;
  }

  .hero,
  .hero-slider-content {
    min-height: min(760px, 100svh);
  }

  .hero-slider-content {
    width: min(100% - 36px, 720px);
    padding-top: 92px;
  }

  .slider-arrow {
    top: auto;
    bottom: 34px;
    width: 46px;
    height: 46px;
    border-width: 9px;
  }

  .hero-glass-link,
  .tinubu-pill,
  .initiative-pill,
  .milestone-pill,
  .promises-pill,
  .commitments-hero-pill,
  .detail-pill,
  .chairman-pill,
  .chairman-small-pill,
  .contact-pill {
    max-width: 100%;
  }

  .promise-intro {
    min-height: auto;
    padding: 104px 20px 86px;
  }

  .promise-intro-inner {
    width: min(100%, 760px);
  }

  .priority-list {
    width: 100%;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .intro-section,
  .chairman-section,
  .promises-preview,
  .commitment-list-section,
  .featured-section,
  .related-section,
  .detail-layout,
  .detail-clean,
  .chairman-shell,
  .contact-shell,
  .footer-content {
    width: min(100% - 36px, 760px);
  }

  .intro-media img,
  .chairman-media img,
  .chairman-portrait-wrap,
  .chairman-portrait-wrap img {
    min-height: clamp(380px, 70vw, 560px);
  }

  .intro-copy h2,
  .chairman-copy h2,
  .chairman-copy h1,
  .chairman-section-heading h2,
  .contact-copy h1,
  .detail-clean-header h1 {
    overflow-wrap: anywhere;
  }

  .commitment-grid,
  .feature-grid,
  .related-grid,
  .promises-grid {
    grid-template-columns: 1fr;
  }

  .commitment-list-card,
  .home-promise-card {
    max-width: 520px;
    margin-inline: auto;
  }

  .milestone-card,
  .detail-clean-stat {
    min-height: 280px;
  }

  .quote-caption {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .quote-caption > span:nth-child(2) {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-open,
  .commitments-page .site-header,
  .detail-page .site-header,
  .chairman-page .site-header,
  .contact-page .site-header {
    min-height: 72px;
    padding: 8px 14px;
  }

  .site-nav,
  body.commitments-page .site-nav,
  body.detail-page .site-nav,
  body.chairman-page .site-nav,
  body.contact-page .site-nav {
    top: 72px;
    max-height: calc(100vh - 72px);
    padding-inline: 16px;
  }

  .brand img:first-child,
  .site-header.is-scrolled .brand img:first-child,
  .commitments-page .brand img:first-child,
  .detail-page .brand img:first-child,
  .chairman-page .brand img:first-child,
  .contact-page .brand img:first-child {
    width: 52px;
  }

  .brand img:nth-child(2),
  .site-header.is-scrolled .brand img:nth-child(2),
  .commitments-page .brand img:nth-child(2),
  .detail-page .brand img:nth-child(2),
  .chairman-page .brand img:nth-child(2),
  .contact-page .brand img:nth-child(2) {
    width: 31px;
    height: 31px;
  }

  .brand img:last-child,
  .site-header.is-scrolled .brand img:last-child,
  .commitments-page .brand img:last-child,
  .detail-page .brand img:last-child,
  .chairman-page .brand img:last-child,
  .contact-page .brand img:last-child {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 10px;
  }

  .hero,
  .hero-slider-content {
    min-height: 720px;
  }

  .hero-slider-content {
    width: min(100% - 28px, 420px);
    padding-top: 86px;
  }

  .hero-slider-content h1,
  .page-hero h1 {
    font-size: clamp(34px, 11vw, 42px);
    line-height: 1.08;
  }

  .hero-slider-content p,
  .page-hero p {
    font-size: 15px;
    line-height: 1.48;
  }

  .hero-glass-link {
    width: min(100%, 330px);
    gap: 10px;
    padding: 9px 12px;
  }

  .glass-logos {
    width: 50px;
  }

  .glass-logos img {
    width: 34px;
    height: 34px;
  }

  .slider-arrow {
    bottom: 22px;
    width: 42px;
    height: 42px;
    border-width: 8px;
  }

  .slider-prev {
    left: 18px;
  }

  .slider-next {
    right: 18px;
  }

  .promise-intro {
    padding: 82px 18px 70px;
  }

  .promise-intro h2,
  .commitments-landing h1,
  .commitments-heading h2,
  .promises-heading h2,
  .milestone-heading h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .promise-intro p,
  .intro-copy p,
  .chairman-copy p,
  .chairman-section-heading p,
  .contact-copy p,
  .detail-clean-header p,
  .detail-copy-block p {
    font-size: 16px;
    line-height: 1.55;
  }

  .tinubu-pill,
  .initiative-pill,
  .milestone-pill,
  .promises-pill,
  .commitments-hero-pill,
  .detail-pill,
  .chairman-pill,
  .chairman-small-pill,
  .contact-pill {
    width: min(100%, 330px);
    min-width: 0;
    gap: 14px;
    padding: 8px 10px;
  }

  .tinubu-avatar,
  .hope-orb,
  .pill-logo,
  .initiative-logo,
  .detail-pill .pill-logo,
  .promises-pill .pill-logo {
    width: 46px;
    height: 46px;
  }

  .hope-orb img,
  .pill-logo img,
  .initiative-logo img {
    max-width: 30px;
    max-height: 30px;
  }

  .tinubu-pill strong,
  .initiative-pill strong,
  .milestone-pill strong,
  .promises-pill strong,
  .commitments-hero-pill strong,
  .detail-pill strong {
    font-size: 14px;
  }

  .tinubu-pill small {
    font-size: 11px;
  }

  .priority-strip {
    padding: 58px 0;
  }

  .priority-list {
    grid-template-columns: repeat(5, minmax(250px, 82vw));
  }

  .priority-panel,
  .priority-panel img {
    min-height: 390px;
  }

  .priority-copy {
    left: 14px;
    right: 14px;
    bottom: 18px;
    min-height: 118px;
    padding: 13px 12px;
  }

  .priority-copy h3 {
    font-size: 20px;
  }

  .priority-copy p {
    font-size: 14px;
  }

  .intro-section,
  .chairman-section,
  .promises-preview,
  .commitment-list-section,
  .featured-section,
  .related-section,
  .detail-layout,
  .detail-clean,
  .chairman-shell,
  .contact-shell,
  .footer-content {
    width: min(100% - 28px, 430px);
  }

  .intro-section,
  .chairman-section,
  .promises-preview {
    margin-block: 64px;
  }

  .intro-media img,
  .chairman-media img,
  .chairman-portrait-wrap,
  .chairman-portrait-wrap img {
    min-height: 360px;
    border-radius: 18px;
  }

  .intro-copy h2,
  .chairman-copy h2,
  .chairman-copy h1,
  .chairman-section-heading h2,
  .contact-copy h1,
  .detail-clean-header h1 {
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .chairman-actions {
    gap: 14px;
  }

  .chairman-primary,
  .chairman-secondary,
  .intro-cta,
  .contact-submit {
    width: 100%;
  }

  .milestone-grid,
  .detail-stat-grid,
  .contact-grid,
  .chairman-facts-grid,
  .chairman-focus-grid,
  .chairman-gallery-grid,
  .chairman-mini-gallery {
    grid-template-columns: 1fr;
  }

  .commitments-landing {
    min-height: 520px;
    padding: 112px 16px 0;
  }

  .commitments-watermark {
    top: 72%;
    width: 140vw;
    font-size: clamp(58px, 24vw, 110px);
    letter-spacing: -0.11em;
  }

  .commitment-list-media img,
  .home-promise-media img {
    height: 148px;
  }

  .commitment-list-content,
  .home-promise-content {
    padding-top: 14px;
  }

  .commitment-list-content h3,
  .home-promise-content h3 {
    font-size: 18px;
    line-height: 1.16;
  }

  .commitment-list-content span,
  .commitment-list-content p,
  .commitment-list-read,
  .home-promise-content span,
  .home-promise-content p,
  .home-read-more {
    font-size: 15px;
  }

  .quote-band {
    min-height: 510px;
    padding: 68px 0;
  }

  .quote-rings {
    width: 330px;
    height: 330px;
  }

  .quote-band blockquote {
    padding-inline: 18px;
    font-size: clamp(24px, 7.2vw, 31px);
  }

  .quote-caption {
    width: min(100% - 28px, 410px);
    gap: 10px;
    border-radius: 28px;
  }

  .quote-caption .pill-logo {
    width: 40px;
    height: 40px;
  }

  .detail-clean {
    padding: 98px 0 70px;
  }

  .detail-clean-header {
    margin-top: 54px;
  }

  .detail-clean-image {
    height: 220px;
    margin: 44px 0 48px;
  }

  .detail-clean-stat {
    min-height: 220px;
    padding: 34px 18px 28px;
  }

  .detail-copy-block h2,
  .detail-stat-section h2 {
    font-size: 30px;
  }

  .contact-form-wrap {
    padding: 24px 16px;
  }

  .contact-info-panel {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .site-footer {
    padding: 72px 0 108px;
  }

  .footer-top {
    gap: 34px;
  }

  .footer-bottom {
    gap: 18px;
  }

  .site-footer h3 {
    font-size: 30px;
  }

  .site-footer p,
  .site-footer a {
    font-size: 16px;
  }

  .footer-watermark {
    font-size: clamp(78px, 25vw, 130px);
    left: -12px;
    bottom: 0;
  }
}

@media (max-width: 380px) {
  .brand {
    gap: 7px;
  }

  .brand img:first-child,
  .site-header.is-scrolled .brand img:first-child,
  .commitments-page .brand img:first-child,
  .detail-page .brand img:first-child,
  .chairman-page .brand img:first-child,
  .contact-page .brand img:first-child {
    width: 46px;
  }

  .brand img:nth-child(2),
  .site-header.is-scrolled .brand img:nth-child(2),
  .commitments-page .brand img:nth-child(2),
  .detail-page .brand img:nth-child(2),
  .chairman-page .brand img:nth-child(2),
  .contact-page .brand img:nth-child(2) {
    width: 28px;
    height: 28px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  .hero-glass-link {
    grid-template-columns: auto 1fr;
  }

  .hero-glass-link .glass-arrow {
    display: none;
  }

  .tinubu-pill,
  .initiative-pill,
  .milestone-pill,
  .promises-pill,
  .commitments-hero-pill,
  .detail-pill,
  .chairman-pill,
  .chairman-small-pill,
  .contact-pill,
  .quote-caption {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
  }

  .initiative-pill strong,
  .milestone-pill strong,
  .promises-pill strong,
  .commitments-hero-pill strong,
  .detail-pill strong,
  .quote-caption > span:nth-child(2) {
    font-size: 12px;
  }

  .priority-list {
    grid-template-columns: repeat(5, minmax(232px, 84vw));
  }

  .priority-panel,
  .priority-panel img {
    min-height: 360px;
  }
}
