/* ============================================
   BLOCK 1 — HERO (vintage stacked-overlay)
   Layout: full-bleed sepia image backdrop + centered text card
   ============================================ */

.home_block_1 {
  min-height: 100vh;
  padding: 14rem var(--main-padding) 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  background: var(--bg-dark);
}

/* ===== Background image (sepia-toned) ===== */
.home_block_1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/image10.webp");
  background-size: cover;
  background-position: center;
  filter: sepia(0.55) saturate(0.95) brightness(0.55) contrast(1.05);
  z-index: -2;
}

/* ===== Sepia/burgundy overlay gradient ===== */
.home_block_1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-sepia),
    radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(12, 6, 8, 0.55) 70%);
  z-index: -1;
}

/* ===== Inner card ===== */
.home_block_1_inner {
  max-width: 1180px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  padding: 5.5rem 4rem;
  position: relative;
}

/* Vintage corner-marks frame */
.home_block_1_inner::before,
.home_block_1_inner::after {
  content: "";
  position: absolute;
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid var(--accent);
  pointer-events: none;
}

.home_block_1_inner::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.home_block_1_inner::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.home_block_1_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.home_block_1_eyebrow::before,
.home_block_1_eyebrow::after {
  content: "";
  display: inline-block;
  width: 2.6rem;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.home_block_1_title {
  font-family: var(--font-display);
  font-size: 5.4rem;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.005em;
  color: var(--text);
  max-width: 16ch;
}

.home_block_1_title > .text-accent {
  color: var(--accent);
  font-style: italic;
}

.home_block_1_lead {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 78ch;
  color: var(--text-muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

.home_block_1_lead > p > strong {
  color: var(--text);
  font-weight: 700;
}

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

/* ===== Stats strip (3 inline facts) — under CTA ===== */
.home_block_1_facts {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 3rem;
  padding-top: 2.6rem;
  width: 100%;
  border-top: 1px solid var(--accent-line-soft);
}

.home_block_1_facts > .fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.home_block_1_facts .fact_value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.005em;
}

.home_block_1_facts .fact_label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================
   Mobile — ≤1024px
   ============================================ */
@media (max-width: 1024px) {
  .home_block_1 {
    min-height: auto;
    padding: 22rem var(--main-padding) 12rem;
  }

  .home_block_1_inner {
    padding: 7rem 3rem;
    gap: 3rem;
  }

  .home_block_1_inner::before,
  .home_block_1_inner::after {
    width: 6rem;
    height: 6rem;
  }

  .home_block_1_eyebrow {
    font-size: 2.2rem;
    letter-spacing: 0.32em;
  }

  .home_block_1_eyebrow::before,
  .home_block_1_eyebrow::after {
    width: 4rem;
  }

  .home_block_1_title {
    font-size: 8.6rem;
    line-height: 1.05;
  }

  .home_block_1_lead {
    font-size: 2.5rem;
    line-height: 1.55;
    gap: 1.8rem;
    max-width: 100%;
  }

  .home_block_1_cta {
    flex-direction: column;
    width: 100%;
    gap: 1.8rem;
  }

  .home_block_1_facts {
    flex-direction: column;
    gap: 3.4rem;
    margin-top: 4rem;
    padding-top: 3.6rem;
  }

  .home_block_1_facts .fact_value {
    font-size: 5.4rem;
  }

  .home_block_1_facts .fact_label {
    font-size: 1.9rem;
    letter-spacing: 0.24em;
  }
}
