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

/* BASE */
body {
  font-family: 'DM Sans', sans-serif;
  background: #f1efe9;
  color: #2f3230;
  font-weight: 300;
  line-height: 1.6;
}

/* TOP BAR */
.topbar {
  background: #dedad2;
}

.topbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 400;
  letter-spacing: 1px;
}

.topbar-nav a {
  margin-left: 28px;
  text-decoration: none;
  color: #2f3230;
  font-size: 14px;
}

/* HERO */
.clean-hero {
  max-width: 1200px;
  margin: auto;
  padding: 100px 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.clean-hero-text h1 {
  font-weight: 200;
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 22px;
}

.clean-hero-text p {
  max-width: 420px;
  opacity: 0.75;
}

/* HERO IMAGES */
.clean-hero-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-tile {
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

/* SERVICES */
.service-clean {
  max-width: 1200px;
  margin: auto;
  padding: 80px 32px;
}

.service-clean h2 {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 50px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-box {
  background: #dedad2;
  padding: 36px;
  border-radius: 8px;
}

.service-box h3 {
  font-weight: 400;
  margin-bottom: 14px;
}

/* FEATURE */
.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #a7b1a5;
}

.feature-image {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.feature-copy {
  padding: 80px 10%;
}

.feature-copy h2 {
  font-weight: 300;
  font-size: 36px;
  margin-bottom: 20px;
}

/* CTA */
.cta-clean {
  text-align: center;
  padding: 120px 32px;
}

.cta-clean h2 {
  font-weight: 300;
  font-size: 38px;
  margin-bottom: 18px;
}

.cta-clean a {
  display: inline-block;
  margin-top: 26px;
  text-decoration: none;
  color: #2f3230;
  border-bottom: 1px solid #2f3230;
  font-size: 14px;
}

/* FOOTER */
.clean-footer {
  background: #6b6e6a;
  color: #f1efe9;
  text-align: center;
  padding: 28px 0;
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .clean-hero {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }
}
