/* ── Hero section ─────────────────────────────────── */
.hero-section {
  display: flex;
  align-items: center;
  min-height: calc(100dvh - 72px);
  padding: 1.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100dvh - 72px - 3.5rem);
}

/* ── Left column ─────────────────────────────────── */
.hero-copy {
  min-width: 0;
}

.hero-eyebrow {
  margin: 0 0 1.2rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-name {
  margin: 0;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--text);
}

.hero-accent {
  color: var(--accent);
}

.hero-text {
  margin: 1.2rem 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.hero-btn {
  font-size: 0.92rem;
  width: auto;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-meta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-meta-value {
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

/* ── Right column — portrait ─────────────────────── */
.hero-portrait {
  overflow: hidden;
  border-radius: 1rem;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: calc(100dvh - 72px - 3.5rem);
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 1rem;
}

/* ── ≤1024 — tighter grid ────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 0.6fr;
    gap: 2rem;
  }

  .hero-portrait img {
    min-height: 340px;
  }
}

/* ── ≤768 — stack columns ────────────────────────── */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }

  .hero-copy {
    order: 1;
  }

  .hero-portrait {
    order: 0;
    max-width: 260px;
    margin: 0 auto;
  }

  .hero-portrait img {
    aspect-ratio: 1 / 1;
    min-height: auto;
    max-height: none;
    border-radius: 50%;
  }

  .hero-name {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    text-align: center;
  }

  .hero-eyebrow,
  .hero-text {
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-btn {
    width: auto;
  }

  .hero-meta {
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-meta-item {
    align-items: center;
  }
}

/* ── ≤480 — phone tweaks ─────────────────────────── */
@media (max-width: 480px) {
  .hero-section {
    padding: 1.5rem 0;
  }

  .hero-portrait {
    max-width: 180px;
  }

  .hero-name {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0.5rem;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-meta {
    gap: 0;
    justify-content: space-between;
    padding: 0 0.5rem;
  }

  .hero-eyebrow,
  .hero-text {
    padding: 0 0.5rem;
  }
}
