.golf-page{
  background: #e7e2dc;
}

.golf-hero{
  background: #21342b;
  color: #fff;
  padding: 90px 0;
  text-align: center;
}

.golf-hero__inner{
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.golf-hero__eyebrow{
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin: 0 0 16px;
}

.golf-hero h1{
  font-size: 48px;
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 22px;
}

.golf-hero p{
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.78);
  margin: 0;
}

.golf-courses{
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  gap: 70px;
}

.golf-course{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.golf-course--reverse img{
  order: 2;
}

.golf-course img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.golf-course h2{
  font-size: 38px;
  line-height: 1.2;
  font-weight: 500;
  color: #21342b;
  margin: 0 0 18px;
}

.golf-course p{
  font-size: 18px;
  line-height: 1.8;
  color: rgba(0,0,0,.55);
  margin: 0;
}

@media (max-width: 760px){
  .golf-hero{
    padding: 64px 0;
  }

  .golf-hero h1{
    font-size: 32px;
  }

  .golf-hero p{
    font-size: 16px;
    line-height: 1.7;
  }

  .golf-courses{
    width: calc(100% - 24px);
    padding: 56px 0;
    gap: 46px;
  }

  .golf-course{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .golf-course--reverse img{
    order: 0;
  }

  .golf-course img{
    height: 260px;
  }

  .golf-course h2{
    font-size: 28px;
  }

  .golf-course p{
    font-size: 16px;
    line-height: 1.7;
  }
}

.back-home-btn{
  display:inline-block;
  margin: 24px 0 40px 40px;
  padding:10px 18px;
  font-size:13px;
  letter-spacing:2px;
  text-decoration:none;
  color:#b89456;
  border:1px solid #b89456;
}

.back-home-btn:hover{
  opacity:0.75;
  transform:translateY(-1px);
}

@media (max-width: 760px){
  .back-home-wrap{
    width: calc(100% - 24px);
    padding-top: 18px;
  }
}

.golf-course__link{
  display: inline-block;
  margin-top: 24px;
  background: var(--gold);
  color: #111;
  text-decoration: none;
  padding: 14px 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
}

.golf-map-section{
  background: #21342b;
  color: #fff;
  padding: 80px 0;
}

.golf-map-section__inner{
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  text-align: center;
}

.golf-map-section h2{
  font-size: 42px;
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 18px;
}

.golf-map-section p{
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.78);
}

.golf-map{
  width: 100%;
  height: 520px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}

.map-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}

.map-icon--golf{
  border: 3px solid var(--gold);
}

.map-icon--airport{
  border: 3px solid #21342b;
}

.map-icon--hotel{
  border: 3px solid #b9a77a;
}

@media (max-width: 760px){
  .golf-map-section{
    padding: 56px 0;
  }

  .golf-map-section__inner{
    width: calc(100% - 24px);
  }

  .golf-map-section h2{
    font-size: 30px;
  }

  .golf-map-section p{
    font-size: 16px;
    line-height: 1.7;
  }

  .golf-map{
    height: 420px;
  }
}