body {
  background: linear-gradient(180deg, #0a0a0a 0%, #181818 100%);
  min-height: 100vh;
  color: #f5f5f5;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.collage-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg {
  width: 100vw;
  min-height: 92vh;
  background:
    url("images/hero.jpg") center/cover no-repeat,
    linear-gradient(180deg, #0a0a0a 60%, #181818 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  z-index: 3;
}
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 24px;
  border-radius: 18px;
  background: rgba(24, 24, 24, 0.88);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}
.hero-sub {
  font-size: 1.35rem;
  color: #aeaeb3;
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.cta-btn {
  display: inline-block;
  background: var(--accent, #ff6b6b);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(255, 107, 107, 0.13);
  margin-top: 18px;
  transition:
    background 0.18s,
    transform 0.18s;
}
.cta-btn:hover {
  background: #ff8787;
  transform: translateY(-2px) scale(1.04);
}
.footer-centered {
  text-align: center;
  color: #aeaeb3;
  padding: 32px 0 18px 0;
  font-size: 1rem;
  width: 100vw;
  background: none;
}
@media (max-width: 700px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-content {
    padding: 28px 8px;
  }
  .hero-bg {
    min-height: 70vh;
  }
}

.featured {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 18px 28px 18px;
}
.featured-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.featured-head h2 {
  margin: 6px 0 4px 0;
}
.featured-head .muted {
  color: #b5b5bc;
}
.featured-head .eyebrow {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: #ff6b6b;
  font-size: 0.82rem;
}

.featured-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 320px);
  gap: 16px;
  overflow-x: auto;
  padding: 6px 4px 10px 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.featured-strip::-webkit-scrollbar {
  height: 8px;
}
.featured-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.featured-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.featured-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.featured-card figcaption {
  padding: 12px 14px;
  color: #e8e8e8;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.featured-ctrl {
  display: flex;
  gap: 10px;
}
.pill-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  transition:
    background 0.18s,
    transform 0.18s;
}
.pill-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .featured-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .featured-strip {
    grid-auto-columns: minmax(220px, 280px);
  }
}
@media (max-width: 600px) {
  .featured {
    padding: 32px 12px 18px 12px;
  }
  .featured-strip {
    grid-auto-columns: minmax(200px, 240px);
    gap: 12px;
  }
  .featured-card img {
    height: 200px;
  }
  .featured-ctrl {
    width: 100%;
    justify-content: flex-end;
  }
}
