/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-headline {
  max-width: 16ch;
}

.hero-subhead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.hero-cta--primary {
  background-color: var(--accent);
  color: white;
}

.hero-cta--primary:hover {
  background-color: rgb(160, 80, 60);
  transform: translateY(-2px);
}

.hero-cta--secondary {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.hero-cta--secondary:hover {
  border-color: var(--muted);
  transform: translateY(-2px);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 560px;
  background-color: var(--bg);
}

.hero-portrait {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-links {
  display: inline-flex;
  gap: 1.5rem;
  margin-top: var(--space-sm);
  flex-wrap: wrap;
}

.hero-link {
  font-size: 0.85rem;
  color: var(--muted);
  position: relative;
  padding-bottom: 1px;
  transition: color 0.3s ease;
}

.hero-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.hero-link:hover {
  color: var(--text);
}

.hero-link:hover::after {
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: var(--space-lg);
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .hero-headline {
    max-width: none;
  }

  .hero-visual {
    order: -1;
    min-height: auto;
  }

  .hero-portrait {
    min-height: auto;
    height: 60vh;
    border-radius: 4px;
    object-position: top center;
  }
}
