body {
  display: block;
}

.banner {
  min-height: 760px;
  background:
    linear-gradient(90deg, rgba(18, 12, 8, .92) 0%, rgba(18, 12, 8, .72) 38%, rgba(18, 12, 8, .2) 100%),
    url("../img/hero-island-stronghold.svg");
  background-size: cover;
  background-position: center center;
}

.banner_in {
  width: min(1200px, calc(100% - 40px));
  min-height: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-top: 90px;
}

.hero_copy {
  width: min(620px, 100%);
  color: var(--paper);
}

.hero_logo {
  width: 110px;
  height: 124px;
  margin-bottom: 20px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .35));
}

.eyebrow {
  color: var(--bronze-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.banner_in h1 {
  margin-top: 12px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: .95;
  color: var(--white);
  text-shadow: 0 7px 16px rgba(0, 0, 0, .38);
}

.hero_text {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 247, 227, .88);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  line-height: 1.65;
}

.hero_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary_action,
.secondary_action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.primary_action {
  color: #22150d;
  background: linear-gradient(#f1c66c, #b77924);
  border: 1px solid #ffe2a0;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .28);
}

.secondary_action {
  color: var(--paper);
  background: rgba(0, 0, 0, .24);
  border: 1px solid rgba(232, 182, 95, .58);
}

.main_body {
  display: flex;
  justify-content: center;
  background:
    linear-gradient(180deg, #fff7e3 0%, #edd7a8 100%);
}

.main_body_in {
  width: min(1200px, calc(100% - 40px));
  padding: 88px 0 102px;
}

.section_header {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.section_header h2 {
  margin-top: 10px;
  color: #2d2116;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.04;
}

.main_row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 68px;
  align-items: center;
  margin-top: 76px;
}

.main_row:first-of-type {
  margin-top: 0;
}

.main_row img {
  width: 100%;
  border: 2px solid rgba(87, 55, 25, .52);
  border-radius: 8px;
  box-shadow: 0 22px 38px rgba(67, 43, 20, .22);
}

.main_row_txt {
  padding: 8px 0;
}

.feature_number {
  margin-bottom: 14px;
  color: var(--blood);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.main_row_txt h3 {
  color: #2d2116;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.main_row_txt p:last-child {
  margin-top: 22px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.bottom {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(20, 12, 7, .9), rgba(20, 12, 7, .42), rgba(20, 12, 7, .86)),
    url("../img/bottom-campaign-map.svg");
  background-size: cover;
  background-position: center center;
}

.bottom_in {
  width: min(920px, calc(100% - 40px));
  color: var(--paper);
  text-align: center;
}

.bottom_in h2 {
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
}

.bottom_in p:last-child {
  margin-top: 28px;
  color: rgba(255, 247, 227, .9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.7;
}

.footer {
  padding: 34px 20px 26px;
  color: rgba(255, 247, 227, .72);
  background: #16100b;
  border-top: 1px solid rgba(232, 182, 95, .32);
  text-align: center;
}

.footer img {
  width: 58px;
  height: 65px;
  margin: 0 auto 10px;
}

.footer h3 {
  color: var(--white);
  font-size: 22px;
  line-height: 1.35;
}

.footer_mail {
  margin-top: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
}

.footer_mail a {
  color: var(--bronze-light);
  text-decoration: none;
}

.footer_line {
  width: min(780px, 100%);
  height: 1px;
  margin: 26px auto 16px;
  background: rgba(255, 247, 227, .18);
}

.footer_rights {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

@media screen and (max-width: 900px) {
  .banner,
  .banner_in {
    min-height: 690px;
  }

  .banner_in {
    width: calc(100% - 32px);
    padding-top: 34px;
  }

  .hero_logo {
    width: 84px;
    height: 95px;
  }

  .hero_text {
    font-size: 17px;
  }

  .hero_actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary_action,
  .secondary_action {
    width: 100%;
  }

  .main_body_in {
    width: calc(100% - 32px);
    padding: 64px 0 76px;
  }

  .main_row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 62px;
  }

  .main_row:last-child .main_row_l {
    order: 2;
  }

  .main_row:last-child .main_row_r {
    order: 1;
  }

  .bottom {
    min-height: 540px;
    padding: 72px 0;
  }

  .bottom_in p:last-child {
    font-size: 17px;
  }
}
