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

body {
  background: #0d0d0d;
  color: #ececec;
  font-family: Outfit, "Segoe UI", sans-serif;
  line-height: 1.55;
}

.sample-bar {
  background: #c8ff3d;
  color: #111;
  text-align: center;
  padding: 0.55em 1em;
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-bar a {
  color: #111;
  text-decoration: none;
}

.sample-bar a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 4.8em 1.5em 3em;
}

.eyebrow {
  font-size: 0.75em;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c8ff3d;
  margin-bottom: 0.9em;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.45em;
}

.tagline {
  font-size: 1.15rem;
  color: #b5b5b5;
  max-width: 26em;
  margin: 0 auto;
}

.photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75em;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5em 3em;
}

.photo {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8ff3d;
  font-size: 0.8em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid #2a2a2a;
}

.photo-a { background: #1a1a1a; }
.photo-b { background: #161b22; }
.photo-c { background: #1c1814; }

.about {
  max-width: 36em;
  margin: 0 auto;
  padding: 0 1.5em 3.5em;
  text-align: center;
}

.about h2 {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c8ff3d;
  margin: 1.8em 0 0.55em;
}

.about p {
  color: #cfcfcf;
  font-size: 1.05rem;
}

.cta {
  margin-top: 1.8em;
}

.cta a {
  display: inline-block;
  background: #c8ff3d;
  color: #111;
  text-decoration: none;
  padding: 0.8em 1.6em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.cta a:hover {
  background: #e4ff8a;
}

footer {
  border-top: 1px solid #2a2a2a;
  text-align: center;
  padding: 2em 1.5em 2.5em;
  color: #8a8a8a;
  font-size: 0.95rem;
}

footer a {
  color: #c8ff3d;
}

@media (max-width: 640px) {
  .hero {
    padding: 3em 1.2em 2em;
  }
  .hero h1 {
    font-size: 2.15rem;
  }
  .tagline {
    font-size: 1.02rem;
  }
  .photos {
    grid-template-columns: 1fr;
    padding-bottom: 2em;
  }
  .photo {
    min-height: 140px;
  }
}
