/* ============================================
   BLOCK 1 — HERO (cinematic full-bleed + glass card)
   ============================================ */

.home_block_1 {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.home_block_1_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.home_block_1_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 22% 80%, rgba(26, 19, 14, 0.55) 0%, transparent 55%),
    linear-gradient(180deg, rgba(26, 19, 14, 0.35) 0%, rgba(26, 19, 14, 0.15) 35%, rgba(26, 19, 14, 0.85) 100%),
    linear-gradient(90deg, rgba(26, 19, 14, 0.55) 0%, rgba(26, 19, 14, 0.05) 50%, transparent 100%);
}

.home_block_1_inner {
  position: relative;
  z-index: 2;
  padding: 14rem var(--main-padding) 8rem;
  width: 100%;
}

.home_block_1_card {
  max-width: 720px;
  padding: 3.2rem 3.4rem;
  background: rgba(26, 19, 14, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(233, 165, 89, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  color: #f4e9d6;
}

.home_block_1_card > .section_tag {
  align-self: flex-start;
  color: #e9a559;
}

.home_block_1_card > .section_tag::before,
.home_block_1_card > .section_tag::after {
  background: #e9a559;
  box-shadow: 0 0 8px rgba(233, 165, 89, 0.6);
}

.home_block_1_title {
  color: #f4e9d6;
}

.home_block_1_title > .text-accent {
  color: #e9a559;
}

.home_block_1_lead {
  color: rgba(244, 233, 214, 0.78);
  max-width: 600px;
}

.home_block_1_card > .home_block_1_cta > .outline_button {
  color: #e9a559;
  border-color: #e9a559;
}
.home_block_1_card > .home_block_1_cta > .outline_button:hover {
  background: rgba(233, 165, 89, 0.12);
  color: #f4c178;
  box-shadow: 0 0 24px rgba(233, 165, 89, 0.32);
}

.home_block_1_cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.6rem;
}

.home_block_1_scroll {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(244, 233, 214, 0.75);
  text-transform: uppercase;
  opacity: 0.9;
}

.home_block_1_scroll::after {
  content: "";
  width: 1px;
  height: 3rem;
  background: linear-gradient(180deg, #e9a559 0%, transparent 100%);
  animation: scrollFade 2s ease-in-out infinite;
}

@keyframes scrollFade {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   Mobile — ≤1024px
   ============================================ */
@media (max-width: 1024px) {
  .home_block_1 {
    min-height: 100vh;
    align-items: center;
  }

  .home_block_1_inner {
    padding: 24rem var(--main-padding) 16rem;
  }

  .home_block_1_card {
    max-width: 100%;
    padding: 4rem 3.5rem;
    gap: 2.4rem;
    border-radius: 3rem;
  }

  .home_block_1_lead {
    max-width: 100%;
  }

  .home_block_1_cta {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .home_block_1_cta > .outline_button {
    width: 90%;
    height: 16rem;
    align-self: center;
  }

  .home_block_1_scroll {
    display: none;
  }
}
