.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
}

.hero-content {
  animation: fadeInLeft 1.2s forwards;
}

.subtitle {
  font-size: 1.4rem;
  color: #d4af37;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 5rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.hero-content h2 {
  font-size: 2.2rem;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-buttons { margin-top: 2rem; }
.hero-buttons a { margin-right: 1.5rem; }

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  border: 4px solid #d4af37;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  animation: fadeInRight 1.2s forwards 0.4s;
  opacity: 0;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 968px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 140px; }
  .hero-content h1 { font-size: 4rem; }
  .hero-image img { max-width: 380px; margin: 0 auto; }
}

