/* === Hero home === */

.hero{
  min-height: 100vh;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: center;
  padding: 140px 48px 80px;
  position: relative;
  z-index: 1;
  gap: 60px;
}

.hero-content{ position: relative; }

.hero-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before{
  content:'';
  width: 40px; height: 1px;
  background: var(--gold);
}

h1.hero-title{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
h1.hero-title em{
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-sub{
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-cta-group{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-visual{
  position: relative;
  height: 480px;
  opacity: 0;
  animation: fadeIn 1.2s 0.5s forwards;
}
.hero-image-main{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, #fdfaf3 0%, #f5efe0 60%, #ece3cf 100%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26, 29, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-main::before{
  content:'';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 252, 240, 0.6), transparent 55%),
    radial-gradient(circle at 25% 85%, rgba(184, 134, 61, 0.1), transparent 60%);
  pointer-events: none;
}
.hero-logo{
  position: relative;
  z-index: 1;
  max-width: 55%;
  max-height: 70%;
  width: auto;
  height: auto;
  filter: drop-shadow(0 8px 30px rgba(26, 29, 43, 0.15));
  animation: heroLogoFloat 6s ease-in-out infinite;
}
@keyframes heroLogoFloat{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

.hero-badge{
  position: absolute;
  bottom: -30px; left: -30px;
  background: var(--bg);
  padding: 24px 32px;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(26, 29, 43, 0.12);
  border-top: 3px solid var(--gold);
}
.hero-badge-label{
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.hero-badge-date{
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.hero-badge-year{
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  margin-top: 2px;
}

@media (max-width: 900px){
  .hero{
    grid-template-columns: 1fr;
    padding: 120px 20px 60px;
    min-height: auto;
    gap: 40px;
  }
  .hero-visual{ height: 400px; order: -1; }
  .hero-badge{ left: 10px; bottom: -20px; padding: 18px 24px; }
  .hero-badge-date{ font-size: 22px; }
}
