:root {
  color-scheme: light;
  --ink: #182027;
  --ink-2: #28323c;
  --muted: #5a6570;
  --paper: #f4f1ea;
  --surface: #ffffff;
  --soft: #eef1ef;
  --line: #d9dedb;
  --green: #1e604f;
  --green-dark: #123d34;
  --steel: #536f7c;
  --copper: #a65f3b;
  --gold: #c29345;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(24, 32, 39, 0.12);
  background: rgba(244, 241, 234, 0.94);
  padding: 1rem clamp(1rem, 5vw, 4.5rem);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-dark);
  color: #ffffff;
  font-size: 0.84rem;
  letter-spacing: 0;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.4vw, 1.6rem);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 4.45rem);
  display: grid;
  align-items: end;
  padding: clamp(2rem, 7vw, 5rem);
  background:
    linear-gradient(90deg, rgba(2, 15, 31, 0.9), rgba(2, 15, 31, 0.58), rgba(2, 15, 31, 0.12)),
    linear-gradient(0deg, rgba(2, 15, 31, 0.52), rgba(2, 15, 31, 0)),
    url("assets/banner.png")
      center / cover;
  color: #ffffff;
}

.hero-copy {
  width: min(38rem, 100%);
  padding-bottom: clamp(1.5rem, 7vh, 4rem);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.34);
}

.eyebrow {
  margin: 0 0 0.88rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  max-width: 13ch;
  font-size: clamp(2.75rem, 6vw, 5.65rem);
  line-height: 0.94;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 0.72rem;
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 1.15rem;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.46);
  color: #ffffff;
}

.overview,
.criteria,
.philosophy,
.leadership,
.contact {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 4.5rem);
}

.overview {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  background: var(--surface);
}

.section-heading h2 {
  margin-bottom: 0;
}

.overview-copy {
  columns: 2 18rem;
  column-gap: 2.25rem;
}

.overview-copy p {
  break-inside: avoid;
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.philosophy-media {
  min-height: 39rem;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 61, 52, 0.08), rgba(24, 32, 39, 0.16)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1300&q=80")
      center / cover;
}

.philosophy-copy > p {
  margin-bottom: 1.4rem;
}

.principles {
  display: grid;
  gap: 0.85rem;
}

.principles article,
.criteria-grid article {
  border-top: 4px solid var(--green);
  background: var(--surface);
  padding: 1.2rem;
}

.principles span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 850;
}

.principles p,
.criteria-grid p,
.overview-copy p,
.leader-copy p,
.contact-copy p {
  margin-bottom: 0;
}

.criteria {
  background: var(--ink);
  color: #ffffff;
}

.criteria .section-heading {
  width: min(54rem, 100%);
}

.criteria h2 {
  color: #ffffff;
}

.criteria .criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.criteria-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--steel);
}

.criteria-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.leadership {
  display: grid;
  grid-template-columns: minmax(17rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  background: var(--surface);
}

.leader-card {
  display: grid;
  gap: 1.25rem;
}

.leader-photo {
  display: block;
  width: min(18rem, 100%);
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 28%;
}

.leader-title {
  margin: -0.4rem 0 0;
  color: var(--copper);
  font-weight: 850;
}

.leader-copy {
  max-width: 53rem;
}

.leader-copy p + p {
  margin-top: 1rem;
}

.leader-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.leader-details a,
.contact-direct a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.leader-details a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.72rem 0.9rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(16rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  background: var(--soft);
}

.contact-direct {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.6rem;
}

.contact-direct span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-form .full,
.contact-form .button,
.form-status {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 0.86rem 0.9rem;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--green);
  outline: 3px solid rgba(30, 96, 79, 0.16);
}

textarea {
  resize: vertical;
}

.contact-form .button {
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 1.4rem clamp(1rem, 5vw, 4.5rem);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .overview,
  .philosophy,
  .leadership,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .philosophy-media {
    min-height: 24rem;
  }
}

@media (max-width: 640px) {
  .site-header,
  footer {
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .brand-text {
    white-space: normal;
  }

  .hero {
    min-height: 43rem;
    background-position: 54% center;
  }

  .leader-photo {
    width: 12rem;
  }
}
