/* ═══════════════════════════════════════════════════════
   PAGE : HOME (index.html)
   ═══════════════════════════════════════════════════════ */

.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 7rem 3rem 5rem;
}
.hero-inner {
  max-width: 860px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero-top {
  display: flex; align-items: center; justify-content: center; gap: 2.5rem;
  flex-wrap: wrap; margin-bottom: 2rem;
  opacity: 0; animation: rise .7s .2s forwards;
}
.avatar {
  width: 110px; height: 110px; border-radius: 50%;
  border: 2px solid var(--gold); object-fit: cover; object-position: top center;
  box-shadow: 0 0 0 4px var(--gold-pale), 0 0 40px var(--gold-glow), 0 0 80px var(--rei-pale);
  flex-shrink: 0; transition: box-shadow .45s;
}
.avatar:hover {
  box-shadow: 0 0 0 5px rgba(212,168,67,.2), 0 0 60px var(--gold-glow), 0 0 120px var(--rei-glow);
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-weight: 900; font-size: clamp(3rem, 9vw, 8rem);
  line-height: .88; letter-spacing: .05em; text-align: left;
}
.hero-title .l1 { display: block; color: var(--white); }
.hero-title .l2 {
  display: block;
  background: linear-gradient(120deg, var(--red-lt) 0%, var(--gold) 50%, var(--gold-lt) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-size: .35em; letter-spacing: .4em; margin-top: .3em; font-weight: 400;
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem); font-style: italic;
  color: var(--text);
  max-width: 520px; margin: 0 auto 2.8rem; line-height: 1.8;
  opacity: 0; animation: rise .7s .45s forwards;
}
.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: rise .7s .65s forwards;
}

.features-sec {
  position: relative; z-index: 1;
  padding: 3rem 3rem 7rem; max-width: 1080px; margin: 0 auto;
  opacity: 0; animation: rise .7s .5s forwards;
}

@media (max-width: 700px) {
  .hero       { padding: 6.5rem 1.2rem 4rem; }
  .hero-top   { gap: 1.4rem; }
  .hero-title { text-align: center; font-size: clamp(2.8rem, 14vw, 5rem); }
  .avatar     { width: 85px; height: 85px; }
  .features-sec { padding: 2.5rem 1.2rem 5rem; }
}
