.home-hero {
  position: relative;
  min-height: 100vh;
  background-image: url('/images/dark-sea.jpg');
  background-size: cover;
  background-position: center 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 100px;
}

.home-video-wrap {
  width: min(1120px, calc(100% - 96px));
  position: relative;
  z-index: 2;
  margin-top: 120px;
}

.home-video-wrap .video-wrap {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  background: url('https://imagedelivery.net/-Al8VJ5luKpHx-VgRRXruQ/0a936ec1-eead-482a-043a-c2ffdde1bf00/public') center / cover no-repeat;
}

.home-video-wrap .video-wrap iframe {
  position: absolute;
  top: -1%; left: -1%;
  width: 102%; height: 102%;
  border: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.home-video-wrap .video-wrap iframe.is-playing {
  opacity: 1;
}

.home-contact {
  max-width: 1200px;
  margin: 160px auto 100px;
  padding: 0 48px;
}

.home-contact-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}

.home-contact-form {
  width: 560px;
  max-width: 560px;
  flex-shrink: 0;
}

.home-contact-heading {
  padding-top: 0;
}

.home-contact-heading h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 4.4vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #ffffff;
  overflow-wrap: break-word;
}

.home-contact-heading h2 .home-contact-accent {
  color: var(--yellow);
}

.home-contact-kicker {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.home-contact-form .field {
  margin-bottom: 24px;
}

.home-contact-form label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.home-contact-form input,
.home-contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 18px 16px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.home-contact-form input::placeholder,
.home-contact-form textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.home-contact-form input:focus,
.home-contact-form textarea:focus {
  border-color: rgba(255,255,255,0.4);
}

.home-contact-form textarea {
  height: 160px;
  resize: vertical;
}

.home-contact-form button {
  margin-top: 8px;
  background: #f5a800;
  border: 1px solid #f5a800;
  color: #000000;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 40px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.home-contact-form button:hover {
  background: transparent;
  color: #f5a800;
}

.home-form-success {
  display: none;
  margin-top: 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f5a800;
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 100vh;
    padding-top: 72px;
    padding-bottom: 48px;
    background-image: url('/images/dark-sea-mobile.jpg');
    background-position: center top;
    background-size: cover;
  }
  .home-video-wrap {
    width: calc(100% - 24px);
    margin-top: 60px;
  }
  .home-contact {
    padding: 0 20px;
    margin: 90px auto 60px;
  }
  .home-contact-layout {
    flex-direction: column;
    gap: 16px;
  }
  .home-contact-heading {
    order: -1;
    padding-top: 0;
  }
  .home-contact-heading h2 {
    font-size: clamp(22px, 7vw, 32px);
    margin-bottom: 8px;
  }
  .home-contact-form {
    width: 100%;
    max-width: 100%;
  }
}
