/* ============================================
   BLOCK 1 — HERO (split top + full-width body)
   ============================================ */

.home_block_1 {
  background: var(--gradient-hero);
  padding-top: 13rem;
  border-bottom: 1px solid var(--bg-line);
}

.home_block_1_inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* ===== Top split — text | visual ===== */
.home_block_1_top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem;
  align-items: center;
}

.home_block_1_text {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.home_block_1_title {
  margin-top: 0.4rem;
}

.home_block_1_lead {
  color: var(--text-muted);
  max-width: 95%;
}

.home_block_1_cta {
  margin-top: 1rem;
}

/* ===== Visual — framed image with corner marks ===== */
.home_block_1_visual {
  position: relative;
}

.home_block_1_image_frame {
  position: relative;
  border: 2px solid var(--accent-border);
  box-shadow: var(--shadow-card);
}

.home_block_1_image_frame::before,
.home_block_1_image_frame::after {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  border: 3px solid var(--accent);
  z-index: 2;
}

.home_block_1_image_frame::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.home_block_1_image_frame::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

.home_block_1_image_frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home_block_1_image_tag {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  padding: 0.5rem 1.1rem;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: "Saira Condensed", "Saira", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 3;
}

/* ===== Body — full-width text + list ===== */
.home_block_1_body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1100px;
  padding-left: 2.4rem;
  border-left: 3px solid var(--accent);
}

.home_block_1_para {
  color: var(--text-muted);
}

.home_block_1_para--final {
  color: var(--text);
  font-weight: 500;
}

.home_block_1_list {
  margin: 0.6rem 0;
}

.home_block_1_cta_low {
  margin-top: 0.5rem;
}

/* ============================================
   Mobile — ≤1024px
   ============================================ */
@media (max-width: 1024px) {
  .home_block_1 {
    padding-top: 22rem;
  }

  .home_block_1_inner {
    gap: 7rem;
  }

  .home_block_1_top {
    grid-template-columns: 1fr;
    gap: 6rem;
  }

  .home_block_1_text {
    gap: 3rem;
  }

  .home_block_1_lead {
    max-width: 100%;
  }

  .home_block_1_cta {
    margin-top: 2rem;
  }

  .home_block_1_image_frame::before,
  .home_block_1_image_frame::after {
    width: 5rem;
    height: 5rem;
  }

  .home_block_1_image_tag {
    bottom: 2.4rem;
    left: 2.4rem;
    padding: 1rem 2rem;
    font-size: 2.2rem;
  }

  .home_block_1_body {
    gap: 3.5rem;
    padding-left: 4rem;
    border-left-width: 5px;
  }
}
