/* =========================================================
   HERO SECTION
   ========================================================= */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 2rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-tag {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 24px; 
  height: 1px;
  background: var(--gold);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text2);
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text3);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* ===========
   BUTTONS 
   =========== */

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #111;
  padding: 0.85rem 1.8rem;
}

.btn-primary:hover { 
  background: #d8b77d; 
  transform: translateY(-2px); 
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 106, 0.15);
  padding: 0.65rem 1.5rem;
}

.btn-ghost:hover { 
  background: rgba(201, 168, 106, 0.08); 
}

/* =========================================================
   HERO AVATAR & STATS
   ========================================================= */

.hero-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.hero-avatar {
  width: 200px; 
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 106, 0.15);
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.avatar-ring { 
  display: none; 
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 12px;
  color: var(--text3);
  letter-spacing: 0.05em;
}

/* =========================================================
   MOBILE RESPONSIVENESS (HERO)
   ========================================================= */

@media (max-width: 700px) {
  .hero-inner { 
    grid-template-columns: 1fr; 
    text-align: center;
    gap: 2rem;
  }
  
  .hero-tag { 
    justify-content: center; 
  }
  
  .hero-subtitle { 
    margin: 0 auto 1.5rem; 
  }
  
  .hero-desc { 
    margin: 0 auto 2.5rem; 
  }
  
  .hero-btns { 
    justify-content: center; 
  }
  
  .hero-stats { 
    justify-content: center; 
    gap: 1.5rem; 
  }
  
  .hero-avatar-wrap { 
    display: flex;
    justify-content: center;
    order: -1; 
    margin-top: 2rem;
  }
  
  .hero-avatar {
    width: 140px; 
    height: 140px;
  }
  
  .avatar-ring { 
    inset: -8px; 
  }
}