* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}

body {
  background: #0e0e14;
  color: #fff;
}

/* TOPBAR */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 20px;
}

.brand img {
  height: 36px;
}

.top-actions {
  display: flex;
  gap: 10px;
}

/* PILLS */
.pill {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.pill.orange {
  background: #ff8c1a;
  color: #000;
  font-weight: 600;
}

.pill.green {
  background: #2ecc71;
  color: #000;
  font-weight: 600;
}

.pill.dark {
  background: #1c1c26;
  color: #fff;
}

.pill.small {
  padding: 6px 14px;
  font-size: 13px;
}

/* HERO */
.hero {
  position: relative;
  height: 440px;
  margin: 0 20px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.15));
}

.hero-text {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 520px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero p {
  opacity: .9;
  margin-bottom: 24px;
}

/* SECTIONS */
.section {
  padding: 40px 20px;
}

.section h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 24px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 16px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  padding: 14px 16px 4px;
}

.card p {
  padding: 0 16px;
  font-size: 14px;
  opacity: .85;
}

/* LOCATION */
.location {
  padding: 40px 20px;
  text-align: center;
}

.location p {
  margin: 12px 0 20px;
  opacity: .8;
}

.location-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  font-size: 14px;
  opacity: .5;
}

/* MOBILE */
@media (max-width: 600px) {
  .hero-text {
    padding: 40px 24px;
  }

  .hero h1 {
    font-size: 32px;
  }
}
