:root {
  --ink: #18211b;
  --muted: #5d655d;
  --paper: #f7f4ea;
  --white: #fffdf7;
  --green: #264f38;
  --green-2: #4f7f5b;
  --saffron: #d88b2d;
  --red: #8f3428;
  --line: rgba(24, 33, 27, 0.14);
  --shadow: 0 24px 80px rgba(20, 35, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(247, 244, 234, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.brand strong {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.05;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  color: #273228;
  font-size: 0.94rem;
  font-weight: 700;
}

nav a {
  padding: 8px 0;
}

.hero {
  position: relative;
  min-height: calc(100svh - 73px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 244, 234, 0.96) 0%, rgba(247, 244, 234, 0.78) 44%, rgba(247, 244, 234, 0.18) 100%),
    linear-gradient(0deg, rgba(24, 33, 27, 0.62) 0%, rgba(24, 33, 27, 0) 42%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(150px, 18vh, 210px) clamp(18px, 6vw, 84px);
}

.hero-portrait {
  position: absolute;
  right: clamp(18px, 6vw, 84px);
  bottom: 122px;
  width: min(32vw, 430px);
  min-width: 260px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.88), rgba(255, 253, 247, 0.7));
  box-shadow: var(--shadow);
}

.hero-portrait img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-portrait figcaption {
  padding: 12px 16px;
  color: var(--green);
  font-weight: 850;
  background: rgba(255, 253, 247, 0.94);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  color: #374239;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
button {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--green);
  background: rgba(255, 253, 247, 0.74);
  border-color: rgba(38, 79, 56, 0.22);
}

.hero-facts {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  left: clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.34);
  box-shadow: var(--shadow);
}

.hero-facts div {
  min-width: 0;
  padding: clamp(16px, 2vw, 24px);
  background: rgba(255, 253, 247, 0.88);
}

.hero-facts span,
.record-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-facts strong {
  display: block;
  margin-top: 8px;
  line-height: 1.25;
}

.section-pad {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 6vw, 84px);
}

.intro,
.record,
.connect {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.intro {
  background: var(--white);
}

.intro > p,
.intro div > p,
.record p,
.connect p {
  color: #495249;
  font-size: 1.08rem;
}

.inline-portrait {
  display: none;
}

.leadership-photo {
  margin: 28px 0 0;
}

.leadership-photo img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.leadership-photo figcaption {
  width: min(100%, 520px);
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.record-photo figcaption {
  color: rgba(255, 253, 247, 0.72);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

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

.priority-grid article {
  display: grid;
  grid-template-rows: 150px auto auto;
  gap: 16px;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 0 clamp(22px, 3vw, 30px);
  background: var(--white);
}

.priority-grid img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--line);
}

.priority-grid h3,
.priority-grid p {
  padding: 0 clamp(20px, 2.5vw, 28px);
}

.priority-grid p {
  color: var(--muted);
}

.record {
  color: var(--white);
  background: var(--green);
}

.record .section-label,
.record p {
  color: rgba(255, 253, 247, 0.78);
}

.record-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.record-panel div {
  padding: 24px;
  background: rgba(255, 253, 247, 0.08);
}

.record-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.record-panel span {
  color: rgba(255, 253, 247, 0.68);
}

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

.stats-panel strong {
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  line-height: 1;
}

.progress {
  background: var(--white);
}

.text-link {
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.sector-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf8ef;
}

.sector-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--line);
}

.sector-card div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  padding: clamp(20px, 2.5vw, 28px);
  background: #fbf8ef;
}

.sector-card p,
.featured-list p {
  color: var(--muted);
}

.sector-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.sector-card li {
  position: relative;
  padding-left: 18px;
  color: #344038;
  font-weight: 740;
}

.sector-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--saffron);
  content: "";
}

.featured {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 90px);
  background:
    linear-gradient(180deg, rgba(79, 127, 91, 0.12), rgba(79, 127, 91, 0)),
    var(--paper);
}

.featured-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.featured-list article {
  padding: clamp(20px, 3vw, 30px);
  background: var(--white);
}

.featured-list h3 {
  color: var(--green);
}

.featured-list p {
  margin-bottom: 0;
}

.timeline {
  background: var(--white);
}

.timeline ol {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  padding: clamp(22px, 3vw, 34px);
  background: #fbf8ef;
}

time {
  color: var(--red);
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.connect {
  background:
    linear-gradient(180deg, rgba(216, 139, 45, 0.11), rgba(216, 139, 45, 0)),
    var(--paper);
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(38, 79, 56, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--green);
  background: rgba(255, 253, 247, 0.74);
  font-weight: 850;
}

.social-icon {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
}

.social-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

label {
  display: grid;
  gap: 8px;
  color: #344038;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(24, 33, 27, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 400;
}

input::placeholder,
textarea::placeholder {
  color: #7a837b;
  font-weight: 400;
}

textarea {
  resize: vertical;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 6vw, 84px);
  color: rgba(255, 253, 247, 0.76);
  background: #141a16;
}

footer p {
  margin: 4px 0 0;
}

footer strong {
  color: var(--white);
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 750;
}

@media (max-width: 1100px) {
  .hero-portrait {
    opacity: 0.18;
    right: 18px;
  }
}

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

  .priority-grid article {
    min-height: 300px;
  }

  .intro,
  .record,
  .connect,
  .featured {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 244, 234, 0.98) 0%, rgba(247, 244, 234, 0.76) 50%, rgba(24, 33, 27, 0.56) 100%);
  }

  .hero-content {
    margin: clamp(48px, 9vw, 72px) 18px 310px;
  }

  .hero-portrait {
    display: none;
  }

  .inline-portrait {
    display: block;
    width: min(100%, 380px);
    height: auto;
    margin: 0 0 20px;
    border-radius: 8px;
  }

  .hero-facts,
  .priority-grid,
  .stats-panel,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    bottom: 18px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .sector-card {
    display: flex;
    flex-direction: column;
    grid-template-rows: none;
  }

  .sector-card img {
    height: 220px;
    flex: 0 0 220px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
