/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 72px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(80,55,40,.65) 0%, rgba(40,30,20,.75) 100%),
    url('../../images/home.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: .4;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero__eyebrow {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.55);
  margin-bottom: 1rem;
}
.hero__divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,.5);
  margin: 1.2rem auto;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__scroll-icon {
  display: block;
  width: 36px;
  height: 46px;
  position: relative;
}
.hero__scroll-icon::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 28px;
  height: 28px;
  border-right: 3px solid rgba(255,255,255,.8);
  border-bottom: 3px solid rgba(255,255,255,.8);
  border-radius: 3px;
  animation: scrollArrow 1.8s var(--ease) infinite;
}
@keyframes scrollArrow {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0) rotate(45deg); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px) rotate(45deg); }
}

@media (max-width: 640px) {
  .hero__cta { flex-direction: column; align-items: center; }
}
