/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1c1c1c;
  background-color: #ffffff;
  line-height: 1.6;
}

/* LOGO */
.site-header {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 10;
}

.logo {
  width: 220px;
  height: auto;
}

/* HERO */
.hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTIONS */
.section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.section h2 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  color: #777;
}

/* MOBILE */
@media (max-width: 768px) {
  .site-header {
    top: 20px;
    right: 20px;
  }

  .logo {
    width: 160px;
  }

  .section {
    margin: 50px auto;
  }

  .section h2 {
    font-size: 22px;
  }
}