:root {
  --font-main: "Open Sans", Arial, sans-serif;
  --font-accent: "Merriweather", Georgia, serif;
  --ink: #24305f;
  --muted: #68709d;
  --paper: #f5f6fb;
  --white: #ffffff;
  --line: rgba(85, 96, 158, 0.18);
  --brand-blue: #58639d;
  --brand-blue-dark: #444f86;
  --brand-green: #4fc11f;
  --brand-green-dark: #3fa315;
  --soft-green: #e9f8e4;
  --shadow: 0 24px 70px rgba(36, 48, 95, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-main);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(36, 48, 95, 0.76), rgba(36, 48, 95, 0));
}

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

.brand-logo {
  width: 52px;
  height: 45px;
  object-fit: contain;
  background: var(--white);
}

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

.brand strong {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
}

.main-nav a:hover {
  color: var(--white);
}

.header-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(20px, 6vw, 80px) 82px;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background:
    linear-gradient(180deg, #cdd9eb 0%, #f1d8ad 50%, #58639d 100%);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(36, 48, 95, 0.58), rgba(66, 76, 135, 0.26) 48%, rgba(66, 76, 135, 0.04)),
    linear-gradient(0deg, rgba(36, 48, 95, 0.36), rgba(36, 48, 95, 0.02));
}

.hero-content {
  position: relative;
  max-width: 900px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brand-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-family: var(--font-accent);
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.94;
  font-weight: 400;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  background: var(--brand-green);
  color: #172a12;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.band,
.focus-section,
.criteria,
.contact {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 80px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  background: var(--white);
}

.intro h2,
.section-heading h2,
.criteria h2,
.contact h2 {
  margin-bottom: 0;
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: 1.02;
  font-weight: 400;
}

.intro > p,
.contact-panel > p {
  color: var(--muted);
  font-size: 1.07rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.focus-card {
  min-height: 540px;
  display: grid;
  grid-template-rows: 300px 1fr;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.focus-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.focus-card div {
  padding: 28px;
}

.focus-card span {
  color: var(--brand-green-dark);
  font-weight: 900;
}

.focus-card h3,
.steps h3 {
  margin: 8px 0 10px;
  font-size: 1.35rem;
}

.focus-card p,
.steps p,
.quote-panel p {
  color: var(--muted);
}

.criteria {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 92px);
  background: var(--soft-green);
}

.criteria-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.criteria-list div {
  padding: 24px;
  background: #ffffff;
}

.criteria-list strong,
.criteria-list span {
  display: block;
}

.criteria-list span {
  margin-top: 6px;
  color: var(--muted);
}

.process {
  background: var(--brand-blue);
  color: var(--white);
}

.process .section-kicker {
  color: var(--brand-green);
}

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

.steps article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--brand-green);
  color: #172a12;
  font-weight: 900;
}

.steps p {
  color: rgba(255, 255, 255, 0.73);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 20px;
  align-items: stretch;
}

.contact-panel,
.quote-panel {
  padding: clamp(28px, 5vw, 56px);
}

.contact-panel {
  background: var(--white);
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  background: var(--brand-blue);
  color: var(--white);
}

.quote-panel strong {
  max-width: 320px;
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  font-weight: 700;
}

.quote-panel > span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
  font-style: italic;
}

.quote-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-lines {
  display: grid;
  gap: 6px;
  margin: 24px 0 0;
}

.contact-lines div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
}

.contact-lines dt {
  color: var(--brand-green);
  font-weight: 900;
}

.contact-lines dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

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

  .focus-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .focus-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .brand-logo {
    width: 44px;
    height: 38px;
  }

  .hero {
    min-height: 88vh;
    padding: 104px 18px 52px;
  }

  h1 {
    font-size: 3rem;
  }

  .band,
  .focus-section,
  .criteria,
  .contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}


@media (max-width: 560px) {
  .brand { min-width: 0; }
  .hero-content,
  .hero-copy,
  h1 {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  body { overflow-x: hidden; }
}
