/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: var(--nav-height);
}

/* Left */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem var(--section-pad-x) 5rem 7vw;
}

.hero-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.hero-title em {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  color: var(--burgundy);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--warm-gray);
  max-width: 400px;
  margin-bottom: 3rem;
}

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

/* Right */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-right .hero-img-fallback {
  min-height: 100%;
}

/* Badge */
.hero-badge {
  position: absolute;
  bottom: 3.5rem;
  left: -1.5rem;
  background: var(--cream);
  padding: 1.2rem 1.8rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.hero-badge-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 0.3rem;
}
