/* ========================================
   HERO / TOP Section
   ======================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--clr-bg);
}

.hero__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-left: 60px;
  position: relative;
}

/* ── Main Card ── */
.hero__card {
  position: relative;
  z-index: 1;
}

/* ── Background Image ── */
.hero__image {
  position: relative;
  height: 100vh;
  z-index: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
/* ── Badge Icon (SVG) ── */
.hero__badge-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

/* ── Background overlay ── */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 36px);
  z-index: 1;
}

/* ── Content ── */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── Title Block ── */
.hero__subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--clr-navy-mid);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .1em;
  color: var(--clr-navy);
}

.hero__title mark {
  background: none;
  color: var(--clr-blue-dark);
}

/* ── Certification Badges ── */
.hero__badges {
  position: absolute;
  width: 32%;
  max-width: 650px;
  bottom: 0;
  left: 0;
  background-color: var(--clr-bg);
  z-index: 2;
  padding: 60px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.hero__badges img {
  width: 100%;
}

.hero__badges h1 {
  width: 80%;
  margin: 0 auto 30px;
}




/* ── Notice ── */
.hero__notice {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--clr-gray-dark);
  background: var(--clr-gold-bg);
  border-left: 3px solid var(--clr-gold);
  padding: 10px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── CTA Buttons ── */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ── Image Column ── */
.hero__visual {
  position: relative;
  z-index: 2;
  height: 750px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── Decorative Corner Shapes ── */
.hero__corner {
  position: absolute;
  background: var(--clr-bg);
  z-index: 3;
  pointer-events: none;
}

.hero__corner--tl {
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 0 0 var(--radius-md) 0;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .hero {
    padding-top: 60px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__content {
    padding: 48px 20px 32px;
    max-width: 640px;
    gap: 24px;
  }

  .hero__card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__visual {
    height: 240px;
  }

  .hero__overlay {
    background: linear-gradient(to bottom, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, 0) 48px);
  }

  .hero__inner {
    padding: 0 0 30px;
  }

  .hero__image {
    height: min(118vw, 520px);
    min-height: 380px;
    background-position: center top;
  }

  .hero__badges {
    position: relative;
    width: calc(100% - 40px);
    max-width: 700px;
    margin: -92px auto 0;
    padding: 24px 20px;
    border-radius: var(--radius-md);
  }

  .hero__badges h1 {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 25px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__blob--1 {
    width: 400px;
    height: 400px;
  }

  .hero__blob--2 {
    width: 500px;
    height: 500px;
  }

  .hero__badge-text {
    font-size: 11px;
  }
}
