 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body, html {
      height: 100%;
      font-family: system-ui, sans-serif;
      color: #fff;
      text-align: center;
    }
    .hero {
      position: relative;
      height: 100%;
      background: url("../img/bg-home.jpg") center/cover no-repeat;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
      z-index: 0;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      padding: 0 16px;
    }
    .hero-content img {
      max-width: 320px;
      height: auto;
      margin-bottom: 24px;
    }
    .hero-content h1 {
      font-size: clamp(1.5rem, 5vw, 2.5rem);
      font-weight: 700;
    }