/* ——— Hero Section ——— */
.hero {
  padding: 48px 48px 28px;
  max-width: 1920px;
  margin: 0 auto;
  background: var(--color-bg);
}

.hero-image-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 48px;
  max-width: 550px;
}

.hero-headline {
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 24px;
}

.hero-subline {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 20px;
}

.hero-footnote {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Project grid + tile + divider styles → moved to index.css (shared with project pages) */

/* ——— Clients Section ——— */
.clients-section {
  padding: 0;
}

.clients-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  margin: 0 auto 40px;
}

.clients-content {
  text-align: center;
  padding: 60px var(--gutter) 60px;
  max-width: 860px;
  margin: 0 auto 64px;
}

.clients-list {
  font-size: 16px;
  color: var(--color-text);
  line-height: 2;
  margin-bottom: 16px;
}

.clients-list p {
  font-size: 16px;
  color: var(--color-text);
  line-height: 2;
  margin-bottom: 24px;
}

.clients-list p:last-child {
  margin-bottom: 0;
}

.client-sep.is-hidden {
  visibility: hidden;
}

.clients-list a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(183, 180, 174, 0.4);
  transition: text-decoration-color 0.2s;
}

.clients-list a:hover {
  text-decoration-color: var(--color-text);
}

.clients-subline {
  font-size: 12px;
  color: var(--color-text-dim);
  font-style: normal;
}

/* ——— Responsive ——— */
@media screen and (max-width: 600px) {
  .hero {
    padding: 20px;
  }

  .hero-image-wrapper {
    min-height: 420px;
  }

  .hero-inner {
    padding: 60px 20px;
  }
}
