@font-face {
  font-family: 'PP Right Serif';
  src: url('../fonts/PP_Right_Serif/PP Right Serif - Wide Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Right Serif';
  src: url('../fonts/PP_Right_Serif/PP Right Serif - Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Right Serif';
  src: url('../fonts/PP_Right_Serif/PP Right Serif - Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

.closing-hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background-color: #0d1a10;
}

.closing-hero-section .closing-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.closing-hero-section .closing-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  filter: brightness(0.45) saturate(0.75);
}

.closing-hero-section .closing-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 24, 12, 0.72) 0%,
    rgba(6, 20, 10, 0.78) 45%,
    rgba(4, 16, 8, -0.85) 100%
  ),
  rgba(12, 32, 18, 0.55);
}

.closing-hero-section .closing-hero-leaf {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.closing-hero-section .closing-hero-leaf img {
  width: 100%;
  height: auto;
  display: block;
}

.closing-hero-section .closing-hero-leaf--left {
  left: -2%;
  bottom: -4%;
  width: 34%;
  max-width: 520px;
}

.closing-hero-section .closing-hero-leaf--right {
  right: -2%;
  bottom: -6%;
  width: 38%;
  max-width: 580px;
}

.closing-hero-section .closing-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 40px 70px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.closing-hero-section .closing-hero-content .custom-container {
  width: 100%;
  max-width: 1100px;
  padding: 0 !important;
  margin: 0 auto;
}

.closing-hero-section.visible .closing-hero-content {
  opacity: 1;
}

.closing-hero-section .closing-hero-title {
  font-family: 'PP Right Serif', serif;
  font-weight: 900;
  font-size: clamp(72px, 11.5vw, 190px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: #f3ede3;
  margin: 0 0 48px;
  text-transform: uppercase;
}

.closing-hero-section .closing-hero-title span {
  display: block;
}

.closing-hero-section .closing-hero-description {
  font-family: 'PP Right Serif', serif;
  font-weight: 300;
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.7;
  color: #f3ede3;
  margin: 0 auto 40px;
  max-width: 680px;
  padding: 0 12px;
}

.closing-hero-section .closing-hero-signature {
  font-family: 'PP Right Serif', serif;
  font-weight: 500;
  font-size: clamp(12px, 1vw, 15px);
  letter-spacing: 0.42em;
  color: #f3ede3;
  margin: 0;
  text-transform: uppercase;
}

@media all and (max-width: 1800px) {
  .closing-hero-section .closing-hero-content {
    padding: 120px 32px 60px;
  }

  .closing-hero-section .closing-hero-content .custom-container {
    max-width: 980px;
  }

  .closing-hero-section .closing-hero-leaf--left {
    width: 38%;
  }

  .closing-hero-section .closing-hero-leaf--right {
    width: 42%;
  }
}

@media all and (max-width: 1199px) {
  .closing-hero-section .closing-hero-content {
    padding: 110px 28px 50px;
  }

  .closing-hero-section .closing-hero-content .custom-container {
    max-width: 860px;
  }

  .closing-hero-section .closing-hero-title {
    margin-bottom: 36px;
    font-size: clamp(60px, 10vw, 140px);
  }

  .closing-hero-section .closing-hero-description {
    margin-bottom: 32px;
    max-width: 600px;
  }
}

@media all and (max-width: 767px) {
  .closing-hero-section {
    min-height: 100svh;
  }

  .closing-hero-section .closing-hero-content {
    padding: 96px 20px 36px;
  }

  .closing-hero-section .closing-hero-content .custom-container {
    max-width: 100%;
  }

  .closing-hero-section .closing-hero-title {
    margin-bottom: 28px;
    font-size: clamp(48px, 14vw, 88px);
    line-height: 0.92;
  }

  .closing-hero-section .closing-hero-description {
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 100%;
    padding: 0;
  }

  .closing-hero-section .closing-hero-signature {
    letter-spacing: 0.22em;
  }

  .closing-hero-section .closing-hero-leaf--left {
    width: 50%;
    left: -8%;
  }

  .closing-hero-section .closing-hero-leaf--right {
    width: 54%;
    right: -10%;
  }
}