 .hero-section {
    min-height: 100vh;

    background-image: url("/static/img/hero_scene.png");

    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0rem;
  }
  @media (max-width: 991px) {
    .hero-section {
      min-height: 60vh;
      background-position: center 60%;
    }
  }
  @media (max-width: 768px) {
    .hero-section {
      min-height: 55vh;
      background-position: center 55%;
    }
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
  }
  .hero-petit {
    font-family: "Cinzel", serif;
    color: #c9a84c;
    letter-spacing: 4px;
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 -1rem;
  }
  .hero-logo {
    width: clamp(420px, 80vw, 680px);
    height: auto;
    display: block;
    margin-bottom: -5rem;
    bottom: 4px;
  }
  .hero-gold-line {
    width: clamp(260px, 55vw, 600px);
    height: auto;
    display: block;
    margin-bottom: 0.75rem;
  }
  .hero-subtitle {
    font-family: "Cinzel", serif;
    color: #d4af37;

    font-size: clamp(0.85rem, 1.4vw, 1.1rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 1.5rem;
    top: 0px;
    bottom: 0px;
  }

  @media (max-width: 768px) {
    .hero-logo {
      margin-bottom: -3rem;
    }
    .hero-subtitle {
      font-family: "Cinzel", serif;
      color: #d4af37;
      font-size: clamp(0.85rem, 1.4vw, 1.1rem);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 700;
      margin: 0 0 1.5rem;
      max-width: 250px;
      top: 0px;
      bottom: 0px;
    }
  }
  .hero-cta {
    margin-bottom: 0;
  }