/* === Hero === */
.hero {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero__content { max-width: 620px; }
.hero__title {
  font-size: clamp(2.6rem, 5.5vw + 0.6rem, 4.6rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--brand);
  font-weight: 400;
}
.hero__lede {
  font-size: clamp(1.1rem, 0.6vw + 0.95rem, 1.25rem);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
}
.hero__meta-item strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--brand);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}
.hero__meta-item span {
  font-size: 13px;
  color: var(--text-muted);
}

.hero__visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31, 37, 32, 0.18));
  pointer-events: none;
}
.hero__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero__caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  color: var(--bg);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  background: rgba(31, 37, 32, 0.5);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

@media (min-width: 900px) {
  .hero { padding: 96px 0 120px; }
  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 72px;
  }
  .hero__visual img { aspect-ratio: 4 / 5; max-height: 720px; }
}
