body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: #d9d0c6;
  color: #171717;
}

* {
  box-sizing: border-box;
}

.agency-landing {
  min-height: 100vh;
}

.agency-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  overflow: hidden;
  background: #d9d0c6;
}

.agency-visual-media {
  position: absolute;
  inset: -1rem;
  background-image:
    linear-gradient(rgba(23, 23, 23, 0.28), rgba(23, 23, 23, 0.28)),
    url("./silk-hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(8px);
  transform: scale(1.05);
}

.agency-copy-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 38rem;
  text-align: center;
  color: #f7f5f2;
}

.agency-copy-inner h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.agency-copy-text {
  margin: 1rem auto 0;
  max-width: 32rem;
  color: rgba(247, 245, 242, 0.86);
  font-size: 1rem;
  line-height: 1.7;
}

.agency-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  color: #f7f5f2;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 245, 242, 0.9);
}

.agency-cta:hover,
.agency-cta:focus-visible {
  color: rgba(247, 245, 242, 0.78);
  border-color: rgba(247, 245, 242, 0.78);
}

.agency-cta:focus-visible {
  outline: none;
}

@media (max-width: 640px) {
  .agency-hero {
    padding: 1.5rem;
  }

  .agency-copy-inner h1 {
    font-size: 2.4rem;
  }
}
