html {
  scroll-behavior: smooth;
}

body,body * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 27px;
  font-family: Inter, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Bricolage Grotesque, sans-serif;
  font-weight: 700;
}

section {
  position: relative;
}

img {
  width: 100%;
  height: auto;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 120px;
  position: relative;
}

.section-1 {
  padding: 0 0 73px;
  min-height: 100vh;
}

.container-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.container-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 70%;
  filter: brightness(40%);
}

.container-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.color-white {
  color: #fff;
}

.flex-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.hero * {
  order: 3;
}

.hero h1 {
  order: 2;
  font-size: 61px;
  line-height: 67px;
  letter-spacing: -1.5px;
  text-align: center;
  max-width: 929px;
  margin: 0 auto;
}

.hero h2 {
  order: 1;
  font-size: 25px;
  line-height: 31px;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.hero p.highlight {
  font-size: 25px;
  line-height: 31px;
  max-width: 586px;
  text-align: center;
}

form {
  padding: 48px 50px;
  background-color: #E8E2DC;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 25px;
  max-width: 686px;
}

form .field-control {
  width: calc((100% - 25px) / 2);
}

form .full-width {
  width: 100%;
}

form label {
  color: #000;
}

form .field-control input {
  width: 100%;
  padding: 16px 32px;
  color: #4A4A4A;
  background-color: #fff;
  border-radius: 36px;
  border: none;
  outline: none;
}

.form input::placeholder {
  color: #4A4A4A;
}

.form-actions button {
  width: 100%;
  padding: 16px 32px;
  background-color: #8D4F4E;
  color: #E8E2DC;
  border: none;
  border-radius: 36px;
  transition: all 0.2s linear;
  font-weight: 600;
  cursor: pointer;
}

.section-2,
.section-3 {
  background-color: #E8E2DC;
}

.section-2.container {
  padding-top: 76px;
  padding-bottom: 76px;
}

.row {
  display: flex;
  flex-direction: row;
  gap: 36px;
}

.section-2 .left-column {
  width: calc((100% - 36px) / 2);
  max-width: 573px;
  flex-shrink: 0;
  position: relative;
}

.section-2 .right-column {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}

.section-2 h2 {
  font-size: 49px;
  line-height: 55px;
  font-weight: 700;
}

.section-2 .column-content {
  max-width: 575px;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-2 .column-content p:first-child {
  font-size: 25px;
  line-height: 31px;
}

.section-3 .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}

.section-3 h2 {
  font-size: 25px;
  line-height: 31px;
  font-weight: 600;
  letter-spacing: -0.4px;
  text-align: center;
}

.section-3 .early-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.early-list .list-item {
  width: calc((100% - 16px) / 2);
  max-width: 416px;
  min-height: 122px;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-color: #BA9F82;
  border-radius: 20px;
}

.early-list .list-item svg {
  height: 36px;
  width: 36px;
}

.early-list .list-item h3 {
  font-weight: 600;
  font-family: Inter;
  text-align: center;
  max-width: 300px;
}

.signup-btn {
  background-color: #8D4F4E;
  padding: 8px 32px;
  border-radius: 25px;
  color: #E8E2DC;
  font-weight: 600;
  font-family: Inter;
  text-decoration: none;
  text-align: center;
  display: block;
  width: fit-content;
  transition: all 0.2s linear;
}

.section-4 {
  background-color: #dccfc1;
}

.section-4 .row {
  gap: 26px;
  align-items: center;
}

.section-4 .right-column {
  width: calc((100% - 26px) / 2);
  max-width: 586px;
  flex-shrink: 0;
  position: relative;
}

.section-4 .left-column {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-4 .column-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-4 .column-title svg {
  height: 60px;
  width: 60px;
}

.section-4 .column-title p {
  font-size: 25px;
  line-height: 31px;
}

.section-4 h2 {
  font-size: 49px;
  line-height: 55px;
  font-weight: 700;
}

.section-4 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-4 ul li {
  background-color: #BA9F82;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 16px;
  font-weight: 600;
}

.section-4 .column-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-4 .column-content span {
  font-size: 25px;
  line-height: 31px;
}

.section-4 .highlight {
  font-weight: 700;
  color: #8D4F4E;
}

.section-4 .highlight-2 {
  font-weight: 700;
  color: #000;
  text-decoration: underline;
}

.section-4 .column-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-4 .announce {
  font-size: 13px;
  line-height: 19px;
}

.section-5 {
  background-color: #BA9F82;
}

.section-5 .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.section-5 h2 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  text-align: center;
}

.section-5 ul {
  width: 100%;
  background-color: #E8E2DC;
  border-radius: 20px;
  padding: 16px 16px 16px 36px;
  max-width: 822px;
}

footer {
  background-color: #8D4F4E;
  padding: 30px 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  color: #fff;
}

footer p {
  font-weight: 600;
}

@media (max-width: 1200px) {
  .section-4 .row {
    align-items: flex-start;
  }
}

@media (min-width: 611px) and (max-width: 1200px) {
  .section-4 .right-column {
    position: sticky;
    top: 0;
    align-self: flex-start;
  }
}

@media (max-width: 1024px) {
  .container,
  footer {
    padding: 60px 24px;
  }
  .section-1{
    padding-bottom: 0;
  }
  .section-2 .left-column{
    max-width: 100%;
  }
  .section-2 .left-column img{
    width: 100%;
    object-fit: cover;
  }
  .section-3 .container{
    padding-top: 0;
  }
  .section-4 .container{
    padding-left: 90px;
    padding-right: 90px;
  }
  .section-4 .right-column{
    display: none;
  }
}

@media (max-width: 768px) {
  .section-2 .row,
  .section-4 .row {
    flex-direction: column;
    align-items: center;
  }

  .section-2 .left-column,
  .section-2 .right-column,
  .section-4 .left-column,
  .section-4 .right-column {
    width: 100%;
  }

  .section-2 .column-content {
    padding-right: 0;
    max-width: 100%;
  }  
}

@media (max-width: 610px) {
  form {
    padding: 24px;
    gap: 16px;
  }

  form .field-control {
    width: 100%;
  }

  /*.hero h1 {*/
  /*  font-size: 41px;*/
  /*  line-height: 47px;*/
  /*}*/

  .section-3 .early-list {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  
  .early-list .list-item {
    width: 100%;
  }
  .section-2 .container{
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 32px;
  }
  .section-3 .container,
  .section-4 .container{
    padding-left: 16px;
    padding-right: 16px;
  }
  .section-2 svg{
    display: block;
  }
  .section-2 .right-column {
    gap: 20px;
  }
}