/* ============================================================
   home.css
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: center;
  gap: 64px;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.hero-top { margin-bottom: 22px; }

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.hero-title .accent { color: var(--accent-primary); }

.hero-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.hero-bio {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 34px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}
.stat { padding-right: 32px; }
.stat-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl { font-size: 0.72rem; color: var(--text-muted); white-space: nowrap; }
.stat-div {
  width: 1px; height: 34px;
  background: var(--border-color);
  margin-right: 32px;
  flex-shrink: 0;
}

/* Photo */
.hero-photo-wrap { position: relative; }
.hero-photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  aspect-ratio: 4/5;
  background: var(--bg-tertiary);
  position: relative;
}
.hero-photo-frame.photo-missing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 1px dashed #3a3a3a;
}
.hero-photo-frame.photo-missing::after {
  content: 'Add photo.jpg to assets/';
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  text-align: center;
  padding: 0 24px;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
  will-change: transform;
}
.hero-photo-frame:hover .hero-photo { transform: scale(1.03); }
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.45) 0%, transparent 55%);
  pointer-events: none;
}
.hero-photo-badge {
  position: absolute;
  bottom: -13px; left: 18px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 6px 13px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── About ─────────────────────────────────────────────────── */
.about { background: var(--bg-secondary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about h2 { margin-bottom: 22px; line-height: 1.2; }
.about-body p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.strength-list { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.strength-item { display: flex; gap: 13px; align-items: flex-start; }
.strength-dot {
  width: 5px; height: 5px;
  background: var(--accent-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.strength-item strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.strength-item span { font-size: 0.78rem; color: var(--text-muted); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 56px 0; }
  .hero-photo-wrap { max-width: 300px; margin: 0 auto; order: -1; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { flex-wrap: wrap; }
  .stat-div { display: none; }
  .stat { padding-right: 28px; }
}
