/* ─── HERO ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding-top: 68px;
}

.hero__bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(14,58,47,.7) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__left {
  padding: 6rem 4rem 5rem 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 99px;
  margin-bottom: 1.8rem;
  width: fit-content;
  animation: fadeSlideUp .6s ease both;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.4rem;
  animation: fadeSlideUp .6s .1s ease both;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.75;
  animation: fadeSlideUp .6s .2s ease both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp .6s .3s ease both;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  animation: fadeSlideUp .6s .4s ease both;
}

.hero__stat-n {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.hero__stat-l {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .15rem;
}

/* Hero right image panel */
.hero__right {
  position: relative;
  overflow: hidden;
}
.hero__right img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  filter: saturate(0.6);
}
.hero__right::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, transparent 35%),
    linear-gradient(0deg, var(--ink) 0%, transparent 25%);
}

/* Featured card overlay */
.hero__featured-card {
  position: absolute;
  bottom: 2.5rem; right: 2rem; left: 2rem;
  z-index: 2;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--r-md);
  padding: 1.4rem 1.6rem;
  animation: fadeSlideUp .6s .5s ease both;
}
.hero__featured-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .6rem;
}
.hero__featured-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: .8rem;
}
.hero__featured-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}
.hero__featured-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.sep { color: rgba(255,255,255,.25); }
