.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 75% 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(250,246,239,0.96) 0%, rgba(250,246,239,0.88) 28%, rgba(250,246,239,0.45) 52%, rgba(43,33,24,0.05) 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 230px 24px 100px;
  width: 100%;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-bottom: 18px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.08;
  max-width: 640px;
}

.hero-sub {
  margin-top: 22px;
  max-width: 460px;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.intro {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid rgba(43,33,24,0.06);
}

.intro-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-style: italic;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .hero-bg { background-position: 70% 15%; }
  .hero-overlay { background: linear-gradient(180deg, rgba(250,246,239,0.45) 0%, rgba(250,246,239,0.96) 64%, rgba(250,246,239,1) 100%); }
  .hero-content { padding-top: 160px; }
  .hero h1 { max-width: 100%; }
}
