:root {
  --dark: #1f332c;
  --dark-hover: #16251f;
  --text: #22332d;
  --line: rgba(31, 51, 44, 0.32);
}

@font-face {
  font-family: "Castoro";
  src: url("../fonts/castoro/Castoro-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Catamaran";
  src: url("../fonts/catamaran/Catamaran-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100%;
  font-family: "Catamaran", Arial, Helvetica, sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

body {
  background: #f4f1eb;
}

.landing {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  background-image: url("../images/main-img.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.brand {
  position: absolute;
  top: clamp(28px, 7.6vh, 80px);
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
}

.brand-logo {
  display: block;
  width: clamp(220px, 18.65vw, 358px);
  height: auto;
}

.option {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 50%;
  min-height: 100vh;
  padding-top: clamp(150px, 25vh, 275px);
  padding-bottom: clamp(48px, 7vh, 78px);
}

.option-food {
  justify-content: flex-start;
  padding-right: clamp(36px, 4vw, 78px);
  padding-left: clamp(72px, 17.4vw, 335px);
}

.option-build {
  justify-content: flex-start;
  padding-right: clamp(36px, 4vw, 78px);
  padding-left: clamp(48px, 4vw, 78px);
}

.divider {
  position: absolute;
  top: 26%;
  bottom: 5.2%;
  left: 50%;
  z-index: 8;
  width: 1px;
  background: var(--line);
  transform: translateX(-50%);
}

.content {
  width: 100%;
}

.title {
  margin-bottom: clamp(34px, 3.3vw, 62px);
  color: #21342d;
  font-family: "Castoro", Georgia, "Times New Roman", serif;
  font-size: 60px;
  font-weight: 400;
  font-style: normal;
  line-height: 80px;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: uppercase;
}

.desc {
  max-width: 640px;
  margin-bottom: clamp(28px, 2.75vw, 46px);
  color: #243830;
  font-family: "Catamaran", Arial, Helvetica, sans-serif;
  font-size: 35px;
  font-weight: 400;
  font-style: normal;
  line-height: 164%;
  letter-spacing: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(300px, 24.2vw, 465px);
  min-height: clamp(58px, 4.65vw, 89px);
  padding: 14px 36px;
  gap: clamp(18px, 1.7vw, 34px);
  color: #fff;
  background: var(--dark);
  font-family: "Catamaran", Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 1.6vw, 31px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--dark-hover);
  box-shadow: 0 16px 35px rgba(20, 34, 28, 0.22);
  transform: translateY(-3px);
}

.btn-arrow {
  font-size: 1.45em;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow,
.btn:focus-visible .btn-arrow {
  transform: translate(8px, -1px);
}

@media (max-width: 1180px) {
  .option-food {
    padding-left: 10%;
  }

  .option-build {
    padding-right: 5%;
    padding-left: 5%;
  }
}

@media (max-width: 900px) {
  .landing {
    min-height: auto;
    flex-direction: column;
    background-position: center top;
  }

  .brand {
    top: 28px;
  }

  .option {
    width: 100%;
    min-height: 50vh;
    padding: 145px 7% 54px;
    justify-content: center;
    text-align: center;
  }

  .option-build {
    padding-top: 72px;
  }

  .divider {
    display: none;
  }

  .content {
    width: min(100%, 680px);
  }

  .desc {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 190px;
  }

  .option {
    padding-right: 24px;
    padding-left: 24px;
  }

  .title {
    font-size: 30px;
    white-space: normal;
  }

  .desc {
    font-size: 17px;
    line-height: 1.55;
  }

  .btn {
    width: 100%;
    min-width: 0;
    gap: 16px;
    font-size: 17px;
  }
}
