* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; }
body {
  font-family: open-sans, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background: #FFFFFF;
  overflow-x: clip;
}
a { color: #0191CB; text-decoration: none; }
a:hover { color: #D60A78; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.site-header .wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.site-header img { width: 56px; height: 50px; }
.site-header .brand {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: #0191CB;
  line-height: 1.3;
}
.site-header nav {
  margin-left: auto;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.site-header nav a {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 10px 12px;
  color: #0191CB;
  text-transform: uppercase;
}
.site-header nav a:hover, .site-header nav a.active { color: #D60A78; }
main { max-width: 960px; margin: 0 auto; padding: 34px 16px 50px; }
main h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.15;
  color: #D60A78;
  margin-bottom: 18px;
}
main h2 {
  font-weight: 700;
  font-size: 26px;
  color: #0191CB;
  margin: 30px 0 12px;
}
main p { margin-bottom: 14px; }
main ul { margin: 0 0 14px 22px; }
main li { margin-bottom: 6px; }
.lead { font-size: 18px; }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.cards li { margin: 0; }
.card {
  border: 1px solid #E3E3E3;
  border-radius: 8px;
  padding: 20px 20px 18px;
  height: 100%;
  border-top: 4px solid #0191CB;
}
.card.featured { border-top-color: #D60A78; }
.card h3 { font-size: 19px; color: #333333; margin-bottom: 4px; }
.card .city {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0191CB;
  margin-bottom: 8px;
}
.card p { margin: 0; font-size: 14px; color: #555555; }
.btn {
  display: inline-block;
  background: #D60A78;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 100px;
  padding: 13px 34px;
  margin: 10px 0;
}
.btn:hover { background: #0191CB; color: #FFFFFF; }
.cta { text-align: center; margin-top: 30px; }
.site-footer {
  border-top: 1px solid #E3E3E3;
  background: #FFFFFF;
  padding: 26px 16px 20px;
  font-size: 14px;
}
.site-footer .wrap {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.site-footer h3 { font-size: 15px; color: #0191CB; margin-bottom: 8px; }
.site-footer .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0191CB;
  color: #FFFFFF;
  font-size: 18px;
  margin-right: 8px;
}
.site-footer .social a:hover { background: #D60A78; }
.site-footer .copy {
  max-width: 960px;
  margin: 18px auto 0;
  padding-top: 14px;
  border-top: 1px solid #EEEEEE;
  color: #888888;
  text-align: center;
}
.site-footer .copy a { margin: 0 8px; }
@media (max-width: 700px) {
  main h1 { font-size: 28px; }
  main h2 { font-size: 21px; }
  .site-header nav { margin-left: 0; }
}
