:root {
  --green: #397b25;
  --green-dark: #265c19;
  --blue: #4b96d1;
  --blue-dark: #2e77b5;
  --ink: #26323d;
  --muted: #5f6d78;
  --line: #dce6ed;
  --surface: rgba(255,255,255,.92);
  --shadow: 0 18px 45px rgba(32, 77, 108, .13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(118,190,235,.18), transparent 34rem),
    #f8fbfd;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 78px;
  padding: 0 5vw;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(220,230,237,.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 46px;
  border-radius: 12px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  background: linear-gradient(135deg, var(--green), #65a74a);
  box-shadow: 0 8px 20px rgba(57,123,37,.2);
}

.brand-copy {
  display: grid;
  gap: .1rem;
}

.brand-copy strong {
  color: var(--green-dark);
  font-size: .98rem;
}

.brand-copy small { color: var(--muted); }

.nav {
  display: flex;
  gap: 1.6rem;
}

.nav a {
  text-decoration: none;
  font-weight: 650;
  color: #44515c;
}

.nav a:hover,
.nav a:focus-visible { color: var(--green); }

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%,
                            rgba(255,255,255,.93) 33%,
                            rgba(255,255,255,.48) 62%,
                            rgba(255,255,255,.1) 100%);
}

.hero-content {
  width: min(720px, 90vw);
  margin-left: 6vw;
  padding: 5rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 12ch;
  color: var(--green-dark);
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.lead {
  max-width: 650px;
  margin: 1.7rem 0 2.1rem;
  color: #3e4b56;
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.62;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  min-width: 245px;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(29,75,108,.2);
  transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 17px 34px rgba(29,75,108,.25);
}

.button-director {
  background: linear-gradient(135deg, var(--green), #55993b);
}

.button-detective {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.button-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}

.areas {
  padding: 5.5rem 5vw;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -.035em;
}

.cards {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 2rem;
}

.card h3 {
  margin: 1rem 0 .7rem;
  color: var(--green-dark);
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.values {
  width: min(1400px, 90vw);
  margin: 0 auto 4rem;
  padding: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border: 1px solid #d6e4ef;
  border-radius: 20px;
  background: linear-gradient(135deg, #edf7fd, #f7fbfd);
}

.values div {
  padding: .8rem 1.2rem;
  display: grid;
  gap: .3rem;
}

.values div + div {
  border-left: 1px solid #d6e4ef;
}

.values strong { color: var(--green-dark); }
.values span { color: var(--muted); }

footer {
  padding: 2rem 5vw;
  color: #66737d;
  text-align: center;
  border-top: 1px solid var(--line);
  background: #fff;
}

@media (max-width: 980px) {
  .nav { display: none; }

  .hero {
    min-height: 640px;
  }

  .hero-overlay {
    background: rgba(255,255,255,.82);
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
  }

  h1 { max-width: none; }

  .lead { margin-inline: auto; }

  .actions { justify-content: center; }

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

  .values { grid-template-columns: 1fr; }

  .values div + div {
    border-left: 0;
    border-top: 1px solid #d6e4ef;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: .7rem 1rem;
  }

  .brand-copy small { display: none; }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: 90vw;
    padding: 4rem 0;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .button { width: 100%; }

  .cards { grid-template-columns: 1fr; }

  .areas { padding-inline: 1rem; }
}
