@font-face {
  font-family: "Farah";
  src: url("/assets/farah.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Farah", "Segoe UI", Tahoma, Arial, sans-serif;
  color: #102f28;
  background:
    radial-gradient(circle at 50% 8%, rgba(22, 76, 61, .05), transparent 30rem),
    #fffdf9;
  line-height: 1.75;
}

main {
  width: min(880px, calc(100% - 34px));
  margin: 0 auto;
  padding: 42px 0 70px;
}

.brand {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.brand img {
  width: 164px;
  height: auto;
  mix-blend-mode: multiply;
}

article {
  display: grid;
  gap: 28px;
}

header {
  text-align: center;
}

h1 {
  margin: 0;
  color: #164c3d;
  font-size: clamp(42px, 8vw, 78px);
  line-height: 1.08;
}

header p {
  margin: 14px auto 0;
  max-width: 720px;
  color: #707775;
  font-size: clamp(22px, 4.4vw, 32px);
}

.hero {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(22, 76, 61, .14);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(15, 63, 50, .08);
}

.hero.portrait {
  max-height: 720px;
  object-position: center 24%;
}

h2 {
  margin: 0 0 8px;
  color: #164c3d;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.15;
}

p, li {
  font-size: clamp(20px, 3.7vw, 27px);
}

p { margin: 0; }

ul {
  margin: 0;
  padding-inline-start: 1.25em;
}

.cta {
  margin-top: 4px;
  padding: 28px;
  border-top: 1px solid rgba(22, 76, 61, .14);
  border-bottom: 1px solid rgba(22, 76, 61, .14);
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.cta a {
  min-height: 58px;
  padding: 0 30px;
  border-radius: 8px;
  background: #164c3d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  font-weight: 900;
}
