:root {
  --ink:#13201b;
  --green:#1d5742;
  --mint:#dcebe3;
  --cream:#f4f1e9;
  --orange:#db6a3b;
  --line:#d7d8cf
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  background:#faf9f5;
  color:var(--ink);
  font:16px/1.6 Arial, sans-serif
}
header {
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1200px;
  margin:auto;
  padding:0 28px
}
.brand {
  color:var(--ink);
  font-weight:900;
  font-size:22px;
  letter-spacing:2px;
  text-decoration:none
}
.brand span {
  color:var(--orange)
}
nav {
  display:flex;
  gap:30px;
  align-items:center
}
nav a {
  color:var(--ink);
  text-decoration:none;
  font-size:14px
}
.nav-cta, .button, form button {
  background:var(--green);
  color:white!important;
  padding:12px 20px;
  border-radius:2px
}
.hero {
  min-height:650px;
  display:grid;
  grid-template-columns:1fr 310px;
  align-items:center;
  gap:70px;
  max-width:1200px;
  margin:auto;
  padding:70px 28px
}
.eyebrow {
  color:var(--orange);
  font-size:12px;
  font-weight:bold;
  letter-spacing:2px;
  margin-bottom:18px
}
.hero h1, .section h2, .forms h2 {
  font:500 64px/1.04 Georgia, serif;
  margin:0 0 25px
}
.hero h1 em {
  color:var(--green);
  font-weight:400
}
.hero>div>p {
  max-width:610px;
  font-size:19px;
  color:#59635f
}
.actions {
  display:flex;
  align-items:center;
  gap:25px;
  margin-top:35px
}
.button {
  text-decoration:none
}
.text-link {
  color:var(--green);
  font-weight:bold;
  text-decoration:none
}
.hero aside {
  background:var(--green);
  color:white;
  padding:42px;
  min-height:330px;
  display:flex;
  flex-direction:column;
  justify-content:end
}
.hero aside span {
  font-size:12px;
  letter-spacing:2px
}
.hero aside strong {
  font:70px Georgia;
  margin-top:50px
}
.section {
  background:var(--cream);
  padding:100px max(28px, calc((100% - 1144px)/2))
}
.section h2, .forms h2 {
  font-size:46px
}
.cards {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1px;
  background:var(--line);
  margin-top:55px
}
.cards article {
  background:var(--cream);
  padding:38px
}
.cards b {
  color:var(--orange)
}
.cards h3 {
  font:26px Georgia
}
.cards p, .forms p {
  color:#68706c
}
.forms {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  max-width:1200px;
  margin:auto;
  padding:110px 28px
}
.forms>div {
  min-width:0
}
form label {
  display:block;
  font-size:13px;
  font-weight:bold;
  margin:16px 0
}
input, select, textarea {
  display:block;
  width:100%;
  margin-top:7px;
  border:1px solid #ccd0ca;
  background:white;
  padding:13px;
  font:inherit;
  color:var(--ink);
  border-radius:2px
}
textarea {
  height:105px;
  resize:vertical
}
.row {
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:14px
}
form button {
  border:0;
  font:700 14px Arial;
  padding:14px 22px;
  cursor:pointer
}
output {
  display:block;
  margin-top:13px;
  color:var(--green)
}
footer {
  border-top:1px solid var(--line);
  padding:32px;
  text-align:center;
  color:#737a76;
  font-size:13px
}
#chat-toggle {
  position:fixed;
  right:28px;
  bottom:28px;
  width:58px;
  height:58px;
  border:0;
  border-radius:50%;
  background:var(--orange);
  color:#fff;
  font-size:25px;
  box-shadow:0 8px 24px #0003;
  cursor:pointer;
  z-index:5
}
#chat {
  display:none;
  position:fixed;
  right:28px;
  bottom:98px;
  width:360px;
  height:480px;
  background:white;
  box-shadow:0 15px 55px #0003;
  z-index:5;
  border-radius:8px;
  overflow:hidden
}
#chat.open {
  display:flex;
  flex-direction:column
}
#chat header {
  height:auto;
  margin:0;
  padding:18px 20px;
  background:var(--green);
  color:white
}
#chat header b, #chat header small {
  display:block
}
#chat header small {
  font-size:11px;
  font-weight:normal
}
#chat header i {
  display:inline-block;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#75d99a
}
#chat header button {
  border:0;
  background:none;
  color:white;
  font-size:24px
}
.messages {
  flex:1;
  overflow:auto;
  padding:18px;
  background:#f6f5f1
}
.messages p {
  max-width:85%;
  padding:10px 13px;
  border-radius:12px;
  margin:0 0 10px;
  font-size:14px
}
.messages .bot {
  background:white
}
.messages .user {
  background:var(--mint);
  margin-left:auto
}
#chat form {
  display:flex;
  border-top:1px solid var(--line);
  padding:10px
}
#chat form input {
  border:0;
  margin:0
}
#chat form button {
  border-radius:50%;
  padding:0;
  width:40px;
  height:40px;
  margin-top:3px;
  background:var(--orange)
}
@media(max-width:760px) {
  nav>a:not(.nav-cta) {
    display:none
  }
  .hero {
    grid-template-columns:1fr;
    padding-top:40px
  }
  .hero h1 {
    font-size:48px
  }
  .hero aside {
    display:none
  }
  .cards, .forms {
    grid-template-columns:1fr
  }
  .forms {
    gap:70px
  }
  .row {
    grid-template-columns:1fr
  }
  .section h2, .forms h2 {
    font-size:38px
  }
  #chat {
    right:12px;
    bottom:82px;
    width:calc(100% - 24px);
    height:65vh
  }
  #chat-toggle {
    right:18px;
    bottom:18px
  }
}
