:root {
  --ink: #17211d;
  --muted: #64706a;
  --forest: #10231d;
  --green: #1f5b47;
  --steel: #355568;
  --copper: #b86c3f;
  --gold: #e1b768;
  --mist: #f4f7f3;
  --paper: #ffffff;
  --line: rgba(23, 33, 29, 0.14);
  --dark-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 60px rgba(23, 33, 29, 0.12);
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

p {
  margin: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--paper);
  background: linear-gradient(180deg, rgba(10, 21, 18, 0.84), rgba(10, 21, 18, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 780;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(16, 35, 29, 0.72);
}

.brand-mark img {
  display: block;
  width: 42px;
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.8vw, 32px);
  font-size: 0.94rem;
  font-weight: 680;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(820px, 92svh);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("/assets/hero-ghana-independence-square.png");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 21, 18, 0.94) 0%, rgba(16, 35, 29, 0.82) 40%, rgba(18, 35, 45, 0.18) 74%),
    linear-gradient(180deg, rgba(10, 21, 18, 0.12), rgba(10, 21, 18, 0.54));
}

.hero-content {
  width: min(790px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 92px;
  padding-bottom: 158px;
  color: var(--paper);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.9rem, 6.2vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 780;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--copper);
  color: var(--paper);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: 0;
  left: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 0;
  background: rgba(16, 35, 29, 0.88);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

.hero-facts div {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts span,
.card-topline span,
.leader-card span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.16;
}

.intro-section,
.section,
.dark-section,
.values-section,
.outlook-section,
.contact-section {
  padding: clamp(56px, 8vw, 108px) 0;
}

.intro-section,
.values-section,
.contact-section {
  background: var(--mist);
}

.section-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-grid,
.clients-grid,
.outlook-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  line-height: 1.18;
}

.prose,
.body-copy,
.outlook-list,
.contact-panel p,
.division-card p,
.division-card li,
.sector-grid p,
.values-grid p,
.leader-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.74;
}

.prose {
  display: grid;
  gap: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

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

.division-card,
.leader-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.division-card {
  display: grid;
  gap: 24px;
  min-height: 480px;
  padding: clamp(26px, 4vw, 38px);
}

.division-card.accent {
  border-top: 5px solid var(--copper);
}

.division-card:not(.accent) {
  border-top: 5px solid var(--steel);
}

.card-topline span {
  color: var(--copper);
}

.card-topline strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 0.98;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.dark-section {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(16, 35, 29, 0.98), rgba(20, 41, 50, 0.98)),
    var(--forest);
}

.dark-section .section-label,
.dark-section h2 {
  color: var(--paper);
}

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

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

.sector-grid article {
  min-height: 226px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.075);
}

.sector-grid h3 {
  margin-bottom: 18px;
  font-size: 1.24rem;
}

.sector-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.clients-grid {
  align-items: center;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.client-card {
  display: grid;
  min-height: 148px;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--paper);
}

.client-mark {
  display: inline-flex;
  width: 76px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #3f4542;
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 850;
}

.client-card strong {
  color: #3f4542;
  font-size: 0.98rem;
  line-height: 1.28;
}

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

.values-grid article {
  min-height: 172px;
  border-left: 4px solid var(--copper);
  padding: 4px 24px 20px;
}

.values-grid h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

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

.leader-card {
  min-height: 300px;
  padding: 28px;
}

.leader-card span {
  color: var(--copper);
}

.leader-card h3 {
  margin: 18px 0 16px;
  font-size: 1.55rem;
}

.outlook-section {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(24, 68, 53, 0.96), rgba(53, 85, 104, 0.96)),
    var(--green);
}

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

.outlook-list {
  display: grid;
  gap: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-panel {
  display: grid;
  gap: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 38px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.72;
}

address strong,
.contact-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
}

.contact-panel .button {
  justify-self: start;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    padding: 16px 20px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 122px;
  }

  .hero-bg {
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 21, 18, 0.95), rgba(16, 35, 29, 0.76)),
      linear-gradient(180deg, rgba(10, 21, 18, 0.2), rgba(10, 21, 18, 0.58));
  }

  .hero-facts,
  .intro-grid,
  .clients-grid,
  .outlook-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100% - 40px, 1140px);
    margin: -74px auto 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-facts div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .division-grid,
  .sector-grid,
  .values-grid,
  .leadership-grid,
  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 32px, 540px);
    padding-top: 162px;
    padding-bottom: 114px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.9rem);
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.62;
  }

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

  .button {
    width: 100%;
  }

  .hero-facts,
  .section-inner {
    width: min(100% - 32px, 1140px);
  }

  .division-grid,
  .sector-grid,
  .values-grid,
  .leadership-grid,
  .client-logo-grid {
    grid-template-columns: 1fr;
  }

  .division-card,
  .leader-card,
  .sector-grid article,
  .values-grid article {
    min-height: auto;
  }
}
