:root {
  --ink: #0c3324;
  --ink-2: #174735;
  --text: #26352e;
  --muted: #66756f;
  --line: #dfd6c4;
  --gold: #aa7a16;
  --gold-2: #d7b46b;
  --cream: #fbf8f0;
  --cream-2: #f3ead9;
  --white: #fffdf8;
  --shadow: 0 24px 60px rgba(35, 42, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(223, 214, 196, 0.7);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: calc(100% - 48px);
  max-width: 1280px;
  min-height: 108px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 270px;
}

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

.brand-name {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.brand-motto {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 1.8px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 160ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.88) 27%, rgba(255, 253, 248, 0.26) 55%, rgba(255, 253, 248, 0) 100%),
    url("assets/hero-river-community.png") center right / cover no-repeat;
}

.about-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.88) 30%, rgba(255, 253, 248, 0.32) 58%, rgba(255, 253, 248, 0.04) 100%),
    url("assets/ijaw-regatta.png") center right / cover no-repeat;
}

.projects-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.89) 31%, rgba(255, 253, 248, 0.36) 58%, rgba(255, 253, 248, 0.06) 100%),
    url("assets/classroom-1.jpeg") center right / cover no-repeat;
}

.partner-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.88) 29%, rgba(255, 253, 248, 0.3) 56%, rgba(255, 253, 248, 0.02) 100%),
    url("assets/partner-stakeholder-meeting.png") center right / cover no-repeat;
}

.work-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.88) 30%, rgba(255, 253, 248, 0.32) 58%, rgba(255, 253, 248, 0.04) 100%),
    url("assets/work-policy-workshop.png") center right / cover no-repeat;
}

.contact-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.89) 30%, rgba(255, 253, 248, 0.34) 58%, rgba(255, 253, 248, 0.04) 100%),
    url("assets/contact-office.png") center right / cover no-repeat;
}

.hero-inner,
.page-hero-inner {
  position: relative;
  width: calc(100% - 48px);
  max-width: 1280px;
  margin: 0 auto;
}

.hero-inner {
  padding: 90px 0 76px;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.04;
  margin: 0;
}

h1 {
  max-width: 580px;
  font-size: clamp(48px, 6.6vw, 92px);
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
}

h3 {
  font-size: 25px;
}

.rule {
  width: 96px;
  height: 2px;
  margin: 28px 0 24px;
  background: var(--gold);
}

.lead {
  max-width: 610px;
  color: #24342d;
  font-size: 18px;
}

.hero .lead {
  max-width: 520px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: var(--cream);
}

.section.deep {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.section.deep h2,
.section.deep h3 {
  color: #fff;
}

.container {
  width: calc(100% - 48px);
  max-width: 1180px;
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
}

.who-we-are-split {
  align-items: center;
}

.priority-grid,
.card-grid,
.two-grid,
.contact-grid {
  display: grid;
  gap: 28px;
}

.priority-grid {
  grid-template-columns: 1.15fr repeat(4, 1fr);
  align-items: start;
}

.priority-item {
  min-height: 170px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.priority-mark {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.priority-item p,
.card p,
.feature p,
.timeline p {
  margin-bottom: 0;
}

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

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

.card,
.feature,
.timeline,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px;
}

.page-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
}

.page-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.icon-card {
  min-height: 100%;
}

.icon-card img,
.feature-icon {
  width: 58px;
  height: 58px;
  object-fit: cover;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.principles-section {
  background: linear-gradient(180deg, var(--cream) 0%, #fffdf8 100%);
}

.principles-grid {
  gap: 36px;
}

.principle-card {
  position: relative;
  min-height: 100%;
  padding: 12px 10px 22px;
}

.principle-card::before {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-bottom: 28px;
  background: var(--gold);
}

.principle-card img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  margin-bottom: 26px;
}

.principle-card h3 {
  max-width: 320px;
  font-size: 25px;
}

.principle-card p {
  max-width: 370px;
  margin-top: 18px;
  font-size: 16px;
}

.feature.with-icon {
  position: relative;
}

.card-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.vision-mission {
  background:
    linear-gradient(180deg, rgba(251, 248, 240, 0) 0%, rgba(251, 248, 240, 0.72) 100%);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement {
  position: relative;
  padding: 48px 56px 54px 0;
}

.statement + .statement {
  padding-right: 0;
  padding-left: 56px;
  border-left: 1px solid var(--line);
}

.statement::before {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin-bottom: 28px;
  background: var(--gold);
}

.statement h2 {
  max-width: 590px;
}

.statement p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 18px;
}

.about-overview {
  background: linear-gradient(180deg, #fffdf8 0%, var(--cream) 100%);
}

.about-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 72px;
  align-items: start;
}

.section-kicker {
  position: relative;
  margin: 0 0 24px;
  padding-left: 50px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 2px;
  background: var(--ink-2);
}

.about-narrative h2,
.objectives-panel h2 {
  color: #162935;
  font-size: clamp(34px, 4vw, 54px);
}

.about-narrative p:not(.section-kicker) {
  max-width: 660px;
  margin: 26px 0 0;
  color: #5a6d7d;
  font-size: 18px;
  line-height: 1.72;
}

.objectives-panel {
  padding: 48px 46px;
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid rgba(223, 214, 196, 0.82);
  box-shadow: 0 26px 70px rgba(17, 41, 36, 0.08);
}

.objective-list {
  display: grid;
  gap: 22px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.objective-list li {
  position: relative;
  padding-left: 36px;
  color: #506778;
  font-size: 18px;
  line-height: 1.65;
}

.objective-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 14px;
  border: 6px solid rgba(215, 180, 107, 0.24);
  border-radius: 50%;
  background: var(--gold-2);
  background-clip: padding-box;
}

.principle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.principle-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef4ef;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.card.image-card {
  padding: 0;
  overflow: hidden;
}

.card.image-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card.image-card .card-body {
  padding: 28px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 750;
}

.partner-proposition {
  background: var(--cream);
}

.partner-card-grid {
  max-width: 1120px;
  gap: 34px;
}

.partner-card {
  position: relative;
  min-height: 370px;
  padding: 30px 36px 34px;
  border: 1px solid rgba(12, 51, 36, 0.16);
  border-top: 3px solid var(--ink-2);
  box-shadow: 0 22px 46px rgba(35, 42, 32, 0.1);
}

.partner-card:nth-child(2) {
  border-top-color: var(--gold);
}

.partner-card .eyebrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: var(--ink-2);
  font-size: 11px;
}

.partner-card .eyebrow::before,
.collaboration-header .eyebrow::before,
.process-header .eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  background: currentColor;
}

.partner-card h2 {
  max-width: 500px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  margin-bottom: 0;
}

.compact-list {
  grid-template-columns: 1fr;
  row-gap: 20px;
  margin-top: 30px;
}

.compact-list li {
  position: relative;
  min-height: auto;
  padding: 0 0 0 34px;
  border-top: 0;
  color: #506778;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 13px;
  height: 13px;
  border: 6px solid rgba(215, 180, 107, 0.24);
  border-radius: 50%;
  background: var(--gold-2);
  background-clip: padding-box;
}

.collaboration-section {
  background: #fffdf8;
}

.collaboration-header,
.process-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: 60px;
  align-items: start;
  margin-bottom: 42px;
}

.collaboration-header .eyebrow,
.process-header .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
  color: var(--ink-2);
  font-size: 11px;
}

.collaboration-header h2,
.process-header h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}

.collaboration-header p,
.process-header p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
}

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

.collaboration-card {
  min-height: 275px;
  padding: 34px 30px 36px;
  border: 1px solid rgba(12, 51, 36, 0.14);
  border-top: 4px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(243, 234, 217, 0.4)),
    var(--white);
  box-shadow: 0 22px 48px rgba(35, 42, 32, 0.09);
}

.collaboration-card:nth-child(2),
.collaboration-card:nth-child(4) {
  border-top-color: var(--ink-2);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(229, 239, 233, 0.45)),
    var(--white);
}

.collaboration-card h3 {
  font-size: 25px;
  line-height: 1.04;
  text-wrap: balance;
}

.collaboration-card p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.7;
}

.partnership-process {
  background: var(--cream);
}

.process-list {
  max-width: 980px;
  margin-left: auto;
  border: 1px solid rgba(12, 51, 36, 0.16);
  background: var(--white);
  box-shadow: 0 26px 58px rgba(35, 42, 32, 0.1);
}

.process-list .timeline-step {
  padding: 30px 40px 30px 88px;
  border-top-color: rgba(170, 122, 22, 0.28);
}

.process-list .timeline-step:first-child {
  padding-top: 30px;
}

.process-list .timeline-step::before,
.process-list .timeline-step:first-child::before {
  top: 36px;
  left: 40px;
  width: 30px;
  height: 30px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
}

.process-list h3 {
  font-size: 25px;
  line-height: 1.2;
}

.process-list p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.focus-section {
  background: linear-gradient(180deg, var(--cream) 0%, #f8f3e7 100%);
}

.focus-grid {
  gap: 22px;
}

.focus-card {
  min-height: 265px;
  padding: 30px 28px 34px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.86), rgba(241, 234, 216, 0.86)),
    #f3ead9;
  border-top: 4px solid rgba(170, 122, 22, 0.72);
  box-shadow: 0 18px 44px rgba(8, 40, 29, 0.08);
}

.focus-card:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(239, 246, 240, 0.92), rgba(226, 236, 226, 0.92)),
    #e7efe7;
  border-top-color: rgba(23, 71, 53, 0.58);
}

.focus-card span {
  display: block;
  margin-bottom: 46px;
  color: rgba(12, 51, 36, 0.46);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
}

.focus-card h3 {
  font-size: 25px;
}

.focus-card p {
  max-width: 370px;
  margin: 18px 0 0;
  font-size: 16px;
}

.development-priorities {
  background: linear-gradient(180deg, var(--cream) 0%, #f8f2e6 100%);
}

.priority-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.priority-card {
  min-height: 286px;
  padding: 28px 24px 30px;
  background: #fffaf0;
  box-shadow: 0 18px 42px rgba(8, 40, 29, 0.07);
  border-top: 4px solid var(--gold);
}

.priority-card:nth-child(2) {
  background: #edf4ec;
  border-top-color: #62856d;
}

.priority-card:nth-child(3) {
  background: #f7eddf;
  border-top-color: #b8743d;
}

.priority-card:nth-child(4) {
  background: #e9f0ed;
  border-top-color: var(--ink-2);
}

.priority-card span {
  display: block;
  margin-bottom: 42px;
  color: rgba(12, 51, 36, 0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
}

.priority-card h3 {
  font-size: 25px;
  text-wrap: balance;
}

.priority-card p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.68;
}

.work-roles {
  background: linear-gradient(180deg, #fffdf8 0%, var(--cream) 100%);
}

.work-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.work-role-panel {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 46px 42px 44px;
  background:
    linear-gradient(155deg, rgba(15, 61, 45, 0.94) 0%, rgba(8, 40, 29, 0.99) 64%),
    #08281d;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 180, 107, 0.16);
  border-radius: 6px;
  box-shadow: 0 22px 56px rgba(8, 40, 29, 0.14);
}

.role-kicker {
  position: relative;
  margin: 0 0 auto;
  padding-left: 54px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.role-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 2px;
  background: var(--gold-2);
}

.work-role-panel h2 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(34px, 3.8vw, 54px);
  text-wrap: balance;
}

.work-role-panel > p:not(.role-kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 18px;
  line-height: 1.72;
  text-wrap: pretty;
}

.role-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.role-list li {
  position: relative;
  padding-left: 36px;
  color: rgba(255, 253, 248, 0.88);
  font-size: 18px;
}

.role-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border: 6px solid rgba(215, 180, 107, 0.23);
  border-radius: 50%;
  background: var(--gold-2);
  background-clip: padding-box;
}

.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, #fffdf8 62%);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  padding: 82px 0;
}

.page-hero.has-image .page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.74fr);
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 680px;
}

.hero-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.content-flow {
  display: grid;
  gap: 24px;
}

.content-flow p {
  margin: 0;
}

.timeline {
  counter-reset: step;
}

.timeline-step {
  position: relative;
  padding: 28px 0 28px 58px;
  border-top: 1px solid var(--line);
}

.timeline-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.timeline-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 28px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.timeline-step:first-child::before {
  top: 0;
}

.article-list {
  display: grid;
  gap: 48px;
}

.project-article {
  display: flow-root;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.project-article img {
  float: left;
  width: min(42%, 520px);
  margin: 0 42px 24px 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-article img.portrait-image {
  width: min(31%, 340px);
  max-height: 455px;
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--cream);
  box-shadow: 0 18px 42px rgba(35, 42, 32, 0.1);
}

.project-article h2 {
  padding-top: 4px;
}

.article-inset {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  background:
    linear-gradient(90deg, rgba(215, 180, 107, 0.18), rgba(255, 253, 248, 0.72)),
    var(--cream);
  color: var(--ink);
  font-weight: 750;
}

.contact-panel.image-panel {
  padding: 0;
  overflow: hidden;
}

.contact-panel.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.meta {
  margin: 12px 0 20px;
  color: var(--gold);
  font-weight: 800;
}

.site-footer {
  background: #08281d;
  color: rgba(255, 255, 255, 0.78);
  padding: 58px 0 32px;
}

.footer-grid {
  width: calc(100% - 48px);
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: #fff;
}

.footer-grid h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 14px;
}

.footer-grid p,
.footer-grid ul {
  margin: 0;
}

.footer-grid ul {
  padding: 0;
  list-style: none;
}

.footer-grid a:hover {
  color: #fff;
}

.copyright {
  width: calc(100% - 48px);
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

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

.hidden-field {
  display: none;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 15px;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  display: none;
  padding: 14px 16px;
  background: #e7f2ea;
  border: 1px solid #b8d3be;
  color: var(--ink);
  font-weight: 750;
}

.form-status.visible {
  display: block;
}

.form-status.error {
  background: #fff1eb;
  border-color: #e5b49e;
}

@media (max-width: 1000px) {
  .nav-wrap {
    min-height: 92px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 18px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .split,
  .image-feature,
  .about-overview-grid,
  .work-role-grid,
  .priority-card-grid,
  .page-hero.has-image .page-hero-inner,
  .vision-mission-grid,
  .priority-grid,
  .two-grid,
  .contact-grid,
  .project-article,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .who-we-are-split {
    align-items: start;
  }

  .priority-item {
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .statement,
  .statement + .statement {
    padding: 38px 0;
    border-left: 0;
  }

  .statement + .statement {
    border-top: 1px solid var(--line);
  }

  .objectives-panel {
    padding: 36px 30px;
  }

  .work-role-panel {
    min-height: 440px;
  }

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

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

@media (max-width: 1280px) {
  .priority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .priority-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .priority-item {
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .nav-wrap,
  .hero-inner,
  .page-hero-inner,
  .container,
  .footer-grid,
  .copyright {
    width: calc(100% - 32px);
    max-width: 1180px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .brand-name {
    font-size: 17px;
    letter-spacing: 1.2px;
  }

  .brand-motto {
    font-size: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.97) 0%, rgba(255, 253, 248, 0.9) 45%, rgba(255, 253, 248, 0.58) 100%),
      url("assets/hero-river-community.png") center bottom / cover no-repeat;
  }

  .about-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.97) 0%, rgba(255, 253, 248, 0.88) 42%, rgba(255, 253, 248, 0.54) 100%),
      url("assets/ijaw-regatta.png") center bottom / cover no-repeat;
  }

  .projects-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.97) 0%, rgba(255, 253, 248, 0.88) 42%, rgba(255, 253, 248, 0.54) 100%),
      url("assets/classroom-1.jpeg") center bottom / cover no-repeat;
  }

  .partner-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.97) 0%, rgba(255, 253, 248, 0.9) 42%, rgba(255, 253, 248, 0.58) 100%),
      url("assets/partner-stakeholder-meeting.png") center bottom / cover no-repeat;
  }

  .work-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.97) 0%, rgba(255, 253, 248, 0.88) 42%, rgba(255, 253, 248, 0.54) 100%),
      url("assets/work-policy-workshop.png") center bottom / cover no-repeat;
  }

  .contact-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.97) 0%, rgba(255, 253, 248, 0.9) 42%, rgba(255, 253, 248, 0.58) 100%),
      url("assets/contact-office.png") center bottom / cover no-repeat;
  }

  .hero-inner {
    padding: 64px 0 280px;
  }

  .section,
  .page-hero-inner {
    padding: 56px 0;
  }

  .card-grid,
  .feature-list,
  .priority-card-grid,
  .collaboration-grid,
  .collaboration-header,
  .process-header {
    grid-template-columns: 1fr;
  }

  .partner-card {
    min-height: auto;
    padding: 30px 26px 34px;
  }

  .collaboration-header,
  .process-header {
    gap: 12px;
  }

  .collaboration-header p,
  .process-header p {
    font-size: 16px;
  }

  .collaboration-card {
    min-height: auto;
    padding: 30px 26px;
  }

  .process-list {
    margin-left: 0;
  }

  .process-list .timeline-step {
    padding: 28px 22px 28px 68px;
  }

  .process-list .timeline-step::before,
  .process-list .timeline-step:first-child::before {
    left: 24px;
    top: 34px;
  }

  .project-article img {
    float: none;
    width: 100%;
    margin: 0 0 26px;
  }

  .project-article img.portrait-image {
    width: min(100%, 340px);
    margin-right: auto;
    margin-left: auto;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .work-role-panel {
    min-height: 0;
    padding: 34px 28px;
  }

  .role-kicker {
    margin-bottom: 72px;
  }
}
