body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0c1b2a;
  color: #E0E6EF;
  line-height: 1.6;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero.small {
  height: 80vh;
}

.hero video,
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  margin: 0;
}

.tagline {
  font-size: 1.2rem;
  margin: 12px 0 30px;
}

.cta {
  padding: 12px 28px;
  border: 1px solid #E0E6EF;
  color: #E0E6EF;
  text-decoration: none;
}

/* ================= CONTENT ================= */

.intro,
.content {
  padding: 60px 10%;
}

.content h2 {
  margin-top: 60px;
  font-size: 1.8rem;
}

.content p {
  max-width: 800px;
  margin-bottom: 20px;
}

/* ================= LIST ================= */

.list {
  list-style: none;
  padding: 0;
  max-width: 800px;
}

.list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(224, 230, 239, 0.2);
}

/* ================= GALLERY ================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.gallery-name {
  margin-top: 8px;
  font-size: 1rem;
  color: #E0E6EF;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }

  .hero.small {
    height: 60vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .intro,
  .content {
    padding: 40px 6%;
  }

  .content h2 {
    margin-top: 40px;
  }
}