/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: hero-zoom 10s ease infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250,247,242,.15) 0%,
    rgba(250,247,242,.4) 60%,
    rgba(250,247,242,.95) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 160px 60px 0;
  flex: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  padding: 7px 18px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 28px;
}
.hero-tag::before { content: '✦'; color: var(--gold); }

.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.03em;
  color: var(--walnut);
}
.hero-h1 .italic {
  font-style: italic;
  color: var(--gold);
}
.hero-h1 .outline {
  -webkit-text-stroke: 2px var(--walnut);
  color: transparent;
}

.hero-middle {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 60px 60px;
  position: relative;
  z-index: 2;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-desc {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.7;
  max-width: 360px;
  font-weight: 300;
}
.hero-desc strong {
  color: var(--walnut);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-stats-row {
  display: flex;
  gap: 32px;
  align-items: flex-end;
}

.hs-num {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--walnut);
  line-height: 1;
}
.hs-num sup {
  font-size: 20px;
  color: var(--gold);
}
.hs-label {
  font-size: 11px;
  color: var(--sand);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-scroll-line {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand);
  animation: bounce-down 2s ease infinite;
  z-index: 2;
  padding-bottom: 32px;
}
.hero-scroll-line::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
