/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(26,8,0,.65), rgba(26,8,0,.65)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 1000'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%23341306'/><stop offset='.5' stop-color='%235C3317'/><stop offset='1' stop-color='%238B1A2B'/></linearGradient><pattern id='p' width='40' height='40' patternUnits='userSpaceOnUse'><rect width='40' height='40' fill='url(%23g)'/><path d='M0 40 L40 0' stroke='rgba(255,255,255,.04)' stroke-width='1'/></pattern></defs><rect width='1600' height='1000' fill='url(%23p)'/><circle cx='1100' cy='320' r='180' fill='rgba(201,160,106,.12)'/><circle cx='420' cy='760' r='240' fill='rgba(139,26,43,.25)'/></svg>");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero__inner {
  position: relative;
  padding: 120px 28px 100px;
  max-width: 920px;
}

.hero__label {
  color: var(--color-gold);
  font-size: 13px;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 72px);
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 22px;
}

.hero__sub {
  font-weight: 300;
  font-size: 17px;
  color: rgba(255,255,255,.88);
  margin-bottom: 40px;
  letter-spacing: .02em;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__line {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--color-gold);
}

.hero__scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .hero__inner { padding: 100px 24px 100px; }
  .hero h1 { font-size: 2.4rem; }
  .hero__sub { font-size: 15px; }
  .hero__buttons .btn { width: 100%; }
}
