#hero {
  background: var(--paper);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  width: 100%;
}

/* Photo side (only used when .hero-inner has .split-grid) */
.hero-image-col {
  height: clamp(440px, 60vh, 640px);
}

.hero-image-col .img-frame {
  height: 100%;
}

/* Content side */
.hero-content-col {
  display: flex;
  flex-direction: column;
  max-width: 680px;
}

.hero-label {
  color: var(--emerald);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.hero-name {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--space-6);
}

.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);
}

.hero-roles li {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--gray);
  font-weight: 500;
  position: relative;
}

.hero-roles li:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: calc(-1 * var(--space-4) + 4px);
  color: var(--emerald);
  font-weight: 700;
}

.hero-statement {
  font-size: var(--text-lg);
  color: var(--ink);
  line-height: 1.65;
  max-width: 46ch;
  margin-bottom: var(--space-8);
}

.hero-social {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
}

.hero-social a {
  font-size: var(--text-sm);
  color: var(--gray);
  font-weight: 500;
  transition: color var(--duration) var(--ease-out);
}

.hero-social a:hover { color: var(--emerald); }

.hero-social .social-sep {
  color: var(--border-strong);
  font-size: var(--text-xs);
}

@media (max-width: 1023px) {
  .hero-image-col {
    height: 56vw;
    max-height: 460px;
  }
}

@media (max-width: 639px) {
  #hero { min-height: auto; }
  .hero-inner { padding-block: var(--space-12); }
  .hero-image-col { height: 80vw; max-height: 380px; }
  .hero-name { font-size: 2.6rem; }
  .hero-statement { font-size: var(--text-base); }
  .hero-social { flex-wrap: wrap; gap: var(--space-3); }
}
