* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #151515;
  background: #f7f4ef;
  line-height: 1.6;
}

.hero {
  min-height: 92vh;
  padding: 32px;
  background:
    linear-gradient(rgba(10, 20, 30, 0.50), rgba(10, 20, 30, 0.60)),
    url('images/background.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1180px;
  margin: auto;
}

.brand {
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid white;
}

.hero-content {
  max-width: 900px;
  margin: 18vh auto 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  opacity: 0.9;
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.02;
  margin: 20px 0;
  font-weight: 500;
}

.intro {
  font-size: 21px;
  max-width: 720px;
}

.button {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 24px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

.button:hover {
  background: white;
  color: #151515;
}

main {
  max-width: 1100px;
  margin: auto;
  padding: 80px 32px;
}

section {
  margin-bottom: 80px;
}

h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 18px;
}

p, li {
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

ul {
  padding-left: 20px;
}

.approach {
  border-top: 1px solid #c9c1b7;
  border-bottom: 1px solid #c9c1b7;
  padding: 50px 0;
}

.contact a {
  color: #151515;
}

footer {
  padding: 30px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

@media (max-width: 760px) {
  .hero {
    padding: 22px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content {
    margin-top: 14vh;
  }
}
