:root {
  --forest: #143b36;
  --ink: #18302b;
  --paper: #f6f5ee;
  --cream: #ece9dc;
  --gold: #e8b754;
  --sage: #aec9aa;
  --line: #d4d9d1;
  --muted: #61716c;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px "DM Sans",
    sans-serif;
}
button,
input,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
header {
  height: 82px;
  max-width: 1240px;
  margin: auto;
  border-bottom: 1px solid var(--line);
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.055em;
}
.mark {
  font:
    600 22px/28px Newsreader,
    serif;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  width: 28px;
  text-align: center;
  font-style: italic;
}
nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
  color: var(--muted);
}
.nav-cta {
  border: 0;
  background: transparent;
  font-weight: 700;
}
.nav-cta span,
.button span,
.text-link span {
  margin-left: 9px;
}
.hero {
  max-width: 1240px;
  min-height: 650px;
  margin: auto;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  padding: 82px 34px;
}
.eyebrow {
  font:
    500 11px "DM Mono",
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
}
.eyebrow i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 8px;
}
.hero h1,
.section-head h2,
.how h2,
.closing h2,
dialog h2 {
  font:
    600 clamp(52px, 6.2vw, 84px)/0.93 Newsreader,
    serif;
  letter-spacing: -0.065em;
  margin: 0 0 28px;
}
.hero h1 em,
.section-head em,
.how em,
.closing em,
.quote-card h2 em {
  font-style: italic;
  color: #5b8774;
}
.intro {
  font-size: 19px;
  line-height: 1.55;
  color: #52655f;
  max-width: 490px;
  margin: 0 0 30px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.button {
  border: 0;
  border-radius: 6px;
  padding: 15px 20px;
  font-weight: 700;
  transition:
    0.2s transform,
    0.2s box-shadow;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px #102d251c;
}
.primary {
  background: var(--forest);
  color: #fff;
}
.light {
  background: #fff;
  color: var(--forest);
}
.gold {
  background: var(--gold);
  color: var(--forest);
}
.text-link {
  font-size: 14px;
  font-weight: 700;
}
.note {
  font-size: 12px;
  color: #84908b;
  margin-top: 17px;
}
.hero-art {
  height: 455px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.sun {
  position: absolute;
  width: 390px;
  height: 390px;
  background: #d9e2c2;
  border-radius: 50%;
  right: 4%;
  top: 23px;
}
.arc {
  position: absolute;
  border: 1px solid #a6bdad;
  border-radius: 50%;
  transform: rotate(-28deg);
}
.arc-one {
  width: 480px;
  height: 210px;
}
.arc-two {
  width: 540px;
  height: 320px;
  opacity: 0.55;
  transform: rotate(32deg);
}
.quote-card {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  background: #fff;
  border: 1px solid #d9dfd4;
  border-radius: 14px;
  padding: 22px 25px;
  box-shadow: 0 25px 55px #18372d23;
}
.card-top {
  display: flex;
  justify-content: space-between;
  color: #7d8b83;
  font:
    500 10px "DM Mono",
    monospace;
  letter-spacing: 0.08em;
}
.card-top b {
  font-weight: 500;
  color: #4e675f;
}
.small-label {
  font:
    500 10px "DM Mono",
    monospace;
  letter-spacing: 0.12em;
  color: #78847f;
  margin: 43px 0 13px;
}
.quote-card h2 {
  font:
    600 42px/0.95 Newsreader,
    serif;
  letter-spacing: -0.055em;
  margin: 0 0 26px;
}
.chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 23px;
}
.chips span {
  font-size: 11px;
  background: #edf3e9;
  border-radius: 20px;
  padding: 7px 10px;
  color: #466652;
}
.match {
  display: flex;
  gap: 12px;
  padding-top: 18px;
  align-items: center;
}
.match-icon {
  background: #b9d7b2;
  width: 27px;
  height: 27px;
  text-align: center;
  padding-top: 4px;
  border-radius: 50%;
  font-weight: 700;
}
.match b,
.match small {
  display: block;
}
.match b {
  font-size: 13px;
}
.match small {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.float-card {
  position: absolute;
  z-index: 2;
  bottom: 9px;
  right: -18px;
  background: var(--forest);
  color: #fff;
  border-radius: 9px;
  padding: 14px 17px;
  display: flex;
  gap: 11px;
  box-shadow: 0 15px 30px #15372b30;
}
.spark {
  color: var(--gold);
  font-size: 20px;
}
.float-card b,
.float-card small {
  display: block;
}
.float-card b {
  font-size: 12px;
}
.float-card small {
  font-size: 10px;
  color: #c3d1cc;
  margin-top: 3px;
}
.trust {
  background: var(--forest);
  color: #e8eee7;
  text-align: center;
  padding: 30px;
}
.trust p {
  font:
    500 10px "DM Mono",
    monospace;
  letter-spacing: 0.13em;
  color: #a6c5b4;
  margin: 0 0 18px;
}
.trust div {
  display: flex;
  gap: 42px;
  justify-content: center;
  font:
    500 22px Newsreader,
    serif;
}
.why {
  max-width: 1240px;
  margin: auto;
  padding: 130px 34px;
}
.section-head h2,
.how h2,
.closing h2 {
  font-size: clamp(43px, 5vw, 67px);
  margin-bottom: 0;
}
.reason-grid {
  margin-top: 77px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.reason-grid article {
  padding: 25px 38px 10px 0;
}
.reason-grid article + article {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.reason-grid span {
  font:
    500 11px "DM Mono",
    monospace;
  color: #769a83;
}
.reason-grid h3 {
  font:
    600 29px Newsreader,
    serif;
  letter-spacing: -0.04em;
  margin: 47px 0 12px;
}
.reason-grid p {
  line-height: 1.55;
  color: var(--muted);
  max-width: 270px;
}
.how {
  background: #dce7d5;
  padding: 115px max(34px, calc((100% - 1172px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}
.how-copy > p:not(.eyebrow) {
  max-width: 440px;
  line-height: 1.58;
  color: #4e645b;
  margin: 27px 0;
}
.how ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.how li {
  display: flex;
  gap: 22px;
  padding: 23px 0;
  border-top: 1px solid #b8ccba;
}
.how li:last-child {
  border-bottom: 1px solid #b8ccba;
}
.how li b {
  font:
    500 11px "DM Mono",
    monospace;
  color: #5e8a6c;
}
.how li h3 {
  font:
    600 23px Newsreader,
    serif;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}
.how li p {
  margin: 0;
  color: #53695f;
  font-size: 14px;
  line-height: 1.5;
}
.closing {
  text-align: center;
  padding: 130px 20px;
}
.closing h2 {
  margin-bottom: 23px;
}
.closing > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 440px;
  line-height: 1.55;
  margin: 0 auto 28px;
}
footer {
  background: #102f2b;
  color: #e5ece7;
  padding: 36px max(34px, calc((100% - 1172px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}
footer .mark {
  background: #e5ece7;
  color: var(--forest);
}
footer p {
  font-size: 13px;
  color: #b0c4bc;
  margin: 0;
  text-align: right;
}
footer > small {
  grid-column: 1/-1;
  border-top: 1px solid #315149;
  padding-top: 18px;
  color: #8eaaa0;
  font-size: 11px;
}
.backdrop {
  position: fixed;
  inset: 0;
  background: #112d29a6;
  z-index: 5;
}
.locked {
  overflow: hidden;
}
dialog {
  border: 0;
  border-radius: 12px;
  width: min(94vw, 480px);
  padding: 38px;
  background: #f8f8f3;
  color: var(--ink);
  box-shadow: 0 20px 60px #0004;
}
dialog::backdrop {
  background: transparent;
}
.close {
  position: absolute;
  right: 15px;
  top: 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 26px;
}
dialog h2 {
  font-size: 48px;
  margin-bottom: 13px;
}
dialog > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 24px;
}
form {
  display: grid;
  gap: 8px;
}
label {
  font-size: 12px;
  font-weight: 700;
  margin-top: 5px;
}
label span {
  font-weight: 400;
  color: var(--muted);
}
input,
select {
  border: 1px solid #cfd7ce;
  border-radius: 5px;
  background: #fff;
  padding: 12px 13px;
  color: var(--ink);
}
form .button {
  margin-top: 10px;
}
form small {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}
.toast {
  position: fixed;
  z-index: 10;
  right: 24px;
  bottom: 24px;
  transform: translateY(80px);
  background: #dce7d5;
  color: var(--ink);
  padding: 14px 20px;
  border-radius: 6px;
  box-shadow: 0 8px 24px #0003;
  opacity: 0;
  transition: 0.25s;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast.error {
  background: #873f35;
  color: #fff;
}
@media (max-width: 760px) {
  header {
    height: 68px;
    padding: 0 20px;
  }
  header nav {
    display: none;
  }
  .nav-cta {
    font-size: 13px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 62px 21px 35px;
    gap: 20px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-art {
    height: 380px;
  }
  .sun {
    width: 310px;
    height: 310px;
    right: 0;
  }
  .quote-card {
    width: 350px;
  }
  .float-card {
    right: -3px;
  }
  .trust div {
    font-size: 17px;
    gap: 14px;
    flex-direction: column;
  }
  .why {
    padding: 85px 21px;
  }
  .reason-grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }
  .reason-grid article,
  .reason-grid article + article {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .reason-grid h3 {
    margin: 25px 0 8px;
  }
  .how {
    padding: 75px 21px;
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .closing {
    padding: 85px 21px;
  }
  footer {
    padding: 30px 21px;
    grid-template-columns: 1fr;
  }
  footer p {
    text-align: left;
  }
  footer > small {
    line-height: 1.5;
  }
  .actions {
    flex-wrap: wrap;
    gap: 19px;
  }
}
